:root {
  --ink: #0b1720;
  --muted: #60707a;
  --cream: #f3f0e9;
  --paper: #fbfaf7;
  --lime: #c9ff46;
  --green: #0a6b55;
  --line: rgba(11,23,32,.12);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(8,25,33,.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope,sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.container {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}

.section-pad {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .35s;
}

.site-header.scrolled {
  background: rgba(251,250,247,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: max-content;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans",sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  font-size: 21px;
}

.brand-mark i {
  width: 24px;
  height: 24px;
  border: 7px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.brand-mark i:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  right: -7px;
  top: -7px;
}

.brand-copy {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 12px;
}

.site-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.site-nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--ink);
  left: 0;
  right: 100%;
  bottom: -7px;
  transition: .3s;
}

.site-nav a:hover:after {
  right: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: .35s;
}

.btn i {
  font-style: normal;
  font-size: 17px;
  transition: .3s;
}

.btn:hover i {
  transform: translate(3px,-3px);
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(151,199,35,.25);
}

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

.btn:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  left: var(--x,50%);
  top: var(--y,50%);
  transform: translate(-50%,-50%);
  transition: width .55s,height .55s;
}

.btn:hover:before {
  width: 300px;
  height: 300px;
}

.btn span,.btn i {
  position: relative;
  z-index: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.hero {
  min-height: 850px;
  padding-top: 175px;
  position: relative;
  background: linear-gradient(135deg,#f7f6f1 0%,#eef4e7 100%);
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(11,23,32,.08);
  border-radius: 50%;
}

.orbit-one {
  width: 700px;
  height: 700px;
  right: -320px;
  top: -160px;
}

.orbit-two {
  width: 500px;
  height: 500px;
  left: -350px;
  bottom: -240px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 800;
  color: #496653;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--lime);
}

.eyebrow.dark {
  color: var(--green);
}

.eyebrow.dark span {
  background: var(--green);
}

h1,h2,h3 {
  font-family: "Plus Jakarta Sans",sans-serif;
}

h1 {
  font-size: clamp(58px,6.2vw,88px);
  line-height: .99;
  letter-spacing: -5px;
  max-width: 740px;
}

h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

h1 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 8px;
  background: var(--lime);
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-copy>p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 610px;
  margin: 30px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.text-link span {
  transition: .3s;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border: 3px solid #eef4e7;
  font-size: 10px;
  font-weight: 800;
  margin-left: -8px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(2) {
  background: var(--green);
}

.avatar-stack span:nth-child(3) {
  background: #789344;
}

.avatar-stack span:last-child {
  background: var(--lime);
  color: var(--ink);
}

.hero-proof p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.hero-proof strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.visual-shell {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 45px 90px rgba(5,22,29,.2);
  transition: transform .2s ease;
}

.visual-shell:before,.visual-shell:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.24);
}

.visual-shell:before {
  inset: 28px;
}

.visual-shell:after {
  inset: -22px;
  border-color: rgba(11,23,32,.18);
}

.main-dashboard {
  width: 365px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 28px 55px rgba(0,0,0,.26);
}

.card-head {
  display: flex;
  justify-content: space-between;
}

.card-head small,.panel small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #859098;
}

.card-head h3 {
  font-size: 21px;
  margin-top: 4px;
}

.status-chip {
  font-size: 10px;
  background: #eaf8d2;
  color: #547322;
  padding: 7px 10px;
  border-radius: 20px;
  height: max-content;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 24px;
}

.metric-row>div:first-child {
  display: flex;
  flex-direction: column;
}

.metric-row span {
  font-size: 11px;
  color: var(--muted);
}

.metric-row strong {
  font-size: 34px;
  margin: 3px 0;
}

.metric-row small {
  color: #4f8a49;
}

.ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) calc(var(--value)*1%),#e7ecea 0);
  position: relative;
}

.ring:after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: white;
}

.ring span {
  position: relative;
  z-index: 1;
  font-weight: 800;
  color: var(--ink);
}

.chart {
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  border-bottom: 1px solid #e4e9e6;
}

.chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(var(--lime),#7aa43b);
  border-radius: 7px 7px 0 0;
  animation: bars 1.1s ease backwards;
}

.chart span:nth-child(2) {
  animation-delay: .08s;
}

.chart span:nth-child(3) {
  animation-delay: .16s;
}

.chart span:nth-child(4) {
  animation-delay: .24s;
}

.chart span:nth-child(5) {
  animation-delay: .32s;
}

.chart span:nth-child(6) {
  animation-delay: .4s;
}

.chart span:nth-child(7) {
  animation-delay: .48s;
}

@keyframes bars {
  from {
    height: 0;
  }
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #89939a;
  margin-top: 7px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 16px;
  z-index: 4;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.talent-card {
  left: -14px;
  top: 66px;
  width: 190px;
}

.mini-icon {
  width: 34px;
  height: 34px;
  background: var(--lime);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.talent-card span {
  font-size: 10px;
  color: var(--muted);
  display: block;
}

.talent-card strong {
  font-size: 14px;
}

.progress {
  height: 5px;
  background: #e8ece8;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}

.progress i {
  display: block;
  width: 82%;
  height: 100%;
  background: var(--green);
}

.hire-card {
  right: -25px;
  bottom: 65px;
  width: 235px;
}

.candidate-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.candidate-row>span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.candidate-row div {
  display: flex;
  flex-direction: column;
}

.candidate-row small {
  font-size: 9px;
  color: var(--muted);
}

.candidate-row strong {
  font-size: 12px;
}

.candidate-row b {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f8d6;
  color: #4d7a1b;
}

.hire-card p {
  font-size: 10px;
  color: #56824c;
  margin-top: 10px;
}

.floating-tag {
  position: absolute;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  z-index: 3;
}

.tag-one {
  left: 42px;
  bottom: 115px;
  transform: rotate(-70deg);
}

.tag-two {
  right: 35px;
  top: 130px;
  transform: rotate(62deg);
}

.tag-three {
  bottom: 30px;
  left: 220px;
}

.client-strip {
  margin-top: 95px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.client-strip>span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--muted);
  white-space: nowrap;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right,transparent,black 10%,black 90%,transparent);
  flex: 1;
}

.logo-track {
  display: flex;
  gap: 58px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.logo-track b {
  font-size: 14px;
  letter-spacing: 2px;
  color: #7e898e;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .65fr;
  align-items: end;
  gap: 70px;
}

.section-head h2 {
  font-size: clamp(42px,4.8vw,66px);
  line-height: 1.04;
  letter-spacing: -3px;
}

.section-head>p,.section-head.split p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 18px;
}

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

.stat-card {
  min-height: 275px;
  padding: 30px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .4s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.stat-card strong {
  font-size: 70px;
  letter-spacing: -5px;
  font-family: "Plus Jakarta Sans";
}

.stat-card>span {
  font-size: 25px;
  font-weight: 800;
  position: absolute;
  margin-left: 118px;
  margin-top: 90px;
}

.stat-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
}

.stat-card.accent {
  background: var(--lime);
  justify-content: space-between;
  border: none;
}

.stat-card.accent h3 {
  font-size: 24px;
  line-height: 1.2;
}

.icon-orbit {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(11,23,32,.3);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-left: auto;
}

.services {
  background: var(--ink);
  color: #fff;
}

.services .section-head p {
  color: #9faab0;
}

.services .eyebrow.dark {
  color: var(--lime);
}

.services .eyebrow.dark span {
  background: var(--lime);
}

.services-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.service-tabs {
  display: flex;
  flex-direction: column;
}

.service-tab {
  height: 83px;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #8f9aa1;
  text-align: left;
  font: 600 18px Manrope;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: .35s;
}

.service-tab span {
  font-size: 10px;
  color: #758087;
}

.service-tab i {
  margin-left: auto;
  font-style: normal;
  opacity: 0;
  transform: translate(-8px,8px);
  transition: .3s;
}

.service-tab.active,.service-tab:hover {
  color: white;
  padding-left: 24px;
}

.service-tab.active i {
  opacity: 1;
  transform: none;
  color: var(--lime);
}

.service-stage {
  background: #10252d;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 520px;
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.service-stage:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--green);
  filter: blur(80px);
  opacity: .3;
  right: -100px;
  bottom: -100px;
}

.service-panel {
  display: none;
  position: relative;
  z-index: 2;
  animation: panel .45s ease;
}

.service-panel.active {
  display: block;
}

@keyframes panel {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.panel-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 45px;
}

.service-panel h3 {
  font-size: 36px;
  max-width: 620px;
  line-height: 1.15;
  margin: 12px 0 20px;
}

.service-panel>p {
  color: #a7b2b7;
  line-height: 1.8;
  max-width: 590px;
}

.service-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
  list-style: none;
}

.service-panel li {
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
  color: #d7dddf;
}

.service-panel li:before {
  content: "✓";
  color: var(--lime);
  margin-right: 10px;
}

.text-link.light {
  color: white;
}

.process {
  background: var(--cream);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
}

.process-line:before {
  content: "";
  height: 1px;
  background: #cfd2c8;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
}

.process-line article {
  padding-right: 34px;
  position: relative;
}

.process-line article>span {
  font-size: 10px;
  color: var(--muted);
  position: absolute;
  top: 35px;
}

.process-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid #ced3cb;
  display: grid;
  place-items: center;
  font-size: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  margin-left: auto;
  transition: .4s;
}

.process-line article:hover .process-icon {
  background: var(--lime);
  transform: rotate(10deg) scale(1.08);
}

.process-line h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-line p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.testimonial {
  background:
    radial-gradient(circle at 14% 18%, rgba(177,255,31,.16), transparent 28%),
    linear-gradient(180deg, #f6f8f1 0%, #ecf3e5 100%);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.testimonial-intro {
  max-width: 390px;
}

.testimonial-intro h2 {
  margin-top: 18px;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -3.2px;
}

.testimonial-intro p {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 350px;
}

.testimonial-shell {
  background:
    radial-gradient(circle at 100% 0%, rgba(177,255,31,.13), transparent 34%),
    linear-gradient(135deg, #087960 0%, #006a57 52%, #004d43 100%);
  color: white;
  border-radius: 34px;
  min-height: 560px;
  padding: clamp(30px, 4vw, 58px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 38px 90px rgba(0,50,42,.19);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
}

.testimonial-shell:before,
.testimonial-shell:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-shell:before {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.12);
  right: -145px;
  top: -175px;
  box-shadow: 0 0 0 64px rgba(255,255,255,.03), 0 0 0 128px rgba(255,255,255,.018);
}

.testimonial-shell:after {
  width: 210px;
  height: 210px;
  left: -120px;
  bottom: -130px;
  background: rgba(177,255,31,.07);
  filter: blur(4px);
}

.testimonial-topline,
.testimonial-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #d9eddf;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  transition: width .25s ease, background .25s ease;
  cursor: pointer;
}

.testimonial-dot.active {
  width: 28px;
  background: var(--lime);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(42px, 6vw, 78px) 0 34px;
}

.quote-mark {
  font: 150px/.7 Georgia, serif;
  color: var(--lime);
  height: 82px;
  transform: translateY(12px);
}

.testimonial-slider {
  max-width: 790px;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: panel .48s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide blockquote {
  margin: 0;
  max-width: 760px;
  font: 600 clamp(30px, 3vw, 49px)/1.18 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -2.2px;
  text-wrap: balance;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(30px, 4vw, 48px);
}

.quote-author > span {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(177,255,31,.18);
}

.quote-author div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quote-author strong {
  font-size: 14px;
}

.quote-author small {
  color: #bed8cf;
  margin-top: 5px;
  line-height: 1.45;
}

.testimonial-footer {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.testimonial-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 300px;
}

.testimonial-proof span {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--lime);
}

.testimonial-proof p {
  font-size: 11px;
  line-height: 1.45;
  color: #c5ddd5;
}

.slider-controls {
  position: static;
  display: flex;
  align-items: center;
  gap: 13px;
  z-index: 4;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: white;
  display: grid;
  place-items: center;
  font-size: 17px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.slider-controls button:hover {
  transform: translateY(-2px);
  background: var(--lime);
  color: var(--ink);
}

.slider-controls span {
  min-width: 70px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #d4e8e1;
}

.slider-controls span b {
  color: white;
  font-size: 13px;
}

.slider-controls span i {
  font-style: normal;
  padding: 0 6px;
  color: rgba(255,255,255,.45);
}

@media (max-width: 1020px) {
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-intro {
    max-width: 700px;
  }

  .testimonial-intro p {
    max-width: 600px;
  }
}

@media (max-width: 720px) {
  .testimonial-wrap {
    gap: 32px;
  }

  .testimonial-intro h2 {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -2.2px;
  }

  .testimonial-shell {
    min-height: auto;
    padding: 26px 22px 24px;
    border-radius: 25px;
  }

  .testimonial-topline {
    align-items: flex-start;
  }

  .testimonial-kicker {
    max-width: 150px;
    line-height: 1.5;
  }

  .testimonial-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 34px 0 30px;
  }

  .quote-mark {
    font-size: 102px;
    height: 50px;
    transform: none;
  }

  .testimonial-slide blockquote {
    font-size: clamp(27px, 8.2vw, 36px);
    line-height: 1.22;
    letter-spacing: -1.5px;
    text-wrap: pretty;
  }

  .quote-author {
    margin-top: 30px;
    align-items: flex-start;
  }

  .quote-author > span {
    border-radius: 14px;
  }

  .testimonial-footer {
    align-items: flex-end;
  }

  .testimonial-proof {
    max-width: 175px;
    align-items: flex-start;
  }

  .testimonial-proof p {
    font-size: 10px;
  }

  .slider-controls {
    gap: 8px;
  }

  .slider-controls span {
    display: none;
  }

  .slider-controls button {
    width: 43px;
    height: 43px;
  }
}

@media (max-width: 390px) {
  .testimonial-shell {
    padding-inline: 18px;
  }

  .testimonial-footer {
    gap: 12px;
  }

  .testimonial-proof span {
    font-size: 24px;
  }
}

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

.article-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: white;
  transition: .4s;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.article-visual {
  height: 260px;
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.article-visual>span {
  position: relative;
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  background: white;
  padding: 8px 12px;
  border-radius: 20px;
}

.visual-a {
  background: #dceea7;
}

.visual-b {
  background: #b9ddd3;
}

.visual-c {
  background: #e4d9f3;
}

.abstract-shape {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 44% 56% 62% 38%;
  background: var(--green);
  right: -30px;
  bottom: -70px;
  transform: rotate(25deg);
  box-shadow: -45px -25px 0 rgba(255,255,255,.45);
}

.visual-b .abstract-shape {
  background: var(--ink);
  border-radius: 50%;
  right: 45px;
  bottom: -100px;
  box-shadow: 0 -45px 0 rgba(255,255,255,.35);
}

.visual-c .abstract-shape {
  background: #6c4b91;
  border-radius: 20px;
  transform: rotate(45deg);
  right: 25px;
  bottom: -90px;
}

.article-body {
  padding: 26px;
}

.article-body small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-body h3 {
  font-size: 21px;
  line-height: 1.35;
  margin: 12px 0 28px;
}

.article-body a {
  font-size: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.article-body a span {
  float: right;
}

.cta {
  padding-top: 50px;
}

.cta-shell {
  background: var(--ink);
  color: white;
  border-radius: 34px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(42px,4.8vw,65px);
  line-height: 1.05;
  letter-spacing: -3px;
  max-width: 760px;
}

.cta-copy>p {
  color: #aab5ba;
  line-height: 1.8;
  max-width: 650px;
  margin: 24px 0 32px;
}

.cta-info {
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.cta-info div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-info small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #7f8e94;
}

.cta-info a,.cta-info p {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.cta-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-art span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.cta-art span:nth-child(1) {
  width: 530px;
  height: 530px;
  right: -180px;
  top: -250px;
}

.cta-art span:nth-child(2) {
  width: 340px;
  height: 340px;
  right: -70px;
  top: -120px;
}

.cta-art span:nth-child(3) {
  width: 110px;
  height: 110px;
  right: 100px;
  top: 30px;
  background: var(--lime);
  opacity: .08;
  border: 0;
}

footer {
  padding: 75px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid>div>p {
  font-size: 13px;
  color: var(--muted);
}

.footer-grid h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.footer-grid>div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-grid a:not(.brand) {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: .3s;
}

.footer-grid a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #7e898f;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.back-top {
  position: fixed;
  right: max(29px, env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: .35s;
  cursor: pointer;
}

.back-top.show {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

.delay-3 {
  transition-delay: .36s;
}

@media (max-width:1000px) {
  .site-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy>p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,.hero-proof {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
  }

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

  .services-layout {
    grid-template-columns: 1fr;
  }

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

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .process-line:before {
    display: none;
  }

  .process-line article {
    padding: 0;
  }

  .process-icon {
    margin-left: 0;
  }

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

  .article-card:last-child {
    grid-column: 1/-1;
  }

  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-info {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    padding: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }

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

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

  .section-pad {
    padding: 82px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand-copy {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-left: auto;
    padding: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    transition: .3s;
  }

  .site-nav.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    background: var(--ink);
    padding: 30px;
    border-radius: 20px;
    flex-direction: column;
    gap: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    color: white;
    font-size: 18px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    gap: 20px;
  }

  h1 {
    font-size: 51px;
    letter-spacing: -3.4px;
  }

  .hero-copy>p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    align-items: flex-start;
    text-align: left;
  }

  .visual-shell {
    width: 330px;
    height: 330px;
  }

  .main-dashboard {
    width: 255px;
    padding: 16px;
  }

  .card-head h3 {
    font-size: 16px;
  }

  .metric-row {
    margin: 18px 0;
  }

  .metric-row strong {
    font-size: 25px;
  }

  .ring {
    width: 48px;
    height: 48px;
  }

  .chart {
    height: 72px;
    gap: 6px;
  }

  .talent-card {
    width: 145px;
    left: -8px;
    top: 30px;
    padding: 12px;
  }

  .hire-card {
    width: 174px;
    right: -8px;
    bottom: 24px;
    padding: 11px;
  }

  .candidate-row strong {
    font-size: 9px;
  }

  .floating-tag {
    display: none;
  }

  .client-strip {
    margin-top: 55px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head.split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-head h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

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

  .stat-card {
    min-height: 220px;
  }

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

  .service-tab {
    height: 67px;
    font-size: 15px;
  }

  .service-stage {
    padding: 30px 24px;
    min-height: 590px;
  }

  .panel-icon {
    margin-bottom: 28px;
  }

  .service-panel h3 {
    font-size: 29px;
  }

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

  .process-line {
    grid-template-columns: 1fr;
  }

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

  .article-card:last-child {
    grid-column: auto;
  }

  .cta-shell {
    padding: 46px 25px;
  }

  .cta h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .cta-info {
    grid-template-columns: 1fr;
  }

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

  .footer-grid>div:first-child {
    grid-column: 1/-1;
  }

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


/* --------------------------------------------------------------------------
   Floating contact menu
   -------------------------------------------------------------------------- */
.floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  max-height: calc(100dvh - 130px);
}

.floating-contact__toggle {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  place-items: center;
  overflow: visible;
  color: #ffffff;
  background: var(--ink, #151515);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.24);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.floating-contact__toggle:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--primary, #7047eb);
  box-shadow: 0 20px 44px rgba(112, 71, 235, 0.28);
}

.floating-contact__toggle:focus-visible,
.floating-contact__item:focus-visible {
  outline: 3px solid rgba(112, 71, 235, 0.35);
  outline-offset: 4px;
}

.floating-contact__toggle-icon,
.floating-contact__toggle-close {
  position: absolute;
  display: grid;
  place-items: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.floating-contact__toggle-icon {
  width: 25px;
  height: 25px;
}

.floating-contact__toggle-close {
  opacity: 0;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transform: rotate(-70deg) scale(0.7);
}

.floating-contact__toggle svg,
.floating-contact__item svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact__pulse {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(112, 71, 235, 0.32);
  border-radius: inherit;
  animation: floatingContactPulse 2.2s ease-out infinite;
}

.floating-contact__menu {
  order: -1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.floating-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 8px 6px 15px;
  color: #1e1e1e;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.14);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: opacity 200ms ease, transform 240ms ease, box-shadow 200ms ease;
}

.floating-contact__item:hover {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 16px 34px rgba(12, 12, 12, 0.18);
}

.floating-contact__icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 9px;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
}

.floating-contact__label {
  min-width: 74px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.floating-contact__item--whatsapp .floating-contact__icon {
  background: #25d366;
}

.floating-contact__item--phone .floating-contact__icon {
  background: #5f43d8;
}

.floating-contact__item--linkedin .floating-contact__icon {
  background: #0a66c2;
}

.floating-contact__item--email .floating-contact__icon {
  background: #ea4335;
}

.floating-contact.is-open .floating-contact__menu {
  pointer-events: auto;
}

.floating-contact.is-open .floating-contact__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-contact.is-open .floating-contact__item:nth-child(1) {
  transition-delay: 40ms;
}

.floating-contact.is-open .floating-contact__item:nth-child(2) {
  transition-delay: 80ms;
}

.floating-contact.is-open .floating-contact__item:nth-child(3) {
  transition-delay: 120ms;
}

.floating-contact.is-open .floating-contact__item:nth-child(4) {
  transition-delay: 160ms;
}

.floating-contact.is-open .floating-contact__toggle-icon {
  opacity: 0;
  transform: rotate(70deg) scale(0.7);
}

.floating-contact.is-open .floating-contact__toggle-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.floating-contact.is-open .floating-contact__pulse {
  animation: none;
  opacity: 0;
}

@keyframes floatingContactPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.82);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* Keep the back-to-top control beside the contact button. */
.back-top {
  right: calc(max(20px, env(safe-area-inset-right)) + 76px);
  bottom: calc(25px + env(safe-area-inset-bottom));
}

@media (max-width: 640px) {
  .floating-contact {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    max-height: calc(100dvh - 108px);
  }

  .floating-contact__toggle {
    width: 54px;
    height: 54px;
  }

  .floating-contact__item {
    min-height: 44px;
    padding: 4px 6px 4px 13px;
  }

  .floating-contact__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .floating-contact__label {
    min-width: 68px;
    font-size: 11px;
  }

  .back-top {
    right: calc(max(12px, env(safe-area-inset-right)) + 66px);
    bottom: calc(17px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }
}

@media (max-height: 620px) {
  .floating-contact {
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .floating-contact__menu {
    gap: 7px;
  }

  .floating-contact__item {
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact__pulse {
    animation: none;
  }

  .floating-contact__item,
  .floating-contact__toggle,
  .floating-contact__toggle-icon,
  .floating-contact__toggle-close {
    transition: none;
  }
}

/* ENPE logo — precisely fitted to the navigation bar */
.brand-logo {
  display: block;
  width: 178px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.site-header .brand {
  flex: 0 0 auto;
  height: 100%;
  display: inline-flex;
  align-items: center;
  overflow: visible;
}

.site-header.scrolled .brand-logo {
  width: 170px;
  max-height: 54px;
}

.footer-brand .brand-logo {
  width: 190px;
  max-height: none;
  filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
  .nav-wrap { gap: 24px; }
  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 158px;
    max-height: 52px;
  }
}

@media (max-width: 720px) {
  .nav-wrap { height: 72px; }
  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 144px;
    max-height: 48px;
  }
  .footer-brand .brand-logo { width: 180px; }
}

@media (max-width: 380px) {
  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 132px;
    max-height: 44px;
  }
}

/* Complete ENPE menu-bar brand lockup */
.site-header .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  flex: 0 0 auto;
  min-width: 188px;
  overflow: visible;
}

.brand-symbol {
  display: block;
  width: 52px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  min-width: 0;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}

.brand-tagline {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  white-space: nowrap;
}

.site-header.scrolled .brand-symbol {
  width: 48px;
  height: 38px;
}

.site-header.scrolled .brand-name {
  font-size: 21px;
}

.footer-brand {
  min-width: 0;
  width: max-content;
}

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,.62); }
.footer-brand .brand-symbol { filter: none; }

@media (max-width: 1100px) {
  .site-header .brand-lockup { min-width: 166px; gap: 8px; }
  .brand-symbol,
  .site-header.scrolled .brand-symbol { width: 45px; height: 36px; }
  .brand-name,
  .site-header.scrolled .brand-name { font-size: 19px; }
  .brand-tagline { font-size: 7px; letter-spacing: .18em; margin-top: 4px; }
}

@media (max-width: 720px) {
  .site-header .brand-lockup { min-width: 0; gap: 7px; }
  .brand-symbol,
  .site-header.scrolled .brand-symbol { width: 42px; height: 34px; }
  .brand-name,
  .site-header.scrolled .brand-name { font-size: 18px; }
  .brand-tagline { font-size: 6.5px; letter-spacing: .16em; }
}

@media (max-width: 380px) {
  .brand-symbol,
  .site-header.scrolled .brand-symbol { width: 38px; height: 31px; }
  .brand-name,
  .site-header.scrolled .brand-name { font-size: 16px; }
  .brand-tagline { font-size: 6px; }
}

/* =========================================================
   ENPE HERO REDESIGN — premium responsive visual hierarchy
   ========================================================= */
.hero {
  min-height: 900px;
  padding-top: 164px;
  padding-bottom: 62px;
  background:
    radial-gradient(circle at 76% 38%, rgba(182,255,38,.13), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(16,124,104,.08), transparent 24%),
    linear-gradient(128deg, #faf9f4 0%, #f4f7ef 52%, #edf5e7 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  pointer-events: none;
  background-image: linear-gradient(rgba(13,30,38,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(13,30,38,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: 12%;
  top: 22%;
  border-radius: 50%;
  background: rgba(181,255,38,.16);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, .96fr);
  gap: clamp(52px, 7vw, 108px);
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding-top: 14px;
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 9px 13px;
  border: 1px solid rgba(13,30,38,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(13,30,38,.04);
}

.hero h1 {
  font-size: clamp(58px, 5.5vw, 82px);
  line-height: .98;
  letter-spacing: clamp(-5px, -.055em, -3px);
  max-width: 720px;
  text-wrap: balance;
}

.hero h1 em {
  display: inline;
  color: var(--green);
  background: linear-gradient(90deg, var(--green), #0d8d70);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 em:after {
  display: none;
}

.hero-copy > p {
  max-width: 620px;
  margin: 30px 0 32px;
  font-size: 17px;
  line-height: 1.76;
}

.hero .btn-primary {
  min-height: 58px;
  padding-inline: 25px;
  box-shadow: 0 18px 42px rgba(151,199,35,.25);
}

.hero-proof {
  gap: 22px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,30,38,.1);
  max-width: 610px;
}

.proof-item {
  display: grid;
  gap: 4px;
}

.proof-item strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -.3px;
}

.proof-item span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.proof-divider {
  width: 1px;
  height: 38px;
  background: rgba(13,30,38,.13);
}

.hero-visual {
  min-height: 575px;
}

.visual-shell {
  width: 548px;
  height: 548px;
  background:
    radial-gradient(circle at 50% 42%, #18343d 0%, #0d2029 46%, #081820 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 52px 110px rgba(5,22,29,.25), inset 0 1px 0 rgba(255,255,255,.1);
}

.visual-shell:before {
  inset: 24px;
  border: 1px solid rgba(182,255,38,.18);
}

.visual-shell:after {
  inset: -27px;
  border: 1px dashed rgba(13,30,38,.18);
}

.visual-grid {
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, #000 32%, transparent 75%);
}

.main-dashboard {
  width: 382px;
  padding: 26px;
  border: 1px solid rgba(13,30,38,.07);
  border-radius: 25px;
  box-shadow: 0 35px 70px rgba(0,0,0,.28);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #76b82a;
  box-shadow: 0 0 0 4px rgba(118,184,42,.12);
}

.dashboard-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 20px;
}

.score-copy {
  display: flex;
  flex-direction: column;
}

.score-copy > span {
  color: var(--muted);
  font-size: 11px;
}

.score-copy strong {
  margin: 3px 0;
  font-family: "Plus Jakarta Sans",sans-serif;
  color: var(--ink);
  font-size: 37px;
  letter-spacing: -2px;
}

.score-copy small {
  color: #4f8a49;
  font-size: 10px;
}

.dashboard-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #edf0ee;
  color: var(--muted);
  font-size: 10px;
}

.dashboard-chart-head b {
  color: #94a09b;
  font-weight: 600;
}

.visual-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.74);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.visual-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(182,255,38,.12);
}

.badge-top { top: 28px; left: 50%; transform: translateX(-50%); }
.badge-bottom { bottom: 27px; left: 50%; transform: translateX(-50%); }

.talent-card {
  left: -24px;
  top: 72px;
  width: 194px;
}

.mini-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mini-chip {
  padding: 5px 7px;
  border-radius: 999px;
  background: #edf8dd;
  color: #5b7d2e !important;
  font-size: 8px !important;
  font-weight: 700;
}

.hire-card {
  right: -35px;
  bottom: 77px;
}

.role-card {
  left: 22px;
  bottom: 78px;
  width: 142px;
  display: grid;
  gap: 4px;
  padding: 14px 15px;
}

.role-card small {
  color: var(--muted);
  font-size: 9px;
}

.role-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.role-card span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #56824c;
  font-size: 9px;
}

.role-card i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.client-strip {
  position: relative;
  z-index: 2;
  margin-top: 76px;
  padding-top: 25px;
}

.sector-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}

.sector-list b {
  color: #83908b;
  font-size: 12px;
  letter-spacing: 1.7px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr 440px;
    gap: 42px;
  }

  .visual-shell {
    width: 455px;
    height: 455px;
  }

  .main-dashboard {
    width: 322px;
  }

  .talent-card { left: -18px; top: 50px; }
  .hire-card { right: -22px; bottom: 56px; }
  .role-card { left: 5px; bottom: 48px; }
}

@media (max-width: 1000px) {
  .hero {
    padding-top: 145px;
  }

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

  .hero-copy {
    max-width: 780px;
    margin-inline: auto;
  }

  .hero-proof {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .sector-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 50px;
  }

  .hero .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 57px);
    letter-spacing: -3px;
  }

  .hero-copy > p {
    margin: 24px auto 28px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .hero-proof {
    max-width: 360px;
    margin-top: 34px;
    padding-top: 20px;
    justify-content: flex-start;
    text-align: left;
  }

  .proof-item strong { font-size: 14px; }
  .proof-item span { font-size: 10px; }

  .hero-visual {
    min-height: 405px;
    margin-top: 25px;
  }

  .visual-shell {
    width: min(345px, 92vw);
    height: min(345px, 92vw);
  }

  .visual-shell:after { inset: -12px; }
  .visual-shell:before { inset: 15px; }
  .visual-grid { inset: 38px; }

  .main-dashboard {
    width: 258px;
    padding: 16px;
    border-radius: 18px;
  }

  .dashboard-score { margin: 17px 0 13px; }
  .score-copy strong { font-size: 26px; }
  .dashboard-chart-head { padding-top: 10px; }

  .talent-card {
    width: 138px;
    left: -4px;
    top: 34px;
    padding: 10px;
  }

  .talent-card .mini-icon {
    width: 27px;
    height: 27px;
    margin-bottom: 7px;
  }

  .hire-card {
    width: 172px;
    right: -5px;
    bottom: 38px;
  }

  .role-card,
  .visual-badge {
    display: none;
  }

  .client-strip {
    margin-top: 38px;
    align-items: center;
  }

  .client-strip > span {
    width: 100%;
    text-align: center;
  }

  .sector-list {
    justify-content: center;
    gap: 14px 24px;
  }

  .sector-list b {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 41px; }
  .visual-shell { width: 315px; height: 315px; }
  .main-dashboard { width: 236px; }
  .talent-card { left: 1px; }
  .hire-card { right: 0; }
}

/* Why ENPE — visual hierarchy refinement */
.impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(181,255,36,.08), transparent 28%),
    linear-gradient(180deg, #fbfcf8 0%, #f7f9f4 100%);
}

.impact::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -230px;
  top: 30px;
  border: 1px solid rgba(12,41,52,.08);
  border-radius: 50%;
  pointer-events: none;
}

.impact .container { position: relative; z-index: 1; }

.impact .section-head.split {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: clamp(44px, 7vw, 110px);
  margin-bottom: clamp(44px, 6vw, 76px);
}

.impact .section-head h2 {
  max-width: 850px;
  font-size: clamp(42px, 4.45vw, 68px);
  line-height: .99;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.impact .section-head.split > p {
  max-width: 430px;
  margin: 0 0 7px;
  padding-left: 22px;
  border-left: 2px solid var(--lime);
  font-size: 15px;
  line-height: 1.75;
}

.impact .stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 1.05fr);
  gap: 16px;
  align-items: stretch;
}

.impact .stat-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(12,41,52,.12);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 35px rgba(12,41,52,.04);
  backdrop-filter: blur(8px);
}

.impact .stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(12,41,52,.07);
  border-radius: 50%;
}

.impact .stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(12,41,52,.22);
  box-shadow: 0 22px 55px rgba(12,41,52,.10);
}

.stat-top,
.accent-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stat-index,
.stat-label,
.accent-top > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.stat-index { color: #9aa3a6; }
.stat-label { color: var(--green); }

.stat-value {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin: auto 0 2px;
  line-height: 1;
}

.impact .stat-value strong {
  font-size: clamp(64px, 5vw, 82px);
  line-height: .86;
  letter-spacing: -.075em;
}

.impact .stat-value > span {
  position: static;
  margin: 5px 0 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.impact .stat-card > h3 {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.impact .stat-card > p {
  max-width: 270px;
  margin-top: 9px;
  font-size: 12.5px;
  line-height: 1.65;
}

.stat-progress {
  height: 3px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7ece7;
}

.stat-progress i {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--lime));
}

.impact .stat-card.accent {
  min-height: 330px;
  padding: 27px;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.45), transparent 32%),
    linear-gradient(145deg, #aaff20 0%, #c3ff3c 100%);
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(157,229,27,.22);
}

.impact .stat-card.accent::after {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -120px;
  border-color: rgba(12,41,52,.16);
}

.impact .stat-card.accent h3 {
  max-width: 260px;
  margin-top: 34px;
  font-size: clamp(25px, 2vw, 31px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.impact .stat-card.accent p {
  max-width: 270px;
  margin-top: 16px;
  color: rgba(12,41,52,.68);
  font-size: 12.5px;
}

.impact .icon-orbit {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin: 0;
  background: rgba(255,255,255,.26);
}

.stat-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(12,41,52,.18);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.stat-link span { font-size: 17px; transition: transform .25s ease; }
.stat-link:hover span { transform: translateX(4px); }

@media (max-width: 1180px) {
  .impact .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact .stat-card,
  .impact .stat-card.accent { min-height: 300px; }
}

@media (max-width: 760px) {
  .impact .section-head.split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact .section-head h2 {
    font-size: clamp(39px, 12vw, 54px);
    letter-spacing: -.055em;
  }

  .impact .section-head.split > p {
    max-width: 100%;
    padding-left: 16px;
  }

  .impact .stats-grid { grid-template-columns: 1fr; }

  .impact .stat-card,
  .impact .stat-card.accent {
    min-height: 280px;
    padding: 24px;
  }

  .impact .stat-value strong { font-size: 70px; }
}

/* What We Do — visual hierarchy rework */
.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(24,116,99,.16), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(183,255,46,.045), transparent 28%),
    #071721;
}

.services:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.services > .container { position: relative; z-index: 1; }

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 70px;
}

.services-title-block h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -4px;
}

.services-title-block h2 em { color: #a9ff2f; font-style: normal; }

.services-intro {
  padding: 0 0 8px 24px;
  border-left: 1px solid rgba(255,255,255,.16);
}

.services-intro-label {
  display: block;
  margin-bottom: 14px;
  color: #a9ff2f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.services-intro p { margin: 0; max-width: 430px; font-size: 14px; line-height: 1.8; }

.services-layout {
  grid-template-columns: minmax(330px,.78fr) minmax(0,1.22fr);
  gap: 34px;
  align-items: stretch;
}

.service-nav {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  padding: 22px 22px 18px;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(16px);
}

.service-nav-head,
.service-nav-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 8px 18px;
  color: #7f909a;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.service-nav-head b { color: #dbe4e7; font-weight: 700; }
.service-tabs { flex: 1; }

.service-tab {
  position: relative;
  height: 88px;
  border-radius: 17px;
  border-bottom: 0;
  padding: 0 17px;
  margin-bottom: 4px;
  font-size: 16px;
}

.service-tab:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(110deg, rgba(169,255,47,.11), rgba(255,255,255,.025)) padding-box;
  opacity: 0;
  transition: .3s ease;
}

.service-tab > * { position: relative; z-index: 1; }
.service-tab span { width: 26px; font-size: 9px; letter-spacing: 1px; }
.service-tab i { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(169,255,47,.12); }
.service-tab.active,.service-tab:hover { padding-left: 17px; color: #fff; }
.service-tab.active:before,.service-tab:hover:before { opacity: 1; }
.service-tab.active span { color: #a9ff2f; }

.service-nav-foot {
  align-items: flex-start;
  flex-direction: column;
  padding: 18px 8px 4px;
  border-top: 1px solid rgba(255,255,255,.09);
  text-transform: none;
  letter-spacing: 0;
}
.service-nav-foot a { color: #fff; font-size: 12px; font-weight: 700; }

.service-stage {
  min-height: 610px;
  padding: 54px 58px 46px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(19,48,58,.98), rgba(9,37,43,.98));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 30px 70px rgba(0,0,0,.22);
}

.service-stage:before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 38%);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: #7f949d;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.panel-topline span { color: #a9ff2f; }
.panel-topline b { font-weight: 700; }

.panel-icon { margin-bottom: 28px; box-shadow: 0 15px 35px rgba(169,255,47,.12); }
.service-panel > small { display: inline-block; color: #b9c7cc; font-size: 11px; letter-spacing: .4px; text-transform: none; }
.service-panel h3 { margin-top: 14px; font-size: clamp(34px,3.2vw,48px); max-width: 690px; letter-spacing: -2px; }
.service-panel>p { max-width: 680px; font-size: 14px; }
.service-panel ul { gap: 0 28px; margin: 32px 0; }
.service-panel li { padding: 14px 0; font-size: 12px; }

.panel-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.panel-footer > div { display: flex; flex-direction: column; gap: 6px; }
.panel-footer small { color: #7f949d; font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; }
.panel-footer strong { font-size: 13px; color: #e8eff1; }
.panel-footer .text-link { flex: 0 0 auto; }

@media (max-width: 980px) {
  .services-head { grid-template-columns: 1fr; gap: 28px; }
  .services-intro { max-width: 620px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-nav { min-height: auto; }
  .service-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .service-tab { margin: 0; }
  .service-stage { min-height: 600px; }
}

@media (max-width: 720px) {
  .services-head { margin-bottom: 42px; }
  .services-title-block h2 { font-size: 43px; letter-spacing: -2.5px; }
  .services-intro { padding-left: 18px; }
  .service-nav { padding: 15px; border-radius: 22px; }
  .service-tabs { grid-template-columns: 1fr; }
  .service-tab { height: 66px; font-size: 14px; }
  .service-nav-foot { display: none; }
  .service-stage { min-height: 0; padding: 34px 23px; border-radius: 24px; }
  .panel-topline { margin-bottom: 25px; }
  .panel-topline b { display: none; }
  .service-panel h3 { font-size: 31px; letter-spacing: -1.4px; }
  .panel-footer { align-items: flex-start; flex-direction: column; }
}

/* What We Do — viewport-fit refinement */
.services.section-pad {
  min-height: 100svh;
  padding: clamp(76px, 8vh, 104px) 0;
  display: flex;
  align-items: center;
}

.services > .container {
  width: min(1240px, calc(100% - 48px));
}

.services-head {
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  margin-bottom: clamp(34px, 4.5vh, 50px);
}

.services-title-block h2 {
  max-width: 720px;
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: 1;
  letter-spacing: clamp(-3.6px, -.25vw, -2px);
}

.services-intro {
  padding-bottom: 0;
}

.services-layout {
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 2.4vw, 32px);
}

.service-nav,
.service-stage {
  min-height: 500px;
  height: 500px;
}

.service-nav {
  padding: 18px 18px 15px;
  border-radius: 24px;
}

.service-nav-head {
  padding: 2px 7px 12px;
}

.service-tab {
  height: 66px;
  border-radius: 14px;
  padding-inline: 14px;
  font-size: 14px;
}

.service-tab.active,
.service-tab:hover {
  padding-left: 14px;
}

.service-tab i {
  width: 31px;
  height: 31px;
}

.service-nav-foot {
  padding: 13px 7px 2px;
}

.service-stage {
  padding: 34px 42px 30px;
  border-radius: 28px;
}

.service-stage:before {
  border-radius: 27px;
}

.panel-topline {
  margin-bottom: 20px;
  padding-bottom: 13px;
}

.panel-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 15px;
  font-size: 21px;
}

.service-panel h3 {
  max-width: 650px;
  margin: 9px 0 13px;
  font-size: clamp(30px, 2.65vw, 41px);
  line-height: 1.08;
}

.service-panel > p {
  max-width: 690px;
  font-size: 13px;
  line-height: 1.65;
}

.service-panel ul {
  margin: 20px 0;
  gap: 0 24px;
}

.service-panel li {
  padding: 10px 0;
  font-size: 11px;
}

.panel-footer {
  margin-top: 0;
  padding-top: 17px;
}

@media (max-width: 1100px) {
  .services.section-pad {
    min-height: auto;
    padding: 88px 0;
  }

  .service-nav,
  .service-stage {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 980px) {
  .services > .container {
    width: min(760px, calc(100% - 40px));
  }

  .services-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .services-title-block h2 {
    max-width: 680px;
  }

  .services-layout {
    gap: 20px;
  }

  .service-nav,
  .service-stage {
    width: 100%;
    height: auto;
    min-height: 0;
  }

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

  .service-tab {
    height: 62px;
  }

  .service-stage {
    padding: 38px;
  }
}

@media (max-width: 720px) {
  .services.section-pad {
    padding: 72px 0;
  }

  .services > .container {
    width: min(100% - 28px, 620px);
  }

  .services-head {
    margin-bottom: 28px;
  }

  .services-title-block h2 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -2.4px;
  }

  .services-intro {
    padding-left: 15px;
  }

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

  .service-tab {
    height: 58px;
  }

  .service-stage {
    padding: 28px 21px 25px;
  }

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

  .panel-footer {
    gap: 16px;
  }
}

/* What We Do — mobile-first responsive redesign */
@media (max-width: 720px) {
  .services.section-pad {
    min-height: auto;
    padding: 64px 0 70px;
    align-items: stretch;
  }

  .services > .container {
    width: min(100% - 32px, 620px);
  }

  .services:before {
    opacity: .09;
    background-size: 48px 48px;
  }

  .services-head {
    display: block;
    margin-bottom: 26px;
  }

  .services-title-block .eyebrow {
    margin-bottom: 16px;
  }

  .services-title-block h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(36px, 11.2vw, 47px);
    line-height: 1.02;
    letter-spacing: -2.2px;
  }

  .services-title-block h2 em {
    display: block;
    margin-top: 5px;
  }

  .services-intro {
    margin-top: 20px;
    padding: 0 0 0 14px;
    border-left-color: rgba(169,255,47,.42);
  }

  .services-intro-label {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .services-intro p {
    max-width: none;
    font-size: 13px;
    line-height: 1.65;
  }

  .services-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .service-nav {
    display: block;
    min-height: 0;
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
  }

  .service-nav-head,
  .service-nav-foot {
    display: none;
  }

  .service-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab,
  .service-tab.active,
  .service-tab:hover {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    height: 46px;
    margin: 0;
    padding: 0 14px;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: #aebbc1;
    font-size: 12px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .service-tab:before {
    display: none;
  }

  .service-tab span {
    width: auto;
    color: #788991;
    font-size: 8px;
  }

  .service-tab i {
    display: none;
  }

  .service-tab.active {
    border-color: rgba(169,255,47,.5);
    background: #a9ff2f;
    color: #071721;
    box-shadow: 0 9px 24px rgba(169,255,47,.14);
  }

  .service-tab.active span {
    color: rgba(7,23,33,.62);
  }

  .service-stage {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 22px 18px 20px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(19,48,58,.98), rgba(8,31,38,.99));
  }

  .service-stage:before {
    border-radius: 21px;
  }

  .service-stage:after {
    width: 190px;
    height: 190px;
    right: -90px;
    bottom: -95px;
    filter: blur(60px);
    opacity: .24;
  }

  .panel-topline {
    margin-bottom: 18px;
    padding-bottom: 12px;
    gap: 10px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  .panel-topline b {
    display: block;
    overflow: hidden;
    max-width: 68%;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .panel-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    border-radius: 13px;
    font-size: 18px;
  }

  .service-panel > small {
    font-size: 10px;
  }

  .service-panel h3 {
    max-width: none;
    margin: 8px 0 12px;
    font-size: clamp(27px, 8.4vw, 35px);
    line-height: 1.08;
    letter-spacing: -1.35px;
  }

  .service-panel > p {
    max-width: none;
    margin: 0;
    font-size: 12.5px;
    line-height: 1.68;
  }

  .service-panel ul {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 18px 0 20px;
  }

  .service-panel li {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 11px;
    line-height: 1.4;
  }

  .panel-footer {
    display: block;
    margin-top: 0;
    padding-top: 16px;
  }

  .panel-footer > div {
    margin-bottom: 15px;
  }

  .panel-footer strong {
    font-size: 12px;
    line-height: 1.45;
  }

  .panel-footer .text-link,
  .service-panel > .text-link {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .services > .container {
    width: min(100% - 24px, 620px);
  }

  .services-title-block h2 {
    font-size: 34px;
  }

  .service-stage {
    padding-inline: 16px;
  }

  .service-panel h3 {
    font-size: 27px;
  }
}

/* =========================================================
   HOW WE WORK — FULL VISUAL HIERARCHY REDESIGN
   ========================================================= */
.process-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(184,255,47,.13), transparent 25%),
    linear-gradient(180deg, #f8f8f2 0%, #eff3e9 100%);
  padding-top: clamp(88px, 9vw, 138px);
  padding-bottom: clamp(88px, 9vw, 132px);
}

.process-v2::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(7,31,38,.08);
  border-radius: 50%;
  right: -260px;
  top: -250px;
  pointer-events: none;
}

.process-v2 .container { position: relative; z-index: 1; }

.process-v2-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(52px, 6vw, 86px);
}

.process-v2-heading h2 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(46px, 5.1vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
  color: var(--ink);
}

.process-v2-heading h2 em {
  font-style: normal;
  color: var(--green);
}

.process-v2-intro {
  padding-bottom: 5px;
  max-width: 440px;
  justify-self: end;
}

.process-v2-intro p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.process-v2-toplink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.process-v2-toplink span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7,31,38,.2);
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease;
}

.process-v2-toplink:hover span { transform: translate(2px,-2px); background: var(--lime); }

.process-v2-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.process-v2-flow::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(7,31,38,.19) 0 6px, transparent 6px 13px);
  z-index: 0;
}

.process-v2-card {
  min-height: 490px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(7,31,38,.11);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(16,40,29,.055);
  backdrop-filter: blur(12px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.process-v2-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,111,87,.28);
  box-shadow: 0 24px 65px rgba(16,40,29,.12);
}

.process-v2-card.featured {
  background: linear-gradient(150deg, #0a2229 0%, #0c473f 100%);
  color: white;
  border-color: transparent;
}

.process-v2-card.featured::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -75px;
  bottom: -85px;
  background: rgba(184,255,47,.12);
  pointer-events: none;
}

.process-v2-cardtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 76px;
}

.process-v2-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--muted);
}

.process-v2-card.featured .process-v2-number { color: rgba(255,255,255,.55); }

.process-v2-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--lime);
  color: #092128;
  box-shadow: 0 10px 24px rgba(125,197,29,.18);
}

.process-v2-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-v2-copy { position: relative; z-index: 1; }

.process-v2-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-v2-card.featured .process-v2-label { color: var(--lime); }

.process-v2-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(29px, 2.1vw, 36px);
  line-height: 1;
  letter-spacing: -.035em;
}

.process-v2-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.process-v2-card.featured .process-v2-copy p { color: rgba(255,255,255,.68); }

.process-v2-output {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(7,31,38,.12);
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
}

.process-v2-card.featured .process-v2-output { border-color: rgba(255,255,255,.13); }
.process-v2-output span { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-weight: 800; }
.process-v2-output strong { font-size: 13px; color: var(--ink); }
.process-v2-card.featured .process-v2-output span { color: rgba(255,255,255,.45); }
.process-v2-card.featured .process-v2-output strong { color: white; }

.process-v2-result {
  margin-top: 18px;
  min-height: 108px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(7,31,38,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
}

.process-v2-resultmark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.process-v2-result p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.process-v2-result p strong { color: var(--ink); }
.process-v2-result a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.process-v2-result a span { font-size: 18px; transition: transform .25s ease; }
.process-v2-result a:hover span { transform: translateX(5px); }

@media (max-width: 1100px) {
  .process-v2-flow { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .process-v2-flow::before { display: none; }
  .process-v2-card { min-height: 420px; }
  .process-v2-cardtop { margin-bottom: 54px; }
}

@media (max-width: 760px) {
  .process-v2 { padding-top: 76px; padding-bottom: 76px; }
  .process-v2-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .process-v2-heading h2 { font-size: clamp(40px, 12vw, 56px); line-height: .98; }
  .process-v2-intro { justify-self: start; max-width: none; }
  .process-v2-intro p { font-size: 14px; margin-bottom: 22px; }
  .process-v2-flow { grid-template-columns: 1fr; gap: 13px; }
  .process-v2-card {
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }
  .process-v2-cardtop { margin-bottom: 36px; }
  .process-v2-icon { width: 48px; height: 48px; border-radius: 15px; }
  .process-v2-copy h3 { font-size: 32px; }
  .process-v2-copy p { font-size: 13px; }
  .process-v2-output { margin-top: 32px; }
  .process-v2-result {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 22px 20px;
  }
  .process-v2-result a { grid-column: 1 / -1; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(7,31,38,.12); }
}

@media (max-width: 380px) {
  .process-v2-heading h2 { font-size: 38px; }
  .process-v2-card { padding: 18px; }
  .process-v2-cardtop { margin-bottom: 30px; }
  .process-v2-resultmark { width: 50px; height: 50px; }
}

/* =========================================================
   TESTIMONIAL — MOBILE RESPONSIVE REWORK
   Keeps the desktop composition intact while giving phones a
   compact, overflow-safe, touch-friendly testimonial layout.
   ========================================================= */
@media (max-width: 720px) {
  .testimonial {
    overflow: hidden;
  }

  .testimonial.section-pad {
    padding-block: 72px;
  }

  .testimonial-wrap {
    width: 100%;
    min-width: 0;
    gap: 28px;
  }

  .testimonial-intro,
  .testimonial-shell,
  .testimonial-content,
  .testimonial-slider,
  .testimonial-slide {
    min-width: 0;
    width: 100%;
  }

  .testimonial-intro {
    max-width: none;
  }

  .testimonial-intro h2 {
    margin-top: 14px;
    max-width: 13ch;
    font-size: clamp(34px, 10.6vw, 46px);
    line-height: 1.04;
    letter-spacing: -2px;
    overflow-wrap: anywhere;
  }

  .testimonial-intro p {
    margin-top: 18px;
    max-width: 42rem;
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-shell {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 24px;
    isolation: isolate;
  }

  .testimonial-shell::before {
    width: 260px;
    height: 260px;
    right: -135px;
    top: -118px;
    box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 78px rgba(255,255,255,.014);
  }

  .testimonial-shell::after {
    width: 150px;
    height: 150px;
    left: -85px;
    bottom: -90px;
  }

  .testimonial-topline {
    align-items: center;
    gap: 16px;
  }

  .testimonial-kicker {
    max-width: none;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: .13em;
  }

  .testimonial-dots {
    flex: 0 0 auto;
    gap: 6px;
  }

  .testimonial-dot {
    width: 7px;
    height: 7px;
  }

  .testimonial-dot.active {
    width: 22px;
  }

  .testimonial-content {
    position: relative;
    display: block;
    padding: 42px 0 28px;
  }

  .quote-mark {
    position: absolute;
    top: 18px;
    left: -1px;
    z-index: -1;
    width: auto;
    height: auto;
    font-size: 96px;
    line-height: .72;
    opacity: .92;
    transform: none;
    pointer-events: none;
  }

  .testimonial-slider {
    max-width: none;
  }

  .testimonial-slide blockquote {
    max-width: none;
    padding-top: 25px;
    font-size: clamp(25px, 7.6vw, 34px);
    line-height: 1.2;
    letter-spacing: -1.25px;
    text-wrap: pretty;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .quote-author {
    width: 100%;
    margin-top: 26px;
    gap: 12px;
    align-items: center;
  }

  .quote-author > span {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .quote-author strong {
    font-size: 13px;
    line-height: 1.35;
  }

  .quote-author small {
    max-width: 29ch;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .testimonial-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
  }

  .testimonial-proof {
    min-width: 0;
    max-width: none;
    gap: 9px;
    align-items: center;
  }

  .testimonial-proof span {
    flex: 0 0 auto;
    font-size: 24px;
    letter-spacing: -1px;
  }

  .testimonial-proof p {
    max-width: 20ch;
    font-size: 9px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .slider-controls {
    flex: 0 0 auto;
    gap: 8px;
  }

  .slider-controls button {
    width: 42px;
    height: 42px;
    font-size: 16px;
    touch-action: manipulation;
  }

  .slider-controls span {
    display: none;
  }
}

@media (max-width: 460px) {
  .testimonial.section-pad {
    padding-block: 60px;
  }

  .testimonial-shell {
    padding: 20px 16px 18px;
    border-radius: 21px;
  }

  .testimonial-content {
    padding-top: 38px;
  }

  .testimonial-slide blockquote {
    padding-top: 22px;
    font-size: clamp(23px, 7.35vw, 29px);
    line-height: 1.22;
    letter-spacing: -1px;
  }

  .testimonial-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .testimonial-proof {
    padding-bottom: 2px;
  }

  .testimonial-proof p {
    max-width: 27ch;
  }

  .slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .slider-controls button {
    width: calc(50% - 5px);
    height: 44px;
    border-radius: 13px;
  }
}

@media (max-width: 350px) {
  .testimonial-intro h2 {
    font-size: 31px;
  }

  .testimonial-shell {
    padding-inline: 14px;
  }

  .testimonial-slide blockquote {
    font-size: 22px;
  }

  .quote-author small {
    max-width: 23ch;
  }
}

/* =========================================================
   CLIENT OUTCOMES V2 — VISUAL HIERARCHY + MOBILE REDESIGN
   ========================================================= */
.testimonial.section-pad {
  padding-block: clamp(76px, 9vw, 132px);
  overflow: hidden;
}

.outcomes-v2 {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.outcomes-v2-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
}

.outcomes-v2-head h2 {
  margin-top: 18px;
  max-width: 920px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -4.6px;
}

.outcomes-v2-head h2 em {
  color: #087960;
  font-style: normal;
}

.outcomes-v2-head > p {
  max-width: 470px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.outcomes-v2-grid {
  display: grid;
  grid-template-columns: minmax(220px, .48fr) minmax(0, 1.52fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.outcomes-v2-summary {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.outcome-summary-card,
.outcome-summary-list {
  border: 1px solid rgba(6, 49, 42, .11);
  border-radius: 28px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 20px 60px rgba(15, 54, 46, .07);
}

.outcome-summary-card {
  padding: clamp(26px, 3vw, 40px);
}

.outcome-summary-card--primary {
  color: white;
  background: linear-gradient(145deg, #0a8068 0%, #006853 58%, #004f45 100%);
  border-color: rgba(255,255,255,.15);
}

.outcome-summary-label {
  display: block;
  margin-bottom: 24px;
  color: #c7e9df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.outcome-summary-card strong {
  display: block;
  color: var(--lime);
  font-size: clamp(64px, 6vw, 92px);
  line-height: .8;
  letter-spacing: -6px;
}

.outcome-summary-card p {
  margin-top: 28px;
  max-width: 240px;
  color: #d8ebe5;
  font-size: 14px;
  line-height: 1.55;
}

.outcome-summary-list {
  padding: 8px 24px;
  display: grid;
  align-content: center;
}

.outcome-summary-list > div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(6,49,42,.1);
}

.outcome-summary-list > div:last-child { border-bottom: 0; }
.outcome-summary-list strong {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -1.2px;
}
.outcome-summary-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.outcomes-v2-shell {
  min-height: 600px;
  padding: clamp(28px, 4vw, 56px);
}

.outcomes-v2-shell .testimonial-topline > div:first-child {
  display: grid;
  gap: 8px;
}

.testimonial-topic {
  font-size: 16px;
  color: white;
}

.outcomes-v2-shell .testimonial-content {
  grid-template-columns: 66px minmax(0, 1fr);
  padding-block: clamp(48px, 6vw, 76px) clamp(34px, 4vw, 48px);
}

.outcomes-v2-shell .testimonial-slide blockquote {
  max-width: 860px;
  font-size: clamp(31px, 3.3vw, 52px);
}

.outcomes-v2-footer {
  gap: 20px;
}

.outcomes-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.outcomes-v2-cta span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
}

@media (max-width: 980px) {
  .outcomes-v2-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .outcomes-v2-head > p { max-width: 680px; }

  .outcomes-v2-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-v2-summary {
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: auto;
  }

  .outcome-summary-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 18px;
  }

  .outcome-summary-list > div {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 16px;
    border-bottom: 0;
    border-right: 1px solid rgba(6,49,42,.1);
  }

  .outcome-summary-list > div:last-child { border-right: 0; }
}

@media (max-width: 680px) {
  .testimonial.section-pad { padding-block: 66px; }

  .outcomes-v2 { gap: 30px; }

  .outcomes-v2-head h2 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.01;
    letter-spacing: -2.8px;
  }

  .outcomes-v2-head h2 br { display: none; }

  .outcomes-v2-head > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .outcomes-v2-summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .outcome-summary-card,
  .outcome-summary-list,
  .outcomes-v2-shell {
    border-radius: 22px;
  }

  .outcome-summary-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    align-items: end;
    padding: 25px;
  }

  .outcome-summary-label {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }

  .outcome-summary-card strong {
    font-size: 68px;
    letter-spacing: -5px;
  }

  .outcome-summary-card p {
    margin-top: 0;
    font-size: 12px;
  }

  .outcome-summary-list {
    grid-template-columns: 1fr;
    padding: 6px 20px;
  }

  .outcome-summary-list > div {
    grid-template-columns: 82px 1fr;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(6,49,42,.1);
  }

  .outcomes-v2-shell {
    min-height: auto;
    padding: 24px 20px 20px;
  }

  .outcomes-v2-shell .testimonial-topline {
    align-items: flex-start;
  }

  .testimonial-topic { font-size: 14px; }

  .outcomes-v2-shell .testimonial-content {
    display: block;
    padding: 38px 0 30px;
  }

  .outcomes-v2-shell .quote-mark {
    position: static;
    width: auto;
    height: 52px;
    margin-bottom: 10px;
    font-size: 88px;
    line-height: .8;
    transform: none;
  }

  .outcomes-v2-shell .testimonial-slide blockquote {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.16;
    letter-spacing: -1.45px;
    text-wrap: pretty;
  }

  .outcomes-v2-shell .quote-author {
    margin-top: 28px;
    align-items: flex-start;
  }

  .outcomes-v2-shell .quote-author > span {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .outcomes-v2-shell .quote-author small {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .outcomes-v2-footer {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
  }

  .outcomes-v2-cta {
    justify-content: space-between;
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .outcomes-v2-shell .slider-controls {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 390px) {
  .outcomes-v2-head h2 {
    font-size: 36px;
    letter-spacing: -2.1px;
  }

  .outcome-summary-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .outcome-summary-card p {
    margin-top: 20px;
  }

  .outcomes-v2-shell {
    padding-inline: 17px;
  }

  .outcomes-v2-shell .testimonial-slide blockquote {
    font-size: 26px;
  }
}


/* Client outcomes v3 — removed oversized side metric panel */
.outcomes-v3-grid {
  grid-template-columns: 1fr;
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
}

.outcomes-v3-shell {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.outcomes-v3-impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.outcomes-v3-impact span {
  min-width: 0;
  padding: 17px 22px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.35;
  border-right: 1px solid rgba(255,255,255,.11);
}

.outcomes-v3-impact span:last-child { border-right: 0; }

.outcomes-v3-impact strong {
  display: inline-block;
  margin-right: 7px;
  color: var(--lime);
  font-size: 18px;
  letter-spacing: -.6px;
}

.outcomes-v3-shell .testimonial-content {
  padding-top: clamp(36px, 5vw, 66px);
}

@media (max-width: 680px) {
  .outcomes-v3-grid { display: block; }

  .outcomes-v3-shell {
    min-height: auto;
    border-radius: 24px;
  }

  .outcomes-v3-impact {
    display: flex;
    gap: 8px;
    margin: 0 0 10px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .outcomes-v3-impact::-webkit-scrollbar { display: none; }

  .outcomes-v3-impact span {
    flex: 0 0 auto;
    max-width: 230px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.065);
    font-size: 10px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .outcomes-v3-impact strong {
    margin-right: 5px;
    font-size: 13px;
  }

  .outcomes-v3-shell .testimonial-content {
    padding-top: 27px;
  }
}

@media (max-width: 390px) {
  .outcomes-v3-impact span {
    max-width: 205px;
    padding-inline: 11px;
  }
}

/* =========================================================
   CLIENT OUTCOMES V4 — BALANCED LAYER + MOBILE-FIRST FIT
   ========================================================= */
.testimonial.section-pad {
  padding-block: clamp(72px, 8vw, 112px);
}

.outcomes-v2 {
  gap: clamp(30px, 4vw, 52px);
}

.outcomes-v2-head {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.outcomes-v2-head h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.01;
  letter-spacing: -3.8px;
}

.outcomes-v3-grid {
  max-width: 1120px;
}

.outcomes-v3-shell {
  min-height: 0;
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 67, 55, .18);
}

.outcomes-v3-shell::after {
  width: 430px;
  height: 430px;
  right: -120px;
  top: -210px;
  opacity: .42;
}

.outcomes-v3-impact {
  margin-bottom: 28px;
  border-radius: 15px;
}

.outcomes-v3-impact span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 13px 18px;
  font-size: 11px;
}

.outcomes-v3-impact strong {
  margin: 0;
  font-size: 19px;
  flex: 0 0 auto;
}

.outcomes-v3-shell .testimonial-topline {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.outcomes-v3-shell .testimonial-content {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(40px, 5vw, 64px) 0 clamp(34px, 4vw, 46px);
}

.outcomes-v3-shell .quote-mark {
  font-size: 92px;
  line-height: .82;
}

.outcomes-v3-shell .testimonial-slide blockquote {
  max-width: 820px;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.13;
  letter-spacing: -2.2px;
  text-wrap: balance;
}

.outcomes-v3-shell .quote-author {
  margin-top: 30px;
}

.outcomes-v2-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.outcomes-v2-cta {
  text-decoration: none;
}

.outcomes-v2-cta:hover span,
.outcomes-v2-cta:focus-visible span {
  transform: translate(2px, -2px);
}

.outcomes-v3-shell .slider-controls button {
  width: 46px;
  height: 46px;
}

@media (max-width: 760px) {
  .testimonial.section-pad {
    padding-block: 58px;
  }

  .outcomes-v2 {
    gap: 28px;
  }

  .outcomes-v2-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcomes-v2-head h2 {
    margin-top: 14px;
    font-size: clamp(36px, 10.7vw, 48px);
    line-height: 1.03;
    letter-spacing: -2.4px;
  }

  .outcomes-v2-head > p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.62;
  }

  .outcomes-v3-shell {
    width: 100%;
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .outcomes-v3-shell::after {
    width: 260px;
    height: 260px;
    right: -110px;
    top: -120px;
    opacity: .28;
  }

  .outcomes-v3-impact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .outcomes-v3-impact span {
    min-width: 0;
    max-width: none;
    min-height: 0;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
    white-space: normal;
    font-size: 10px;
    line-height: 1.25;
  }

  .outcomes-v3-impact span:last-child {
    grid-column: 1 / -1;
  }

  .outcomes-v3-impact strong {
    font-size: 15px;
  }

  .outcomes-v3-shell .testimonial-topline {
    gap: 18px;
    padding-bottom: 18px;
  }

  .testimonial-kicker {
    font-size: 9px;
    letter-spacing: .16em;
  }

  .testimonial-topic {
    font-size: 13px;
  }

  .outcomes-v3-shell .testimonial-content {
    display: block;
    padding: 30px 0 26px;
  }

  .outcomes-v3-shell .quote-mark {
    height: 42px;
    margin-bottom: 8px;
    font-size: 70px;
    line-height: .75;
  }

  .outcomes-v3-shell .testimonial-slide blockquote {
    max-width: 100%;
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 1.17;
    letter-spacing: -1.25px;
    text-wrap: pretty;
  }

  .outcomes-v3-shell .quote-author {
    margin-top: 24px;
    gap: 12px;
  }

  .outcomes-v3-shell .quote-author > span {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }

  .outcomes-v3-shell .quote-author strong {
    font-size: 13px;
  }

  .outcomes-v3-shell .quote-author small {
    font-size: 10px;
    line-height: 1.35;
  }

  .outcomes-v2-footer {
    gap: 16px;
    padding-top: 18px;
  }

  .outcomes-v2-cta {
    min-height: 48px;
    padding: 0 0 14px;
    font-size: 12px;
  }

  .outcomes-v3-shell .slider-controls button {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 410px) {
  .outcomes-v2-head h2 {
    font-size: 34px;
    letter-spacing: -1.9px;
  }

  .outcomes-v3-shell {
    padding-inline: 15px;
  }

  .outcomes-v3-impact {
    grid-template-columns: 1fr;
  }

  .outcomes-v3-impact span:last-child {
    grid-column: auto;
  }

  .outcomes-v3-shell .testimonial-topline {
    align-items: flex-start;
  }

  .testimonial-dots {
    padding-top: 5px;
  }

  .outcomes-v3-shell .testimonial-slide blockquote {
    font-size: 25px;
    line-height: 1.18;
  }

  .outcomes-v3-shell .slider-controls span {
    font-size: 11px;
  }
}

/* ===== Practical HR Insights — visual hierarchy redesign ===== */
.insights-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(181,255,54,.09), transparent 26%),
    linear-gradient(180deg, #fbfcf8 0%, #f4f8ef 100%);
}

.insights-v2::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(8,35,42,.07);
  border-radius: 50%;
  left: -280px;
  bottom: -290px;
  pointer-events: none;
}

.insights-v2-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 48px;
}

.insights-v2-title h2 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
}

.insights-v2-title h2 em {
  color: var(--green);
  font-style: normal;
}

.insights-v2-intro {
  max-width: 390px;
  padding-bottom: 7px;
}

.insights-v2-intro p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.insights-v2-all {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 190px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(8,35,42,.28);
  padding-bottom: 8px;
}

.insights-v2-all span { transition: transform .25s ease; }
.insights-v2-all:hover span { transform: translate(3px,-3px); }

.insights-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, .66fr);
  gap: 22px;
  align-items: stretch;
}

.insight-featured {
  min-height: 590px;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  background: #fff;
  border: 1px solid rgba(8,35,42,.11);
  box-shadow: 0 24px 70px rgba(9,40,38,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.insight-featured:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 85px rgba(9,40,38,.13);
}

.insight-featured-art {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(189,255,55,.92), rgba(218,240,159,.9) 44%, rgba(13,120,94,.22)),
    #dff2b8;
}

.insight-featured-art::after {
  content: "";
  position: absolute;
  inset: auto -4% -50% 22%;
  height: 116%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(155deg, #0f8067, #07554a);
  transform: rotate(-8deg);
}

.insight-orbit {
  position: absolute;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  z-index: 2;
}
.orbit-one { width: 310px; height: 310px; right: 8%; top: 10%; }
.orbit-two { width: 210px; height: 210px; right: 14%; top: 26%; }
.insight-core {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  right: 27%;
  top: 38%;
  background: var(--ink);
  z-index: 3;
  transform: rotate(12deg);
  box-shadow: 0 20px 45px rgba(8,35,42,.22);
}

.insight-mini-label {
  position: absolute;
  z-index: 5;
  top: 24px;
  left: 24px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.insight-featured-copy {
  padding: 34px 36px 36px;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.insight-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.insight-featured-copy h3 {
  max-width: 720px;
  margin: 15px 0 14px;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.insight-featured-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.insight-read {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.insight-read span { transition: transform .25s ease; }
.insight-read:hover span { transform: translate(3px,-3px); }

.insights-v2-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.insight-compact {
  min-height: 284px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid rgba(8,35,42,.11);
  border-radius: 26px;
  background: white;
  transition: transform .35s ease, box-shadow .35s ease;
}

.insight-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(9,40,38,.10);
}

.insight-compact-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.art-performance { background: #b8ded5; }
.art-culture { background: #e3d5f4; }

.insight-compact-art span {
  position: absolute;
  display: block;
}

.art-performance span:first-child {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  left: -55px;
  top: 24px;
}
.art-performance span:last-child {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background: var(--ink);
  left: 32px;
  bottom: -72px;
}
.art-culture span:first-child {
  width: 155px;
  height: 155px;
  border-radius: 30px;
  background: rgba(255,255,255,.55);
  transform: rotate(45deg);
  left: -30px;
  top: 35px;
}
.art-culture span:last-child {
  width: 170px;
  height: 170px;
  border-radius: 28px;
  background: #6e4d95;
  transform: rotate(45deg);
  left: 36px;
  bottom: -80px;
}

.insight-compact-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 26px;
}

.insight-compact-copy h3 {
  margin: 18px 0 auto;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.insight-compact-copy > a {
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(8,35,42,.18);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  transition: .25s ease;
}
.insight-compact-copy > a:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translate(2px,-2px);
}

.insights-v2-mobile-action { display: none; }

@media (max-width: 1050px) {
  .insights-v2-head { gap: 40px; }
  .insights-v2-grid { grid-template-columns: 1fr; }
  .insight-featured { min-height: 560px; }
  .insights-v2-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .insight-compact { grid-template-columns: 40% 60%; min-height: 270px; }
}

@media (max-width: 720px) {
  .insights-v2 { padding-block: 76px; }
  .insights-v2-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .insights-v2-title h2 {
    font-size: clamp(39px, 11.5vw, 54px);
    line-height: .98;
  }
  .insights-v2-intro { max-width: none; padding: 0; }
  .insights-v2-intro p { font-size: 15px; margin-bottom: 0; }
  .insights-v2-intro .insights-v2-all { display: none; }
  .insight-featured {
    min-height: 0;
    grid-template-rows: 250px auto;
    border-radius: 24px;
  }
  .insight-featured-art { min-height: 250px; }
  .orbit-one { width: 230px; height: 230px; right: -4%; top: 12%; }
  .orbit-two { width: 150px; height: 150px; right: 7%; top: 31%; }
  .insight-core { width: 62px; height: 62px; right: 25%; top: 40%; border-radius: 19px; }
  .insight-featured-copy { padding: 26px 23px 28px; }
  .insight-featured-copy h3 { font-size: 30px; line-height: 1.08; }
  .insight-featured-copy p { font-size: 14px; margin-bottom: 23px; }
  .insights-v2-stack { grid-template-columns: 1fr; gap: 16px; }
  .insight-compact {
    grid-template-columns: 118px minmax(0,1fr);
    min-height: 190px;
    border-radius: 22px;
  }
  .insight-compact-copy { padding: 22px 20px; }
  .insight-compact-copy h3 { margin-top: 14px; font-size: 21px; }
  .insight-compact-copy > a { width: 39px; height: 39px; }
  .insights-v2-mobile-action { display: block; margin-top: 28px; }
  .insights-v2-mobile-action .insights-v2-all { width: 100%; }
}

@media (max-width: 410px) {
  .insights-v2 { padding-block: 64px; }
  .insights-v2-title h2 { font-size: 39px; }
  .insight-featured { grid-template-rows: 220px auto; }
  .insight-featured-art { min-height: 220px; }
  .insight-mini-label { top: 17px; left: 17px; }
  .insight-featured-copy { padding: 23px 19px 25px; }
  .insight-featured-copy h3 { font-size: 27px; }
  .insight-compact { grid-template-columns: 96px minmax(0,1fr); min-height: 178px; }
  .insight-compact-copy { padding: 19px 16px; }
  .insight-compact-copy h3 { font-size: 19px; }
  .insight-meta { gap: 7px; font-size: 8px; letter-spacing: .07em; }
  .insight-compact-copy > a { width: 36px; height: 36px; }
}

/* ===== Practical HR Insights — proper hierarchy + mobile-first rebuild ===== */
.insights-v3 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 8vw, 132px);
  background:
    radial-gradient(circle at 8% 6%, rgba(185,255,39,.12), transparent 28%),
    radial-gradient(circle at 92% 95%, rgba(0,117,97,.08), transparent 30%),
    #f8faf4;
}
.insights-v3::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(9,31,39,.07);
  border-radius: 50%;
  right: -250px;
  top: -220px;
  pointer-events: none;
}
.insights-v3-wrap { position: relative; z-index: 1; }
.insights-v3-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .58fr);
  align-items: end;
  gap: clamp(44px, 7vw, 110px);
  margin-bottom: clamp(40px, 5vw, 68px);
}
.insights-v3-heading h2 {
  margin: 21px 0 0;
  max-width: 820px;
  color: #081922;
  font-size: clamp(48px, 5.15vw, 82px);
  line-height: .96;
  letter-spacing: -.062em;
}
.insights-v3-heading h2 em {
  color: #08785f;
  font-style: normal;
}
.insights-v3-intro {
  padding-bottom: 7px;
  max-width: 410px;
}
.insights-v3-intro p {
  margin: 0 0 28px;
  color: #61717a;
  font-size: 16px;
  line-height: 1.75;
}
.insights-v3-all,
.insights-v3-mobile-all {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 0 19px 0 22px;
  border: 1px solid rgba(8,25,34,.16);
  border-radius: 999px;
  color: #081922;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.insights-v3-all span,
.insights-v3-mobile-all span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #b9ff27;
  transition: transform .25s ease;
}
.insights-v3-all:hover,
.insights-v3-mobile-all:hover { transform: translateY(-2px); border-color: #08785f; }
.insights-v3-all:hover span,
.insights-v3-mobile-all:hover span { transform: rotate(8deg); }
.insights-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.insight-v3-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8,25,34,.11);
  border-radius: 25px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 55px rgba(21,46,49,.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.insight-v3-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8,120,95,.28);
  box-shadow: 0 28px 75px rgba(21,46,49,.13);
}
.insight-v3-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  min-height: clamp(225px, 21vw, 330px);
  text-decoration: none;
}
.insight-v3-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(255,255,255,.28), transparent 55%);
}
.insight-v3-media--leadership { background: linear-gradient(145deg, #d9ff74 0%, #b9f53e 46%, #7ed98c 100%); }
.insight-v3-media--performance { background: linear-gradient(145deg, #a9e1d6 0%, #66c7b6 48%, #198b78 100%); }
.insight-v3-media--culture { background: linear-gradient(145deg, #e9daf9 0%, #c7ace9 46%, #8c68bd 100%); }
.insight-v3-category {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(8,25,34,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(8px);
  color: #183238;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.insight-v3-index {
  position: absolute;
  right: 22px;
  bottom: 17px;
  z-index: 3;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
}
.insight-v3-shape { position: absolute; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.insight-v3-media--leadership .insight-v3-shape--one {
  width: 74%; height: 100%; right: -17%; bottom: -36%; border-radius: 50% 48% 10% 45%; background: #08785f; transform: rotate(-13deg);
}
.insight-v3-media--leadership .insight-v3-shape--two {
  width: 54%; height: 80%; right: 18%; bottom: -48%; border: 38px solid rgba(255,255,255,.56); border-radius: 50%;
}
.insight-v3-media--performance .insight-v3-shape--one {
  width: 67%; aspect-ratio: 1; right: 8%; bottom: -42%; border: 38px solid rgba(236,255,251,.48); border-radius: 50%;
}
.insight-v3-media--performance .insight-v3-shape--two {
  width: 54%; aspect-ratio: 1; right: 14%; bottom: -29%; border-radius: 50%; background: #081922;
}
.insight-v3-media--culture .insight-v3-shape--one {
  width: 70%; aspect-ratio: 1; right: -10%; bottom: -43%; border: 30px solid rgba(255,255,255,.53); border-radius: 34px; transform: rotate(45deg);
}
.insight-v3-media--culture .insight-v3-shape--two {
  width: 57%; aspect-ratio: 1; right: -2%; bottom: -43%; border-radius: 27px; background: #69439a; transform: rotate(45deg);
}
.insight-v3-card:hover .insight-v3-shape--one { transform: translateY(-6px) rotate(-8deg) scale(1.03); }
.insight-v3-card:hover .insight-v3-media--performance .insight-v3-shape--one { transform: translateY(-8px) scale(1.03); }
.insight-v3-card:hover .insight-v3-media--culture .insight-v3-shape--one { transform: translateY(-8px) rotate(45deg) scale(1.03); }
.insight-v3-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(25px, 2.2vw, 34px);
}
.insight-v3-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #75838a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.insight-v3-meta i { width: 4px; height: 4px; border-radius: 50%; background: #b9ff27; }
.insight-v3-body h3 {
  margin: 0;
  color: #081922;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.insight-v3-body h3 a { color: inherit; text-decoration: none; }
.insight-v3-body p {
  margin: 18px 0 27px;
  color: #66757d;
  font-size: 14px;
  line-height: 1.68;
}
.insight-v3-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid rgba(8,25,34,.1);
  color: #081922;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.insight-v3-link span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8,25,34,.12);
  border-radius: 50%;
  transition: background .25s ease, transform .25s ease;
}
.insight-v3-link:hover span { background: #b9ff27; transform: translate(2px,-2px); }
.insights-v3-mobile-all { display: none; }

@media (max-width: 1024px) {
  .insights-v3-head { grid-template-columns: 1fr; gap: 25px; }
  .insights-v3-intro { max-width: 620px; padding: 0; }
  .insights-v3-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .insight-v3-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
  .insight-v3-card--featured .insight-v3-media { min-height: 400px; }
  .insight-v3-card--featured .insight-v3-body { justify-content: center; }
}

@media (max-width: 720px) {
  .insights-v3 { padding-block: 72px; }
  .insights-v3::before { display: none; }
  .insights-v3-head { margin-bottom: 30px; gap: 20px; }
  .insights-v3-heading h2 { margin-top: 15px; font-size: clamp(39px, 11.3vw, 53px); line-height: .99; letter-spacing: -.055em; }
  .insights-v3-intro p { margin-bottom: 0; font-size: 14px; line-height: 1.65; }
  .insights-v3-intro .insights-v3-all { display: none; }
  .insights-v3-grid { grid-template-columns: 1fr; gap: 17px; }
  .insight-v3-card--featured { grid-column: auto; display: flex; }
  .insight-v3-card,
  .insight-v3-card--featured { border-radius: 21px; }
  .insight-v3-media,
  .insight-v3-card--featured .insight-v3-media { min-height: 232px; }
  .insight-v3-category { top: 17px; left: 17px; }
  .insight-v3-index { right: 17px; bottom: 14px; }
  .insight-v3-body { padding: 23px 20px 22px; }
  .insight-v3-meta { margin-bottom: 13px; font-size: 9px; }
  .insight-v3-body h3 { font-size: clamp(25px, 7.4vw, 32px); line-height: 1.08; }
  .insight-v3-body p { margin: 15px 0 22px; font-size: 13.5px; }
  .insight-v3-link { min-height: 48px; padding-top: 14px; }
  .insights-v3-mobile-all { display: flex; width: 100%; margin-top: 24px; }
}

@media (max-width: 390px) {
  .insights-v3 { padding-block: 62px; }
  .insights-v3-heading h2 { font-size: 37px; }
  .insight-v3-media,
  .insight-v3-card--featured .insight-v3-media { min-height: 210px; }
  .insight-v3-body { padding-inline: 18px; }
  .insight-v3-body h3 { font-size: 25px; }
  .insight-v3-body p { font-size: 13px; }
}

/* Clean section flow after removing Practical HR Insights */
.cta.after-outcomes {
  margin-top: 0;
}

@media (max-width: 760px) {
  .cta.after-outcomes {
    padding-top: clamp(64px, 16vw, 88px);
  }
}

/* ===== Contact CTA — full visual hierarchy redesign ===== */
.contact-v2 {
  padding-top: clamp(54px, 7vw, 92px);
}

.contact-v2-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: clamp(42px, 6vw, 88px);
  min-height: 650px;
  padding: clamp(52px, 6vw, 88px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 12%, rgba(21,132,105,.2), transparent 30%),
    radial-gradient(circle at 94% 88%, rgba(183,255,50,.07), transparent 28%),
    linear-gradient(135deg, #071b24 0%, #0a2029 52%, #071821 100%);
  box-shadow: 0 32px 90px rgba(7,26,34,.16);
}

.contact-v2-art { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.contact-v2-art span { position: absolute; border: 1px solid rgba(255,255,255,.065); border-radius: 50%; }
.contact-v2-art span:nth-child(1) { width: 540px; height: 540px; right: -210px; top: -280px; }
.contact-v2-art span:nth-child(2) { width: 360px; height: 360px; right: -85px; top: -145px; }
.contact-v2-art span:nth-child(3) { width: 120px; height: 120px; right: 96px; top: 58px; border: 0; background: rgba(183,255,50,.085); }
.contact-v2-art i { position: absolute; width: 220px; height: 220px; left: -100px; bottom: -130px; border-radius: 50%; background: rgba(12,126,101,.15); filter: blur(2px); }

.contact-v2-main { position: relative; z-index: 2; align-self: center; }
.contact-v2-eyebrow { color: #b9ff32; }
.contact-v2-eyebrow span { background: #b9ff32; }
.contact-v2 h2 {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(50px, 5.3vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.contact-v2 h2 em { color: #b9ff32; font-style: normal; }
.contact-v2-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #aebdc3;
  font-size: 16px;
  line-height: 1.72;
}
.contact-v2-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.contact-v2-primary { min-height: 56px; padding: 0 24px; background: #b9ff32; color: #071b24; border: 1px solid #b9ff32; }
.contact-v2-primary:hover { background: #fff; border-color: #fff; }
.contact-v2-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: .25s ease;
}
.contact-v2-secondary:hover { border-color: rgba(183,255,50,.65); background: rgba(183,255,50,.06); }
.contact-v2-secondary i { color: #b9ff32; font-style: normal; }

.contact-v2-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-v2-next > div { display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 12px; padding-right: 18px; }
.contact-v2-next > div + div { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.1); }
.contact-v2-next b { color: #b9ff32; font-size: 10px; letter-spacing: .12em; }
.contact-v2-next span { display: flex; flex-direction: column; gap: 7px; }
.contact-v2-next strong { font-size: 12px; line-height: 1.35; }
.contact-v2-next small { color: #81939a; font-size: 10.5px; line-height: 1.5; }

.contact-v2-panel {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.contact-v2-panel-head { padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-v2-panel-head > span { display: block; margin-bottom: 14px; color: #b9ff32; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-v2-panel-head strong { display: block; max-width: 330px; font-size: 25px; line-height: 1.15; letter-spacing: -.035em; }
.contact-v2-panel-head p { margin: 12px 0 0; color: #8ea0a7; font-size: 12px; line-height: 1.55; }
.contact-v2-list { display: flex; flex-direction: column; margin-top: 12px; }
.contact-v2-list > * {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 74px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-v2-list > *:last-child { border-bottom: 0; }
.contact-v2-list a { transition: .25s ease; }
.contact-v2-list a:hover { transform: translateX(4px); }
.contact-v2-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(183,255,50,.1); color: #b9ff32; font-size: 15px; font-weight: 800; }
.contact-v2-list span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.contact-v2-list small { color: #72868e; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-v2-list strong { font-size: 12.5px; line-height: 1.4; overflow-wrap: anywhere; }
.contact-v2-list i { color: #b9ff32; font-style: normal; }
.contact-v2-fit { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.contact-v2-fit > small { color: #72868e; font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-v2-fit > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.contact-v2-fit span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #b8c4c8; font-size: 10px; }
.contact-v2-social { display: flex; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.contact-v2-social a { color: #fff; font-size: 11px; font-weight: 750; text-decoration: none; }
.contact-v2-social a:hover { color: #b9ff32; }

@media (max-width: 1080px) {
  .contact-v2-shell { grid-template-columns: 1fr; min-height: 0; }
  .contact-v2-main { max-width: 820px; }
  .contact-v2-panel { min-height: auto; }
  .contact-v2-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .contact-v2-fit { margin-top: 22px; }
}

@media (max-width: 760px) {
  .contact-v2 { padding-top: 64px; }
  .contact-v2-shell {
    width: calc(100% - 24px);
    padding: 34px 20px 20px;
    gap: 34px;
    border-radius: 26px;
  }
  .contact-v2-art span:nth-child(1) { width: 360px; height: 360px; right: -230px; top: -170px; }
  .contact-v2-art span:nth-child(2) { width: 230px; height: 230px; right: -125px; top: -75px; }
  .contact-v2-art span:nth-child(3) { width: 72px; height: 72px; right: 18px; top: 34px; }
  .contact-v2 h2 { margin-top: 17px; font-size: clamp(39px, 11vw, 54px); line-height: 1.01; letter-spacing: -.055em; }
  .contact-v2-lead { margin-top: 20px; font-size: 14px; line-height: 1.65; }
  .contact-v2-actions { display: grid; grid-template-columns: 1fr; margin-top: 25px; }
  .contact-v2-primary, .contact-v2-secondary { width: 100%; min-height: 54px; }
  .contact-v2-secondary { justify-content: space-between; }
  .contact-v2-next { grid-template-columns: 1fr; gap: 0; margin-top: 34px; padding-top: 8px; }
  .contact-v2-next > div { min-height: 86px; padding: 20px 0; grid-template-columns: 32px minmax(0,1fr); }
  .contact-v2-next > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .contact-v2-next strong { font-size: 13px; }
  .contact-v2-next small { font-size: 11px; }
  .contact-v2-panel { padding: 24px 18px 20px; border-radius: 22px; }
  .contact-v2-panel-head strong { font-size: 23px; }
  .contact-v2-list { display: flex; }
  .contact-v2-list > * { grid-template-columns: 40px minmax(0,1fr) auto; min-height: 72px; }
  .contact-v2-list > div { grid-template-columns: 40px minmax(0,1fr); }
  .contact-v2-social { flex-direction: column; gap: 13px; }
}

@media (max-width: 390px) {
  .contact-v2-shell { width: calc(100% - 16px); padding-inline: 16px; }
  .contact-v2 h2 { font-size: 36px; }
  .contact-v2-panel { padding-inline: 15px; }
  .contact-v2-list strong { font-size: 11.5px; }
  .contact-v2-icon { width: 36px; height: 36px; }
}

/* ===== Contact CTA — mobile responsive refinement ===== */
@media (max-width: 760px) {
  .contact-v2.section-pad {
    padding-block: 56px 68px;
    overflow: clip;
  }

  .contact-v2-shell {
    width: calc(100% - 20px);
    max-width: 620px;
    margin-inline: auto;
    padding: 28px 16px 16px;
    gap: 26px;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(7,26,34,.14);
  }

  .contact-v2-art span:nth-child(1),
  .contact-v2-art span:nth-child(2) {
    opacity: .55;
  }

  .contact-v2-art span:nth-child(3) {
    width: 54px;
    height: 54px;
    right: 18px;
    top: 24px;
  }

  .contact-v2-art i {
    width: 145px;
    height: 145px;
    left: -82px;
    bottom: -82px;
    opacity: .65;
  }

  .contact-v2-main {
    min-width: 0;
  }

  .contact-v2-eyebrow {
    gap: 8px;
    font-size: 10px;
    letter-spacing: .13em;
  }

  .contact-v2 h2 {
    max-width: 12ch;
    margin-top: 15px;
    font-size: clamp(34px, 10.2vw, 48px);
    line-height: 1.02;
    letter-spacing: -.048em;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .contact-v2-lead {
    max-width: 46ch;
    margin-top: 18px;
    font-size: 13.5px;
    line-height: 1.62;
  }

  .contact-v2-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .contact-v2-primary,
  .contact-v2-secondary {
    min-height: 50px;
    padding-inline: 17px;
    border-radius: 16px;
    font-size: 12.5px;
  }

  .contact-v2-primary {
    justify-content: space-between;
  }

  .contact-v2-next {
    gap: 10px;
    margin-top: 26px;
    padding-top: 0;
    border-top: 0;
  }

  .contact-v2-next > div,
  .contact-v2-next > div + div {
    min-height: 0;
    padding: 15px;
    grid-template-columns: 28px minmax(0,1fr);
    gap: 10px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
  }

  .contact-v2-next b {
    padding-top: 2px;
    font-size: 9px;
  }

  .contact-v2-next span {
    gap: 5px;
  }

  .contact-v2-next strong {
    font-size: 12.5px;
  }

  .contact-v2-next small {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .contact-v2-panel {
    min-width: 0;
    padding: 20px 14px 15px;
    border-radius: 19px;
    backdrop-filter: none;
  }

  .contact-v2-panel-head {
    padding: 0 2px 18px;
  }

  .contact-v2-panel-head > span {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .contact-v2-panel-head strong {
    max-width: 14ch;
    font-size: 21px;
    line-height: 1.12;
  }

  .contact-v2-panel-head p {
    margin-top: 9px;
    font-size: 11px;
  }

  .contact-v2-list {
    margin-top: 4px;
  }

  .contact-v2-list > *,
  .contact-v2-list > div {
    grid-template-columns: 36px minmax(0,1fr) auto;
    gap: 10px;
    min-height: 64px;
  }

  .contact-v2-list > div {
    grid-template-columns: 36px minmax(0,1fr);
  }

  .contact-v2-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 13px;
  }

  .contact-v2-list small {
    font-size: 8px;
  }

  .contact-v2-list strong {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .contact-v2-fit {
    margin-top: 10px;
    padding-top: 17px;
  }

  .contact-v2-fit > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 7px;
    margin-top: 10px;
  }

  .contact-v2-fit span {
    padding: 8px 7px;
    text-align: center;
    font-size: 9.5px;
  }

  .contact-v2-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin-top: 17px;
    padding-top: 14px;
  }

  .contact-v2-social a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    font-size: 10.5px;
  }
}

@media (max-width: 420px) {
  .contact-v2.section-pad {
    padding-block: 48px 58px;
  }

  .contact-v2-shell {
    width: calc(100% - 14px);
    padding: 24px 13px 13px;
    gap: 22px;
    border-radius: 21px;
  }

  .contact-v2 h2 {
    max-width: 11ch;
    font-size: clamp(31px, 9.5vw, 38px);
    letter-spacing: -.042em;
  }

  .contact-v2-lead {
    font-size: 12.75px;
  }

  .contact-v2-primary,
  .contact-v2-secondary {
    min-height: 48px;
    font-size: 12px;
  }

  .contact-v2-next > div,
  .contact-v2-next > div + div {
    padding: 13px 12px;
  }

  .contact-v2-panel {
    padding-inline: 12px;
  }

  .contact-v2-panel-head strong {
    font-size: 19px;
  }

  .contact-v2-list > *,
  .contact-v2-list > div {
    grid-template-columns: 32px minmax(0,1fr) auto;
    gap: 9px;
  }

  .contact-v2-list > div {
    grid-template-columns: 32px minmax(0,1fr);
  }

  .contact-v2-icon {
    width: 31px;
    height: 31px;
    font-size: 12px;
  }

  .contact-v2-list strong {
    font-size: 10.75px;
  }
}

/* ===== Footer v2 — premium visual hierarchy redesign ===== */
.site-footer-v2 {
  position: relative;
  overflow: hidden;
  padding: 34px 0 26px;
  background: #071a22;
  color: #fff;
}
.site-footer-v2::before,
.site-footer-v2::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.site-footer-v2::before {
  width: 520px;
  height: 520px;
  right: -245px;
  top: -310px;
  border: 1px solid rgba(181,255,54,.12);
  box-shadow: 0 0 0 62px rgba(181,255,54,.035), 0 0 0 124px rgba(181,255,54,.02);
}
.site-footer-v2::after {
  width: 280px;
  height: 280px;
  left: -180px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(15,128,103,.34), transparent 68%);
}
.footer-v2-shell {
  position: relative;
  z-index: 1;
}
.footer-v2-top {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(520px, 1.35fr);
  gap: clamp(54px, 7vw, 110px);
  padding: clamp(48px, 6vw, 82px) 0 clamp(42px, 5vw, 68px);
}
.footer-v2-brand-block {
  max-width: 520px;
}
.footer-v2-brand {
  display: inline-flex;
  margin: 0 0 30px;
}
.footer-v2-brand .brand-symbol {
  width: 58px;
  height: auto;
}
.footer-v2-brand .brand-name {
  color: #fff;
}
.footer-v2-brand .brand-tagline {
  color: rgba(255,255,255,.58);
}
.footer-v2-statement {
  max-width: 450px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.045em;
}
.footer-v2-statement strong {
  color: var(--lime);
  font-weight: inherit;
}
.footer-v2-copy {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.7;
}
.footer-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.footer-v2-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.footer-v2-actions a:hover { transform: translateY(-2px); }
.footer-v2-primary {
  gap: 20px;
  background: var(--lime);
  color: #071a22;
}
.footer-v2-primary span { font-size: 17px; }
.footer-v2-secondary {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.footer-v2-secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.footer-v2-links {
  display: grid;
  grid-template-columns: .8fr 1.05fr 1.25fr;
  gap: clamp(28px, 4vw, 58px);
  align-content: start;
  padding-top: 8px;
}
.footer-v2-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}
.footer-v2-label {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.footer-v2-column > a {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.footer-v2-column > a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-v2-contact { gap: 16px; }
.footer-v2-contact > a,
.footer-v2-contact > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.footer-v2-contact small {
  color: rgba(255,255,255,.38);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-v2-contact strong {
  max-width: 100%;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.footer-v2-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-v2-mid > p {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-v2-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.footer-v2-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  line-height: 1;
}
.footer-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
}
.footer-v2-bottom > div { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-v2-dot { color: var(--lime); }
.footer-v2-legal { justify-content: flex-end; gap: 20px !important; }
.footer-v2-legal a {
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color .25s ease;
}
.footer-v2-legal a:hover { color: #fff; }

@media (max-width: 980px) {
  .footer-v2-top {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .footer-v2-brand-block { max-width: 650px; }
  .footer-v2-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .site-footer-v2 { padding: 18px 0 22px; }
  .footer-v2-top { padding: 42px 0 38px; gap: 42px; }
  .footer-v2-brand { margin-bottom: 24px; }
  .footer-v2-brand .brand-symbol { width: 52px; }
  .footer-v2-statement { font-size: clamp(34px, 11vw, 45px); max-width: 360px; }
  .footer-v2-copy { font-size: 13px; line-height: 1.65; }
  .footer-v2-actions { display: grid; grid-template-columns: 1fr; }
  .footer-v2-actions a { width: 100%; min-height: 52px; }
  .footer-v2-links { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-v2-contact { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-v2-contact .footer-v2-label { grid-column: 1 / -1; }
  .footer-v2-mid { align-items: flex-start; flex-direction: column; }
  .footer-v2-tags { justify-content: flex-start; }
  .footer-v2-bottom { align-items: flex-start; flex-direction: column; }
  .footer-v2-legal { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .footer-v2-top { padding-top: 34px; }
  .footer-v2-links { grid-template-columns: 1fr; gap: 32px; }
  .footer-v2-contact { grid-column: auto; grid-template-columns: 1fr; }
  .footer-v2-contact .footer-v2-label { grid-column: auto; }
  .footer-v2-tags { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .footer-v2-tags span { text-align: center; }
  .footer-v2-bottom > div:first-child { align-items: flex-start; flex-direction: column; gap: 6px; }
  .footer-v2-dot { display: none; }
  .footer-v2-legal { gap: 14px !important; }
}

/* =========================================================
   FLOATING TOP NAVIGATION — consolidated final fix
   ========================================================= */
:root {
  --nav-height: 76px;
  --nav-inline-gap: clamp(14px, 2vw, 28px);
}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 1000;
  padding: 0 16px;
  pointer-events: none;
  background: transparent;
  border: 0;
  transition: inset .28s ease, padding .28s ease;
}

.site-header.scrolled {
  inset: 8px 0 auto;
  padding-inline: 12px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.site-header .nav-wrap {
  width: min(1240px, 100%);
  height: var(--nav-height);
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  gap: var(--nav-inline-gap);
  border: 1px solid rgba(11, 23, 32, .09);
  border-radius: 24px;
  background: rgba(251, 250, 247, .90);
  box-shadow: 0 12px 40px rgba(8, 25, 33, .08);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  pointer-events: auto;
  transition: height .28s ease, border-radius .28s ease, box-shadow .28s ease,
              background .28s ease, padding .28s ease;
}

.site-header.scrolled .nav-wrap {
  height: 68px;
  border-radius: 21px;
  background: rgba(251, 250, 247, .96);
  box-shadow: 0 14px 46px rgba(8, 25, 33, .14);
}

.site-header .brand-lockup {
  min-width: 174px;
  height: auto;
  gap: 9px;
}

.site-header .brand-symbol,
.site-header.scrolled .brand-symbol {
  width: 46px;
  height: 37px;
}

.site-header .brand-name,
.site-header.scrolled .brand-name {
  font-size: 19px;
  line-height: .95;
}

.site-header .brand-tagline {
  margin-top: 4px;
  font-size: 6.8px;
  letter-spacing: .18em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 32px);
  min-width: 0;
}

.site-nav a {
  padding: 11px 0;
  font-size: 13.5px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a::after {
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.site-nav a.active {
  color: var(--green);
}

.site-nav a.active::after {
  right: 0;
}

.site-header .nav-cta {
  min-height: 52px;
  flex: 0 0 auto;
  padding-inline: 20px;
  gap: 12px;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(11, 23, 32, .10);
  border-radius: 15px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 4;
}

.menu-toggle span {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .28s ease, top .28s ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

@media (max-width: 1120px) {
  .site-header .nav-wrap { gap: 18px; }
  .site-header .brand-lockup { min-width: 156px; }
  .site-header .brand-symbol,
  .site-header.scrolled .brand-symbol { width: 42px; height: 34px; }
  .site-header .brand-name,
  .site-header.scrolled .brand-name { font-size: 18px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .site-header .nav-cta { min-height: 48px; padding-inline: 17px; font-size: 13px; }
}

@media (max-width: 920px) {
  :root { --nav-height: 68px; }

  .site-header,
  .site-header.scrolled {
    inset: 8px 0 auto;
    padding-inline: 10px;
  }

  .site-header .nav-wrap,
  .site-header.scrolled .nav-wrap {
    position: relative;
    height: 68px;
    padding: 7px 8px 7px 14px;
    border-radius: 20px;
  }

  .site-header .brand-lockup { min-width: 0; margin-right: auto; }
  .site-header .brand-symbol,
  .site-header.scrolled .brand-symbol { width: 40px; height: 32px; }
  .site-header .brand-name,
  .site-header.scrolled .brand-name { font-size: 17px; }
  .site-header .brand-tagline { font-size: 6px; }

  .site-header .nav-cta { display: none; }
  .menu-toggle { display: flex; margin-left: 0; }

  .site-nav,
  .site-nav.open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 3;
    margin: 0;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 20px;
    background: rgba(11, 23, 32, .985);
    box-shadow: 0 24px 60px rgba(8, 25, 33, .24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.985);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav.open a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 13px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    color: var(--ink);
    background: var(--lime);
  }

  .site-nav a::after { display: none; }

  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 15, 22, .28);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  body.nav-open .site-header { z-index: 1001; }
}

@media (max-width: 480px) {
  .site-header,
  .site-header.scrolled { padding-inline: 7px; }

  .site-header .nav-wrap,
  .site-header.scrolled .nav-wrap {
    height: 64px;
    padding: 6px 7px 6px 11px;
    border-radius: 18px;
  }

  .site-header .brand-lockup { gap: 6px; }
  .site-header .brand-symbol,
  .site-header.scrolled .brand-symbol { width: 36px; height: 29px; }
  .site-header .brand-name,
  .site-header.scrolled .brand-name { font-size: 15.5px; letter-spacing: .045em; }
  .site-header .brand-tagline { margin-top: 3px; font-size: 5.4px; letter-spacing: .14em; }
  .menu-toggle { width: 43px; height: 43px; border-radius: 14px; }
  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:last-child { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child { top: 20px; }
  .site-nav, .site-nav.open { top: calc(100% + 8px); border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .nav-wrap,
  .site-nav,
  .menu-toggle span { transition: none !important; }
}

/* =========================================================
   BACK TO TOP — booking page stable control
   ========================================================= */
.back-top {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right));
  bottom: calc(94px + env(safe-area-inset-bottom));
  z-index: 5000;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #ffffff;
  background: #0c1a24;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(3, 18, 27, .28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease,
              background-color .2s ease, border-color .2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.back-top::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid #b8ff27;
  border-radius: inherit;
  pointer-events: none;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  color: #07141d;
  background: #b8ff27;
  border-color: #b8ff27;
}

.back-top:active { transform: scale(.94); }

.back-top:focus-visible {
  outline: 3px solid rgba(184, 255, 39, .42);
  outline-offset: 5px;
}

.back-top__icon {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

/* The old progress SVG caused an uneven/mobile clipped ring. */
.back-top__progress { display: none; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 640px) {
  .back-top {
    right: calc(14px + env(safe-area-inset-right));
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }
  .back-top__icon { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .back-top { transition: none; }
}



/* =========================================================
   FOOTER V3 — COMPLETE VISUAL HIERARCHY REDESIGN
   ========================================================= */
.site-footer-v3{
  position:relative;
  overflow:hidden;
  padding:clamp(24px,4vw,56px) 0 0;
  color:#f7fbfa;
  background:
    radial-gradient(circle at 83% 8%,rgba(166,255,42,.11),transparent 25%),
    radial-gradient(circle at 12% 88%,rgba(10,129,102,.2),transparent 30%),
    #071720;
}
.site-footer-v3::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.22;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,black,transparent 78%);
}
.footer-v3-shell{position:relative;z-index:1}
.footer-v3-hero{
  display:grid;grid-template-columns:minmax(0,1.25fr) minmax(330px,.75fr);gap:clamp(36px,6vw,96px);
  padding:clamp(42px,6vw,84px);border:1px solid rgba(255,255,255,.1);border-radius:36px;
  background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:0 30px 90px rgba(0,0,0,.28);backdrop-filter:blur(12px);
}
.footer-v3-brand{display:inline-flex;margin-bottom:clamp(34px,5vw,62px);color:#fff;text-decoration:none}
.footer-v3-brand .brand-name{color:#fff}.footer-v3-brand .brand-tagline{color:rgba(255,255,255,.62)}
.footer-v3-kicker{display:flex;align-items:center;gap:12px;margin-bottom:20px;color:#b7ff32;font-size:11px;font-weight:800;letter-spacing:.17em;text-transform:uppercase}
.footer-v3-kicker span{width:26px;height:2px;background:#b7ff32}
.footer-v3-brand-area h2{max-width:790px;margin:0;font-size:clamp(42px,5.3vw,78px);line-height:.97;letter-spacing:-.055em;color:#fff}
.footer-v3-brand-area h2 em{display:block;color:#b7ff32;font-style:normal}
.footer-v3-brand-area>p{max-width:680px;margin:28px 0 0;color:#9eb0b7;font-size:clamp(15px,1.25vw,18px);line-height:1.75}
.footer-v3-actions{display:flex;align-items:stretch;gap:14px;margin-top:36px;flex-wrap:wrap}
.footer-v3-primary{display:inline-flex;align-items:center;justify-content:space-between;gap:32px;min-height:58px;padding:0 17px 0 24px;border-radius:999px;background:#b7ff32;color:#081820;text-decoration:none;font-weight:800;transition:.25s ease}
.footer-v3-primary i{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#081820;color:#fff;font-style:normal}
.footer-v3-primary:hover{transform:translateY(-3px);box-shadow:0 14px 35px rgba(183,255,50,.2)}
.footer-v3-call{display:flex;flex-direction:column;justify-content:center;min-height:58px;padding:10px 22px;border:1px solid rgba(255,255,255,.15);border-radius:999px;color:#fff;text-decoration:none}
.footer-v3-call small{color:#7f969f;font-size:10px;text-transform:uppercase;letter-spacing:.13em}.footer-v3-call strong{margin-top:2px;font-size:14px}
.footer-v3-contact-card{align-self:end;padding:clamp(26px,3vw,38px);border-radius:28px;background:#f5f8f4;color:#081820;box-shadow:0 20px 60px rgba(0,0,0,.22)}
.footer-v3-card-head{padding-bottom:24px;border-bottom:1px solid #dbe3df}.footer-v3-card-head span{display:block;color:#087c65;font-size:10px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.footer-v3-card-head strong{display:block;margin-top:10px;font-size:clamp(22px,2vw,30px);line-height:1.12;letter-spacing:-.035em}
.footer-v3-contact-card>a,.footer-v3-contact-card>div:not(.footer-v3-card-head):not(.footer-v3-socials){position:relative;display:flex;flex-direction:column;padding:18px 38px 18px 0;border-bottom:1px solid #dbe3df;color:#081820;text-decoration:none}
.footer-v3-contact-card small{color:#6c7d82;font-size:10px;letter-spacing:.12em;text-transform:uppercase}.footer-v3-contact-card strong{margin-top:5px;font-size:14px;line-height:1.45;overflow-wrap:anywhere}.footer-v3-contact-card>a>i{position:absolute;right:0;top:50%;transform:translateY(-50%);font-style:normal}
.footer-v3-socials{display:flex;gap:8px;padding-top:20px}.footer-v3-socials a{flex:1;padding:13px 14px;border-radius:999px;background:#e8efeb;color:#081820;text-align:center;text-decoration:none;font-size:12px;font-weight:800}
.footer-v3-directory{display:grid;grid-template-columns:.72fr 1.15fr 1fr;gap:clamp(28px,5vw,80px);padding:clamp(44px,6vw,74px) clamp(6px,1vw,14px)}
.footer-v3-column{display:flex;flex-direction:column;align-items:flex-start;gap:13px}.footer-v3-label{margin-bottom:8px;color:#738a93;font-size:10px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.footer-v3-column a{position:relative;color:#eef5f3;text-decoration:none;font-size:15px;line-height:1.45;transition:.2s ease}.footer-v3-column a:hover{color:#b7ff32;transform:translateX(4px)}
.footer-v3-services a{display:grid;grid-template-columns:28px 1fr;gap:10px}.footer-v3-services a span{color:#577079;font-size:10px;padding-top:4px}
.footer-v3-fit p{max-width:340px;margin:0 0 7px;color:#8fa3aa;line-height:1.65}.footer-v3-tags{display:flex;flex-wrap:wrap;gap:8px}.footer-v3-tags span{padding:8px 11px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:#bdc9cc;font-size:11px}
.footer-v3-bottom{display:flex;justify-content:space-between;align-items:center;gap:28px;padding:25px 4px;border-top:1px solid rgba(255,255,255,.09);color:#70858d;font-size:11px}
.footer-v3-signoff{display:flex;align-items:center;gap:16px}.footer-v3-signoff strong{color:#f2f7f5;font-size:13px}.footer-v3-meta{display:flex;align-items:center;justify-content:flex-end;gap:18px;flex-wrap:wrap}.footer-v3-meta a{color:#93a6ac;text-decoration:none}.footer-v3-meta a:hover{color:#b7ff32}.footer-v3-top{padding-left:18px;border-left:1px solid rgba(255,255,255,.13)}
@media(max-width:980px){
  .footer-v3-hero{grid-template-columns:1fr;padding:clamp(34px,6vw,60px)}
  .footer-v3-contact-card{width:min(100%,620px);align-self:auto}
  .footer-v3-directory{grid-template-columns:1fr 1fr}.footer-v3-fit{grid-column:1/-1}
}
@media(max-width:640px){
  .site-footer-v3{padding-top:14px}
  .footer-v3-hero{gap:34px;padding:28px 20px;border-radius:24px}
  .footer-v3-brand{margin-bottom:34px}.footer-v3-brand-area h2{font-size:clamp(38px,12vw,52px);line-height:1.01}.footer-v3-brand-area>p{margin-top:20px;font-size:14px;line-height:1.65}
  .footer-v3-actions{display:grid;grid-template-columns:1fr;margin-top:26px}.footer-v3-primary{width:100%;min-height:56px}.footer-v3-call{width:100%;border-radius:18px;padding:12px 18px}
  .footer-v3-contact-card{padding:23px 18px;border-radius:22px}.footer-v3-socials{display:grid;grid-template-columns:1fr 1fr}
  .footer-v3-directory{grid-template-columns:1fr;gap:34px;padding:42px 4px}.footer-v3-fit{grid-column:auto}.footer-v3-column{gap:11px}.footer-v3-column a{font-size:14px}
  .footer-v3-bottom{align-items:flex-start;flex-direction:column;padding:22px 4px 30px}.footer-v3-signoff{align-items:flex-start;flex-direction:column;gap:6px}.footer-v3-meta{justify-content:flex-start;gap:12px 16px}.footer-v3-top{padding-left:0;border-left:0}
}
@media(max-width:370px){
  .footer-v3-hero{padding:25px 16px}.footer-v3-brand-area h2{font-size:36px}.footer-v3-socials{grid-template-columns:1fr}.footer-v3-contact-card strong{font-size:13px}
}

/* =========================================================
   FOOTER V3.1 — REFINED VISUAL HIERARCHY
   Keeps the approved direction while improving balance,
   reading order, CTA priority and responsive behaviour.
   ========================================================= */
.site-footer-v3{
  padding-top:clamp(18px,3vw,38px);
  background:
    radial-gradient(circle at 91% 4%,rgba(183,255,50,.10),transparent 23%),
    radial-gradient(circle at 4% 88%,rgba(15,135,108,.20),transparent 28%),
    linear-gradient(145deg,#061922 0%,#071720 48%,#06151d 100%);
}
.site-footer-v3::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-250px;
  top:-265px;
  border:1px solid rgba(183,255,50,.10);
  border-radius:50%;
  box-shadow:0 0 0 68px rgba(183,255,50,.035),0 0 0 136px rgba(183,255,50,.018);
  pointer-events:none;
}
.footer-v3-shell{max-width:1240px}
.footer-v3-hero{
  grid-template-columns:minmax(0,1.32fr) minmax(340px,.68fr);
  align-items:stretch;
  gap:clamp(42px,6vw,86px);
  padding:clamp(46px,6vw,76px);
  border-radius:32px;
  background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018) 70%);
}
.footer-v3-brand-area{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}
.footer-v3-brand{
  margin-bottom:clamp(30px,4vw,48px);
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.footer-v3-brand .brand-symbol{width:66px;height:auto}
.footer-v3-brand .brand-name{font-size:24px;line-height:1}
.footer-v3-brand .brand-tagline{margin-top:4px;letter-spacing:.17em}
.footer-v3-kicker{
  margin-bottom:16px;
  color:#c0ff43;
  font-size:10px;
  letter-spacing:.19em;
}
.footer-v3-brand-area h2{
  max-width:720px;
  font-size:clamp(46px,5vw,70px);
  line-height:.98;
  text-wrap:balance;
}
.footer-v3-brand-area h2 em{
  position:relative;
  width:max-content;
  max-width:100%;
}
.footer-v3-brand-area h2 em::after{
  content:"";
  display:block;
  width:72px;
  height:3px;
  margin-top:17px;
  border-radius:999px;
  background:#b7ff32;
}
.footer-v3-brand-area>p{
  max-width:610px;
  margin-top:24px;
  color:#a6b7bd;
  font-size:16px;
  line-height:1.72;
}
.footer-v3-actions{margin-top:32px;gap:12px}
.footer-v3-primary{
  min-height:60px;
  padding-left:26px;
  box-shadow:0 12px 30px rgba(183,255,50,.10);
}
.footer-v3-call{
  min-width:188px;
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.025);
}
.footer-v3-call:hover{border-color:rgba(183,255,50,.42);background:rgba(183,255,50,.05)}
.footer-v3-contact-card{
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(28px,3vw,38px);
  border:1px solid rgba(255,255,255,.78);
  border-radius:26px;
  background:linear-gradient(145deg,#f9fbf8,#eef3ef);
  box-shadow:0 24px 65px rgba(0,0,0,.25);
}
.footer-v3-card-head{padding-bottom:21px}
.footer-v3-card-head strong{max-width:310px;font-size:clamp(23px,2vw,29px)}
.footer-v3-contact-card>a,
.footer-v3-contact-card>div:not(.footer-v3-card-head):not(.footer-v3-socials){padding-top:15px;padding-bottom:15px}
.footer-v3-contact-card>a:hover strong{color:#087c65}
.footer-v3-contact-card>a>i{display:grid;place-items:center;width:28px;height:28px;border:1px solid #cad6d0;border-radius:50%}
.footer-v3-socials a{transition:transform .2s ease,background .2s ease}
.footer-v3-socials a:hover{transform:translateY(-2px);background:#dce8e2}
.footer-v3-directory{
  position:relative;
  grid-template-columns:.72fr 1.18fr 1.1fr;
  gap:clamp(38px,6vw,82px);
  margin-top:24px;
  padding:clamp(36px,5vw,58px) clamp(28px,4vw,52px);
  border:1px solid rgba(255,255,255,.075);
  border-radius:26px;
  background:rgba(255,255,255,.025);
}
.footer-v3-column{gap:12px}
.footer-v3-label{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:#b7ff32;
}
.footer-v3-label::before{content:"";width:18px;height:1px;background:#b7ff32}
.footer-v3-column a{color:#dce6e3;font-size:14px}
.footer-v3-services a{
  width:100%;
  padding:7px 0;
  border-bottom:1px solid rgba(255,255,255,.055);
}
.footer-v3-services a:last-child{border-bottom:0}
.footer-v3-services a span{color:#6f8790}
.footer-v3-fit p{margin-bottom:16px;color:#9eb0b7}
.footer-v3-tags{gap:9px}
.footer-v3-tags span{
  padding:9px 12px;
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.022);
  color:#cbd6d3;
}
.footer-v3-bottom{
  margin-top:18px;
  padding:24px 4px 28px;
}
.footer-v3-signoff strong{font-size:14px}
.footer-v3-signoff span{position:relative;padding-left:16px}
.footer-v3-signoff span::before{content:"";position:absolute;left:0;top:50%;width:5px;height:5px;border-radius:50%;background:#b7ff32;transform:translateY(-50%)}
.footer-v3-top{font-weight:700;color:#d8e5e1!important}

@media(max-width:980px){
  .footer-v3-hero{grid-template-columns:1fr;gap:42px}
  .footer-v3-contact-card{width:100%;max-width:none}
  .footer-v3-directory{grid-template-columns:1fr 1fr;gap:38px 54px}
  .footer-v3-fit{grid-column:1/-1}
}
@media(max-width:640px){
  .site-footer-v3{padding-top:10px}
  .footer-v3-hero{gap:30px;padding:28px 20px;border-radius:22px}
  .footer-v3-brand{margin-bottom:28px;padding-bottom:18px}
  .footer-v3-brand .brand-symbol{width:54px}
  .footer-v3-brand .brand-name{font-size:21px}
  .footer-v3-kicker{margin-bottom:14px;font-size:9px;line-height:1.5}
  .footer-v3-brand-area h2{font-size:clamp(36px,11vw,48px);line-height:1.01}
  .footer-v3-brand-area h2 em{width:auto}
  .footer-v3-brand-area h2 em::after{width:52px;margin-top:13px}
  .footer-v3-brand-area>p{margin-top:18px;font-size:14px;line-height:1.65}
  .footer-v3-actions{margin-top:24px}
  .footer-v3-primary,.footer-v3-call{width:100%;min-height:56px}
  .footer-v3-call{border-radius:18px}
  .footer-v3-contact-card{padding:22px 18px;border-radius:20px}
  .footer-v3-card-head strong{font-size:22px}
  .footer-v3-socials{grid-template-columns:1fr 1fr}
  .footer-v3-directory{grid-template-columns:1fr;gap:30px;margin-top:14px;padding:32px 20px;border-radius:22px}
  .footer-v3-fit{grid-column:auto}
  .footer-v3-column a{font-size:14px}
  .footer-v3-tags{display:grid;grid-template-columns:1fr 1fr;width:100%}
  .footer-v3-tags span{text-align:center}
  .footer-v3-bottom{align-items:flex-start;flex-direction:column;margin-top:8px;padding:22px 4px 30px}
  .footer-v3-signoff{align-items:flex-start;flex-direction:column;gap:6px}
  .footer-v3-signoff span{padding-left:0}
  .footer-v3-signoff span::before{display:none}
  .footer-v3-meta{justify-content:flex-start;gap:12px 16px}
  .footer-v3-top{padding-left:0;border-left:0}
}
@media(max-width:370px){
  .footer-v3-hero{padding:24px 15px}
  .footer-v3-brand-area h2{font-size:34px}
  .footer-v3-socials{grid-template-columns:1fr}
  .footer-v3-directory{padding:28px 16px}
  .footer-v3-tags{grid-template-columns:1fr}
}

/* ===== FINAL COMPACT FOOTER REBUILD ===== */
.site-footer-v3{display:none!important}
.site-footer-v4{position:relative;overflow:hidden;background:#071a24;color:#fff;padding:28px 0 18px}
.site-footer-v4::before{content:"";position:absolute;right:-170px;top:-240px;width:520px;height:520px;border:72px solid rgba(183,255,50,.055);border-radius:50%;pointer-events:none}
.footer-v4-shell{position:relative;z-index:1;max-width:1240px}
.footer-v4-main{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(260px,.8fr) minmax(290px,.75fr);gap:clamp(34px,5vw,74px);align-items:start;padding:clamp(42px,5vw,66px);border:1px solid rgba(255,255,255,.09);border-radius:30px;background:linear-gradient(135deg,rgba(255,255,255,.035),rgba(255,255,255,.012));box-shadow:0 30px 90px rgba(0,0,0,.18)}
.footer-v4-brand{display:inline-flex;align-items:center;gap:12px;margin-bottom:30px;color:#fff;text-decoration:none}
.footer-v4-brand .brand-symbol{width:62px;height:auto}.footer-v4-brand .brand-copy{display:flex;flex-direction:column}.footer-v4-brand .brand-name{font-size:23px;line-height:1;color:#fff}.footer-v4-brand .brand-tagline{margin-top:4px;color:#8ea4ac;font-size:9px;letter-spacing:.18em}
.footer-v4-eyebrow{display:flex;align-items:center;gap:10px;margin-bottom:16px;color:#b7ff32;font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.footer-v4-eyebrow span{width:22px;height:2px;background:#b7ff32}
.footer-v4-brand-block h2{max-width:620px;margin:0;font-size:clamp(40px,4.4vw,66px);line-height:.98;letter-spacing:-.055em}.footer-v4-brand-block h2 em{display:block;color:#b7ff32;font-style:normal}
.footer-v4-brand-block>p{max-width:610px;margin:22px 0 0;color:#9eb0b7;font-size:15px;line-height:1.7}
.footer-v4-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.footer-v4-actions a{min-height:54px;text-decoration:none;font-weight:800}
.footer-v4-primary{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;padding:0 14px 0 22px;border-radius:999px;background:#b7ff32;color:#071820}.footer-v4-primary i{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#071820;color:#fff;font-style:normal}
.footer-v4-secondary{display:inline-flex;align-items:center;padding:0 21px;border:1px solid rgba(255,255,255,.16);border-radius:999px;color:#fff}
.footer-v4-links{display:grid;grid-template-columns:1fr;gap:32px;padding-top:4px}.footer-v4-column{display:flex;flex-direction:column;gap:11px}.footer-v4-column h3,.footer-v4-contact-label{margin:0 0 4px;color:#b7ff32;font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.footer-v4-column a{color:#cbd8d9;text-decoration:none;font-size:14px;line-height:1.4;transition:.2s}.footer-v4-column a:hover{color:#fff;transform:translateX(3px)}.footer-v4-services a{padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.07)}.footer-v4-services a:last-child{border-bottom:0}
.footer-v4-contact{padding:28px;border-radius:24px;background:#f4f7f3;color:#071820;box-shadow:0 18px 55px rgba(0,0,0,.2)}.footer-v4-contact h3{margin:10px 0 20px;font-size:clamp(22px,2vw,28px);line-height:1.13;letter-spacing:-.035em}.footer-v4-contact>a,.footer-v4-contact>div:not(.footer-v4-socials){position:relative;display:flex;flex-direction:column;padding:15px 36px 15px 0;border-top:1px solid #dbe3df;color:#071820;text-decoration:none}.footer-v4-contact small{color:#6d7e83;font-size:9px;letter-spacing:.12em;text-transform:uppercase}.footer-v4-contact strong{margin-top:4px;font-size:13px;line-height:1.4;overflow-wrap:anywhere}.footer-v4-contact>a>i{position:absolute;right:0;top:50%;transform:translateY(-50%);font-style:normal}.footer-v4-socials{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:18px}.footer-v4-socials a{padding:12px;border-radius:999px;background:#e6eee9;color:#071820;text-align:center;text-decoration:none;font-size:11px;font-weight:800}
.footer-v4-bottom{display:flex;justify-content:space-between;align-items:center;gap:24px;padding:20px 4px 0;color:#738991;font-size:11px}.footer-v4-bottom>div{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.footer-v4-bottom strong{color:#eef5f2;font-size:13px}.footer-v4-bottom a{color:#9eb0b7;text-decoration:none}.footer-v4-bottom a:hover{color:#b7ff32}
@media(max-width:1024px){.footer-v4-main{grid-template-columns:1fr 1fr}.footer-v4-brand-block{grid-column:1/-1}.footer-v4-links{grid-template-columns:1fr 1fr;gap:28px}.footer-v4-contact{height:100%}}
@media(max-width:720px){.site-footer-v4{padding-top:14px}.footer-v4-main{grid-template-columns:1fr;gap:30px;padding:28px 20px;border-radius:24px}.footer-v4-brand-block{grid-column:auto}.footer-v4-brand{margin-bottom:24px}.footer-v4-brand .brand-symbol{width:54px}.footer-v4-brand-block h2{font-size:clamp(36px,11vw,48px);line-height:1}.footer-v4-brand-block>p{font-size:14px;line-height:1.65}.footer-v4-actions{display:grid;grid-template-columns:1fr}.footer-v4-actions a{width:100%;min-height:54px}.footer-v4-links{grid-template-columns:1fr 1fr;gap:26px}.footer-v4-contact{padding:22px 18px;border-radius:20px}.footer-v4-bottom{align-items:flex-start;flex-direction:column;padding:20px 4px 8px}.footer-v4-bottom>div{align-items:flex-start;gap:10px 14px}}
@media(max-width:460px){.footer-v4-main{padding:24px 16px}.footer-v4-brand-block h2{font-size:34px}.footer-v4-links{grid-template-columns:1fr;gap:28px}.footer-v4-socials{grid-template-columns:1fr}.footer-v4-bottom>div:first-child{flex-direction:column;gap:5px}}


/* =========================================================
   ENPE footer v5 — reference-inspired, original design
   ========================================================= */
.site-footer-v4{display:none!important}
.site-footer-v5{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:72px 0 22px;
  background:
    radial-gradient(circle at 86% 24%,rgba(92,54,164,.34),transparent 27%),
    radial-gradient(circle at 7% 92%,rgba(0,124,116,.25),transparent 31%),
    linear-gradient(135deg,#071923 0%,#0a1735 54%,#171249 100%);
  color:#f6faf9;
}
.site-footer-v5::before{
  content:"";position:absolute;inset:0;z-index:-3;opacity:.38;pointer-events:none;
  background-image:radial-gradient(rgba(183,255,50,.5) .7px,transparent .7px);
  background-size:32px 32px;
  mask-image:linear-gradient(to bottom,black,transparent 56%);
}
.site-footer-v5::after{
  content:"";position:absolute;right:-8%;bottom:-25%;z-index:-2;width:48%;height:74%;
  background:linear-gradient(160deg,transparent 2%,rgba(255,135,69,.18) 52%,rgba(137,73,190,.42));
  clip-path:polygon(22% 100%,100% 8%,100% 100%);pointer-events:none;
}
.footer-v5-orbit{position:absolute;z-index:-1;border:2px dashed rgba(255,153,67,.28);border-radius:50%;pointer-events:none}
.footer-v5-orbit--one{right:-80px;top:-180px;width:500px;height:310px;transform:rotate(18deg)}
.footer-v5-orbit--two{left:-145px;bottom:-190px;width:430px;height:330px;border-color:rgba(47,142,255,.18)}
.footer-v5-shell{position:relative;max-width:1320px}
.footer-v5-grid{
  display:grid;
  grid-template-columns:minmax(300px,1.35fr) minmax(190px,.62fr) minmax(245px,.8fr) minmax(280px,.9fr);
  gap:clamp(28px,3.2vw,54px);
  align-items:start;
}
.footer-v5-brand{display:inline-flex;align-items:center;gap:12px;margin-bottom:26px;color:#fff;text-decoration:none}
.footer-v5-brand .brand-symbol{width:58px;height:auto}.footer-v5-brand .brand-copy{display:flex;flex-direction:column}.footer-v5-brand .brand-name{font-size:23px;line-height:1;color:#fff}.footer-v5-brand .brand-tagline{margin-top:5px;color:#8fa7b1;font-size:9px;letter-spacing:.18em}
.footer-v5-kicker{display:flex;align-items:center;gap:10px;margin:0 0 13px;color:#b7ff32;font-size:10px;font-weight:850;letter-spacing:.17em;text-transform:uppercase}.footer-v5-kicker::before{content:"";width:22px;height:2px;background:#b7ff32}
.footer-v5-brand-panel h2{max-width:490px;margin:0;font-size:clamp(38px,3.45vw,58px);line-height:1.01;letter-spacing:-.055em}.footer-v5-brand-panel h2 span{display:block;color:#b7ff32}
.footer-v5-intro{max-width:530px;margin:20px 0 0;color:#a8bac0;font-size:14px;line-height:1.75}
.footer-v5-actions{display:flex;flex-wrap:wrap;gap:11px;margin-top:25px}
.footer-v5-primary{display:inline-flex;align-items:center;justify-content:space-between;gap:26px;min-height:54px;padding:0 12px 0 21px;border-radius:15px;background:#b7ff32;color:#061820;text-decoration:none;font-size:13px;font-weight:850;box-shadow:0 13px 34px rgba(183,255,50,.16)}
.footer-v5-primary i{display:grid;place-items:center;width:34px;height:34px;border-radius:11px;background:#071b25;color:#fff;font-style:normal}
.footer-v5-phone{display:flex;flex-direction:column;justify-content:center;min-height:54px;padding:0 18px;border:1px solid rgba(255,255,255,.14);border-radius:15px;color:#fff;text-decoration:none}.footer-v5-phone small{color:#8299a2;font-size:8px;letter-spacing:.12em;text-transform:uppercase}.footer-v5-phone strong{margin-top:3px;font-size:12px}
.footer-v5-socials{display:flex;flex-wrap:wrap;gap:9px;margin-top:23px}.footer-v5-socials a{padding:9px 12px;border:1px solid rgba(255,255,255,.1);border-radius:10px;background:rgba(255,255,255,.035);color:#ccd9dc;text-decoration:none;font-size:11px;font-weight:750;transition:.2s}.footer-v5-socials a span{color:#b7ff32}.footer-v5-socials a:hover{transform:translateY(-2px);border-color:rgba(183,255,50,.45);color:#fff}
.footer-v5-column h3,.footer-v5-location>h3,.footer-v5-contact-card>h3{position:relative;margin:5px 0 22px;padding-bottom:13px;color:#fff;font-size:12px;font-weight:850;letter-spacing:.11em;text-transform:uppercase}.footer-v5-column h3::after,.footer-v5-location>h3::after,.footer-v5-contact-card>h3::after{content:"";position:absolute;left:0;bottom:0;width:44px;height:3px;border-radius:9px;background:#2e98ff}
.footer-v5-column{display:flex;flex-direction:column}.footer-v5-column>a{display:grid;grid-template-columns:28px 1fr;gap:7px;align-items:center;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.08);color:#d7e1e3;text-decoration:none;font-size:13px;transition:.2s}.footer-v5-column>a span{color:#2e98ff;font-size:9px;font-weight:850}.footer-v5-column>a:hover{padding-left:5px;color:#fff;border-color:rgba(183,255,50,.35)}
.footer-v5-location-card{padding:24px 20px;border:1px solid rgba(74,155,255,.23);border-radius:20px;background:linear-gradient(145deg,rgba(52,84,176,.28),rgba(255,255,255,.045));text-align:center;box-shadow:inset 0 1px rgba(255,255,255,.06)}
.footer-v5-pin{display:grid;place-items:center;width:48px;height:48px;margin:0 auto 14px;border-radius:16px;background:rgba(46,152,255,.13);color:#2e98ff}.footer-v5-pin svg{width:28px;fill:none;stroke:currentColor;stroke-width:1.8}
.footer-v5-location-card>strong{font-size:15px}.footer-v5-location-card>p{margin:9px 0 16px;color:#becbd0;font-size:13px;line-height:1.7}.footer-v5-hours{padding:13px 0;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}.footer-v5-hours small{display:block;color:#76909a;font-size:8px;letter-spacing:.12em;text-transform:uppercase}.footer-v5-hours span{display:block;margin-top:5px;color:#dbe5e7;font-size:11px}.footer-v5-location-card>a{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:16px;padding:12px;border:1px solid rgba(46,152,255,.38);border-radius:11px;color:#5cb3ff;text-decoration:none;font-size:11px;font-weight:800}
.footer-v5-contact-card{padding:24px;border-radius:20px;background:#f7f8f6;color:#081922;box-shadow:0 22px 65px rgba(0,0,0,.28)}.footer-v5-contact-card>h3{color:#081922}.footer-v5-contact-head span{display:block;color:#087c65;font-size:9px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.footer-v5-contact-head strong{display:block;margin-top:8px;font-size:20px;line-height:1.18;letter-spacing:-.035em}.footer-v5-contact-card>a:not(.footer-v5-contact-cta){position:relative;display:flex;flex-direction:column;padding:14px 32px 14px 0;border-top:1px solid #dce4e1;color:#081922;text-decoration:none}.footer-v5-contact-card>a small,.footer-v5-fit>small{color:#7b898e;font-size:8px;letter-spacing:.12em;text-transform:uppercase}.footer-v5-contact-card>a strong{margin-top:4px;font-size:12px;overflow-wrap:anywhere}.footer-v5-contact-card>a i{position:absolute;right:0;top:50%;transform:translateY(-50%);font-style:normal;color:#087c65}
.footer-v5-fit{padding-top:14px;border-top:1px solid #dce4e1}.footer-v5-fit>div{display:flex;flex-wrap:wrap;gap:6px;margin-top:9px}.footer-v5-fit span{padding:6px 8px;border-radius:999px;background:#e8eeeb;color:#42565d;font-size:9px;font-weight:700}
.footer-v5-contact-cta{display:flex!important;flex-direction:row!important;align-items:center;justify-content:space-between;margin-top:16px!important;padding:13px 14px!important;border:0!important;border-radius:12px;background:#0a1d27;color:#fff!important;font-size:11px;font-weight:850}.footer-v5-contact-cta span{color:#b7ff32}
.footer-v5-bottom{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-top:45px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);color:#728b95;font-size:10px}.footer-v5-bottom>div{display:flex;align-items:center;flex-wrap:wrap;gap:12px 17px}.footer-v5-bottom strong{color:#e7eff0;font-size:11px}.footer-v5-bottom a{color:#91a7af;text-decoration:none}.footer-v5-bottom a:hover{color:#b7ff32}
@media(max-width:1100px){.footer-v5-grid{grid-template-columns:1.15fr .7fr .9fr}.footer-v5-brand-panel{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;column-gap:44px}.footer-v5-brand,.footer-v5-kicker,.footer-v5-brand-panel h2{grid-column:1}.footer-v5-intro,.footer-v5-actions,.footer-v5-socials{grid-column:2}.footer-v5-intro{grid-row:1/span 2;align-self:end;margin:0 0 15px}.footer-v5-actions{align-self:start}.footer-v5-contact-card{height:100%}}
@media(max-width:800px){.site-footer-v5{padding-top:48px}.footer-v5-grid{grid-template-columns:1fr 1fr}.footer-v5-brand-panel{grid-column:1/-1;display:block}.footer-v5-intro{margin-top:18px}.footer-v5-location{grid-column:1}.footer-v5-contact-card{grid-column:2}.footer-v5-column{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;column-gap:24px}.footer-v5-column h3{grid-column:1/-1}.footer-v5-column>a{grid-template-columns:24px 1fr}.footer-v5-bottom{align-items:flex-start;flex-direction:column}}
@media(max-width:590px){.site-footer-v5{padding:38px 0 18px}.footer-v5-grid{grid-template-columns:1fr;gap:30px}.footer-v5-brand-panel h2{font-size:clamp(36px,11vw,48px)}.footer-v5-actions{display:grid;grid-template-columns:1fr}.footer-v5-primary,.footer-v5-phone{width:100%;min-height:56px}.footer-v5-column,.footer-v5-location,.footer-v5-contact-card{grid-column:auto}.footer-v5-column{display:flex}.footer-v5-location-card,.footer-v5-contact-card{padding:20px 17px}.footer-v5-bottom{margin-top:32px}.footer-v5-bottom>div{align-items:flex-start}.footer-v5-orbit--one{right:-250px;top:-190px}}
@media(max-width:390px){.footer-v5-brand-panel h2{font-size:34px}.footer-v5-socials{display:grid;grid-template-columns:1fr 1fr}.footer-v5-socials a:last-child{grid-column:1/-1}.footer-v5-contact-head strong{font-size:18px}}


/* === ENPE Footer V6: final visual hierarchy rebuild === */
.site-footer-v5{display:none!important}
.site-footer-v6{position:relative;isolation:isolate;overflow:hidden;padding:clamp(56px,7vw,92px) 0 22px;background:radial-gradient(circle at 10% 10%,rgba(13,130,109,.18),transparent 32%),radial-gradient(circle at 92% 4%,rgba(120,66,180,.17),transparent 27%),#071923;color:#fff}
.site-footer-v6::before{content:"";position:absolute;inset:0;z-index:-2;background:linear-gradient(115deg,rgba(255,255,255,.025),transparent 40%,rgba(183,255,50,.025));pointer-events:none}
.footer-v6-glow{position:absolute;z-index:-1;border-radius:50%;pointer-events:none;filter:blur(2px)}
.footer-v6-glow--one{width:480px;height:480px;right:-230px;top:-260px;border:48px solid rgba(183,255,50,.045)}
.footer-v6-glow--two{width:320px;height:320px;left:-170px;bottom:-180px;border:36px solid rgba(46,152,255,.04)}
.footer-v6-shell{max-width:1240px}
.footer-v6-lead{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(330px,.65fr);gap:clamp(44px,7vw,92px);align-items:stretch;padding:clamp(34px,4.5vw,58px);border:1px solid rgba(255,255,255,.1);border-radius:32px;background:linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.018));box-shadow:0 30px 90px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.06)}
.footer-v6-brand{display:inline-flex;align-items:center;gap:12px;margin-bottom:42px;color:#fff;text-decoration:none}
.footer-v6-brand .brand-symbol{width:64px;height:auto}.footer-v6-brand .brand-copy{display:flex;flex-direction:column}.footer-v6-brand .brand-name{font-size:25px;line-height:1;color:#fff}.footer-v6-brand .brand-tagline{margin-top:5px;color:#8fa6ae;font-size:9px;letter-spacing:.18em}
.footer-v6-eyebrow{display:flex;align-items:center;gap:10px;margin:0 0 15px;color:#b7ff32;font-size:10px;font-weight:850;letter-spacing:.16em;text-transform:uppercase}.footer-v6-eyebrow::before{content:"";width:24px;height:2px;background:#b7ff32}
.footer-v6-brand-copy h2{max-width:680px;margin:0;font-size:clamp(46px,5vw,74px);line-height:.98;letter-spacing:-.058em}.footer-v6-brand-copy h2 span{display:block;color:#b7ff32}
.footer-v6-summary{max-width:650px;margin:24px 0 0;color:#a7b8be;font-size:clamp(14px,1.2vw,17px);line-height:1.75}
.footer-v6-actions{display:flex;align-items:stretch;flex-wrap:wrap;gap:12px;margin-top:34px}
.footer-v6-primary{display:inline-flex;align-items:center;justify-content:space-between;gap:34px;min-height:58px;padding:0 13px 0 23px;border-radius:999px;background:#b7ff32;color:#071923;text-decoration:none;font-size:13px;font-weight:850;box-shadow:0 16px 40px rgba(183,255,50,.15);transition:.22s}.footer-v6-primary i{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:#071923;color:#fff;font-style:normal}.footer-v6-primary:hover{transform:translateY(-3px)}
.footer-v6-secondary{display:flex;flex-direction:column;justify-content:center;min-height:58px;padding:9px 22px;border:1px solid rgba(255,255,255,.15);border-radius:999px;color:#fff;text-decoration:none;transition:.22s}.footer-v6-secondary small{color:#7f969f;font-size:9px;letter-spacing:.13em;text-transform:uppercase}.footer-v6-secondary strong{margin-top:3px;font-size:13px}.footer-v6-secondary:hover{border-color:rgba(183,255,50,.45);background:rgba(183,255,50,.05)}
.footer-v6-contact{align-self:stretch;padding:30px 26px;border-radius:25px;background:#f6f8f5;color:#071923;box-shadow:0 24px 70px rgba(0,0,0,.24)}
.footer-v6-contact-head{padding-bottom:22px}.footer-v6-contact-head>span{color:#087c65;font-size:9px;font-weight:850;letter-spacing:.15em;text-transform:uppercase}.footer-v6-contact-head>strong{display:block;margin-top:10px;font-size:clamp(23px,2.2vw,31px);line-height:1.08;letter-spacing:-.04em}.footer-v6-contact-head p{margin:12px 0 0;color:#65777d;font-size:12px;line-height:1.55}
.footer-v6-contact>a:not(.footer-v6-socials a){display:flex;align-items:center;justify-content:space-between;gap:18px;padding:15px 0;border-top:1px solid #dce4e0;color:#071923;text-decoration:none}.footer-v6-contact>a span{min-width:0;display:flex;flex-direction:column}.footer-v6-contact small,.footer-v6-hours small{color:#7b898e;font-size:8px;letter-spacing:.12em;text-transform:uppercase}.footer-v6-contact a strong,.footer-v6-hours strong{margin-top:4px;font-size:12px;line-height:1.45;overflow-wrap:anywhere}.footer-v6-contact>a i{display:grid;flex:0 0 auto;place-items:center;width:29px;height:29px;border:1px solid #cdd8d3;border-radius:50%;color:#087c65;font-style:normal}
.footer-v6-hours{display:flex;flex-direction:column;padding:15px 0;border-top:1px solid #dce4e0}
.footer-v6-socials{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:6px}.footer-v6-socials a{padding:12px;border-radius:999px;background:#e8efeb;color:#071923;text-align:center;text-decoration:none;font-size:11px;font-weight:800;transition:.2s}.footer-v6-socials a:hover{transform:translateY(-2px);background:#dce8e2}
.footer-v6-directory{display:grid;grid-template-columns:.72fr 1.2fr 1fr;gap:clamp(34px,6vw,86px);margin-top:18px;padding:clamp(38px,5vw,62px) clamp(8px,1.2vw,16px);border-bottom:1px solid rgba(255,255,255,.09)}
.footer-v6-label{display:flex;align-items:center;gap:10px;margin:0 0 20px;color:#b7ff32;font-size:9px;font-weight:850;letter-spacing:.16em;text-transform:uppercase}.footer-v6-label::before{content:"";width:18px;height:1px;background:#b7ff32}
.footer-v6-links,.footer-v6-services{display:flex;flex-direction:column;align-items:flex-start}.footer-v6-links a{margin:0 0 13px;color:#dce6e3;text-decoration:none;font-size:14px;transition:.2s}.footer-v6-links a:hover{color:#b7ff32;transform:translateX(4px)}
.footer-v6-services a{display:grid;width:100%;grid-template-columns:28px 1fr;gap:8px;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.08);color:#dce6e3;text-decoration:none;font-size:14px;transition:.2s}.footer-v6-services a span{padding-top:3px;color:#657d86;font-size:9px}.footer-v6-services a:hover{padding-left:4px;color:#b7ff32;border-color:rgba(183,255,50,.32)}
.footer-v6-fit h3{max-width:340px;margin:0;color:#eef5f2;font-size:clamp(22px,2vw,29px);line-height:1.15;letter-spacing:-.035em}.footer-v6-fit>p:not(.footer-v6-label){max-width:360px;margin:14px 0 20px;color:#94a8af;font-size:13px;line-height:1.65}.footer-v6-fit>div{display:flex;flex-wrap:wrap;gap:8px}.footer-v6-fit span{padding:8px 11px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:#c0cdd0;font-size:10px}
.footer-v6-bottom{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px 4px 2px;color:#728890;font-size:10px}.footer-v6-bottom>div{display:flex;align-items:center;flex-wrap:wrap;gap:12px 18px}.footer-v6-bottom strong{color:#edf4f2;font-size:12px}.footer-v6-bottom a{color:#96a9af;text-decoration:none}.footer-v6-bottom a:hover{color:#b7ff32}
@media(max-width:980px){.footer-v6-lead{grid-template-columns:1fr}.footer-v6-contact{max-width:none}.footer-v6-directory{grid-template-columns:1fr 1fr}.footer-v6-fit{grid-column:1/-1}}
@media(max-width:680px){.site-footer-v6{padding-top:38px}.footer-v6-lead{gap:30px;padding:28px 20px;border-radius:24px}.footer-v6-brand{margin-bottom:30px}.footer-v6-brand .brand-symbol{width:54px}.footer-v6-brand-copy h2{font-size:clamp(38px,11vw,52px);line-height:1}.footer-v6-summary{margin-top:19px;font-size:14px;line-height:1.65}.footer-v6-actions{display:grid;grid-template-columns:1fr;margin-top:26px}.footer-v6-primary,.footer-v6-secondary{width:100%;min-height:56px}.footer-v6-contact{padding:23px 18px;border-radius:21px}.footer-v6-directory{grid-template-columns:1fr;gap:34px;padding:40px 4px}.footer-v6-fit{grid-column:auto}.footer-v6-bottom{align-items:flex-start;flex-direction:column;padding:21px 4px 4px}.footer-v6-bottom>div{align-items:flex-start}.footer-v6-glow--one{right:-330px;top:-280px}}
@media(max-width:390px){.footer-v6-lead{padding:24px 16px}.footer-v6-brand-copy h2{font-size:35px}.footer-v6-contact-head>strong{font-size:22px}.footer-v6-socials{grid-template-columns:1fr}.footer-v6-bottom>div:first-child{flex-direction:column;gap:5px}}

/* Compact footer rebuild — large promotional/contact layer removed */
.site-footer-v6{padding:clamp(48px,6vw,76px) 0 20px}
.footer-v6-directory--compact{grid-template-columns:minmax(260px,1.3fr) minmax(120px,.55fr) minmax(240px,1fr) minmax(240px,.9fr);gap:clamp(28px,4vw,58px);margin-top:0;padding:clamp(32px,4vw,50px);border:1px solid rgba(255,255,255,.10);border-radius:28px;background:linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.016));box-shadow:0 28px 80px rgba(0,0,0,.20),inset 0 1px rgba(255,255,255,.05)}
.footer-v6-intro .footer-v6-brand{margin:0 0 28px}.footer-v6-intro .footer-v6-brand .brand-symbol{width:58px}.footer-v6-intro h2{max-width:430px;margin:0;color:#fff;font-size:clamp(29px,3vw,43px);line-height:1.05;letter-spacing:-.045em}.footer-v6-intro>p:not(.footer-v6-eyebrow){max-width:440px;margin:17px 0 0;color:#9db0b7;font-size:13px;line-height:1.7}
.footer-v6-compact-cta{display:inline-flex;align-items:center;gap:18px;margin-top:24px;padding:13px 17px 13px 20px;border-radius:999px;background:#b7ff32;color:#071923;text-decoration:none;font-size:12px;font-weight:850;transition:.22s}.footer-v6-compact-cta span{display:grid;place-items:center;width:26px;height:26px;border-radius:50%;background:#071923;color:#fff}.footer-v6-compact-cta:hover{transform:translateY(-2px)}
.footer-v6-contact-compact{display:flex;flex-direction:column;align-items:flex-start}.footer-v6-contact-compact>a{display:flex;width:100%;flex-direction:column;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);color:#fff;text-decoration:none}.footer-v6-contact-compact small{color:#6f8790;font-size:8px;letter-spacing:.13em;text-transform:uppercase}.footer-v6-contact-compact strong{margin-top:5px;color:#dce6e3;font-size:12px;line-height:1.45;overflow-wrap:anywhere}.footer-v6-contact-compact>a:hover strong{color:#b7ff32}
.footer-v6-compact-socials{display:grid;width:100%;grid-template-columns:1fr 1fr;gap:8px;margin-top:18px}.footer-v6-compact-socials a{padding:11px 10px;border:1px solid rgba(255,255,255,.11);border-radius:999px;color:#dce6e3;text-align:center;text-decoration:none;font-size:10px;font-weight:800;transition:.2s}.footer-v6-compact-socials a:hover{border-color:rgba(183,255,50,.45);color:#b7ff32}
.footer-v6-bottom{padding-top:20px}
@media(max-width:1080px){.footer-v6-directory--compact{grid-template-columns:1.2fr .7fr 1fr}.footer-v6-contact-compact{grid-column:1/-1;display:grid;grid-template-columns:repeat(3,1fr);gap:0 22px}.footer-v6-contact-compact .footer-v6-label,.footer-v6-compact-socials{grid-column:1/-1}.footer-v6-compact-socials{max-width:360px}}
@media(max-width:760px){.site-footer-v6{padding-top:36px}.footer-v6-directory--compact{grid-template-columns:1fr;gap:34px;padding:28px 20px;border-radius:23px}.footer-v6-intro .footer-v6-brand{margin-bottom:24px}.footer-v6-intro h2{font-size:clamp(31px,9.5vw,42px)}.footer-v6-links a{margin-bottom:11px}.footer-v6-contact-compact{display:flex;grid-column:auto}.footer-v6-compact-socials{grid-column:auto;max-width:none}.footer-v6-bottom{padding-inline:4px}}
@media(max-width:390px){.footer-v6-directory--compact{padding:24px 16px}.footer-v6-compact-socials{grid-template-columns:1fr}.footer-v6-intro .footer-v6-brand .brand-symbol{width:50px}.footer-v6-intro h2{font-size:30px}}

/* Dedicated consultation page */
.consultation-page{background:#f7f7f2;color:var(--ink)}
.consultation-header{background:rgba(247,247,242,.9);backdrop-filter:blur(18px);border-bottom:1px solid rgba(11,23,32,.08)}
.consultation-header .nav-wrap{justify-content:space-between}
.consultation-back{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border:1px solid rgba(11,23,32,.12);border-radius:999px;color:var(--ink);font-size:14px;font-weight:700;text-decoration:none;transition:.25s}
.consultation-back:hover{background:var(--ink);color:#fff;transform:translateY(-2px)}
.consultation-hero{position:relative;overflow:hidden;padding:150px 0 96px;background:radial-gradient(circle at 8% 15%,rgba(201,255,70,.18),transparent 30%),linear-gradient(135deg,#f7f7f2 0%,#eef5ef 100%)}
.consultation-orbit{position:absolute;border:1px solid rgba(10,107,85,.12);border-radius:50%;pointer-events:none}
.consultation-orbit-one{width:520px;height:520px;right:-220px;top:-160px}
.consultation-orbit-two{width:360px;height:360px;left:-210px;bottom:-180px}
.consultation-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(440px,.82fr);gap:80px;align-items:start}
.consultation-intro{padding-top:26px}
.consultation-intro h1{max-width:760px;margin:22px 0 26px;font-family:"Plus Jakarta Sans",sans-serif;font-size:clamp(48px,5.2vw,78px);line-height:.98;letter-spacing:-4.5px}
.consultation-intro h1 em{display:block;color:var(--green);font-style:normal}
.consultation-intro>p{max-width:680px;color:var(--muted);font-size:18px;line-height:1.75}
.consultation-proof{display:grid;gap:0;margin:48px 0 34px;border-top:1px solid var(--line)}
.consultation-proof article{display:grid;grid-template-columns:48px 1fr;gap:18px;padding:24px 0;border-bottom:1px solid var(--line)}
.consultation-proof article>strong{color:var(--green);font-size:13px;letter-spacing:1.5px}
.consultation-proof h2{font-size:17px;margin-bottom:5px}
.consultation-proof p{color:var(--muted);line-height:1.6;font-size:14px}
.consultation-direct{padding:24px;border-radius:22px;background:#0b1720;color:#fff;box-shadow:0 20px 50px rgba(8,25,33,.16)}
.consultation-direct p{font-size:14px;line-height:1.6;color:rgba(255,255,255,.68)}
.consultation-direct p span{color:#fff;font-weight:800}
.consultation-direct>div{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.consultation-direct a{padding:11px 15px;border-radius:999px;background:rgba(255,255,255,.08);color:#fff;text-decoration:none;font-size:13px;font-weight:700;border:1px solid rgba(255,255,255,.1)}
.consultation-direct a:first-child{background:var(--lime);color:var(--ink);border-color:transparent}
.consultation-form-card{position:relative;background:#fff;border:1px solid rgba(11,23,32,.09);border-radius:32px;padding:38px;box-shadow:0 30px 90px rgba(8,25,33,.13)}
.consultation-form-card:before{content:"";position:absolute;inset:0 26px auto;height:4px;background:linear-gradient(90deg,var(--lime),var(--green));border-radius:0 0 10px 10px}
.consultation-form-head>span{display:block;color:var(--green);font-size:11px;font-weight:800;letter-spacing:1.7px;text-transform:uppercase}
.consultation-form-head h2{margin:12px 0;font-family:"Plus Jakarta Sans",sans-serif;font-size:34px;line-height:1.1;letter-spacing:-1.8px}
.consultation-form-head p{color:var(--muted);font-size:14px;line-height:1.65}
.consultation-form{display:grid;gap:21px;margin-top:30px}
.consultation-field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.consultation-form label,.consultation-services legend{display:grid;gap:9px;color:#31414a;font-size:12px;font-weight:800}
.consultation-form input,.consultation-form select,.consultation-form textarea{width:100%;border:1px solid rgba(11,23,32,.13);border-radius:14px;background:#fafbf8;padding:14px 15px;font:500 14px Manrope,sans-serif;color:var(--ink);outline:none;transition:.2s}
.consultation-form input:focus,.consultation-form select:focus,.consultation-form textarea:focus{border-color:var(--green);box-shadow:0 0 0 4px rgba(10,107,85,.08);background:#fff}
.consultation-form textarea{resize:vertical;min-height:122px;line-height:1.55}
.consultation-services{border:0}
.consultation-services>div{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:10px}
.consultation-services label{display:block;position:relative}
.consultation-services input{position:absolute;opacity:0;pointer-events:none}
.consultation-services span{display:flex;align-items:center;min-height:46px;padding:11px 13px;border:1px solid rgba(11,23,32,.12);border-radius:13px;background:#fafbf8;font-size:12px;cursor:pointer;transition:.2s}
.consultation-services input:checked+span{background:#ecffd2;border-color:#9fd82b;color:#174a38;box-shadow:inset 0 0 0 1px #9fd82b}
.consultation-consent{grid-template-columns:18px 1fr!important;align-items:start;gap:11px!important;font-weight:500!important;color:var(--muted)!important;line-height:1.5}
.consultation-consent input{width:17px;height:17px;padding:0;margin-top:2px;accent-color:var(--green)}
.consultation-submit{display:flex;align-items:center;justify-content:space-between;width:100%;border:0;border-radius:999px;background:var(--lime);color:var(--ink);padding:8px 9px 8px 22px;font:800 14px Manrope,sans-serif;cursor:pointer;transition:.25s;box-shadow:0 14px 35px rgba(161,218,28,.25)}
.consultation-submit i{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:var(--ink);color:#fff;font-style:normal}
.consultation-submit:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(161,218,28,.34)}
.consultation-form-note{color:var(--muted);font-size:11px;text-align:center}.consultation-form-note.is-success{color:var(--green);font-weight:700}
.consultation-expect{padding:100px 0;background:#fff}
.consultation-expect-head{display:grid;grid-template-columns:1.2fr .8fr;gap:70px;align-items:end;margin-bottom:42px}
.consultation-expect-head h2{max-width:700px;margin-top:14px;font-family:"Plus Jakarta Sans",sans-serif;font-size:clamp(36px,4vw,58px);line-height:1.05;letter-spacing:-3px}
.consultation-expect-head>p{color:var(--muted);font-size:16px;line-height:1.75}
.consultation-expect-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.consultation-expect-grid article{min-height:250px;padding:28px;border:1px solid var(--line);border-radius:24px;background:linear-gradient(150deg,#fff,#f5f8f4);transition:.25s}
.consultation-expect-grid article:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.consultation-expect-grid span{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:var(--ink);color:var(--lime);font-size:12px;font-weight:800}
.consultation-expect-grid h3{margin:48px 0 12px;font-size:21px}.consultation-expect-grid p{color:var(--muted);line-height:1.7;font-size:14px}
.consultation-footer{padding:30px 0;background:#0b1720;color:#fff}
.consultation-footer .container{display:flex;align-items:center;gap:26px}.consultation-footer .brand{color:#fff}.consultation-footer p{color:var(--lime);font-size:13px;font-weight:800}.consultation-footer .container>div{display:flex;gap:22px;margin-left:auto}.consultation-footer .container>div a{color:rgba(255,255,255,.75);text-decoration:none;font-size:13px}
@media(max-width:980px){.consultation-grid{grid-template-columns:1fr;gap:52px}.consultation-intro{padding-top:0}.consultation-form-card{max-width:720px}.consultation-expect-head{grid-template-columns:1fr;gap:20px}.consultation-expect-grid{grid-template-columns:1fr}.consultation-expect-grid article{min-height:auto}.consultation-expect-grid h3{margin-top:28px}}
@media(max-width:640px){.consultation-header .nav-wrap{height:72px}.consultation-header .brand-symbol{width:46px}.consultation-back{padding:10px 12px;font-size:12px}.consultation-hero{padding:112px 0 68px}.consultation-grid{gap:36px}.consultation-intro h1{font-size:42px;letter-spacing:-2.7px}.consultation-intro>p{font-size:16px}.consultation-proof{margin-top:34px}.consultation-form-card{padding:28px 20px;border-radius:24px}.consultation-form-head h2{font-size:29px}.consultation-field-row,.consultation-services>div{grid-template-columns:1fr}.consultation-direct>div a{flex:1;text-align:center}.consultation-expect{padding:70px 0}.consultation-expect-head h2{font-size:36px;letter-spacing:-2px}.consultation-footer .container{align-items:flex-start;flex-direction:column}.consultation-footer .container>div{margin-left:0;flex-direction:column;gap:8px}}
@media(max-width:380px){.consultation-intro h1{font-size:36px}.consultation-back span{display:none}.consultation-form-card{padding-inline:16px}.consultation-form-head h2{font-size:26px}}

/* Footer v7 — consultation-led professional footer */
.site-footer-v7{position:relative;isolation:isolate;overflow:hidden;padding:clamp(52px,6vw,84px) 0 20px;background:radial-gradient(circle at 8% 12%,rgba(0,132,111,.18),transparent 31%),radial-gradient(circle at 92% 2%,rgba(96,74,185,.18),transparent 29%),#071923;color:#fff}
.site-footer-v7::before{content:"";position:absolute;inset:0;z-index:-2;background:linear-gradient(120deg,rgba(255,255,255,.025),transparent 40%,rgba(183,255,50,.02));pointer-events:none}
.footer-v7-orb{position:absolute;z-index:-1;border-radius:50%;pointer-events:none}.footer-v7-orb--one{width:440px;height:440px;right:-210px;top:-250px;border:44px solid rgba(183,255,50,.045)}.footer-v7-orb--two{width:300px;height:300px;left:-170px;bottom:-170px;border:34px solid rgba(43,143,255,.04)}
.footer-v7-shell{max-width:1240px}
.footer-v7-consultation{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);gap:clamp(36px,6vw,80px);align-items:center;padding:clamp(30px,4vw,48px);border:1px solid rgba(255,255,255,.11);border-radius:30px;background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018));box-shadow:0 28px 80px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.06)}
.footer-v7-kicker{display:flex;align-items:center;gap:10px;margin:0 0 14px;color:#b7ff32;font-size:10px;font-weight:850;letter-spacing:.16em;text-transform:uppercase}.footer-v7-kicker::before{content:"";width:24px;height:2px;background:#b7ff32}
.footer-v7-consultation-copy h2{max-width:720px;margin:0;font-size:clamp(37px,4.3vw,62px);line-height:1;letter-spacing:-.055em}.footer-v7-consultation-copy>p:last-child{max-width:690px;margin:20px 0 0;color:#a7b8be;font-size:clamp(14px,1.15vw,16px);line-height:1.72}
.footer-v7-consultation-action{display:flex;flex-direction:column;align-items:stretch;gap:11px}.footer-v7-response{display:flex;align-items:center;gap:9px;color:#9eb0b6;font-size:11px}.footer-v7-response span{width:8px;height:8px;border-radius:50%;background:#b7ff32;box-shadow:0 0 0 5px rgba(183,255,50,.08)}
.footer-v7-primary{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:60px;padding:0 13px 0 22px;border-radius:999px;background:#b7ff32;color:#071923;text-decoration:none;font-size:13px;font-weight:850;box-shadow:0 18px 42px rgba(183,255,50,.14);transition:.22s}.footer-v7-primary i{display:grid;place-items:center;width:39px;height:39px;border-radius:50%;background:#071923;color:#fff;font-style:normal}.footer-v7-primary:hover{transform:translateY(-3px);box-shadow:0 22px 48px rgba(183,255,50,.2)}
.footer-v7-call{display:flex;flex-direction:column;min-height:58px;justify-content:center;padding:10px 20px;border:1px solid rgba(255,255,255,.14);border-radius:18px;color:#fff;text-decoration:none;transition:.22s}.footer-v7-call small{color:#789099;font-size:9px;letter-spacing:.11em;text-transform:uppercase}.footer-v7-call strong{margin-top:4px;font-size:13px}.footer-v7-call:hover{border-color:rgba(183,255,50,.42);background:rgba(183,255,50,.05)}
.footer-v7-directory{display:grid;grid-template-columns:minmax(260px,1.25fr) minmax(120px,.55fr) minmax(230px,1fr) minmax(230px,.85fr);gap:clamp(28px,4vw,58px);padding:clamp(40px,5vw,60px) 4px 34px;border-bottom:1px solid rgba(255,255,255,.09)}
.footer-v7-brand{display:inline-flex;align-items:center;gap:12px;color:#fff;text-decoration:none}.footer-v7-brand .brand-symbol{width:58px}.footer-v7-brand .brand-copy{display:flex;flex-direction:column}.footer-v7-brand .brand-name{font-size:24px;line-height:1}.footer-v7-brand .brand-tagline{margin-top:5px;color:#82979f;font-size:8px;letter-spacing:.18em}
.footer-v7-tagline{margin:25px 0 0;color:#b7ff32;font-size:11px;font-weight:850;letter-spacing:.13em;text-transform:uppercase}.footer-v7-brand-block>p:last-of-type{max-width:430px;margin:14px 0 0;color:#9db0b7;font-size:13px;line-height:1.7}
.footer-v7-socials{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}.footer-v7-socials a{padding:10px 13px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:#dce6e3;text-decoration:none;font-size:10px;font-weight:800;transition:.2s}.footer-v7-socials a:hover{border-color:rgba(183,255,50,.44);color:#b7ff32}
.footer-v7-label{display:flex;align-items:center;gap:9px;margin:0 0 19px;color:#b7ff32;font-size:9px;font-weight:850;letter-spacing:.16em;text-transform:uppercase}.footer-v7-label::before{content:"";width:18px;height:1px;background:#b7ff32}
.footer-v7-column{display:flex;flex-direction:column;align-items:flex-start}.footer-v7-column>a{margin:0 0 12px;color:#dce6e3;text-decoration:none;font-size:13px;transition:.2s}.footer-v7-column>a:hover{color:#b7ff32;transform:translateX(4px)}
.footer-v7-services>a{display:grid;width:100%;grid-template-columns:28px 1fr;gap:8px;margin:0;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08)}.footer-v7-services>a span{padding-top:3px;color:#607981;font-size:9px}.footer-v7-services>a:hover{padding-left:4px;border-color:rgba(183,255,50,.3)}
.footer-v7-contact{display:flex;flex-direction:column}.footer-v7-contact>a,.footer-v7-hours{display:flex;flex-direction:column;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);color:#fff;text-decoration:none}.footer-v7-contact small,.footer-v7-hours small{color:#6f8790;font-size:8px;letter-spacing:.13em;text-transform:uppercase}.footer-v7-contact strong,.footer-v7-hours strong{margin-top:5px;color:#dce6e3;font-size:12px;line-height:1.45;overflow-wrap:anywhere}.footer-v7-contact>a:hover strong{color:#b7ff32}
.footer-v7-bottom{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:20px 4px 2px;color:#728890;font-size:10px}.footer-v7-bottom>div{display:flex;align-items:center;flex-wrap:wrap;gap:11px 18px}.footer-v7-bottom strong{color:#edf4f2;font-size:11px}.footer-v7-bottom a{color:#95a8ae;text-decoration:none}.footer-v7-bottom a:hover{color:#b7ff32}
@media(max-width:1040px){.footer-v7-consultation{grid-template-columns:1fr minmax(280px,.65fr)}.footer-v7-directory{grid-template-columns:1.2fr .7fr 1fr}.footer-v7-contact{grid-column:1/-1;display:grid;grid-template-columns:repeat(4,1fr);gap:0 20px}.footer-v7-contact .footer-v7-label{grid-column:1/-1}.footer-v7-contact>a,.footer-v7-hours{min-width:0}}
@media(max-width:760px){.site-footer-v7{padding-top:36px}.footer-v7-consultation{grid-template-columns:1fr;gap:28px;padding:28px 20px;border-radius:23px}.footer-v7-consultation-copy h2{font-size:clamp(34px,10vw,46px)}.footer-v7-consultation-action{width:100%}.footer-v7-primary,.footer-v7-call{width:100%}.footer-v7-directory{grid-template-columns:1fr;gap:34px;padding:40px 4px 30px}.footer-v7-contact{display:flex;grid-column:auto}.footer-v7-bottom{align-items:flex-start;flex-direction:column;padding-inline:4px}.footer-v7-bottom>div{align-items:flex-start}}
@media(max-width:390px){.footer-v7-consultation{padding:24px 16px}.footer-v7-consultation-copy h2{font-size:32px}.footer-v7-primary{padding-left:18px}.footer-v7-brand .brand-symbol{width:50px}.footer-v7-socials{display:grid;grid-template-columns:1fr}.footer-v7-socials a{text-align:center}.footer-v7-bottom>div:first-child{flex-direction:column;gap:5px}}

/* Consultation page footer — redesigned */
.consultation-footer{
  position:relative;
  overflow:hidden;
  padding:72px 0 0;
  background:
    radial-gradient(circle at 8% 12%,rgba(16,185,129,.16),transparent 28%),
    radial-gradient(circle at 92% 8%,rgba(53,105,255,.13),transparent 30%),
    #081721;
  color:#fff;
}
.consultation-footer::after{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  right:-180px;
  top:-210px;
  border:1px solid rgba(184,255,47,.12);
  border-radius:50%;
  box-shadow:0 0 0 58px rgba(184,255,47,.035),0 0 0 116px rgba(184,255,47,.02);
  pointer-events:none;
}
.consultation-footer-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(160px,.55fr) minmax(280px,.9fr);
  gap:72px;
  align-items:start;
  padding-bottom:56px;
}
.consultation-footer .brand{color:#fff;width:max-content}
.consultation-footer .brand-symbol{width:58px;height:auto}
.consultation-footer-kicker{
  margin:28px 0 12px;
  color:var(--lime);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.consultation-footer-copy{
  max-width:480px;
  color:rgba(255,255,255,.66);
  font-size:15px;
  line-height:1.75;
}
.consultation-footer-home{
  display:inline-flex;
  align-items:center;
  gap:13px;
  margin-top:28px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:750;
}
.consultation-footer-home i{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--lime);
  color:#081721;
  font-style:normal;
  transition:transform .25s ease;
}
.consultation-footer-home:hover i{transform:translate(2px,-2px)}
.consultation-footer-label{
  display:block;
  margin-bottom:22px;
  color:var(--lime);
  font-size:11px;
  font-weight:850;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.consultation-footer-nav{display:grid;gap:0}
.consultation-footer-nav a{
  padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
  color:rgba(255,255,255,.74);
  text-decoration:none;
  font-size:14px;
  transition:color .2s ease,padding-left .2s ease;
}
.consultation-footer-nav a:hover{color:#fff;padding-left:6px}
.consultation-footer-contact{
  padding:28px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:24px;
  background:rgba(255,255,255,.045);
  box-shadow:0 20px 70px rgba(0,0,0,.16);
  backdrop-filter:blur(12px);
}
.consultation-footer-contact h2{
  margin:0 0 10px;
  max-width:320px;
  color:#fff;
  font-size:26px;
  line-height:1.14;
  letter-spacing:-.8px;
}
.consultation-footer-contact>p{
  margin:0 0 22px;
  color:rgba(255,255,255,.61);
  font-size:13px;
  line-height:1.65;
}
.consultation-footer-actions{display:grid;gap:10px}
.consultation-footer-actions a{
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:13px 15px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.035);
}
.consultation-footer-actions a:hover{border-color:rgba(184,255,47,.38);background:rgba(184,255,47,.055)}
.consultation-footer-actions small{
  color:rgba(255,255,255,.46);
  font-size:10px;
  font-weight:750;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.consultation-footer-actions strong{font-size:13px;overflow-wrap:anywhere}
.consultation-footer-social{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
}
.consultation-footer-social a{
  color:rgba(255,255,255,.7);
  text-decoration:none;
  font-size:12px;
  font-weight:700;
}
.consultation-footer-social a:hover{color:var(--lime)}
.consultation-footer-bottom{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:22px;
  padding-bottom:24px;
  border-top:1px solid rgba(255,255,255,.09);
}
.consultation-footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.42);
  font-size:11px;
}
@media(max-width:960px){
  .consultation-footer{padding-top:58px}
  .consultation-footer-grid{grid-template-columns:1fr 1fr;gap:44px}
  .consultation-footer-contact{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;column-gap:28px}
  .consultation-footer-contact .consultation-footer-label,
  .consultation-footer-contact h2,
  .consultation-footer-contact>p{grid-column:1}
  .consultation-footer-actions,.consultation-footer-social{grid-column:2}
  .consultation-footer-actions{grid-row:1/4;align-self:center}
  .consultation-footer-social{align-self:end}
}
@media(max-width:640px){
  .consultation-footer{padding-top:46px}
  .consultation-footer-grid{grid-template-columns:1fr;gap:38px;padding-bottom:38px}
  .consultation-footer-copy{font-size:14px}
  .consultation-footer-nav{grid-template-columns:1fr 1fr;column-gap:22px}
  .consultation-footer-nav .consultation-footer-label{grid-column:1/-1}
  .consultation-footer-contact{grid-column:auto;display:block;padding:23px;border-radius:20px}
  .consultation-footer-contact h2{font-size:23px}
  .consultation-footer-actions,.consultation-footer-social{grid-column:auto;grid-row:auto}
  .consultation-footer-social{margin-top:16px}
  .consultation-footer-bottom{flex-direction:column;align-items:flex-start;gap:7px;padding-top:18px;padding-bottom:20px}
}
@media(max-width:390px){
  .consultation-footer-nav{grid-template-columns:1fr}
  .consultation-footer-contact{padding:20px}
  .consultation-footer-social{flex-direction:column}
}

/* Consultation page: match main footer and floating controls */
.consultation-page .consultation-site-footer{margin-top:0}
.consultation-page .footer-v7-consultation{margin-top:0}
.consultation-page .floating-contact{z-index:1300}
.consultation-page .back-top{z-index:1290}
@media(max-width:760px){
  .consultation-page .consultation-site-footer{padding-top:34px}
  .consultation-page .footer-v7-consultation{padding:26px 19px}
  .consultation-page .footer-v7-directory{padding-top:34px}
  .consultation-page .floating-contact{right:16px;bottom:16px}
  .consultation-page .back-top{right:16px;bottom:84px}
}
@media(max-width:420px){
  .consultation-page .footer-v7-consultation-copy h2{font-size:32px;line-height:1.05}
  .consultation-page .footer-v7-directory{gap:30px}
  .consultation-page .footer-v7-services a{grid-template-columns:26px 1fr}
}

/* =========================================================
   HOME + CONSULTATION FOOTERS — MOBILE RESPONSIVE FINAL FIX
   ========================================================= */
@media (max-width: 820px){
  .site-footer-v7{
    overflow:hidden;
    padding:34px 0 18px;
  }
  .site-footer-v7 .container{
    width:min(100% - 28px,1240px);
  }
  .footer-v7-consultation{
    grid-template-columns:1fr;
    gap:24px;
    padding:27px 22px;
    border-radius:24px;
  }
  .footer-v7-consultation-copy h2{
    max-width:15ch;
    font-size:clamp(32px,8.5vw,46px);
    line-height:1.02;
    letter-spacing:-.045em;
  }
  .footer-v7-consultation-copy>p:last-child{
    margin-top:15px;
    font-size:14px;
    line-height:1.65;
  }
  .footer-v7-consultation-action{
    width:100%;
    gap:10px;
  }
  .footer-v7-response{
    font-size:10px;
    line-height:1.45;
  }
  .footer-v7-primary,
  .footer-v7-call{
    width:100%;
    min-width:0;
  }
  .footer-v7-primary{
    min-height:56px;
    padding-left:19px;
  }
  .footer-v7-call{
    min-height:56px;
    border-radius:16px;
  }
  .footer-v7-directory{
    grid-template-columns:1fr 1fr;
    gap:34px 24px;
    padding:38px 2px 28px;
  }
  .footer-v7-brand-block{
    grid-column:1/-1;
  }
  .footer-v7-brand-block>p:last-of-type{
    max-width:560px;
    font-size:13px;
    line-height:1.65;
  }
  .footer-v7-contact{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:22px;
  }
  .footer-v7-contact .footer-v7-label{
    grid-column:1/-1;
  }
  .footer-v7-contact>a,
  .footer-v7-hours{
    min-width:0;
  }
  .footer-v7-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:18px 2px 2px;
  }
  .footer-v7-bottom>div{
    gap:8px 14px;
  }
}

@media (max-width: 560px){
  .site-footer-v7{
    padding-top:26px;
    padding-bottom:88px; /* floating controls safe area */
  }
  .site-footer-v7 .container{
    width:min(100% - 22px,1240px);
  }
  .footer-v7-orb{
    opacity:.55;
  }
  .footer-v7-consultation{
    gap:21px;
    padding:23px 17px;
    border-radius:21px;
  }
  .footer-v7-kicker{
    margin-bottom:12px;
    font-size:8px;
    line-height:1.5;
    letter-spacing:.13em;
  }
  .footer-v7-kicker::before{
    width:18px;
  }
  .footer-v7-consultation-copy h2{
    max-width:none;
    font-size:clamp(29px,9.5vw,39px);
    line-height:1.04;
  }
  .footer-v7-consultation-copy>p:last-child{
    margin-top:13px;
    font-size:13px;
    line-height:1.6;
  }
  .footer-v7-response{
    align-items:flex-start;
  }
  .footer-v7-response span{
    margin-top:3px;
    flex:0 0 auto;
  }
  .footer-v7-primary{
    min-height:54px;
    gap:14px;
    padding:0 10px 0 17px;
    font-size:12px;
  }
  .footer-v7-primary i{
    width:36px;
    height:36px;
  }
  .footer-v7-call{
    min-height:54px;
    padding:9px 16px;
  }
  .footer-v7-directory{
    grid-template-columns:1fr;
    gap:30px;
    padding:34px 2px 25px;
  }
  .footer-v7-brand-block,
  .footer-v7-contact{
    grid-column:auto;
  }
  .footer-v7-brand{
    gap:10px;
  }
  .footer-v7-brand .brand-symbol{
    width:50px;
  }
  .footer-v7-brand .brand-name{
    font-size:21px;
  }
  .footer-v7-tagline{
    margin-top:20px;
    font-size:9px;
    line-height:1.5;
  }
  .footer-v7-brand-block>p:last-of-type{
    margin-top:11px;
    font-size:12.5px;
    line-height:1.65;
  }
  .footer-v7-socials{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:17px;
  }
  .footer-v7-socials a{
    display:flex;
    min-height:43px;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:9px 10px;
  }
  .footer-v7-label{
    margin-bottom:15px;
  }
  .footer-v7-column>a{
    display:flex;
    width:100%;
    min-height:42px;
    align-items:center;
    margin:0;
    padding:9px 0;
    border-bottom:1px solid rgba(255,255,255,.07);
    font-size:13px;
  }
  .footer-v7-services>a{
    min-height:46px;
    padding:10px 0;
  }
  .footer-v7-contact{
    display:flex;
  }
  .footer-v7-contact>a,
  .footer-v7-hours{
    padding:13px 0;
  }
  .footer-v7-contact strong,
  .footer-v7-hours strong{
    font-size:12px;
    line-height:1.5;
  }
  .footer-v7-bottom{
    padding-top:17px;
    font-size:9px;
  }
  .footer-v7-bottom>div{
    width:100%;
  }
  .footer-v7-bottom>div:last-child{
    display:grid;
    grid-template-columns:repeat(3,max-content);
    justify-content:start;
    gap:10px 16px;
  }

  /* Keep floating controls clear of both page footers */
  .floating-contact,
  .floating-contact-wrap,
  .floating-actions{
    right:14px !important;
    bottom:18px !important;
  }
  .back-to-top,
  #backToTop,
  .to-top{
    right:76px !important;
    bottom:18px !important;
  }
}

@media (max-width: 380px){
  .site-footer-v7 .container{
    width:min(100% - 18px,1240px);
  }
  .footer-v7-consultation{
    padding:21px 14px;
  }
  .footer-v7-consultation-copy h2{
    font-size:28px;
  }
  .footer-v7-primary{
    font-size:11.5px;
  }
  .footer-v7-socials{
    grid-template-columns:1fr;
  }
  .footer-v7-bottom>div:last-child{
    grid-template-columns:1fr 1fr;
    width:100%;
  }
  .footer-v7-bottom a{
    display:inline-flex;
    min-height:34px;
    align-items:center;
  }
  .floating-contact,
  .floating-contact-wrap,
  .floating-actions{
    right:10px !important;
    bottom:12px !important;
  }
  .back-to-top,
  #backToTop,
  .to-top{
    right:68px !important;
    bottom:12px !important;
  }
}

/* Hiring and job enquiry consultation page */
.enquiry-switch{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0 0 24px;padding:6px;border:1px solid rgba(8,31,43,.12);border-radius:22px;background:#eef3f0}
.enquiry-switch__button{display:flex;align-items:center;gap:12px;width:100%;min-height:76px;padding:13px 15px;border:0;border-radius:17px;background:transparent;color:#17303a;text-align:left;cursor:pointer;transition:.25s ease;font:inherit}
.enquiry-switch__button:hover{background:rgba(255,255,255,.62)}
.enquiry-switch__button.is-active{background:#fff;box-shadow:0 10px 30px rgba(7,31,42,.09);color:#071c26}
.enquiry-switch__icon{display:grid;place-items:center;flex:0 0 38px;height:38px;border-radius:12px;background:#dce7e2;font-size:19px;font-weight:800}
.enquiry-switch__button.is-active .enquiry-switch__icon{background:#b8ff28}
.enquiry-switch__button span:last-child{display:grid;gap:3px;min-width:0}
.enquiry-switch__button strong{font-size:.84rem;line-height:1.2}
.enquiry-switch__button small{font-size:.66rem;line-height:1.35;color:#6d7e84}
.enquiry-panel{animation:enquiryPanelIn .32s ease}
@keyframes enquiryPanelIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.enquiry-panel__heading{margin:0 0 20px;padding:18px 19px;border-radius:18px;background:linear-gradient(135deg,#092c32,#0b5347);color:#fff}
.enquiry-panel__heading span{display:block;margin-bottom:7px;color:#b8ff28;font-size:.65rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.enquiry-panel__heading h3{margin:0 0 7px;font-family:"Plus Jakarta Sans",sans-serif;font-size:1.15rem;line-height:1.28}
.enquiry-panel__heading p{margin:0;color:rgba(255,255,255,.7);font-size:.76rem;line-height:1.55}
.resume-upload{position:relative;display:flex!important;align-items:center;gap:16px;padding:20px!important;margin-top:3px;border:1.5px dashed rgba(8,83,71,.32)!important;border-radius:18px;background:#f4f8f5;cursor:pointer;transition:.25s ease}
.resume-upload:hover{border-color:#0a806b!important;background:#edf8f1}
.resume-upload input{position:absolute;inline-size:1px!important;block-size:1px!important;opacity:0;pointer-events:none}
.resume-upload__icon{display:grid;place-items:center;flex:0 0 48px;height:48px;border-radius:14px;background:#b8ff28;color:#071c26;font-size:1.35rem;font-weight:800}
.resume-upload__copy{display:grid;gap:3px;min-width:0}
.resume-upload__copy strong{font-size:.86rem;color:#0b2029}
.resume-upload__copy small{font-size:.68rem;color:#74858a}
.resume-upload__copy em{margin-top:3px;color:#087664;font-size:.72rem;font-style:normal;font-weight:700;overflow-wrap:anywhere}
.resume-note{margin:12px 0 18px;padding:13px 15px;border-radius:14px;background:#fff8df;color:#665315;font-size:.68rem;line-height:1.55;border:1px solid #f1dfa3}
.resume-note strong{color:#473900}
.consultation-form-note.is-error{color:#b3261e!important}
.consultation-form-note.is-success{color:#087664!important;font-weight:700}
@media(max-width:680px){
  .enquiry-switch{grid-template-columns:1fr;padding:5px;border-radius:19px}
  .enquiry-switch__button{min-height:68px;padding:11px 12px}
  .enquiry-switch__icon{flex-basis:34px;height:34px;border-radius:10px}
  .enquiry-panel__heading{padding:16px;border-radius:16px}
  .enquiry-panel__heading h3{font-size:1rem}
  .resume-upload{align-items:flex-start;padding:16px!important}
  .resume-upload__icon{flex-basis:42px;height:42px}
}
@media(max-width:380px){
  .enquiry-switch__button small{font-size:.62rem}
  .resume-upload{gap:12px}
  .resume-upload__copy strong{font-size:.8rem}
}


/* Professional company hiring form redesign */
.company-hiring-panel{display:grid;gap:22px}
.company-hiring-intro{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(210px,.65fr);gap:24px;padding:25px;border-radius:24px;background:linear-gradient(135deg,#071f2b 0%,#0a4d43 100%);color:#fff;overflow:hidden;position:relative}
.company-hiring-intro:after{content:"";position:absolute;width:190px;height:190px;border:34px solid rgba(184,255,40,.08);border-radius:50%;right:-70px;top:-85px}
.company-hiring-intro>div{position:relative;z-index:1}
.company-hiring-kicker{display:block;margin-bottom:10px;color:#b8ff28;font-size:.66rem;font-weight:850;letter-spacing:.16em;text-transform:uppercase}
.company-hiring-intro h3{max-width:560px;margin:0 0 10px;font-family:"Plus Jakarta Sans",sans-serif;font-size:1.42rem;line-height:1.18;letter-spacing:-.035em}
.company-hiring-intro p{max-width:600px;margin:0;color:rgba(255,255,255,.72);font-size:.78rem;line-height:1.62}
.company-hiring-promise{align-self:stretch;display:grid;align-content:center;gap:8px;padding:17px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.07);backdrop-filter:blur(8px)}
.company-hiring-promise strong{margin-bottom:3px;color:#fff;font-size:.72rem}
.company-hiring-promise span{position:relative;padding-left:17px;color:rgba(255,255,255,.78);font-size:.68rem}
.company-hiring-promise span:before{content:"✓";position:absolute;left:0;color:#b8ff28;font-weight:900}
.company-form-section{padding:22px;border:1px solid rgba(7,31,42,.09);border-radius:22px;background:linear-gradient(180deg,#fff,#fbfcfb);box-shadow:0 12px 35px rgba(11,34,42,.045)}
.company-form-section__head{display:flex;align-items:center;gap:12px;margin-bottom:18px;padding-bottom:15px;border-bottom:1px solid rgba(7,31,42,.08)}
.company-form-section__head>span{display:grid;place-items:center;flex:0 0 35px;height:35px;border-radius:11px;background:#b8ff28;color:#071c26;font-size:.7rem;font-weight:900}
.company-form-section__head>div{display:grid;gap:2px}
.company-form-section__head strong{color:#0a202a;font-size:.84rem}
.company-form-section__head small{color:#728187;font-size:.66rem;line-height:1.4}
.company-hiring-summary{display:flex;align-items:flex-start;gap:13px;padding:16px 18px;border:1px solid rgba(10,128,107,.16);border-radius:17px;background:#eef8f3}
.company-hiring-summary__icon{display:grid;place-items:center;flex:0 0 34px;height:34px;border-radius:50%;background:#0b7d69;color:#fff;font-weight:900}
.company-hiring-summary strong{display:block;margin:1px 0 4px;color:#0b322f;font-size:.76rem}
.company-hiring-summary p{margin:0;color:#58706f;font-size:.68rem;line-height:1.52}
.company-hiring-panel .consultation-field-row{gap:13px}
.company-hiring-panel label{font-size:.72rem}
.company-hiring-panel input,.company-hiring-panel select,.company-hiring-panel textarea{background:#fff;border-color:rgba(7,31,42,.13)}
.company-hiring-panel input:focus,.company-hiring-panel select:focus,.company-hiring-panel textarea:focus{border-color:#168e78;box-shadow:0 0 0 4px rgba(22,142,120,.1)}
@media(max-width:680px){
 .company-hiring-panel{gap:16px}
 .company-hiring-intro{grid-template-columns:1fr;padding:20px;border-radius:20px}
 .company-hiring-intro h3{font-size:1.18rem}
 .company-hiring-promise{grid-template-columns:1fr 1fr;padding:14px}
 .company-hiring-promise strong{grid-column:1/-1}
 .company-form-section{padding:17px 14px;border-radius:18px}
 .company-form-section__head{align-items:flex-start;margin-bottom:15px}
 .company-form-section__head small{font-size:.63rem}
 .company-hiring-summary{padding:14px}
}
@media(max-width:400px){
 .company-hiring-intro{padding:18px 15px}
 .company-hiring-promise{grid-template-columns:1fr}
 .company-form-section{padding-inline:12px}
 .company-form-section__head>span{flex-basis:32px;height:32px}
}

/* Dual enquiry visual hierarchy + responsive refinement */
.consultation-form-card{padding:clamp(24px,3vw,42px);overflow:hidden}
.consultation-form-head{max-width:720px;margin-bottom:24px}
.enquiry-switch{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:0 0 28px;padding:8px;border:1px solid rgba(10,35,48,.1);background:#f4f8f5;border-radius:24px}
.enquiry-switch__button{min-height:104px;padding:18px 20px;border-radius:18px;border:1px solid transparent;background:transparent;display:grid;grid-template-columns:48px 1fr;align-items:center;text-align:left;gap:14px;transition:.25s ease}
.enquiry-switch__button:hover{background:#fff;border-color:rgba(10,35,48,.1)}
.enquiry-switch__button.is-active{background:#071b26;color:#fff;box-shadow:0 14px 34px rgba(4,25,35,.18)}
.enquiry-switch__icon{width:48px;height:48px;border-radius:15px;display:grid;place-items:center;background:#fff;color:#087b67;font-size:22px}
.enquiry-switch__button.is-active .enquiry-switch__icon{background:#b9ff22;color:#071b26}
.enquiry-switch__button strong{display:block;font-size:16px;line-height:1.25;margin-bottom:5px}
.enquiry-switch__button small{display:block;line-height:1.45;color:#708089}
.enquiry-switch__button.is-active small{color:#b8c8ce}
.company-hiring-intro,.candidate-intro{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(220px,.8fr);gap:24px;align-items:stretch;margin-bottom:22px;padding:26px;border-radius:24px;background:linear-gradient(135deg,#071d29,#0a3f3a);color:#fff;overflow:hidden;position:relative}
.company-hiring-intro:after,.candidate-intro:after{content:"";position:absolute;width:230px;height:230px;border:45px solid rgba(185,255,34,.07);border-radius:50%;right:-90px;top:-110px}
.company-hiring-intro h3,.candidate-intro h3{font-size:clamp(25px,3vw,38px);line-height:1.05;margin:8px 0 12px;max-width:680px}
.company-hiring-intro p,.candidate-intro p{color:#b8c8ce;line-height:1.7;max-width:690px}
.company-hiring-kicker,.candidate-kicker{display:inline-flex;color:#b9ff22;text-transform:uppercase;letter-spacing:.14em;font-size:11px;font-weight:800}
.company-hiring-promise,.candidate-trust{position:relative;z-index:1;padding:18px;border-radius:18px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);display:flex;flex-direction:column;justify-content:center;gap:10px}
.company-hiring-promise strong,.candidate-trust strong{font-size:13px;text-transform:uppercase;letter-spacing:.1em;color:#b9ff22;margin-bottom:3px}
.company-hiring-promise span,.candidate-trust span{padding:10px 12px;border-radius:12px;background:rgba(255,255,255,.07);font-size:13px}
.company-form-section,.candidate-form-section{margin-top:16px;padding:22px;border-radius:22px;border:1px solid #dce5df;background:#fbfcfa}
.company-form-section__head,.candidate-form-section__head{display:flex;align-items:center;gap:14px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #e1e8e3}
.company-form-section__head>span,.candidate-form-section__head>span{flex:0 0 42px;width:42px;height:42px;border-radius:13px;background:#071d29;color:#b9ff22;display:grid;place-items:center;font-size:12px;font-weight:800}
.company-form-section__head strong,.candidate-form-section__head strong{display:block;font-size:17px;color:#0a1e29}
.company-form-section__head small,.candidate-form-section__head small{display:block;margin-top:3px;color:#718087;line-height:1.4}
.company-hiring-summary,.candidate-profile-summary{display:flex;align-items:flex-start;gap:14px;margin-top:18px;padding:18px 20px;border-radius:18px;background:#eff8e8;border:1px solid #d8ecc9}
.company-hiring-summary__icon,.candidate-profile-summary>span{flex:0 0 36px;width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#b9ff22;color:#071d29;font-weight:900}
.company-hiring-summary p,.candidate-profile-summary p{margin:4px 0 0;color:#66777e;line-height:1.55}
.candidate-resume-section{background:linear-gradient(180deg,#fbfcfa,#f3f9f2)}
.consultation-form label{font-weight:700;color:#344650}
.consultation-form input,.consultation-form select,.consultation-form textarea{font-weight:500;background:#fff;border-color:#d8e1dc}
.consultation-submit{margin-top:22px;min-height:62px;font-size:16px}
@media(max-width:900px){
  .company-hiring-intro,.candidate-intro{grid-template-columns:1fr}
  .company-hiring-promise,.candidate-trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}
  .company-hiring-promise strong,.candidate-trust strong{grid-column:1/-1}
}
@media(max-width:680px){
  .consultation-form-card{padding:18px;border-radius:26px}
  .enquiry-switch{grid-template-columns:1fr;padding:6px;border-radius:20px}
  .enquiry-switch__button{min-height:82px;padding:14px;grid-template-columns:42px 1fr;border-radius:15px}
  .enquiry-switch__icon{width:42px;height:42px;border-radius:13px}
  .company-hiring-intro,.candidate-intro{padding:20px;border-radius:20px}
  .company-hiring-intro h3,.candidate-intro h3{font-size:29px}
  .company-hiring-promise,.candidate-trust{grid-template-columns:1fr;padding:14px}
  .company-form-section,.candidate-form-section{padding:17px;border-radius:18px;margin-top:13px}
  .company-form-section__head,.candidate-form-section__head{align-items:flex-start}
  .company-form-section__head>span,.candidate-form-section__head>span{width:38px;height:38px;flex-basis:38px}
  .consultation-field-row{grid-template-columns:1fr!important;gap:14px!important}
  .resume-upload{padding:18px;grid-template-columns:46px 1fr}
  .company-hiring-summary,.candidate-profile-summary{padding:15px}
  .consultation-submit{width:100%;justify-content:space-between}
}
@media(max-width:390px){
  .consultation-form-card{padding:14px;border-radius:22px}
  .enquiry-switch__button strong{font-size:15px}
  .enquiry-switch__button small{font-size:12px}
  .company-hiring-intro,.candidate-intro{padding:17px}
  .company-hiring-intro h3,.candidate-intro h3{font-size:25px}
  .company-form-section,.candidate-form-section{padding:14px}
  .company-form-section__head strong,.candidate-form-section__head strong{font-size:15px}
  .company-form-section__head small,.candidate-form-section__head small{font-size:12px}
  .resume-upload{grid-template-columns:1fr;text-align:center}
  .resume-upload__icon{margin:auto}
}

/* Reference-led dual enquiry redesign — compact, professional, mobile-first */
.consultation-form-card{max-width:760px;margin-inline:auto;padding:38px 36px 34px;border-radius:34px;background:#fff;box-shadow:0 28px 80px rgba(6,31,37,.12);border:1px solid rgba(8,63,54,.08);position:relative;overflow:hidden}
.consultation-form-card:before{content:"";position:absolute;left:34px;right:34px;top:0;height:4px;border-radius:0 0 10px 10px;background:linear-gradient(90deg,#b8ff28,#087b67)}
.consultation-form-head{max-width:600px;margin-bottom:22px}
.consultation-form-head span{font-size:.72rem;letter-spacing:.17em;font-weight:850;text-transform:uppercase;color:#087b67}
.consultation-form-head h2{margin:12px 0 10px;font-size:clamp(2rem,4vw,3.25rem);line-height:1.02;letter-spacing:-.055em;color:#071b26}
.consultation-form-head p{margin:0;color:#6f7f87;font-size:1rem;line-height:1.62}
.enquiry-switch{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin:0 0 32px;padding:7px;border:1px solid #cddbd5;border-radius:26px;background:linear-gradient(135deg,#f3f8f5,#eef5f1)}
.enquiry-switch__button{display:grid;grid-template-columns:46px 1fr;align-items:center;gap:13px;min-height:94px;padding:14px 17px;border:0;border-radius:20px;background:transparent;color:#18303c;text-align:left;box-shadow:none;transition:background .2s ease,box-shadow .2s ease,transform .2s ease}
.enquiry-switch__button:hover{transform:none;background:rgba(255,255,255,.6)}
.enquiry-switch__button.is-active{background:#fff;color:#132b37;box-shadow:0 12px 28px rgba(13,45,48,.09)}
.enquiry-switch__icon{width:44px;height:44px;border-radius:14px;background:#ddebe5;color:#153b3e;display:grid;place-items:center;font-size:1.15rem}
.enquiry-switch__button.is-active .enquiry-switch__icon{background:#b8ff28;color:#071b26}
.enquiry-switch__button strong{display:block;margin:0 0 4px;font-size:1rem;line-height:1.18}
.enquiry-switch__button small{display:block;color:#76868d;font-size:.76rem;line-height:1.35}
.enquiry-hero{margin-bottom:24px;padding:23px 24px;border-radius:22px;background:linear-gradient(135deg,#07303a,#08705d);color:#fff;box-shadow:0 18px 38px rgba(5,65,57,.13)}
.enquiry-hero span{display:block;margin-bottom:8px;color:#b8ff28;font-size:.68rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase}
.enquiry-hero h3{margin:0 0 8px;font-size:clamp(1.35rem,3vw,1.85rem);line-height:1.1;letter-spacing:-.035em}
.enquiry-hero p{margin:0;color:rgba(255,255,255,.72);font-size:.86rem;line-height:1.55}
.reference-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 16px}
.reference-form-grid label{display:grid;gap:7px;color:#344852;font-size:.78rem;font-weight:750;min-width:0}
.reference-form-grid__wide{grid-column:1/-1}
.reference-form-grid input,.reference-form-grid select,.reference-form-grid textarea{width:100%;min-width:0;border:1px solid #d6dfda;border-radius:17px;background:#fff;padding:15px 16px;color:#10242e;font:inherit;font-weight:500;outline:none;transition:border-color .2s ease,box-shadow .2s ease}
.reference-form-grid input,.reference-form-grid select{height:56px}
.reference-form-grid textarea{min-height:145px;resize:vertical;line-height:1.55}
.reference-form-grid input:focus,.reference-form-grid select:focus,.reference-form-grid textarea:focus{border-color:#087b67;box-shadow:0 0 0 4px rgba(8,123,103,.09)}
.reference-form-grid input::placeholder,.reference-form-grid textarea::placeholder{color:#8b9294;font-weight:450}
.reference-resume{margin-top:16px;padding:18px 20px;border:1px dashed #9bbfb4;border-radius:20px;background:#f7fbf8;min-height:100px}
.reference-resume .resume-upload__icon{background:#b8ff28;color:#071b26}
.reference-resume-note{margin-top:10px;border-radius:14px;font-size:.72rem;line-height:1.55}
.consultation-consent{margin:22px 0 18px;align-items:flex-start;color:#657780;font-size:.78rem;line-height:1.5}
.consultation-consent input{margin-top:2px;flex:0 0 auto}
.consultation-submit{min-height:64px;border-radius:999px;font-size:1rem;box-shadow:0 18px 38px rgba(151,232,19,.22)}
.consultation-form-note{text-align:center;margin-top:14px;font-size:.72rem;color:#7c8a90}
.company-form-section,.candidate-form-section,.company-hiring-intro,.candidate-intro,.company-hiring-summary,.candidate-profile-summary{all:unset}
.enquiry-panel[hidden]{display:none!important}
@media (max-width:720px){
  .consultation-form-card{padding:32px 26px 28px;border-radius:30px}
  .consultation-form-card:before{left:28px;right:28px}
  .consultation-form-head h2{font-size:2.45rem}
  .enquiry-switch__button{min-height:88px;padding:12px 14px;grid-template-columns:40px 1fr}
  .enquiry-switch__icon{width:40px;height:40px;border-radius:12px}
}
@media (max-width:560px){
  .consultation-form-card{padding:27px 26px 24px;border-radius:28px}
  .consultation-form-head{margin-bottom:18px}
  .consultation-form-head h2{font-size:2rem;line-height:1.06}
  .consultation-form-head p{font-size:.91rem}
  .enquiry-switch{grid-template-columns:repeat(2,minmax(0,1fr));padding:6px;border-radius:22px;margin-bottom:28px}
  .enquiry-switch__button{display:flex;min-height:98px;padding:13px 11px;gap:10px;border-radius:17px}
  .enquiry-switch__icon{flex:0 0 40px}
  .enquiry-switch__button strong{font-size:.9rem}
  .enquiry-switch__button small{font-size:.67rem}
  .enquiry-hero{padding:21px 20px;border-radius:20px}
  .enquiry-hero h3{font-size:1.42rem}
  .reference-form-grid{grid-template-columns:1fr;gap:12px}
  .reference-form-grid__wide{grid-column:auto}
  .reference-form-grid input,.reference-form-grid select{height:55px}
  .reference-form-grid textarea{min-height:142px}
  .consultation-submit{width:100%;min-height:62px}
}
@media (max-width:390px){
  .consultation-form-card{padding:24px 18px 22px;border-radius:24px}
  .consultation-form-card:before{left:20px;right:20px}
  .consultation-form-head h2{font-size:1.75rem}
  .enquiry-switch{grid-template-columns:1fr;gap:5px}
  .enquiry-switch__button{min-height:74px}
  .enquiry-hero{padding:18px 16px}
  .enquiry-hero h3{font-size:1.25rem}
  .reference-form-grid input,.reference-form-grid select,.reference-form-grid textarea{border-radius:15px;padding-inline:14px}
  .reference-resume{padding:15px}
}

/* Final enquiry selector hierarchy rework */
.enquiry-switch{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0 0 34px;
  padding:10px;
  border:1px solid rgba(8,45,49,.14);
  border-radius:28px;
  background:linear-gradient(145deg,#f5faf7 0%,#edf5f1 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 18px 45px rgba(7,40,43,.07);
}
.enquiry-switch__button{
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:54px minmax(0,1fr) 28px;
  align-items:center;
  gap:15px;
  width:100%;
  min-height:116px;
  padding:18px 18px;
  overflow:hidden;
  border:1px solid rgba(12,57,60,.08);
  border-radius:21px;
  background:rgba(255,255,255,.4);
  color:#18313b;
  text-align:left;
  cursor:pointer;
  box-shadow:none;
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease,transform .25s ease,color .25s ease;
}
.enquiry-switch__button::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  border-radius:inherit;
  background:transparent;
  transition:background .25s ease;
}
.enquiry-switch__button:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.78);
  border-color:rgba(8,117,98,.2);
}
.enquiry-switch__button.is-active{
  background:#fff;
  color:#0a202a;
  border-color:rgba(8,117,98,.18);
  box-shadow:0 14px 34px rgba(8,43,46,.12);
  transform:translateY(-2px);
}
.enquiry-switch__button.is-active::before{background:linear-gradient(180deg,#b8ff24,#087d69)}
.enquiry-switch__icon{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:17px;
  background:#e1ece7;
  color:#0a6357;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.enquiry-switch__icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.enquiry-switch__button.is-active .enquiry-switch__icon{
  background:#b8ff24;
  color:#071d27;
  transform:scale(1.04);
}
.enquiry-switch__copy{display:grid;align-content:center;gap:5px;min-width:0}
.enquiry-switch__button strong{margin:0;font-size:1.04rem;line-height:1.16;letter-spacing:-.015em}
.enquiry-switch__button small{margin:0;color:#72838a;font-size:.78rem;line-height:1.4}
.enquiry-switch__button em{
  width:max-content;
  margin-top:3px;
  color:#0b7767;
  font-size:.62rem;
  font-style:normal;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.enquiry-switch__state{
  display:grid;
  place-items:center;
  width:27px;
  height:27px;
  border:1px solid rgba(9,61,61,.16);
  border-radius:50%;
  color:transparent;
  font-size:.75rem;
  font-weight:900;
  transition:.25s ease;
}
.enquiry-switch__button.is-active .enquiry-switch__state{
  border-color:#0c806d;
  background:#0c806d;
  color:#fff;
}
.enquiry-switch__button:focus-visible{outline:3px solid rgba(184,255,36,.6);outline-offset:3px}

@media (max-width:720px){
  .enquiry-switch{gap:8px;padding:7px;border-radius:23px;margin-bottom:28px}
  .enquiry-switch__button{grid-template-columns:44px minmax(0,1fr) 22px;gap:10px;min-height:102px;padding:14px 12px;border-radius:17px}
  .enquiry-switch__icon{width:44px;height:44px;border-radius:14px}
  .enquiry-switch__icon svg{width:20px;height:20px}
  .enquiry-switch__button strong{font-size:.91rem}
  .enquiry-switch__button small{font-size:.68rem;line-height:1.32}
  .enquiry-switch__button em{font-size:.54rem;letter-spacing:.08em}
  .enquiry-switch__state{width:22px;height:22px;font-size:.64rem}
}
@media (max-width:520px){
  .enquiry-switch{grid-template-columns:1fr;gap:7px;padding:7px;border-radius:22px}
  .enquiry-switch__button{min-height:88px;grid-template-columns:46px minmax(0,1fr) 26px;padding:13px 14px}
  .enquiry-switch__button.is-active{transform:none}
  .enquiry-switch__button:hover{transform:none}
  .enquiry-switch__icon{width:46px;height:46px}
  .enquiry-switch__button strong{font-size:.96rem}
  .enquiry-switch__button small{font-size:.72rem}
  .enquiry-switch__button em{margin-top:1px}
  .enquiry-switch__state{width:25px;height:25px}
}
@media (max-width:360px){
  .enquiry-switch__button{grid-template-columns:42px minmax(0,1fr) 23px;gap:9px;padding:12px 10px}
  .enquiry-switch__icon{width:42px;height:42px;border-radius:13px}
  .enquiry-switch__button strong{font-size:.9rem}
  .enquiry-switch__button small{font-size:.66rem}
}

/* ===== FINAL BOOKING OPTIONS: ALL-MODE VISUAL HIERARCHY ===== */
.consultation-form-card{
  width:min(100%,820px);
  padding:clamp(24px,3.4vw,44px);
  border-radius:34px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdfc 100%);
  border:1px solid rgba(8,48,48,.09);
  box-shadow:0 30px 90px rgba(4,30,39,.13);
}
.consultation-form-head{max-width:650px;margin-bottom:26px}
.consultation-form-head>span{display:inline-flex;align-items:center;gap:9px;color:#087b67;font-size:.7rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase}
.consultation-form-head>span::before{content:"";width:25px;height:2px;border-radius:99px;background:#b8ff24}
.consultation-form-head h2{max-width:620px;margin:12px 0 10px;font-size:clamp(2rem,4.5vw,3.25rem);line-height:.98;letter-spacing:-.055em;color:#071d27}
.consultation-form-head p{max-width:620px;margin:0;color:#667981;font-size:clamp(.92rem,1.3vw,1.02rem);line-height:1.65}

.enquiry-switch{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0 0 30px;
  padding:8px;
  border:1px solid #d4e1dc;
  border-radius:28px;
  background:linear-gradient(135deg,#f0f6f3 0%,#eaf2ee 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
}
.enquiry-switch__button{
  position:relative;
  display:grid;
  grid-template-columns:54px minmax(0,1fr) 28px;
  align-items:center;
  gap:14px;
  width:100%;
  min-height:118px;
  padding:18px 18px;
  border:1px solid transparent;
  border-radius:21px;
  background:transparent;
  color:#17303b;
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:background .22s ease,border-color .22s ease,box-shadow .22s ease,transform .22s ease,color .22s ease;
}
.enquiry-switch__button::before{content:"";position:absolute;left:0;top:18px;bottom:18px;width:4px;border-radius:0 99px 99px 0;background:transparent;transition:.22s ease}
.enquiry-switch__button:hover{background:rgba(255,255,255,.66);border-color:rgba(8,76,66,.08)}
.enquiry-switch__button.is-active{
  background:#fff;
  border-color:rgba(8,117,98,.16);
  color:#071d27;
  box-shadow:0 16px 38px rgba(7,39,44,.11);
  transform:translateY(-1px);
}
.enquiry-switch__button.is-active::before{background:linear-gradient(180deg,#b8ff24,#087b67)}
.enquiry-switch__icon{
  display:grid;place-items:center;width:54px;height:54px;border-radius:17px;
  background:#dce9e4;color:#0b6358;
  transition:background .22s ease,color .22s ease,transform .22s ease;
}
.enquiry-switch__icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.enquiry-switch__button.is-active .enquiry-switch__icon{background:#b8ff24;color:#071d27;transform:scale(1.04)}
.enquiry-switch__copy{display:grid;align-content:center;gap:4px;min-width:0}
.enquiry-switch__button strong{margin:0;font-size:1.04rem;line-height:1.16;letter-spacing:-.015em;color:inherit}
.enquiry-switch__button small{margin:0;color:#74868d;font-size:.78rem;line-height:1.42}
.enquiry-switch__button em{order:-1;width:max-content;margin:0 0 2px;color:#087b67;font-size:.59rem;font-style:normal;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.enquiry-switch__state{display:grid;place-items:center;width:28px;height:28px;border:1px solid rgba(8,83,73,.18);border-radius:50%;color:transparent;font-size:.75rem;font-weight:900;transition:.22s ease}
.enquiry-switch__button.is-active .enquiry-switch__state{border-color:#087b67;background:#087b67;color:#fff}
.enquiry-switch__button:focus-visible{outline:3px solid rgba(184,255,36,.65);outline-offset:3px}

.enquiry-panel{animation:enquiryPanelIn .3s ease both}
@keyframes enquiryPanelIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.enquiry-hero{position:relative;overflow:hidden;margin-bottom:24px;padding:26px 28px;border-radius:24px;background:linear-gradient(125deg,#06303a 0%,#07574d 56%,#087b67 100%);color:#fff;box-shadow:0 18px 44px rgba(4,61,56,.16)}
.enquiry-hero::after{content:"";position:absolute;width:220px;height:220px;right:-80px;top:-95px;border:1px solid rgba(184,255,36,.16);border-radius:50%;box-shadow:0 0 0 38px rgba(184,255,36,.06),0 0 0 76px rgba(184,255,36,.035)}
.enquiry-hero>span,.enquiry-hero>h3,.enquiry-hero>p{position:relative;z-index:1}
.enquiry-hero span{display:block;margin-bottom:9px;color:#b8ff24;font-size:.66rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase}
.enquiry-hero h3{max-width:620px;margin:0 0 9px;font-size:clamp(1.5rem,3vw,2.15rem);line-height:1.08;letter-spacing:-.04em}
.enquiry-hero p{max-width:620px;margin:0;color:rgba(255,255,255,.73);font-size:.88rem;line-height:1.6}

.reference-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 18px}
.reference-form-grid label{display:grid;align-content:start;gap:8px;min-width:0;color:#314650;font-size:.78rem;font-weight:800;line-height:1.25}
.reference-form-grid__wide{grid-column:1/-1}
.reference-form-grid input,.reference-form-grid select,.reference-form-grid textarea{
  width:100%;min-width:0;border:1px solid #d5dfda;border-radius:17px;background:#fff;padding:15px 16px;color:#10242e;font:inherit;font-size:.93rem;font-weight:500;outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.reference-form-grid input,.reference-form-grid select{height:58px}
.reference-form-grid textarea{min-height:150px;resize:vertical;line-height:1.58}
.reference-form-grid input:hover,.reference-form-grid select:hover,.reference-form-grid textarea:hover{border-color:#bacbc4}
.reference-form-grid input:focus,.reference-form-grid select:focus,.reference-form-grid textarea:focus{border-color:#087b67;background:#fff;box-shadow:0 0 0 4px rgba(8,123,103,.1)}
.reference-form-grid input::placeholder,.reference-form-grid textarea::placeholder{color:#8a9497;font-weight:450}
.reference-resume{margin-top:18px;border-radius:22px!important}
.consultation-consent{margin-top:22px;padding:15px 16px;border:1px solid #dce6e1;border-radius:16px;background:#f7faf8}
.consultation-submit{margin-top:18px;min-height:64px;padding-left:25px;font-size:1rem}
.consultation-form-note{margin:12px 0 0;text-align:center;font-size:.76rem;line-height:1.5}

@media (min-width:1100px){
  .consultation-form-card{padding:44px}
  .enquiry-switch__button{min-height:124px;padding:19px 20px}
  .reference-form-grid{gap:17px 20px}
}
@media (max-width:900px){
  .consultation-form-card{width:100%;max-width:760px;padding:32px 28px;border-radius:30px}
  .consultation-form-head h2{font-size:clamp(2rem,6vw,2.8rem)}
  .enquiry-switch__button{min-height:110px;grid-template-columns:48px minmax(0,1fr) 25px;padding:16px 14px;gap:12px}
  .enquiry-switch__icon{width:48px;height:48px;border-radius:15px}
  .enquiry-switch__button strong{font-size:.97rem}
}
@media (max-width:680px){
  .consultation-form-card{padding:26px 20px 24px;border-radius:26px}
  .consultation-form-card:before{left:22px;right:22px}
  .consultation-form-head{margin-bottom:22px}
  .consultation-form-head h2{font-size:clamp(1.9rem,9vw,2.55rem);line-height:1.02}
  .consultation-form-head p{font-size:.9rem;line-height:1.58}
  .enquiry-switch{grid-template-columns:1fr;gap:8px;padding:7px;border-radius:23px;margin-bottom:25px}
  .enquiry-switch__button{min-height:91px;grid-template-columns:46px minmax(0,1fr) 25px;padding:13px 14px;border-radius:17px}
  .enquiry-switch__button.is-active{transform:none}
  .enquiry-switch__icon{width:46px;height:46px;border-radius:14px}
  .enquiry-switch__button strong{font-size:.96rem}
  .enquiry-switch__button small{font-size:.72rem;line-height:1.35}
  .enquiry-switch__button em{font-size:.54rem;letter-spacing:.1em}
  .enquiry-hero{padding:21px 20px;border-radius:20px;margin-bottom:20px}
  .enquiry-hero h3{font-size:1.45rem}
  .enquiry-hero p{font-size:.82rem}
  .reference-form-grid{grid-template-columns:1fr;gap:13px}
  .reference-form-grid__wide{grid-column:auto}
  .reference-form-grid input,.reference-form-grid select{height:56px}
  .reference-form-grid textarea{min-height:140px}
  .consultation-submit{width:100%;min-height:62px}
}
@media (max-width:420px){
  .consultation-form-card{padding:23px 15px 21px;border-radius:23px}
  .consultation-form-card:before{left:18px;right:18px}
  .consultation-form-head>span{font-size:.62rem;letter-spacing:.13em}
  .consultation-form-head h2{font-size:2rem;letter-spacing:-.045em}
  .enquiry-switch{padding:6px;border-radius:20px}
  .enquiry-switch__button{grid-template-columns:42px minmax(0,1fr) 23px;gap:10px;min-height:86px;padding:12px 10px;border-radius:15px}
  .enquiry-switch__icon{width:42px;height:42px;border-radius:13px}
  .enquiry-switch__icon svg{width:19px;height:19px}
  .enquiry-switch__button strong{font-size:.91rem}
  .enquiry-switch__button small{font-size:.67rem}
  .enquiry-switch__button em{font-size:.5rem}
  .enquiry-switch__state{width:23px;height:23px;font-size:.63rem}
  .enquiry-hero{padding:19px 16px;border-radius:18px}
  .enquiry-hero h3{font-size:1.3rem}
  .reference-form-grid input,.reference-form-grid select,.reference-form-grid textarea{border-radius:15px;padding-inline:14px;font-size:.88rem}
  .consultation-consent{padding:13px 12px;font-size:.78rem}
  .consultation-submit{padding-left:19px;font-size:.9rem}
}
@media (max-width:350px){
  .consultation-form-card{padding-inline:12px}
  .consultation-form-head h2{font-size:1.78rem}
  .enquiry-switch__button{grid-template-columns:39px minmax(0,1fr) 21px;gap:8px;padding-inline:9px}
  .enquiry-switch__icon{width:39px;height:39px}
  .enquiry-switch__button strong{font-size:.86rem}
  .enquiry-switch__button small{font-size:.63rem}
  .enquiry-switch__state{width:21px;height:21px}
}

/* ===== ENQUIRY OPTION OVERLAP FIX — FINAL OVERRIDE ===== */
.enquiry-switch__button{
  grid-template-columns:54px minmax(0,1fr);
  padding-right:52px;
  overflow:visible;
}
.enquiry-switch__copy,
.enquiry-switch__button strong,
.enquiry-switch__button small,
.enquiry-switch__button em{
  min-width:0;
  max-width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:normal;
}
.enquiry-switch__state{
  position:absolute;
  top:50%;
  right:16px;
  z-index:2;
  transform:translateY(-50%);
}
.enquiry-switch__button.is-active .enquiry-switch__state{transform:translateY(-50%)}

/* Two-column layout is reserved for genuinely wide cards. */
@media (max-width:860px){
  .enquiry-switch{
    grid-template-columns:1fr;
    gap:9px;
    padding:8px;
    border-radius:24px;
  }
  .enquiry-switch__button{
    grid-template-columns:50px minmax(0,1fr);
    min-height:96px;
    padding:15px 54px 15px 15px;
    border-radius:18px;
  }
  .enquiry-switch__icon{width:50px;height:50px;border-radius:15px}
  .enquiry-switch__button strong{font-size:1rem;line-height:1.18}
  .enquiry-switch__button small{font-size:.75rem;line-height:1.38}
  .enquiry-switch__button em{font-size:.56rem;line-height:1.2}
  .enquiry-switch__state{right:16px;width:26px;height:26px}
}

@media (max-width:520px){
  .enquiry-switch{gap:7px;padding:6px;border-radius:21px}
  .enquiry-switch__button{
    grid-template-columns:44px minmax(0,1fr);
    min-height:90px;
    gap:12px;
    padding:13px 48px 13px 12px;
    border-radius:16px;
  }
  .enquiry-switch__icon{width:44px;height:44px;border-radius:13px}
  .enquiry-switch__copy{gap:3px}
  .enquiry-switch__button strong{font-size:.94rem;line-height:1.2}
  .enquiry-switch__button small{font-size:.7rem;line-height:1.34}
  .enquiry-switch__button em{font-size:.51rem;letter-spacing:.09em}
  .enquiry-switch__state{right:12px;width:24px;height:24px;font-size:.67rem}
}

@media (max-width:360px){
  .enquiry-switch__button{
    grid-template-columns:40px minmax(0,1fr);
    gap:10px;
    min-height:88px;
    padding:12px 43px 12px 10px;
  }
  .enquiry-switch__icon{width:40px;height:40px;border-radius:12px}
  .enquiry-switch__button strong{font-size:.88rem}
  .enquiry-switch__button small{font-size:.65rem}
  .enquiry-switch__state{right:10px;width:22px;height:22px}
}

/* =========================================================
   ABOUT — HOME PREVIEW + STANDALONE PAGE
   ========================================================= */
.about-preview{position:relative;background:#f4f7f2;overflow:hidden}
.about-preview::before{content:"";position:absolute;width:560px;height:560px;border:1px solid rgba(6,117,91,.09);border-radius:50%;left:-320px;bottom:-360px}
.about-preview-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:clamp(48px,7vw,108px);align-items:center}
.about-preview-visual{position:relative;min-height:600px;border-radius:42px;overflow:hidden;background:linear-gradient(145deg,#071924 0%,#073b39 58%,#08775f 100%);box-shadow:0 30px 80px rgba(3,28,35,.18)}
.about-preview-visual::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 15%,rgba(183,255,31,.18),transparent 28%),linear-gradient(120deg,transparent 40%,rgba(255,255,255,.06));pointer-events:none}
.about-preview-mark{position:absolute;inset:50% auto auto 50%;width:300px;height:300px;transform:translate(-50%,-54%);display:grid;place-items:center}
.about-preview-mark img{width:150px;position:relative;z-index:2;filter:brightness(0) invert(1);opacity:.96}
.about-preview-mark span{position:absolute;inset:0;border:1px solid rgba(255,255,255,.14);border-radius:50%}
.about-preview-mark span:nth-child(2){inset:38px;border-color:rgba(183,255,31,.28)}
.about-preview-mark span:nth-child(3){inset:82px;border-color:rgba(255,255,255,.12)}
.about-preview-proof{position:absolute;left:38px;bottom:38px;right:38px;padding:28px;border:1px solid rgba(255,255,255,.12);border-radius:24px;background:rgba(4,28,34,.58);backdrop-filter:blur(14px);color:#fff}
.about-preview-proof small{display:block;color:#b7ff1f;text-transform:uppercase;letter-spacing:.14em;font-weight:800;font-size:.68rem;margin-bottom:10px}
.about-preview-proof strong{font:700 clamp(1.35rem,2vw,1.8rem)/1.22 "Plus Jakarta Sans",sans-serif}
.about-preview-badge{position:absolute;top:30px;left:30px;display:flex;align-items:center;gap:14px;color:#fff}
.about-preview-badge span{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:#b7ff1f;color:#05232d;font-weight:800}
.about-preview-badge small{max-width:140px;font-weight:700;line-height:1.35}
.about-preview-copy h2{font-size:clamp(2.35rem,4.4vw,4.85rem);line-height:1.02;letter-spacing:-.055em;margin:22px 0 24px;color:#071924}
.about-preview-lead{font-size:clamp(1.02rem,1.35vw,1.22rem);line-height:1.75;color:#60727e;max-width:690px}
.about-preview-values{margin:34px 0 36px;border-top:1px solid rgba(7,25,36,.12)}
.about-preview-values article{display:grid;grid-template-columns:46px 1fr;gap:18px;padding:22px 0;border-bottom:1px solid rgba(7,25,36,.12)}
.about-preview-values b{font-size:.7rem;letter-spacing:.12em;color:#07836a;padding-top:4px}
.about-preview-values strong{display:block;font-size:1.05rem;color:#071924;margin-bottom:5px}
.about-preview-values p{color:#6d7e88;line-height:1.55;font-size:.9rem}
.about-preview-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap}

.about-page{background:#f7f8f4;color:#071924}
.about-hero{position:relative;overflow:hidden;padding-top:clamp(160px,16vw,230px);background:linear-gradient(135deg,#061923 0%,#082d35 54%,#07594e 100%);color:#fff}
.about-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 8% 25%,rgba(183,255,31,.16),transparent 24%),radial-gradient(circle at 90% 20%,rgba(63,121,255,.14),transparent 27%);pointer-events:none}
.about-hero-orbit{position:absolute;border:1px solid rgba(255,255,255,.1);border-radius:50%;pointer-events:none}.about-hero-orbit--one{width:620px;height:620px;right:-250px;top:-170px}.about-hero-orbit--two{width:390px;height:390px;right:-80px;top:-25px;border-color:rgba(183,255,31,.14)}
.about-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr);gap:clamp(52px,8vw,130px);align-items:center}
.about-hero-copy h1{font-size:clamp(3.2rem,6.4vw,7.2rem);line-height:.94;letter-spacing:-.065em;max-width:950px;margin:26px 0 30px}.about-hero-copy h1 em{font-style:normal;color:#b7ff1f}.about-hero-copy>p{font-size:clamp(1.05rem,1.5vw,1.28rem);line-height:1.75;color:#afbec5;max-width:730px}.about-hero-actions{display:flex;align-items:center;gap:28px;margin:38px 0 50px;flex-wrap:wrap}.about-hero .text-link{color:#fff}.about-hero-facts{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.12);padding-top:26px;gap:22px}.about-hero-facts div{border-right:1px solid rgba(255,255,255,.1);padding-right:20px}.about-hero-facts div:last-child{border-right:0}.about-hero-facts strong{display:block;color:#fff;margin-bottom:5px}.about-hero-facts span{font-size:.78rem;line-height:1.45;color:#8299a2}
.about-brand-stage{position:relative;min-height:610px;border-radius:44px;background:linear-gradient(150deg,rgba(255,255,255,.09),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.13);overflow:hidden;box-shadow:0 40px 100px rgba(0,0,0,.24)}
.about-brand-stage__rings span{position:absolute;border:1px solid rgba(255,255,255,.1);border-radius:50%}.about-brand-stage__rings span:nth-child(1){width:520px;height:520px;right:-170px;top:-210px}.about-brand-stage__rings span:nth-child(2){width:360px;height:360px;right:-80px;top:-120px;border-color:rgba(183,255,31,.18)}.about-brand-stage__rings span:nth-child(3){width:210px;height:210px;right:10px;top:-45px}
.about-brand-stage__logo{position:absolute;left:48px;top:50px;display:flex;gap:18px;align-items:center}.about-brand-stage__logo img{width:90px;filter:brightness(0) invert(1)}.about-brand-stage__logo strong{font:800 2rem/1 "Plus Jakarta Sans"}.about-brand-stage__logo small{display:block;font-size:.62rem;letter-spacing:.18em;margin-top:6px;color:#9cb0b7}
.about-brand-stage__statement{position:absolute;left:48px;right:48px;bottom:120px}.about-brand-stage__statement span{display:block;text-transform:uppercase;letter-spacing:.14em;color:#b7ff1f;font-size:.68rem;font-weight:800;margin-bottom:15px}.about-brand-stage__statement strong{font:700 clamp(2.7rem,4.5vw,5rem)/.98 "Plus Jakarta Sans";letter-spacing:-.055em}
.about-brand-stage__chips{position:absolute;left:48px;right:48px;bottom:42px;display:flex;gap:10px}.about-brand-stage__chips span{padding:10px 15px;border:1px solid rgba(255,255,255,.13);border-radius:999px;color:#c3d0d4;font-size:.72rem}

.about-story{background:#f7f8f4}.about-story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(50px,9vw,150px);align-items:start}.about-story-heading h2{font-size:clamp(2.5rem,5vw,5.4rem);line-height:1;letter-spacing:-.058em;margin-top:24px}.about-story-copy{padding-top:48px}.about-story-copy p{font-size:1rem;line-height:1.85;color:#657681;margin-bottom:22px;max-width:760px}.about-story-copy .about-story-lead{font-size:clamp(1.35rem,2.3vw,2.05rem);line-height:1.45;color:#071924;font-weight:600}.about-story-band{margin-top:70px;padding:28px 34px;border-radius:22px;border:1px solid rgba(7,25,36,.11);display:flex;justify-content:space-between;align-items:center;gap:15px;background:#fff;box-shadow:0 14px 50px rgba(7,25,36,.05)}.about-story-band span{font-weight:800;color:#08382f}.about-story-band i{color:#9ab0a8;font-style:normal}
.about-purpose{background:#eef3ed}.about-principles-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:58px}.about-principle{position:relative;min-height:390px;padding:32px;border-radius:28px;background:#fff;border:1px solid rgba(7,25,36,.1);display:flex;flex-direction:column}.about-principle>span{font-size:.66rem;letter-spacing:.13em;color:#82928c}.about-principle-icon{width:58px;height:58px;border-radius:17px;display:grid;place-items:center;background:#e8f1ec;color:#08775f;font-size:1.25rem;margin:70px 0 25px}.about-principle h3{font-size:1.35rem;letter-spacing:-.025em;margin-bottom:12px}.about-principle p{color:#6d7d84;line-height:1.7;font-size:.9rem}.about-principle:nth-child(2){background:#b7ff1f}.about-principle:nth-child(2) .about-principle-icon{background:#071924;color:#fff}.about-principle:nth-child(2) p,.about-principle:nth-child(2)>span{color:#33532a}
.about-difference{background:#071923;color:#fff}.about-difference-shell{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(50px,8vw,120px);padding:clamp(40px,6vw,84px);border:1px solid rgba(255,255,255,.1);border-radius:42px;background:linear-gradient(145deg,#08232d,#073c39);position:relative;overflow:hidden}.about-difference-shell::after{content:"";position:absolute;width:440px;height:440px;border:1px solid rgba(183,255,31,.1);border-radius:50%;right:-240px;top:-250px}.about-difference-copy{position:relative;z-index:1}.about-difference-copy h2{font-size:clamp(2.5rem,4.8vw,5.2rem);line-height:1;letter-spacing:-.055em;margin:24px 0}.about-difference-copy>p{color:#a7b8be;line-height:1.8;margin-bottom:30px}.about-difference-list{position:relative;z-index:1}.about-difference-list article{display:grid;grid-template-columns:44px 1fr;gap:22px;padding:24px 0;border-bottom:1px solid rgba(255,255,255,.12)}.about-difference-list article:first-child{padding-top:0}.about-difference-list b{color:#b7ff1f;font-size:.68rem;letter-spacing:.12em;padding-top:5px}.about-difference-list strong{display:block;font-size:1.2rem;margin-bottom:7px}.about-difference-list p{color:#8ea4ab;line-height:1.6;font-size:.88rem}
.about-journey{background:#f7f8f4}.about-journey-head{display:grid;grid-template-columns:1fr .6fr;gap:60px;align-items:end}.about-journey-head h2{font-size:clamp(2.5rem,5vw,5.4rem);line-height:1;letter-spacing:-.058em;margin-top:22px}.about-journey-head>p{color:#657681;line-height:1.8;padding-bottom:8px}.about-journey-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(7,25,36,.12);border:1px solid rgba(7,25,36,.12);border-radius:28px;overflow:hidden;margin-top:60px}.about-journey-grid article{background:#fff;padding:34px;min-height:330px}.about-journey-grid span{display:inline-block;padding:7px 11px;border-radius:999px;background:#edf4ef;color:#08775f;font-size:.62rem;text-transform:uppercase;letter-spacing:.12em;font-weight:800;margin-bottom:95px}.about-journey-grid strong{display:block;font-size:1.2rem;line-height:1.35;margin-bottom:13px}.about-journey-grid p{color:#6c7d85;line-height:1.65;font-size:.87rem}
.about-final{background:#eef3ed}.about-final-shell{border-radius:38px;padding:clamp(42px,7vw,90px);background:linear-gradient(135deg,#071923,#07594e);color:#fff;display:grid;grid-template-columns:1fr auto;gap:70px;align-items:end;position:relative;overflow:hidden}.about-final-shell::after{content:"";position:absolute;width:380px;height:380px;border:1px solid rgba(255,255,255,.1);border-radius:50%;right:-190px;top:-210px}.about-final-shell h2{font-size:clamp(2.5rem,5vw,5.4rem);line-height:1;letter-spacing:-.055em;max-width:930px;margin:22px 0}.about-final-shell p{color:#aabcc2;max-width:680px;line-height:1.75}.about-final-shell>div:last-child{position:relative;z-index:1;display:flex;flex-direction:column;gap:18px;min-width:245px}.about-final-shell>div:last-child>a:last-child{text-align:center;color:#fff;font-weight:700;font-size:.85rem}

@media(max-width:1100px){.about-preview-grid,.about-hero-grid,.about-story-grid,.about-difference-shell{grid-template-columns:1fr}.about-preview-visual{min-height:520px}.about-hero-grid{gap:70px}.about-brand-stage{min-height:520px}.about-principles-grid,.about-journey-grid{grid-template-columns:repeat(2,1fr)}.about-final-shell{grid-template-columns:1fr}.about-final-shell>div:last-child{align-items:flex-start}.about-journey-head{grid-template-columns:1fr}.about-story-copy{padding-top:0}}
@media(max-width:720px){.about-preview-grid{gap:38px}.about-preview-visual{min-height:430px;border-radius:28px}.about-preview-mark{width:230px;height:230px}.about-preview-mark img{width:110px}.about-preview-proof{left:18px;right:18px;bottom:18px;padding:20px}.about-preview-badge{top:18px;left:18px}.about-preview-copy h2{font-size:clamp(2.35rem,11vw,3.7rem)}.about-preview-values article{grid-template-columns:34px 1fr}.about-preview-actions .btn{width:100%}.about-hero{padding-top:140px}.about-hero-grid{grid-template-columns:1fr}.about-hero-copy h1{font-size:clamp(3.1rem,14.5vw,5.2rem)}.about-hero-facts{grid-template-columns:1fr}.about-hero-facts div{border-right:0;border-bottom:1px solid rgba(255,255,255,.1);padding:0 0 16px}.about-brand-stage{min-height:450px;border-radius:28px}.about-brand-stage__logo{left:28px;top:30px}.about-brand-stage__logo img{width:68px}.about-brand-stage__statement{left:28px;right:28px;bottom:105px}.about-brand-stage__chips{left:28px;right:28px;bottom:28px;overflow:auto}.about-story-band{justify-content:flex-start;overflow-x:auto}.about-story-band i{flex:0 0 auto}.about-principles-grid,.about-journey-grid{grid-template-columns:1fr}.about-principle{min-height:auto}.about-principle-icon{margin:44px 0 22px}.about-difference-shell{padding:30px 22px;border-radius:28px}.about-journey-grid article{min-height:auto}.about-journey-grid span{margin-bottom:55px}.about-final-shell{padding:38px 24px;border-radius:28px}.about-final-shell .btn{width:100%}}


/* ==========================================================
   ABOUT BRAND BACKGROUND + PAGE STABILITY REWORK (2026-07-23)
   ========================================================== */
.about-preview-visual,
.about-brand-stage{
  isolation:isolate;
}

/* Large ENPE symbol used as a true background graphic. */
.about-preview-visual::after,
.about-brand-stage::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:url("assets/enpe-symbol.svg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:min(62%, 360px) auto;
  opacity:.10;
  filter:brightness(0) invert(1);
  transform:rotate(-3deg) scale(1.04);
}

.about-preview-visual::after{
  background-size:min(70%, 410px) auto;
  opacity:.115;
}

.about-brand-stage::after{
  background-size:min(72%, 430px) auto;
  opacity:.12;
}

/* Keep all meaningful content above the background watermark. */
.about-preview-badge,
.about-preview-proof,
.about-preview-mark,
.about-brand-stage__rings,
.about-brand-stage__logo,
.about-brand-stage__statement,
.about-brand-stage__chips{
  z-index:2;
}

/* The smaller centre mark is now a refined foreground seal instead of
   competing with the large background logo. */
.about-preview-mark,
.about-brand-stage__rings{
  opacity:.82;
}
.about-preview-mark img{
  width:118px;
  opacity:1;
  filter:brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0,0,0,.2));
}

/* About-page brand lockup stays readable on top of the watermark. */
.about-brand-stage__logo{
  padding:14px 18px;
  border-radius:20px;
  background:rgba(3,28,35,.38);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.about-brand-stage__logo img{
  width:76px;
}

/* Page-level spacing and overflow fixes. */
.about-page{
  overflow-x:hidden;
}
.about-page main,
.about-page section{
  min-width:0;
}
.about-hero-grid > *,
.about-story-grid > *,
.about-difference-shell > *,
.about-journey-head > *{
  min-width:0;
}
.about-story-copy p,
.about-difference-copy p,
.about-journey-head p,
.about-final-shell p{
  overflow-wrap:anywhere;
}

/* Better About page navigation hierarchy. */
.about-page .site-nav a.active{
  color:#08775f;
  font-weight:800;
}
.about-page .site-nav a.active::after{
  transform:scaleX(1);
}

@media (max-width:1100px){
  .about-hero-grid{
    gap:48px;
  }
  .about-brand-stage{
    width:100%;
    max-width:760px;
    margin-inline:auto;
  }
  .about-brand-stage::after{
    background-size:min(62%, 390px) auto;
  }
}

@media (max-width:720px){
  .about-preview-visual::after{
    background-size:72% auto;
    background-position:center 42%;
    opacity:.10;
  }
  .about-preview-mark{
    width:205px;
    height:205px;
    transform:translate(-50%,-49%);
  }
  .about-preview-mark img{
    width:86px;
  }
  .about-preview-badge{
    right:18px;
    max-width:calc(100% - 36px);
  }
  .about-preview-badge small{
    max-width:none;
  }
  .about-preview-proof{
    z-index:3;
  }

  .about-brand-stage{
    min-height:490px;
  }
  .about-brand-stage::after{
    background-size:74% auto;
    background-position:center 46%;
    opacity:.105;
  }
  .about-brand-stage__logo{
    left:20px;
    right:20px;
    top:22px;
    width:auto;
    padding:12px 14px;
  }
  .about-brand-stage__logo img{
    width:58px;
  }
  .about-brand-stage__logo strong{
    font-size:1.45rem;
  }
  .about-brand-stage__statement{
    left:22px;
    right:22px;
    bottom:100px;
  }
  .about-brand-stage__statement strong{
    font-size:clamp(2rem,10vw,3.1rem);
  }
  .about-brand-stage__chips{
    left:22px;
    right:22px;
    bottom:24px;
    padding-bottom:2px;
  }
  .about-story-band{
    scrollbar-width:none;
  }
  .about-story-band::-webkit-scrollbar{
    display:none;
  }
}

@media (max-width:420px){
  .about-hero{
    padding-top:122px;
  }
  .about-hero-copy h1{
    font-size:clamp(2.7rem,14vw,4rem);
  }
  .about-preview-visual{
    min-height:410px;
  }
  .about-preview-badge span{
    width:48px;
    height:48px;
    border-radius:14px;
  }
  .about-preview-badge small{
    font-size:.78rem;
  }
  .about-preview-proof strong{
    font-size:1.2rem;
  }
  .about-brand-stage{
    min-height:455px;
  }
  .about-brand-stage__chips span{
    padding:9px 12px;
    white-space:nowrap;
  }
}

/* About principles — interactive hierarchy and touch fix */
.about-principle{
  cursor:pointer;
  overflow:hidden;
  transition:transform .32s ease,background-color .32s ease,border-color .32s ease,box-shadow .32s ease,color .32s ease;
  outline:none;
}
.about-principle-top{display:flex;align-items:center;justify-content:space-between;gap:16px}
.about-principle-top>span:first-child{font-size:.66rem;letter-spacing:.13em;color:#82928c}
.about-principle-state{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(7,25,36,.12);color:#08775f;opacity:.45;transform:rotate(0);transition:.3s ease}
.about-principle:hover,.about-principle:focus-visible{transform:translateY(-8px);border-color:rgba(8,119,95,.3);box-shadow:0 24px 55px rgba(7,25,36,.12)}
.about-principle.is-active{background:linear-gradient(145deg,#b8ff22 0%,#a7f51c 100%);border-color:#9de819;box-shadow:0 26px 65px rgba(116,199,19,.22)}
.about-principle.is-active .about-principle-icon{background:#071924;color:#fff}
.about-principle.is-active .about-principle-state{background:#071924;border-color:#071924;color:#fff;opacity:1;transform:rotate(45deg)}
.about-principle.is-active p,.about-principle.is-active .about-principle-top>span:first-child{color:#33532a}
.about-principle:nth-child(2){background:#fff}
.about-principle:nth-child(2).is-active{background:linear-gradient(145deg,#b8ff22 0%,#a7f51c 100%)}
@media (max-width:720px){
  .about-principles-grid{gap:12px}
  .about-principle{padding:22px;min-height:0;border-radius:22px}
  .about-principle-icon{margin:22px 0 16px;width:50px;height:50px;border-radius:15px}
  .about-principle h3{margin-bottom:0;padding-right:48px}
  .about-principle p{max-height:0;opacity:0;overflow:hidden;margin-top:0;transition:max-height .38s ease,opacity .28s ease,margin-top .28s ease}
  .about-principle.is-active p{max-height:180px;opacity:1;margin-top:12px}
  .about-principle:hover,.about-principle:focus-visible{transform:none}
}


/* ==========================================================
   FINAL ABOUT / PROCESS INTERACTION + ORIGINAL LOGO REWORK
   ========================================================== */

/* Use the supplied original NP mark as the brand watermark, without recolouring it. */
.about-preview-visual::after,
.about-brand-stage::after{
  background-image:url("assets/Np logo-01.png") !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  background-size:min(68%, 420px) auto !important;
  opacity:.15 !important;
  filter:none !important;
  transform:rotate(-4deg) scale(1.08) !important;
  mix-blend-mode:screen;
}
.about-brand-stage::after{
  background-size:min(72%, 450px) auto !important;
  opacity:.13 !important;
}

/* Keep the foreground logo in its original blue treatment. */
.about-preview-mark img,
.about-brand-stage__logo img{
  filter:none !important;
  opacity:1 !important;
  object-fit:contain;
}
.about-preview-mark img{
  width:132px !important;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.28)) !important;
}
.about-brand-stage__logo img{
  width:74px !important;
  filter:drop-shadow(0 12px 25px rgba(0,0,0,.22)) !important;
}

/* Original footer NP mark: crop-safe and clearly visible. */
.footer-v7-brand .brand-symbol{
  width:58px !important;
  height:48px !important;
  object-fit:contain;
  object-position:center;
  filter:none !important;
}

/* About principles use the same selected-card language as the process cards. */
.about-principle{
  min-height:410px;
  transform:translateZ(0);
  will-change:transform;
}
.about-principle::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  opacity:0;
  background:linear-gradient(145deg,rgba(183,255,31,.96),rgba(147,238,20,.94));
  transition:opacity .34s ease;
  z-index:0;
}
.about-principle > *{position:relative;z-index:1}
.about-principle.is-active{
  color:#071924;
  border-color:rgba(112,188,16,.5) !important;
  box-shadow:0 30px 70px rgba(83,145,15,.22) !important;
  transform:translateY(-8px) !important;
  background:#fff !important;
}
.about-principle.is-active::after{opacity:1}
.about-principle.is-active h3{color:#071924}
.about-principle.is-active p,
.about-principle.is-active .about-principle-top>span:first-child{color:#35502f !important}
.about-principle.is-active .about-principle-icon,
.about-principle.is-active .about-principle-state{
  background:#071924 !important;
  color:#fff !important;
  border-color:#071924 !important;
}
.about-principle.is-active .about-principle-state{transform:rotate(45deg) scale(1.04)}

/* Click-driven How We Work cards. No card is permanently hard-coded as featured. */
.process-v2-card{
  cursor:pointer;
  outline:none;
  isolation:isolate;
  overflow:hidden;
  transition:transform .34s cubic-bezier(.2,.7,.2,1),box-shadow .34s ease,border-color .34s ease,color .34s ease;
}
.process-v2-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:0;
  background:
    radial-gradient(circle at 100% 100%,rgba(183,255,31,.16),transparent 35%),
    linear-gradient(145deg,#071923 0%,#074d45 100%);
  transition:opacity .34s ease;
}
.process-v2-card:hover,
.process-v2-card:focus-visible{
  transform:translateY(-8px);
  border-color:rgba(8,119,95,.34);
  box-shadow:0 28px 65px rgba(7,25,36,.14);
}
.process-v2-card.is-active{
  color:#fff;
  transform:translateY(-10px);
  border-color:rgba(183,255,31,.34);
  box-shadow:0 32px 78px rgba(3,40,39,.28);
}
.process-v2-card.is-active::after{opacity:1}
.process-v2-card.is-active .process-v2-number{color:rgba(255,255,255,.55)}
.process-v2-card.is-active .process-v2-label{color:var(--lime)}
.process-v2-card.is-active h3,
.process-v2-card.is-active .process-v2-output strong{color:#fff}
.process-v2-card.is-active .process-v2-copy p{color:rgba(255,255,255,.7)}
.process-v2-card.is-active .process-v2-output{border-color:rgba(255,255,255,.14)}
.process-v2-card.is-active .process-v2-output span{color:rgba(255,255,255,.48)}
.process-v2-card.is-active .process-v2-icon{
  background:var(--lime);
  color:#071923;
  border-color:var(--lime);
  transform:rotate(-5deg) scale(1.05);
}

@media(max-width:720px){
  .about-preview-visual::after,
  .about-brand-stage::after{
    background-size:76% auto !important;
    opacity:.12 !important;
  }
  .about-preview-mark img{width:92px !important}
  .about-brand-stage__logo img{width:56px !important}
  .about-principle{min-height:0}
  .about-principle.is-active{transform:none !important}
  .process-v2-card:hover,
  .process-v2-card:focus-visible,
  .process-v2-card.is-active{transform:none}
}


/* Instagram social integration */
.floating-contact__item--instagram .floating-contact__icon {
  color: #fff;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
  border-color: rgba(255,255,255,.2);
}
.floating-contact__item--instagram .floating-contact__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.floating-contact.is-open .floating-contact__item:nth-child(5) {
  transition-delay: .2s;
}
.footer-v7-socials a[href*="instagram.com"],
.contact-v2-social a[href*="instagram.com"] {
  position: relative;
}
@media (max-width: 390px) {
  .footer-v7-socials { grid-template-columns: 1fr; }
}


/* =========================================================
   CONSULTATION PAGE FLOATING NAVIGATION — isolated final fix
   ========================================================= */
.consultation-page {
  --consultation-nav-offset: 104px;
  scroll-padding-top: var(--consultation-nav-offset);
}

.consultation-page .consultation-header,
.consultation-page .consultation-header.scrolled {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 1200;
  padding: 0 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.consultation-page .consultation-header.scrolled {
  inset-block-start: 7px;
}

.consultation-page .consultation-header .nav-wrap,
.consultation-page .consultation-header.scrolled .nav-wrap {
  width: min(1180px, 100%);
  min-height: 72px;
  height: 72px;
  margin-inline: auto;
  padding: 8px 10px 8px 17px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 27px);
  border: 1px solid rgba(11, 23, 32, .10);
  border-radius: 23px;
  background: rgba(251, 250, 247, .94);
  box-shadow: 0 16px 48px rgba(8, 25, 33, .12);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
  transition: min-height .25s ease, height .25s ease, border-radius .25s ease, box-shadow .25s ease;
}

.consultation-page .consultation-header.scrolled .nav-wrap {
  min-height: 66px;
  height: 66px;
  border-radius: 20px;
  box-shadow: 0 18px 52px rgba(8, 25, 33, .16);
}

.consultation-page .consultation-header .brand-lockup {
  flex: 0 0 auto;
  min-width: 164px;
  margin: 0;
}

.consultation-page .consultation-header .consultation-nav {
  margin-left: auto;
  gap: clamp(17px, 2vw, 28px);
}

.consultation-page .consultation-header .consultation-nav a {
  color: rgba(11, 23, 32, .78);
  font-weight: 700;
}

.consultation-page .consultation-header .consultation-nav a:hover,
.consultation-page .consultation-header .consultation-nav a:focus-visible {
  color: var(--green);
}

.consultation-page .consultation-nav-cta {
  min-height: 50px;
  padding-inline: 19px;
}

.consultation-page .consultation-hero {
  padding-top: calc(var(--consultation-nav-offset) + 54px);
}

@media (max-width: 920px) {
  .consultation-page { --consultation-nav-offset: 84px; }

  .consultation-page .consultation-header,
  .consultation-page .consultation-header.scrolled {
    inset-block-start: 8px;
    padding-inline: 9px;
  }

  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    min-height: 66px;
    height: 66px;
    padding: 7px 8px 7px 13px;
    border-radius: 19px;
  }

  .consultation-page .consultation-header .brand-lockup {
    min-width: 0;
    margin-right: auto;
  }

  .consultation-page .consultation-header .consultation-nav,
  .consultation-page .consultation-header .consultation-nav.open {
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
  }

  .consultation-page .consultation-hero {
    padding-top: calc(var(--consultation-nav-offset) + 44px);
  }
}

@media (max-width: 480px) {
  .consultation-page { --consultation-nav-offset: 76px; }

  .consultation-page .consultation-header,
  .consultation-page .consultation-header.scrolled {
    padding-inline: 6px;
  }

  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    min-height: 62px;
    height: 62px;
    padding: 6px 7px 6px 10px;
    border-radius: 17px;
  }

  .consultation-page .consultation-header .brand-symbol,
  .consultation-page .consultation-header.scrolled .brand-symbol {
    width: 35px;
    height: 29px;
  }

  .consultation-page .consultation-header .brand-name,
  .consultation-page .consultation-header.scrolled .brand-name {
    font-size: 15px;
  }

  .consultation-page .consultation-header .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .consultation-page .consultation-hero {
    padding-top: calc(var(--consultation-nav-offset) + 34px);
  }
}

/* =========================================================
   CONSULTATION NAVIGATION — restore previous shared position
   Matches the main-site floating navigation placement.
   ========================================================= */
.consultation-page {
  --consultation-nav-offset: 96px;
}

.consultation-page .consultation-header,
.consultation-page .consultation-header.scrolled {
  inset: 14px 0 auto;
  padding-inline: 16px;
}

.consultation-page .consultation-header.scrolled {
  inset-block-start: 8px;
  padding-inline: 12px;
}

.consultation-page .consultation-header .nav-wrap,
.consultation-page .consultation-header.scrolled .nav-wrap {
  width: min(1240px, 100%);
  min-height: 76px;
  height: 76px;
  padding: 8px 10px 8px 18px;
  gap: var(--nav-inline-gap);
  border-radius: 24px;
}

.consultation-page .consultation-header.scrolled .nav-wrap {
  min-height: 68px;
  height: 68px;
  border-radius: 21px;
}

.consultation-page .consultation-header .brand-lockup {
  min-width: 174px;
}

.consultation-page .consultation-header .consultation-nav {
  gap: clamp(18px, 2.1vw, 32px);
}

.consultation-page .consultation-nav-cta {
  min-height: 52px;
  padding-inline: 20px;
}

.consultation-page .consultation-hero {
  padding-top: calc(var(--consultation-nav-offset) + 54px);
}

@media (max-width: 1120px) {
  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    gap: 18px;
  }

  .consultation-page .consultation-header .brand-lockup {
    min-width: 156px;
  }

  .consultation-page .consultation-nav-cta {
    min-height: 48px;
    padding-inline: 17px;
  }
}

@media (max-width: 920px) {
  .consultation-page {
    --consultation-nav-offset: 82px;
  }

  .consultation-page .consultation-header,
  .consultation-page .consultation-header.scrolled {
    inset-block-start: 8px;
    padding-inline: 10px;
  }

  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    min-height: 68px;
    height: 68px;
    padding: 7px 8px 7px 14px;
    border-radius: 20px;
  }

  .consultation-page .consultation-header .brand-lockup {
    min-width: 0;
  }

  .consultation-page .consultation-header .consultation-nav,
  .consultation-page .consultation-header .consultation-nav.open {
    top: calc(100% + 10px);
    max-height: calc(100dvh - 96px);
  }

  .consultation-page .consultation-hero {
    padding-top: calc(var(--consultation-nav-offset) + 44px);
  }
}

@media (max-width: 480px) {
  .consultation-page {
    --consultation-nav-offset: 74px;
  }

  .consultation-page .consultation-header,
  .consultation-page .consultation-header.scrolled {
    padding-inline: 7px;
  }

  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    min-height: 64px;
    height: 64px;
    padding: 6px 7px 6px 11px;
    border-radius: 18px;
  }

  .consultation-page .consultation-header .consultation-nav,
  .consultation-page .consultation-header .consultation-nav.open {
    top: calc(100% + 8px);
    max-height: calc(100dvh - 86px);
  }

  .consultation-page .consultation-hero {
    padding-top: calc(var(--consultation-nav-offset) + 34px);
  }
}

/* =========================================================
   CONSULTATION PAGE — floating controls same horizontal position
   Keeps Back to Top directly to the left of Quick Contact.
   ========================================================= */
.consultation-page .floating-contact {
  right: calc(20px + env(safe-area-inset-right)) !important;
  bottom: calc(20px + env(safe-area-inset-bottom)) !important;
}

.consultation-page .back-top {
  right: calc(92px + env(safe-area-inset-right)) !important;
  bottom: calc(24px + env(safe-area-inset-bottom)) !important;
  width: 50px;
  height: 50px;
}

@media (max-width: 640px) {
  .consultation-page .floating-contact {
    right: calc(14px + env(safe-area-inset-right)) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }

  .consultation-page .back-top {
    right: calc(80px + env(safe-area-inset-right)) !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .consultation-page .floating-contact {
    right: calc(10px + env(safe-area-inset-right)) !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
  }

  .consultation-page .back-top {
    right: calc(74px + env(safe-area-inset-right)) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }
}

/* =========================================================
   HOME + ABOUT — floating controls aligned as one action row
   Back to Top sits directly left of Quick Contact.
   ========================================================= */
body:not(.consultation-page) .floating-contact {
  right: calc(20px + env(safe-area-inset-right)) !important;
  bottom: calc(20px + env(safe-area-inset-bottom)) !important;
}

body:not(.consultation-page) .back-top {
  right: calc(92px + env(safe-area-inset-right)) !important;
  bottom: calc(24px + env(safe-area-inset-bottom)) !important;
  width: 50px;
  height: 50px;
}

@media (max-width: 640px) {
  body:not(.consultation-page) .floating-contact {
    right: calc(14px + env(safe-area-inset-right)) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }

  body:not(.consultation-page) .back-top {
    right: calc(80px + env(safe-area-inset-right)) !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  body:not(.consultation-page) .floating-contact {
    right: calc(10px + env(safe-area-inset-right)) !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
  }

  body:not(.consultation-page) .back-top {
    right: calc(74px + env(safe-area-inset-right)) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }
}

/* =========================================================
   FLOATING NAV CTA — restored circular icon animation
   Home / About / Consultation
   ========================================================= */
.site-header .nav-cta {
  overflow: visible;
  isolation: isolate;
}

.site-header .nav-cta::before {
  /* Keep the old button-wide ripple from covering the icon animation. */
  display: none;
}

.site-header .nav-cta i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  transform: translateZ(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              background-color .35s ease,
              color .35s ease,
              border-color .35s ease;
}

.site-header .nav-cta i::before,
.site-header .nav-cta i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  pointer-events: none;
}

.site-header .nav-cta i::before {
  border: 1px solid rgba(185,255,39,.82);
  opacity: .62;
  transform: scale(.82);
  animation: navIconCirclePulse 2.45s ease-out infinite;
}

.site-header .nav-cta i::after {
  inset: -8px;
  border: 2px solid transparent;
  border-top-color: var(--lime);
  border-right-color: rgba(185,255,39,.22);
  opacity: 0;
  transform: rotate(0deg) scale(.92);
}

.site-header .nav-cta:hover i,
.site-header .nav-cta:focus-visible i {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  transform: translate(2px,-2px) rotate(45deg);
}

.site-header .nav-cta:hover i::before,
.site-header .nav-cta:focus-visible i::before {
  animation: none;
  opacity: .25;
  transform: scale(1.18);
  transition: opacity .35s ease, transform .35s ease;
}

.site-header .nav-cta:hover i::after,
.site-header .nav-cta:focus-visible i::after {
  opacity: 1;
  animation: navIconCircleSpin .78s cubic-bezier(.2,.8,.2,1) both;
}

.site-header .nav-cta:active i {
  transform: scale(.92) rotate(45deg);
}

@keyframes navIconCirclePulse {
  0%   { opacity: .65; transform: scale(.78); }
  58%  { opacity: 0; transform: scale(1.34); }
  100% { opacity: 0; transform: scale(1.34); }
}

@keyframes navIconCircleSpin {
  from { transform: rotate(0deg) scale(.9); }
  to   { transform: rotate(360deg) scale(1); }
}

@media (max-width: 1120px) {
  .site-header .nav-cta i {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .nav-cta i::before,
  .site-header .nav-cta i::after {
    animation: none !important;
  }
  .site-header .nav-cta:hover i,
  .site-header .nav-cta:focus-visible i {
    transform: translate(2px,-2px);
  }
}


/* =========================================================
   BACK TO TOP — HERO-AWARE SCROLL PROGRESS RING
   The control stays completely hidden in each page hero. Once
   the hero is passed, the lime ring grows with page progress.
   ========================================================= */
.back-top {
  --scroll-progress: 0;
  border-color: rgba(255, 255, 255, .18);
}
.back-top::after {
  display: none !important;
}
.back-top__progress {
  position: absolute;
  inset: -4px;
  display: block !important;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  overflow: visible;
  pointer-events: none;
  transform: rotate(-90deg);
}
.back-top__track,
.back-top__indicator {
  fill: none;
  stroke-width: 2.25;
}
.back-top__track {
  stroke: rgba(184, 255, 39, .14);
}
.back-top__indicator {
  stroke: #b8ff27;
  stroke-linecap: round;
  stroke-dasharray: 144.513;
  stroke-dashoffset: calc(144.513 * (1 - var(--scroll-progress)));
  transition: stroke-dashoffset .12s linear, stroke .2s ease;
  filter: drop-shadow(0 0 3px rgba(184, 255, 39, .32));
}
.back-top:not(.show) .back-top__indicator {
  stroke-dashoffset: 144.513;
}
.back-top:hover .back-top__indicator,
.back-top:focus-visible .back-top__indicator {
  stroke: #07141d;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .back-top__indicator { transition: none; }
}

/* =========================================================
   CONSULTATION PAGE — final functional stability fixes
   ========================================================= */
.consultation-page #consultation-form {
  scroll-margin-top: 112px;
}
.consultation-page .enquiry-panel[hidden] {
  display: none !important;
}
.consultation-page .enquiry-switch__button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.consultation-page .consultation-submit,
.consultation-page .consultation-nav-cta,
.consultation-page .floating-contact__toggle,
.consultation-page .back-top {
  touch-action: manipulation;
}
.consultation-page .consultation-form-note.is-error {
  color: #a52a2a;
}
.consultation-page .consultation-form-note.is-success {
  color: #08765d;
}
@media (max-width: 920px) {
  .consultation-page #consultation-form { scroll-margin-top: 94px; }
}

/* =========================================================
   BOOK PAGE — guaranteed clickable back-to-top control
   Keeps the visual design while isolating the button from any
   decorative/floating layers that could intercept taps.
   ========================================================= */
.consultation-page .back-top {
  z-index: 2147483000 !important;
  pointer-events: auto !important;
  isolation: isolate;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  cursor: pointer;
}
.consultation-page .back-top:not(.show) {
  pointer-events: none !important;
}
.consultation-page .back-top.show {
  pointer-events: auto !important;
}
.consultation-page .back-top::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: transparent;
  pointer-events: auto;
  z-index: -1;
}
.consultation-page .back-top__progress,
.consultation-page .back-top__track,
.consultation-page .back-top__indicator,
.consultation-page .back-top__icon {
  pointer-events: none !important;
}
@media (max-width: 640px) {
  .consultation-page .back-top {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }
}


/* =========================================================
   HOMEPAGE — CLIENT COMPANY SHOWCASE
   Premium trust section with editable company/logo cards.
   ========================================================= */
.clients-showcase {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 124px);
  padding-bottom: clamp(72px, 8vw, 124px);
  background:
    radial-gradient(circle at 8% 18%, rgba(169, 255, 22, .12), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(6, 128, 102, .10), transparent 30%),
    #f8faf5;
}
.clients-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 38, 48, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 38, 48, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}
.clients-showcase__shell { position: relative; z-index: 1; }
.clients-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
  margin-bottom: clamp(34px, 4.8vw, 68px);
}
.clients-showcase__head h2 {
  max-width: 820px;
  margin: 18px 0 0;
  color: #071a24;
  font-size: clamp(2.35rem, 5.1vw, 5.35rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.clients-showcase__head h2 em { color: #087c66; font-style: normal; }
.clients-showcase__intro {
  padding-left: 26px;
  border-left: 1px solid rgba(7, 38, 48, .18);
}
.clients-showcase__intro > span {
  display: block;
  margin-bottom: 12px;
  color: #087c66;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.clients-showcase__intro p { margin: 0; color: #667781; line-height: 1.75; }
.clients-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.client-company-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 38, 48, .12);
  border-radius: 26px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 52px rgba(25, 57, 52, .07);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.client-company-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  right: -92px;
  bottom: -96px;
  border: 1px solid rgba(8, 124, 102, .16);
  border-radius: 50%;
  transition: transform .45s ease;
}
.client-company-card:hover,
.client-company-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(8, 124, 102, .36);
  box-shadow: 0 28px 64px rgba(25, 57, 52, .13);
}
.client-company-card:hover::after { transform: scale(1.28); }
.client-company-card__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #071a24;
  background: #b7ff23;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.client-company-card small {
  display: block;
  margin-bottom: 7px;
  color: #087c66;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.client-company-card strong {
  display: block;
  color: #071a24;
  font-size: clamp(.96rem, 1.2vw, 1.14rem);
  line-height: 1.35;
}
.client-company-card > span {
  align-self: start;
  color: #93a19f;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.client-company-card--cta {
  background: linear-gradient(135deg, #082832, #075c50 72%, #087c66);
  border-color: rgba(183, 255, 35, .32);
}
.client-company-card--cta small { color: #b7ff23; }
.client-company-card--cta strong { color: #fff; }
.client-company-card--cta .client-company-card__mark { color: #087c66; background: #fff; }
.client-company-card--cta > a {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071a24;
  background: #b7ff23;
  font-weight: 800;
  text-decoration: none;
  transition: transform .3s ease, background .3s ease;
}
.client-company-card--cta > a:hover { transform: rotate(45deg) scale(1.06); background: #fff; }
.clients-showcase__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 22px 4px 0;
  border-top: 1px solid rgba(7, 38, 48, .12);
}
.clients-showcase__foot p { margin: 0; color: #718087; font-size: .88rem; }
.clients-showcase__foot p strong { color: #071a24; }
@media (max-width: 1100px) {
  .clients-showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .clients-showcase__head { grid-template-columns: 1fr; gap: 26px; }
  .clients-showcase__intro { padding-left: 0; padding-top: 20px; border-left: 0; border-top: 1px solid rgba(7, 38, 48, .15); }
  .clients-showcase__head h2 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .clients-showcase__foot { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .clients-showcase { padding-top: 70px; padding-bottom: 70px; }
  .clients-showcase__grid { grid-template-columns: 1fr; gap: 12px; }
  .client-company-card { min-height: 132px; padding: 20px; grid-template-columns: 50px minmax(0, 1fr) auto; border-radius: 22px; }
  .client-company-card__mark { width: 50px; height: 50px; border-radius: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .client-company-card, .client-company-card::after, .client-company-card--cta > a { transition: none; }
}

/* =========================================================
   ALL-PAGE FOOTER — MOBILE VISUAL HIERARCHY REWORK (FINAL)
   Applies to Home, About and Consultation pages.
   ========================================================= */
@media (max-width: 760px){
  .site-footer-v7{
    padding:24px 0 92px;
    background:
      radial-gradient(circle at 10% 0%,rgba(0,132,111,.16),transparent 32%),
      radial-gradient(circle at 100% 8%,rgba(96,74,185,.13),transparent 30%),
      #071923;
  }
  .site-footer-v7 .container{
    width:min(100% - 24px,1240px);
  }
  .footer-v7-orb{display:none}

  .footer-v7-consultation{
    display:flex;
    flex-direction:column;
    gap:22px;
    padding:24px 18px;
    border-radius:22px;
    border-color:rgba(255,255,255,.10);
    background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018));
    box-shadow:0 20px 52px rgba(0,0,0,.22);
  }
  .footer-v7-kicker{
    margin-bottom:11px;
    font-size:8px;
    line-height:1.45;
    letter-spacing:.14em;
  }
  .footer-v7-consultation-copy h2{
    max-width:13ch;
    font-size:clamp(30px,9.3vw,42px);
    line-height:1.02;
    letter-spacing:-.048em;
  }
  .footer-v7-consultation-copy>p:last-child{
    max-width:42rem;
    margin-top:14px;
    color:#a9bac0;
    font-size:13px;
    line-height:1.65;
  }
  .footer-v7-consultation-action{
    display:grid;
    gap:10px;
  }
  .footer-v7-response{
    order:-1;
    padding:0 2px 3px;
    font-size:10px;
    line-height:1.45;
  }
  .footer-v7-primary,
  .footer-v7-call{
    box-sizing:border-box;
    width:100%;
    min-width:0;
  }
  .footer-v7-primary{
    min-height:56px;
    padding:0 10px 0 18px;
    font-size:12px;
  }
  .footer-v7-primary i{
    width:37px;
    height:37px;
    flex:0 0 37px;
  }
  .footer-v7-call{
    min-height:56px;
    padding:10px 16px;
    border-radius:16px;
  }

  .footer-v7-directory{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    padding:28px 0 22px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .footer-v7-brand-block,
  .footer-v7-column,
  .footer-v7-contact{
    min-width:0;
    padding:20px 17px;
    border:1px solid rgba(255,255,255,.085);
    border-radius:19px;
    background:rgba(255,255,255,.025);
  }
  .footer-v7-brand-block{
    order:1;
  }
  .footer-v7-column:not(.footer-v7-services){order:2}
  .footer-v7-services{order:3}
  .footer-v7-contact{order:4}

  .footer-v7-brand{
    display:flex;
    align-items:center;
    gap:11px;
  }
  .footer-v7-brand .brand-symbol{
    width:50px;
    height:auto;
    flex:0 0 auto;
  }
  .footer-v7-brand .brand-copy,
  .footer-v7-brand .brand-name-wrap{
    display:flex;
    flex-direction:column;
    min-width:0;
  }
  .footer-v7-brand .brand-name{
    font-size:21px;
    line-height:1;
  }
  .footer-v7-brand .brand-tagline{
    margin-top:5px;
    font-size:7px;
  }
  .footer-v7-tagline{
    margin-top:18px;
    font-size:9px;
    line-height:1.45;
  }
  .footer-v7-brand-block>p:last-of-type{
    margin-top:10px;
    font-size:12.5px;
    line-height:1.65;
  }
  .footer-v7-socials{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:7px;
    margin-top:16px;
  }
  .footer-v7-socials a{
    display:flex;
    min-width:0;
    min-height:42px;
    align-items:center;
    justify-content:center;
    padding:8px 6px;
    border-radius:13px;
    font-size:9px;
    text-align:center;
    overflow-wrap:anywhere;
  }

  .footer-v7-label{
    margin-bottom:12px;
    font-size:8px;
  }
  .footer-v7-column>a{
    display:flex;
    width:100%;
    min-height:43px;
    align-items:center;
    margin:0;
    padding:9px 0;
    border-bottom:1px solid rgba(255,255,255,.065);
    font-size:12.5px;
    line-height:1.35;
  }
  .footer-v7-column>a:last-child{border-bottom:0}
  .footer-v7-column>a:hover{transform:none}
  .footer-v7-services>a{
    grid-template-columns:24px minmax(0,1fr);
    gap:8px;
    min-height:46px;
    padding:10px 0;
  }
  .footer-v7-services>a span{
    padding-top:1px;
    font-size:8px;
  }

  .footer-v7-contact{
    display:flex;
    flex-direction:column;
  }
  .footer-v7-contact>a,
  .footer-v7-hours{
    min-width:0;
    padding:12px 0;
  }
  .footer-v7-contact strong,
  .footer-v7-hours strong{
    font-size:12px;
    line-height:1.45;
    overflow-wrap:anywhere;
    word-break:normal;
  }

  .footer-v7-bottom{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:11px;
    padding:17px 2px 0;
    font-size:9px;
    line-height:1.45;
  }
  .footer-v7-bottom>div{
    display:flex;
    width:100%;
    align-items:flex-start;
    gap:7px 12px;
  }
  .footer-v7-bottom>div:first-child{
    flex-direction:column;
  }
  .footer-v7-bottom>div:last-child{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }
  .footer-v7-bottom>div:last-child a{
    display:flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    padding:7px 9px;
    border:1px solid rgba(255,255,255,.075);
    border-radius:11px;
    background:rgba(255,255,255,.025);
    text-align:center;
  }

  /* Footer-safe floating controls on every page */
  .floating-contact{
    right:14px !important;
    bottom:16px !important;
  }
  .back-top{
    right:76px !important;
    bottom:16px !important;
  }
}

@media (max-width: 420px){
  .site-footer-v7 .container{width:min(100% - 18px,1240px)}
  .footer-v7-consultation{padding:21px 15px;border-radius:19px}
  .footer-v7-consultation-copy h2{font-size:29px;max-width:none}
  .footer-v7-consultation-copy>p:last-child{font-size:12.5px}
  .footer-v7-brand-block,
  .footer-v7-column,
  .footer-v7-contact{padding:18px 14px;border-radius:17px}
  .footer-v7-socials{grid-template-columns:1fr}
  .footer-v7-socials a{min-height:41px;font-size:10px}
  .footer-v7-bottom>div:last-child{grid-template-columns:1fr 1fr}
  .floating-contact{right:10px !important;bottom:12px !important}
  .back-top{right:68px !important;bottom:12px !important}
}

/* ========================================================================== */
/* ENPE GLOBAL VISUAL HIERARCHY SYSTEM — FINAL CONSISTENCY LAYER              */
/* Applied after legacy section rules to unify Home, About and Book pages.    */
/* ========================================================================== */
:root{
  --enpe-font-body:"Manrope",Arial,sans-serif;
  --enpe-font-display:"Plus Jakarta Sans","Manrope",Arial,sans-serif;
  --enpe-text:#071824;
  --enpe-muted:#667984;
  --enpe-green:#0a7d68;
  --enpe-lime:#aaff18;
  --enpe-dark:#071b25;
  --enpe-line:rgba(7,24,36,.13);
  --enpe-radius-sm:14px;
  --enpe-radius-md:22px;
  --enpe-radius-lg:32px;
  --enpe-container:1240px;
  --enpe-section-y:clamp(72px,8vw,120px);
  --enpe-gap:clamp(18px,2vw,28px);
}

html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:var(--enpe-font-body)!important;
  font-size:16px;
  line-height:1.7;
  color:var(--enpe-text);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
button,input,select,textarea{font:inherit}

/* One display system across every page */
h1,h2,h3,h4,h5,h6,
.hero-title,.about-hero h1,.consultation-intro h1,
.consultation-form-head h2,.consultation-expect-head h2,
.enquiry-panel__heading h3,.company-hiring-intro h3{
  font-family:var(--enpe-font-display)!important;
  font-weight:700;
  color:inherit;
  text-wrap:balance;
}
h1,.hero-title,.about-hero h1,.consultation-intro h1{
  font-size:clamp(2.75rem,5.4vw,5.35rem)!important;
  line-height:.99!important;
  letter-spacing:-.055em!important;
}
h2,
.section-title,.about-preview h2,.impact h2,.services h2,.process h2,
.outcomes-v2-head h2,.contact-v2 h2,.about-story h2,.about-purpose h2,
.about-difference h2,.about-journey h2,.about-final h2,
.consultation-form-head h2,.consultation-expect-head h2{
  font-size:clamp(2rem,3.7vw,3.85rem)!important;
  line-height:1.06!important;
  letter-spacing:-.045em!important;
}
h3,.enquiry-panel__heading h3,.company-hiring-intro h3{
  font-size:clamp(1.25rem,1.7vw,1.65rem)!important;
  line-height:1.22!important;
  letter-spacing:-.025em!important;
}

p,li,label,input,select,textarea,button,a{
  font-family:var(--enpe-font-body)!important;
}
p{font-size:clamp(.96rem,1.05vw,1.08rem);line-height:1.72}
.eyebrow,.kicker,.section-kicker,[class*="__eyebrow"],[class*="-eyebrow"]{
  font-size:.76rem!important;
  line-height:1.2!important;
  letter-spacing:.16em!important;
  font-weight:800!important;
  text-transform:uppercase;
}

/* Shared page width and vertical rhythm */
.container,.hero-inner,.about-hero__inner,.consultation-wrap,
.footer-v7-inner,.footer-v7-consultation__inner,.footer-v7-directory__inner{
  width:min(calc(100% - 40px),var(--enpe-container));
  margin-inline:auto;
}
.section-pad,.about-hero,.about-story,.about-purpose,.about-difference,
.about-journey,.about-final,.consultation-hero,.consultation-expect{
  padding-top:var(--enpe-section-y)!important;
  padding-bottom:var(--enpe-section-y)!important;
}

/* Consistent cards and surfaces */
[class*="card"],.enquiry-panel,.consultation-form-card,.footer-v7-directory,
.footer-v7-consultation,.about-preview__visual,.about-hero__visual{
  border-radius:var(--enpe-radius-md);
}
.process-card,.impact-card,.client-company-card,.about-principle,
.about-journey-card,.enquiry-choice,.form-section{
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.process-card:hover,.impact-card:hover,.client-company-card:hover,
.about-principle:hover,.about-journey-card:hover,.enquiry-choice:hover{
  transform:translateY(-4px);
}

/* Consistent controls */
.btn,.button,.nav-cta,.hero-cta,.footer-v7-cta,
button[type="submit"],.enquiry-submit{
  min-height:52px;
  padding:0 24px;
  border-radius:999px!important;
  font-size:.94rem!important;
  line-height:1!important;
  font-weight:800!important;
  letter-spacing:-.015em;
}
input,select,textarea{
  min-height:54px;
  border-radius:var(--enpe-radius-sm)!important;
  font-size:1rem!important;
}
textarea{min-height:150px;padding-top:16px!important}
label{font-size:.88rem!important;font-weight:750!important;line-height:1.35}

/* Navigation consistency */
.site-header,.site-nav,.floating-nav{
  font-family:var(--enpe-font-body)!important;
}
.site-header a,.site-nav a,.floating-nav a{
  font-size:.88rem!important;
  font-weight:700!important;
}

/* Footer typography consistency on all pages */
.site-footer-v7{font-family:var(--enpe-font-body)!important}
.site-footer-v7 h2,.site-footer-v7 h3{
  font-family:var(--enpe-font-display)!important;
}
.site-footer-v7 p,.site-footer-v7 a,.site-footer-v7 li{
  font-size:.92rem!important;
  line-height:1.62!important;
}

/* Tablet */
@media (max-width:980px){
  :root{--enpe-section-y:clamp(64px,8vw,92px)}
  h1,.hero-title,.about-hero h1,.consultation-intro h1{
    font-size:clamp(2.55rem,8vw,4.5rem)!important;
  }
  h2,.section-title,.consultation-form-head h2,.consultation-expect-head h2{
    font-size:clamp(1.9rem,5.6vw,3.2rem)!important;
  }
}

/* Mobile */
@media (max-width:640px){
  :root{
    --enpe-section-y:58px;
    --enpe-radius-md:18px;
    --enpe-radius-lg:24px;
  }
  body{font-size:15px;line-height:1.65}
  .container,.hero-inner,.about-hero__inner,.consultation-wrap,
  .footer-v7-inner,.footer-v7-consultation__inner,.footer-v7-directory__inner{
    width:min(calc(100% - 28px),var(--enpe-container));
  }
  h1,.hero-title,.about-hero h1,.consultation-intro h1{
    font-size:clamp(2.35rem,12.2vw,3.55rem)!important;
    line-height:1.01!important;
    letter-spacing:-.05em!important;
  }
  h2,.section-title,.about-preview h2,.impact h2,.services h2,.process h2,
  .outcomes-v2-head h2,.contact-v2 h2,.about-story h2,.about-purpose h2,
  .about-difference h2,.about-journey h2,.about-final h2,
  .consultation-form-head h2,.consultation-expect-head h2{
    font-size:clamp(1.8rem,9.2vw,2.65rem)!important;
    line-height:1.08!important;
  }
  h3,.enquiry-panel__heading h3,.company-hiring-intro h3{
    font-size:1.28rem!important;
  }
  p{font-size:.96rem;line-height:1.68}
  .btn,.button,.nav-cta,.hero-cta,.footer-v7-cta,
  button[type="submit"],.enquiry-submit{
    width:100%;min-height:52px;padding-inline:20px;
  }
  input,select,textarea{font-size:16px!important;width:100%}
  .section-pad,.about-hero,.about-story,.about-purpose,.about-difference,
  .about-journey,.about-final,.consultation-hero,.consultation-expect{
    padding-top:58px!important;padding-bottom:58px!important;
  }
}

@media (max-width:380px){
  h1,.hero-title,.about-hero h1,.consultation-intro h1{
    font-size:2.25rem!important;
  }
  h2,.section-title,.consultation-form-head h2,.consultation-expect-head h2{
    font-size:1.75rem!important;
  }
}


/* =========================================================
   BOOK / CONSULTATION PAGE MOBILE MENU — final visible fix
   ========================================================= */
.consultation-mobile-enquiry { display: none; }

@media (max-width: 920px) {
  .consultation-page { --consultation-nav-offset: 86px; }
  .consultation-page.nav-open { overflow: hidden; }

  .consultation-page .consultation-header,
  .consultation-page .consultation-header.scrolled {
    position: fixed;
    inset: 8px 0 auto;
    width: 100%;
    padding-inline: max(8px, env(safe-area-inset-left));
    z-index: 1400;
    pointer-events: none;
  }

  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    position: relative;
    width: min(calc(100% - 16px), 720px);
    min-height: 68px;
    height: 68px;
    margin-inline: auto;
    padding: 7px 8px 7px 13px;
    gap: 10px;
    border-radius: 20px;
    overflow: visible;
    pointer-events: auto;
  }

  .consultation-page .consultation-header .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
    gap: 8px;
    overflow: hidden;
  }

  .consultation-page .consultation-header .brand-symbol,
  .consultation-page .consultation-header.scrolled .brand-symbol {
    flex: 0 0 auto;
    width: 40px;
    height: 34px;
    object-fit: contain;
  }

  .consultation-page .consultation-header .brand-name-wrap {
    min-width: 0;
    overflow: hidden;
  }

  .consultation-page .consultation-header .brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .consultation-page .consultation-header .menu-toggle {
    display: flex;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    z-index: 10;
  }

  .consultation-page .consultation-nav-cta { display: none !important; }

  .consultation-page .consultation-header .consultation-nav,
  .consultation-page .consultation-header .consultation-nav.open {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    max-height: calc(100dvh - 96px);
    margin: 0;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: #0b1720;
    box-shadow: 0 24px 60px rgba(8,25,33,.34);
  }

  .consultation-page .consultation-header .consultation-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.985);
    pointer-events: none;
  }

  .consultation-page .consultation-header .consultation-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .consultation-page .consultation-header .consultation-nav a,
  .consultation-page .consultation-header .consultation-nav.open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 14px 15px;
    border-radius: 13px;
    color: #ffffff !important;
    background: transparent;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.2;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .consultation-page .consultation-header .consultation-nav a::after {
    display: none !important;
  }

  .consultation-page .consultation-header .consultation-nav a:hover,
  .consultation-page .consultation-header .consultation-nav a:focus-visible,
  .consultation-page .consultation-header .consultation-nav a.active {
    color: var(--ink) !important;
    background: var(--lime);
  }

  .consultation-page .consultation-header .consultation-mobile-enquiry,
  .consultation-page .consultation-header .consultation-nav.open .consultation-mobile-enquiry {
    display: flex;
    margin-top: 4px;
    color: var(--ink) !important;
    background: var(--lime);
    font-weight: 800 !important;
  }

  .consultation-page .consultation-hero {
    padding-top: calc(var(--consultation-nav-offset) + 42px) !important;
  }
}

@media (max-width: 480px) {
  .consultation-page { --consultation-nav-offset: 78px; }

  .consultation-page .consultation-header,
  .consultation-page .consultation-header.scrolled {
    inset-block-start: 6px;
    padding-inline: max(6px, env(safe-area-inset-left));
  }

  .consultation-page .consultation-header .nav-wrap,
  .consultation-page .consultation-header.scrolled .nav-wrap {
    width: calc(100% - 12px);
    min-height: 64px;
    height: 64px;
    padding: 6px 7px 6px 10px;
    border-radius: 18px;
  }

  .consultation-page .consultation-header .brand-symbol,
  .consultation-page .consultation-header.scrolled .brand-symbol {
    width: 36px;
    height: 30px;
  }

  .consultation-page .consultation-header .brand-name,
  .consultation-page .consultation-header.scrolled .brand-name { font-size: 15.5px; }
  .consultation-page .consultation-header .brand-tagline { font-size: 5.5px; }

  .consultation-page .consultation-header .menu-toggle {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
  }

  .consultation-page .consultation-header .consultation-nav,
  .consultation-page .consultation-header .consultation-nav.open {
    top: calc(100% + 8px);
    max-height: calc(100dvh - 84px);
    border-radius: 18px;
  }

  .consultation-page .consultation-hero {
    padding-top: calc(var(--consultation-nav-offset) + 32px) !important;
  }
}

@media (max-width: 350px) {
  .consultation-page .consultation-header .brand-tagline { display: none; }
  .consultation-page .consultation-header .brand-name { font-size: 15px; }
}

/* ===== ENPE dedicated clients page ===== */
.clients-page{background:#f4f5ef;color:#0d1d22}.clients-hero{padding-top:clamp(8.5rem,14vw,12rem);padding-bottom:clamp(4rem,8vw,7rem);position:relative;overflow:hidden;background:radial-gradient(circle at 85% 12%,rgba(247,178,30,.18),transparent 28%),linear-gradient(180deg,#eef1e8 0%,#f7f7f2 100%)}.clients-hero:after{content:"";position:absolute;width:420px;height:420px;border:1px solid rgba(13,29,34,.08);border-radius:50%;right:-170px;top:70px;box-shadow:0 0 0 70px rgba(13,29,34,.025),0 0 0 140px rgba(13,29,34,.018)}.clients-hero__grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:clamp(2rem,7vw,7rem);align-items:end;position:relative;z-index:1}.clients-hero__copy h1{font-size:clamp(3.2rem,7vw,7.4rem);line-height:.93;letter-spacing:-.065em;max-width:950px;margin:1.35rem 0 1.6rem}.clients-hero__copy h1 em{font-style:normal;color:#cf8b00}.clients-hero__copy>p{font-size:clamp(1rem,1.4vw,1.2rem);line-height:1.8;max-width:720px;color:#496067}.clients-hero__actions{display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap;margin-top:2rem}.clients-hero__summary{background:#0d1d22;color:#fff;border-radius:30px;padding:clamp(1.7rem,3vw,2.8rem);box-shadow:0 28px 70px rgba(13,29,34,.16)}.clients-hero__summary>span{text-transform:uppercase;letter-spacing:.16em;font-size:.72rem;color:#f7b21e}.clients-hero__summary>strong{display:block;font-size:clamp(4.6rem,8vw,7.6rem);line-height:1;margin:.7rem 0}.clients-hero__summary>p{color:rgba(255,255,255,.7);line-height:1.7}.clients-hero__summary>div{display:grid;gap:.7rem;margin-top:1.6rem}.clients-hero__summary b{font-size:.82rem;font-weight:600;padding-top:.7rem;border-top:1px solid rgba(255,255,255,.12)}.client-directory{background:#fff}.client-directory__head{display:grid;grid-template-columns:1fr minmax(260px,480px);gap:3rem;align-items:end;margin-bottom:clamp(2.5rem,5vw,4.8rem)}.client-directory__head h2{font-size:clamp(2.6rem,5vw,5.5rem);line-height:1;letter-spacing:-.055em;margin-top:1rem}.client-directory__head h2 em{font-style:normal;color:#cf8b00}.client-directory__head>p{color:#5c6d72;line-height:1.8}.client-profile-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.client-profile-card{min-height:290px;border:1px solid #dfe5df;border-radius:24px;padding:1.45rem;display:flex;flex-direction:column;justify-content:space-between;background:linear-gradient(145deg,#fff,#f7f8f4);transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease}.client-profile-card:hover{transform:translateY(-6px);border-color:#f0b43b;box-shadow:0 22px 50px rgba(13,29,34,.09)}.client-profile-card__top{display:flex;justify-content:space-between;align-items:flex-start}.client-profile-card__mark{width:58px;height:58px;border-radius:18px;background:#0d1d22;color:#f7b21e;display:grid;place-items:center;font-weight:800;letter-spacing:.04em}.client-profile-card__index{font-size:.72rem;letter-spacing:.18em;color:#97a3a4}.client-profile-card p{text-transform:uppercase;letter-spacing:.14em;font-size:.68rem;color:#b27600;font-weight:800;margin-bottom:.75rem}.client-profile-card h3{font-size:clamp(1.45rem,2vw,2rem);letter-spacing:-.035em;margin-bottom:.7rem}.client-profile-card div>span{color:#66777b;line-height:1.65;font-size:.92rem}.clients-cta{background:#f4f5ef}.clients-cta__shell{background:#0d1d22;color:#fff;border-radius:32px;padding:clamp(2rem,5vw,4.5rem);display:flex;justify-content:space-between;align-items:end;gap:2rem;position:relative;overflow:hidden}.clients-cta__shell:after{content:"";position:absolute;width:260px;height:260px;border:60px solid rgba(247,178,30,.09);border-radius:50%;right:-80px;top:-100px}.clients-cta__shell>div,.clients-cta__shell>a{position:relative;z-index:1}.clients-cta__shell span{color:#f7b21e;text-transform:uppercase;letter-spacing:.14em;font-size:.72rem}.clients-cta__shell h2{font-size:clamp(2rem,4vw,4.5rem);line-height:1.04;letter-spacing:-.05em;max-width:850px;margin-top:.8rem}.clients-showcase__page-link{margin-top:2rem;width:max-content}
@media(max-width:980px){.clients-hero__grid,.client-directory__head{grid-template-columns:1fr}.client-profile-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.clients-hero__summary{max-width:620px}.clients-cta__shell{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.clients-hero{padding-top:7.4rem}.clients-hero__copy h1{font-size:clamp(2.75rem,14vw,4.4rem)}.clients-hero__actions{align-items:stretch;flex-direction:column}.clients-hero__actions .btn{width:100%;justify-content:center}.clients-hero__summary{border-radius:24px;padding:1.5rem}.client-profile-grid{grid-template-columns:1fr}.client-profile-card{min-height:235px;border-radius:20px}.client-directory__head{gap:1.4rem}.clients-cta__shell{border-radius:24px;padding:1.7rem}.clients-cta__shell .btn{width:100%;justify-content:center}}


/* ===== Clients page redesign v2 ===== */
.clients-page{background:#f6f7f2;color:#102127;overflow-x:hidden}.clients-page main{overflow:hidden}.clients-page .site-nav a.active{color:#101f24}.clients-hero{position:relative;padding:clamp(9.2rem,14vw,12rem) 0 clamp(4.5rem,8vw,7.5rem);background:linear-gradient(135deg,#eef1e8 0%,#f9faf6 58%,#f5ead1 100%)}.clients-hero:before{content:"";position:absolute;inset:auto -12rem -20rem auto;width:38rem;height:38rem;border-radius:50%;border:1px solid rgba(16,33,39,.08);box-shadow:0 0 0 6rem rgba(16,33,39,.025),0 0 0 12rem rgba(16,33,39,.018)}.clients-hero__layout{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.22fr) minmax(310px,.62fr);gap:clamp(2.5rem,7vw,7rem);align-items:center}.clients-hero__content h1{max-width:960px;margin:1.25rem 0 1.5rem;font-size:clamp(3.35rem,7.1vw,7.2rem);line-height:.94;letter-spacing:-.065em}.clients-hero__content h1 em{font-style:normal;color:#bd7900}.clients-hero__content>p{max-width:720px;color:#52666b;font-size:clamp(1rem,1.5vw,1.18rem);line-height:1.82}.clients-hero__actions{display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap;margin-top:2.25rem}.clients-scroll-link{display:inline-flex;align-items:center;gap:.65rem;color:#102127;font-weight:800}.clients-scroll-link span{display:grid;place-items:center;width:30px;height:30px;border:1px solid rgba(16,33,39,.2);border-radius:50%}.clients-hero__panel{padding:clamp(1.6rem,3vw,2.6rem);border:1px solid rgba(255,255,255,.12);border-radius:30px;background:#102127;color:#fff;box-shadow:0 30px 80px rgba(16,33,39,.18)}.clients-hero__count{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;padding-bottom:1.45rem;border-bottom:1px solid rgba(255,255,255,.13)}.clients-hero__count strong{font-size:clamp(4.8rem,8vw,7.4rem);line-height:.75;letter-spacing:-.07em;color:#f7b21e}.clients-hero__count span{max-width:90px;text-transform:uppercase;letter-spacing:.14em;font-size:.7rem;line-height:1.45;color:rgba(255,255,255,.67)}.clients-hero__industries{display:flex;flex-wrap:wrap;gap:.55rem;margin:1.45rem 0}.clients-hero__industries span{padding:.55rem .72rem;border:1px solid rgba(255,255,255,.15);border-radius:999px;font-size:.72rem;font-weight:700;color:rgba(255,255,255,.82)}.clients-hero__panel>p{color:rgba(255,255,255,.65);font-size:.91rem;line-height:1.7}.clients-proof{background:#102127;color:#fff}.clients-proof__row{min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:2rem}.clients-proof__row>p{color:#f7b21e;text-transform:uppercase;letter-spacing:.15em;font-size:.7rem;font-weight:800;white-space:nowrap}.clients-proof__row>div{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:clamp(1rem,4vw,3.2rem)}.clients-proof__row span{color:rgba(255,255,255,.72);font-size:.82rem;font-weight:700}.client-directory{background:#fff}.client-directory__head{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,470px);align-items:end;gap:3rem;margin-bottom:clamp(2.8rem,5vw,4.8rem)}.client-directory__head h2{max-width:760px;margin-top:1rem;font-size:clamp(2.75rem,5.4vw,5.4rem);line-height:1;letter-spacing:-.055em}.client-directory__head h2 em{font-style:normal;color:#bd7900}.client-directory__head>p{color:#607176;line-height:1.8}.client-profile-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.client-profile-card{position:relative;isolation:isolate;min-height:245px;padding:1.25rem;border:1px solid #e0e5df;border-radius:22px;background:#fafbf8;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden;transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease}.client-profile-card:after{content:"";position:absolute;z-index:-1;right:-46px;top:-46px;width:120px;height:120px;border-radius:50%;background:rgba(247,178,30,.09);transition:transform .35s ease}.client-profile-card:hover{transform:translateY(-5px);border-color:#e4ad3e;box-shadow:0 20px 44px rgba(16,33,39,.08)}.client-profile-card:hover:after{transform:scale(1.35)}.client-profile-card__top{display:flex;justify-content:space-between;align-items:flex-start}.client-profile-card__index{color:#9aa6a5;font-size:.68rem;letter-spacing:.18em;font-weight:800}.client-profile-card__mark{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:#102127;color:#f7b21e;font-size:.82rem;font-weight:800;letter-spacing:.03em}.client-profile-card__body p{margin-bottom:.65rem;color:#a66b00;text-transform:uppercase;letter-spacing:.12em;font-size:.62rem;font-weight:800;line-height:1.45}.client-profile-card__body h3{margin-bottom:.7rem;font-size:clamp(1.25rem,1.8vw,1.75rem);line-height:1.15;letter-spacing:-.035em}.client-profile-card__body>span{display:inline-flex;align-items:center;gap:.45rem;color:#718084;font-size:.77rem;font-weight:700}.client-profile-card__body>span:before{content:"";width:6px;height:6px;border-radius:50%;background:#f7b21e}.clients-value{background:#f2f4ed}.clients-value__layout{display:grid;grid-template-columns:minmax(260px,.65fr) minmax(0,1.35fr);gap:clamp(2.5rem,7vw,7rem);align-items:start}.clients-value__intro h2{margin-top:1rem;font-size:clamp(2.4rem,4.2vw,4.5rem);line-height:1.04;letter-spacing:-.05em}.clients-value__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.clients-value__grid article{min-height:260px;padding:1.45rem;border-top:2px solid #102127;background:rgba(255,255,255,.55)}.clients-value__grid article>span{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#f7b21e;color:#102127;font-size:.72rem;font-weight:800}.clients-value__grid h3{margin:2.6rem 0 .8rem;font-size:1.28rem;letter-spacing:-.025em}.clients-value__grid p{color:#66777b;font-size:.9rem;line-height:1.72}.clients-cta{background:#fff}.clients-cta__shell{position:relative;overflow:hidden;display:flex;justify-content:space-between;align-items:flex-end;gap:3rem;padding:clamp(2rem,5vw,4.5rem);border-radius:30px;background:#102127;color:#fff}.clients-cta__shell:after{content:"";position:absolute;right:-100px;top:-140px;width:340px;height:340px;border:72px solid rgba(247,178,30,.1);border-radius:50%}.clients-cta__shell>div,.clients-cta__shell>a{position:relative;z-index:1}.clients-cta__shell>div>span{color:#f7b21e;text-transform:uppercase;letter-spacing:.14em;font-size:.7rem;font-weight:800}.clients-cta__shell h2{max-width:780px;margin:.8rem 0 .9rem;font-size:clamp(2.2rem,4.6vw,4.7rem);line-height:1;letter-spacing:-.055em}.clients-cta__shell p{max-width:620px;color:rgba(255,255,255,.64);line-height:1.7}
@media(max-width:1120px){.client-profile-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.clients-value__layout{grid-template-columns:1fr}.clients-value__intro{max-width:720px}}
@media(max-width:920px){.clients-hero__layout,.client-directory__head{grid-template-columns:1fr}.clients-hero__panel{max-width:650px}.client-profile-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.clients-cta__shell{align-items:flex-start;flex-direction:column}.clients-page .site-nav.open a{color:#fff!important}.clients-page .site-nav.open a.active,.clients-page .site-nav.open a:hover{color:#102127!important;background:#f7b21e}}
@media(max-width:720px){.clients-proof__row{padding-block:1.15rem;align-items:flex-start;flex-direction:column;gap:.85rem}.clients-proof__row>div{justify-content:flex-start;gap:.8rem 1.25rem}.clients-value__grid{grid-template-columns:1fr}.clients-value__grid article{min-height:0}.clients-value__grid h3{margin-top:1.7rem}}
@media(max-width:560px){.clients-hero{padding-top:7.7rem;padding-bottom:4.2rem}.clients-hero__content h1{font-size:clamp(2.85rem,13.5vw,4.1rem)}.clients-hero__actions{align-items:stretch;flex-direction:column}.clients-hero__actions .btn{width:100%;justify-content:center}.clients-scroll-link{justify-content:center}.clients-hero__panel{padding:1.35rem;border-radius:22px}.clients-hero__count strong{font-size:5rem}.client-directory{padding-top:4.5rem}.client-directory__head{gap:1.25rem}.client-directory__head h2{font-size:clamp(2.5rem,12vw,3.7rem)}.client-profile-grid{grid-template-columns:1fr}.client-profile-card{min-height:210px;border-radius:18px}.clients-value__intro h2{font-size:clamp(2.4rem,11vw,3.5rem)}.clients-cta__shell{padding:1.6rem;border-radius:22px}.clients-cta__shell h2{font-size:clamp(2.2rem,10vw,3.2rem)}.clients-cta__shell .btn{width:100%;justify-content:center}}
@media(max-width:380px){.clients-hero__content h1{font-size:2.65rem}.clients-hero__count{align-items:center}.clients-hero__count strong{font-size:4.4rem}.client-profile-card{min-height:195px}}


/* =========================================================
   INTERACTIVE CLIENT CARD SYSTEM — REFERENCE INSPIRED
   Click or keyboard activation moves the lime highlight.
   ========================================================= */
:root {
  --client-lime: #a8ff19;
  --client-ink: #071923;
  --client-muted: #6d7f84;
  --client-soft: #edf3ee;
}

.client-profile-card,
.client-company-card {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.client-profile-card:focus-visible,
.client-company-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(168,255,25,.28), 0 22px 52px rgba(7,25,35,.14) !important;
}

/* Dedicated Clients page cards */
.clients-page .client-profile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.clients-page .client-profile-card {
  min-height: 390px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,25,35,.10);
  box-shadow: 0 18px 46px rgba(7,25,35,.055);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), background .42s ease,
              border-color .42s ease, box-shadow .42s ease, color .42s ease;
}

.clients-page .client-profile-card::before {
  content: '↗';
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7,25,35,.10);
  border-radius: 50%;
  color: #2c9a87;
  background: rgba(255,255,255,.68);
  font-size: 16px;
  font-weight: 800;
  transition: transform .42s cubic-bezier(.2,.8,.2,1), background .35s ease, color .35s ease;
}

.clients-page .client-profile-card::after {
  content: '';
  position: absolute;
  inset: auto -90px -110px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  transform: scale(.45);
  opacity: 0;
  transition: transform .55s ease, opacity .4s ease;
}

.clients-page .client-profile-card__top {
  min-height: 112px;
  padding-right: 58px;
}

.clients-page .client-profile-card__mark {
  align-self: end;
  width: 66px;
  height: 66px;
  border-radius: 19px;
  background: var(--client-soft);
  color: #168c78;
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.clients-page .client-profile-card__body h3 {
  font-size: clamp(1.45rem, 1.75vw, 2rem);
}

.clients-page .client-profile-card.is-active {
  transform: translateY(-8px);
  border-color: #91e600;
  background: var(--client-lime);
  color: var(--client-ink);
  box-shadow: 0 28px 68px rgba(91,145,0,.22);
}

.clients-page .client-profile-card.is-active::before {
  content: '→';
  transform: rotate(0deg) scale(1.04);
  background: var(--client-ink);
  border-color: var(--client-ink);
  color: #fff;
}

.clients-page .client-profile-card.is-active::after {
  transform: scale(1);
  opacity: 1;
}

.clients-page .client-profile-card.is-active .client-profile-card__mark {
  transform: translateY(-2px) rotate(-3deg);
  background: var(--client-ink);
  color: #fff;
}

.clients-page .client-profile-card.is-active .client-profile-card__index,
.clients-page .client-profile-card.is-active .client-profile-card__body p,
.clients-page .client-profile-card.is-active .client-profile-card__body > span {
  color: rgba(7,25,35,.66);
}

.clients-page .client-profile-card.is-active .client-profile-card__body > span::before {
  background: var(--client-ink);
}

/* Homepage clients section — same visual language, cleaner hierarchy */
.clients-showcase {
  background:
    radial-gradient(circle at 18% 22%, rgba(168,255,25,.10), transparent 28%),
    linear-gradient(180deg, #f4f7f1 0%, #eef3ed 100%);
}

.clients-showcase__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.client-company-card {
  min-height: 315px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,25,35,.10);
  box-shadow: 0 18px 48px rgba(7,25,35,.055);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), background .42s ease,
              border-color .42s ease, box-shadow .42s ease;
}

.client-company-card::before {
  content: '↗';
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(7,25,35,.10);
  color: #2c9a87;
  background: rgba(255,255,255,.72);
  font-weight: 800;
  transition: transform .4s ease, background .35s ease, color .35s ease;
}

.client-company-card::after {
  width: 220px;
  height: 220px;
  right: -115px;
  bottom: -125px;
  border: none;
  background: rgba(255,255,255,.13);
  transform: scale(.5);
  opacity: 0;
}

.client-company-card__mark {
  width: 66px;
  height: 66px;
  margin-top: auto;
  border-radius: 19px;
  background: var(--client-soft);
  color: #168c78;
  font-size: .86rem;
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.client-company-card > div:nth-child(2) {
  width: 100%;
}

.client-company-card strong {
  font-size: clamp(1.22rem, 1.55vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.client-company-card > span {
  position: absolute;
  top: 31px;
  left: 26px;
}

.client-company-card.is-active,
.client-company-card--cta.is-active {
  transform: translateY(-8px);
  border-color: #91e600;
  background: var(--client-lime);
  box-shadow: 0 28px 68px rgba(91,145,0,.22);
}

.client-company-card.is-active::before {
  content: '→';
  color: #fff;
  background: var(--client-ink);
  border-color: var(--client-ink);
}

.client-company-card.is-active::after {
  transform: scale(1);
  opacity: 1;
}

.client-company-card.is-active .client-company-card__mark {
  transform: translateY(-2px) rotate(-3deg);
  background: var(--client-ink);
  color: #fff;
}

.client-company-card.is-active small,
.client-company-card.is-active > span,
.client-company-card--cta.is-active small {
  color: rgba(7,25,35,.62);
}

.client-company-card.is-active strong,
.client-company-card--cta.is-active strong {
  color: var(--client-ink);
}

.client-company-card--cta {
  background: rgba(255,255,255,.92);
  border-color: rgba(7,25,35,.10);
}
.client-company-card--cta small { color: #087c66; }
.client-company-card--cta strong { color: var(--client-ink); }
.client-company-card--cta .client-company-card__mark { background: var(--client-soft); color: #168c78; }
.client-company-card--cta > a {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  opacity: 0;
}

@media (max-width: 1180px) {
  .clients-page .client-profile-grid,
  .clients-showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .clients-page .client-profile-grid,
  .clients-showcase__grid { grid-template-columns: 1fr; gap: 14px; }
  .clients-page .client-profile-card,
  .client-company-card {
    min-height: 270px;
    padding: 22px;
    border-radius: 24px;
  }
  .clients-page .client-profile-card::before,
  .client-company-card::before { top: 20px; right: 20px; }
  .client-company-card > span { top: 28px; left: 22px; }
}

@media (hover: hover) {
  .client-profile-card:not(.is-active):hover,
  .client-company-card:not(.is-active):hover {
    transform: translateY(-5px);
    border-color: rgba(22,140,120,.34);
    box-shadow: 0 24px 56px rgba(7,25,35,.10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-profile-card,
  .client-company-card,
  .client-profile-card::before,
  .client-company-card::before,
  .client-profile-card::after,
  .client-company-card::after,
  .client-profile-card__mark,
  .client-company-card__mark { transition: none !important; }
}

/* =========================================================
   NAVIGATION REWORK — simplified primary menu
   Home / About / Clients / Contact + consultation CTA
   ========================================================= */
.site-header .nav-wrap {
  min-height: 76px;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.15vw, 18px);
  margin-left: auto;
}

.site-header .site-nav > a:not(.consultation-mobile-enquiry) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.site-header .site-nav > a:not(.consultation-mobile-enquiry)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.site-header .site-nav > a:hover,
.site-header .site-nav > a:focus-visible {
  transform: translateY(-1px);
}

.site-header .site-nav > a:hover::after,
.site-header .site-nav > a:focus-visible::after,
.site-header .site-nav > a.active::after {
  transform: scaleX(1);
}

.site-header .nav-cta {
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 20px;
}

@media (max-width: 980px) {
  .site-header .nav-wrap {
    min-height: 70px;
  }

  .site-header .site-nav {
    gap: 4px;
  }

  .site-header .site-nav > a:not(.consultation-mobile-enquiry) {
    padding-inline: 9px;
  }
}

@media (max-width: 760px) {
  .site-header .nav-wrap {
    min-height: 64px;
    gap: 12px;
  }

  .site-header .site-nav {
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
  }

  .site-header .site-nav > a:not(.consultation-mobile-enquiry) {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    font-size: clamp(1.05rem, 4.8vw, 1.25rem);
    color: #fff !important;
    background: rgba(255,255,255,.045);
  }

  .site-header .site-nav > a:not(.consultation-mobile-enquiry)::after {
    left: 18px;
    right: auto;
    bottom: 10px;
    width: 34px;
    background: #a8ff20;
    transform-origin: left;
  }

  .site-header .site-nav > a:hover,
  .site-header .site-nav > a:focus-visible,
  .site-header .site-nav > a.active {
    color: #071620 !important;
    background: #a8ff20;
    border-color: #a8ff20;
    transform: none;
  }

  .site-header .site-nav > a:hover::after,
  .site-header .site-nav > a:focus-visible::after,
  .site-header .site-nav > a.active::after {
    background: #071620;
  }
}

/* =========================================================
   CLIENT LAYERS — MOBILE RESPONSIVE REWORK (v2)
   Homepage client section + dedicated Clients page
   ========================================================= */
@media (max-width: 760px) {
  .clients-showcase,
  .client-directory {
    overflow: clip;
  }

  .clients-showcase {
    padding-block: 68px;
  }

  .clients-showcase__shell,
  .client-directory > .container {
    width: min(100% - 28px, 1180px);
  }

  .clients-showcase__head,
  .client-directory__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .clients-showcase__head h2,
  .client-directory__head h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    text-wrap: balance;
  }

  .clients-showcase__intro {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(7,25,35,.13);
  }

  .clients-showcase__intro p,
  .client-directory__head > p {
    font-size: .95rem;
    line-height: 1.7;
  }

  .clients-showcase__grid,
  .clients-page .client-profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .client-company-card,
  .clients-page .client-profile-card {
    min-width: 0;
    min-height: 184px;
    padding: 19px;
    border-radius: 22px;
    transform: none;
    box-shadow: 0 12px 34px rgba(7,25,35,.055);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .client-company-card {
    display: grid;
    grid-template-columns: 56px minmax(0,1fr);
    grid-template-rows: auto 1fr;
    align-items: end;
    column-gap: 15px;
    row-gap: 16px;
  }

  .client-company-card > span {
    top: 22px;
    left: 20px;
    font-size: .68rem;
  }

  .client-company-card::before,
  .clients-page .client-profile-card::before {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }

  .client-company-card__mark {
    grid-column: 1;
    grid-row: 2;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 16px;
  }

  .client-company-card > div:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    min-width: 0;
  }

  .client-company-card small {
    display: block;
    margin-bottom: 5px;
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .client-company-card strong {
    display: block;
    font-size: clamp(1.24rem, 6vw, 1.65rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .client-company-card.is-active,
  .client-company-card--cta.is-active,
  .clients-page .client-profile-card.is-active {
    transform: none;
    box-shadow: 0 18px 42px rgba(91,145,0,.18);
  }

  .clients-page .client-profile-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 28px;
  }

  .clients-page .client-profile-card__top {
    min-height: 42px;
    padding-right: 48px;
  }

  .clients-page .client-profile-card__mark {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: .76rem;
  }

  .clients-page .client-profile-card__body {
    min-width: 0;
  }

  .clients-page .client-profile-card__body p {
    margin-bottom: 7px;
    font-size: .63rem;
    line-height: 1.45;
  }

  .clients-page .client-profile-card h3 {
    margin-bottom: 8px;
    font-size: clamp(1.38rem, 6.4vw, 1.82rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .clients-page .client-profile-card__body > span {
    font-size: .82rem;
  }

  .clients-showcase__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }

  .clients-showcase__page-link {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .clients-value__layout,
  .clients-value__grid,
  .clients-cta__shell {
    grid-template-columns: 1fr;
  }

  .clients-cta__shell {
    align-items: flex-start;
    border-radius: 24px;
  }
}

@media (min-width: 520px) and (max-width: 760px) {
  .clients-showcase__grid,
  .clients-page .client-profile-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .client-company-card,
  .clients-page .client-profile-card {
    min-height: 220px;
  }

  .client-company-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .client-company-card__mark {
    width: 58px;
    height: 58px;
    margin-top: auto;
  }
}

@media (max-width: 390px) {
  .clients-showcase__shell,
  .client-directory > .container {
    width: min(100% - 22px, 1180px);
  }

  .client-company-card,
  .clients-page .client-profile-card {
    min-height: 176px;
    padding: 17px;
    border-radius: 20px;
  }

  .client-company-card::before,
  .clients-page .client-profile-card::before {
    top: 14px;
    right: 14px;
  }
}

/* =========================================================
   V12 — ALL-PAGE MOBILE TWO-COLUMN CARD SYSTEM
   Keeps content layers readable while preserving hierarchy.
   ========================================================= */
@media (max-width: 760px) {
  :root { --mobile-card-gap: 10px; }

  /* Shared two-column content layers */
  .stats-grid,
  .process-v2-flow,
  .about-principles-grid,
  .about-journey-grid,
  .consultation-expect-grid,
  .clients-value__grid,
  .client-v9__active-grid,
  .client-page-v9__grid,
  .client-v9__logo-grid,
  .client-page-v9__primary-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--mobile-card-gap) !important;
  }

  /* Compact, consistent card rhythm */
  .stat-card,
  .process-v2-card,
  .about-principle,
  .about-journey-grid > article,
  .consultation-expect-grid > article,
  .clients-value__grid > article {
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 15px !important;
    border-radius: 18px !important;
  }

  .stat-card h3,
  .process-v2-card h3,
  .about-principle h3,
  .about-journey-grid h3,
  .consultation-expect-grid h3,
  .clients-value__grid h3 {
    font-size: clamp(.98rem, 4.2vw, 1.18rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
    overflow-wrap: anywhere;
  }

  .stat-card p,
  .process-v2-card p,
  .about-principle p,
  .about-journey-grid p,
  .consultation-expect-grid p,
  .clients-value__grid p {
    font-size: .76rem !important;
    line-height: 1.48 !important;
    overflow-wrap: anywhere;
  }

  .process-v2-cardtop,
  .about-principle-top {
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .process-v2-number,
  .about-principle-state,
  .consultation-expect-grid span {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    font-size: .65rem !important;
  }

  .process-v2-card .process-v2-copy,
  .about-principle h3,
  .consultation-expect-grid h3 {
    margin-top: 18px !important;
  }

  /* Homepage client cards */
  .client-v9__active,
  .client-page-v9__active {
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .client-v9__active-card,
  .client-page-v9__card {
    min-width: 0 !important;
    padding: 14px !important;
    border-radius: 17px !important;
  }

  .client-v9__card-top,
  .client-page-v9__card-head {
    gap: 7px !important;
  }

  .client-v9__card-top b,
  .client-page-v9__card-head b {
    max-width: 78px;
    padding: 6px 7px !important;
    font-size: .56rem !important;
    line-height: 1.1 !important;
    text-align: center;
    white-space: normal !important;
  }

  .client-v9__active-card small,
  .client-page-v9__card-copy small {
    font-size: .62rem !important;
    line-height: 1.2 !important;
  }

  .client-v9__active-card h4,
  .client-page-v9__card h4 {
    margin-top: 8px !important;
    font-size: clamp(1rem, 4.4vw, 1.22rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere;
  }

  .client-v9__active-card p,
  .client-page-v9__card p {
    margin-top: 8px !important;
    font-size: .73rem !important;
    line-height: 1.42 !important;
  }

  .client-v9__active-card dl,
  .client-page-v9__card dl {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin-top: 13px !important;
    padding-top: 11px !important;
  }

  .client-v9__active-card dt,
  .client-page-v9__card dt { font-size: .53rem !important; }
  .client-v9__active-card dd,
  .client-page-v9__card dd { font-size: .67rem !important; line-height: 1.25 !important; }

  .client-v9__logo-grid article,
  .client-page-v9__primary-grid article {
    min-width: 0 !important;
    min-height: 124px !important;
    padding: 13px !important;
    border-radius: 16px !important;
  }

  .client-v9__logo-grid h4,
  .client-page-v9__primary-grid h4 {
    font-size: .88rem !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere;
  }

  .client-v9__logo-grid p,
  .client-page-v9__primary-grid p { font-size: .65rem !important; line-height: 1.35 !important; }

  /* Preserve hierarchy: headings stay full width above grids */
  .section-head,
  .process-v2-head,
  .about-journey-head,
  .consultation-expect-head,
  .client-v9__section-head,
  .client-page-v9__title {
    margin-bottom: 24px !important;
  }

  /* Footer becomes a practical two-column directory */
  .footer-v7-grid,
  .footer-v7-directory {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 16px !important;
  }
  .footer-v7-brand,
  .footer-v7-intro,
  .footer-v7-contact {
    grid-column: 1 / -1 !important;
  }
  .footer-v7-column { min-width: 0; }
  .footer-v7-column a { font-size: .8rem !important; line-height: 1.35 !important; }
}

@media (max-width: 390px) {
  :root { --mobile-card-gap: 8px; }
  .stat-card,
  .process-v2-card,
  .about-principle,
  .about-journey-grid > article,
  .consultation-expect-grid > article,
  .clients-value__grid > article,
  .client-v9__active-card,
  .client-page-v9__card { padding: 12px !important; }

  .client-v9__active,
  .client-page-v9__active { padding: 10px !important; }

  .client-v9__active-card h4,
  .client-page-v9__card h4 { font-size: .94rem !important; }
  .client-v9__active-card p,
  .client-page-v9__card p { font-size: .68rem !important; }
}

/* --------------------------------------------------------------------------
   V15 — Booking action below the floating contact control
   -------------------------------------------------------------------------- */
.floating-contact {
  bottom: calc(94px + env(safe-area-inset-bottom));
}

.floating-booking {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-height: 58px;
  padding: 7px;
  color: #0b1d22;
  text-decoration: none;
  background: #a7ff12;
  border: 1px solid rgba(167, 255, 18, .7);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(8, 25, 31, .24);
  overflow: hidden;
  transition: width 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  width: 58px;
  z-index: 2;
}

.floating-booking__icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
}

.floating-booking svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-booking__label {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  transition: width 220ms ease, opacity 160ms ease;
}

.floating-booking:hover,
.floating-booking:focus-visible {
  width: 142px;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(8, 25, 31, .3);
}

.floating-booking:hover .floating-booking__label,
.floating-booking:focus-visible .floating-booking__label {
  width: 72px;
  opacity: 1;
}

.floating-booking:focus-visible {
  outline: 3px solid rgba(167, 255, 18, .38);
  outline-offset: 4px;
}

/* Keep back-to-top clear of both floating actions. */
.back-top {
  bottom: calc(27px + env(safe-area-inset-bottom));
}

@media (max-width: 640px) {
  .floating-contact {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(80px + env(safe-area-inset-bottom));
    max-height: calc(100dvh - 176px);
  }

  .floating-booking {
    top: calc(100% + 10px);
    width: 54px;
    min-height: 54px;
    padding: 5px;
  }

  .floating-booking__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .floating-booking:hover,
  .floating-booking:focus-visible {
    width: 132px;
  }

  .back-top {
    right: calc(max(12px, env(safe-area-inset-right)) + 66px);
    bottom: calc(17px + env(safe-area-inset-bottom));
  }
}

@media (max-height: 620px) {
  .floating-contact {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-booking,
  .floating-booking__label { transition: none; }
}

/* --------------------------------------------------------------------------
   V16 — Stable floating action stack (contact above booking)
   -------------------------------------------------------------------------- */
.floating-contact,
.consultation-page .floating-contact,
body:not(.consultation-page) .floating-contact {
  position: fixed !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  z-index: 1400 !important;
  max-height: calc(100dvh - 124px) !important;
}

.floating-booking {
  position: fixed !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  top: auto !important;
  z-index: 1399 !important;
  width: 58px;
  height: 58px;
  min-height: 58px;
  box-sizing: border-box;
}

/* The contact menu opens upward and stays clear of the booking action. */
.floating-contact__menu {
  bottom: calc(100% + 12px) !important;
  top: auto !important;
  max-height: min(430px, calc(100dvh - 190px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.back-top,
.consultation-page .back-top {
  right: calc(max(20px, env(safe-area-inset-right)) + 76px) !important;
  bottom: calc(23px + env(safe-area-inset-bottom)) !important;
  z-index: 1398 !important;
}

@media (max-width: 640px) {
  .floating-contact,
  .consultation-page .floating-contact,
  body:not(.consultation-page) .floating-contact {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: calc(78px + env(safe-area-inset-bottom)) !important;
    max-height: calc(100dvh - 104px) !important;
  }

  .floating-contact__toggle {
    width: 54px !important;
    height: 54px !important;
  }

  .floating-booking {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 5px !important;
  }

  /* Prevent hover expansion from covering content on touch-sized layouts. */
  .floating-booking:hover,
  .floating-booking:focus-visible {
    width: 54px !important;
    transform: translateY(-2px);
  }

  .floating-booking__label {
    display: none !important;
  }

  .floating-contact__menu {
    max-height: calc(100dvh - 172px);
    scrollbar-width: thin;
  }

  .back-top,
  .consultation-page .back-top {
    right: calc(max(12px, env(safe-area-inset-right)) + 66px) !important;
    bottom: calc(15px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-height: 620px) {
  .floating-contact,
  .consultation-page .floating-contact,
  body:not(.consultation-page) .floating-contact {
    bottom: calc(74px + env(safe-area-inset-bottom)) !important;
  }

  .floating-booking {
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
  }

  .floating-contact__menu {
    max-height: calc(100dvh - 152px);
  }
}

/* =========================================================
   V17 — Mobile scrollbar visual cleanup
   Keep natural page scrolling while removing the intrusive
   browser scroll track shown beside the floating controls.
   ========================================================= */
@media (max-width: 768px) {
  html,
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  /* Also hide scroll tracks on mobile-only internal panels. */
  .site-nav,
  .nav-menu,
  .mobile-menu,
  .floating-contact__menu,
  .service-tabs,
  .about-story-band,
  .outcomes-v3-impact {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar,
  .nav-menu::-webkit-scrollbar,
  .mobile-menu::-webkit-scrollbar,
  .floating-contact__menu::-webkit-scrollbar,
  .service-tabs::-webkit-scrollbar,
  .about-story-band::-webkit-scrollbar,
  .outcomes-v3-impact::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

/* =========================================================
   V18 — Remove visible scroll toggle / scrollbar everywhere
   Keeps touch, wheel and keyboard scrolling functional while
   preventing browser and floating-panel scrollbar controls.
   ========================================================= */
html,
body {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

/* The quick-contact menu opens as a clean floating list, without
   an internal scroll rail appearing beside the action buttons. */
.floating-contact__menu,
.site-nav,
.nav-menu,
.mobile-menu,
.consultation-nav,
.service-tabs,
.about-story-band,
.outcomes-v3-impact {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.floating-contact__menu::-webkit-scrollbar,
.site-nav::-webkit-scrollbar,
.nav-menu::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar,
.consultation-nav::-webkit-scrollbar,
.service-tabs::-webkit-scrollbar,
.about-story-band::-webkit-scrollbar,
.outcomes-v3-impact::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

@media (max-width: 768px) {
  .floating-contact__menu {
    overflow: visible !important;
    max-height: none !important;
  }
}

/* =========================================================
   V19 — Booking floating action alignment and mobile cleanup
   Keep the calendar icon optically centred and prevent the
   hidden label/gap from pulling the icon out of position.
   ========================================================= */
.floating-booking,
.floating-booking:hover,
.floating-booking:focus-visible {
  display: grid !important;
  place-items: center !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: visible !important;
  border-radius: 50% !important;
  box-sizing: border-box !important;
  transform: none !important;
}

.floating-booking__icon {
  display: grid !important;
  place-items: center !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
}

.floating-booking__icon svg,
.floating-booking svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  margin: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

/* Tooltip sits outside the circle and never affects icon centring. */
.floating-booking__label {
  position: absolute !important;
  top: 50% !important;
  right: calc(100% + 10px) !important;
  width: auto !important;
  padding: 7px 10px !important;
  overflow: visible !important;
  color: #fff !important;
  background: #0b1d22 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(8,25,31,.2) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(6px,-50%) !important;
  transition: opacity 160ms ease, transform 180ms ease !important;
}

.floating-booking:hover .floating-booking__label,
.floating-booking:focus-visible .floating-booking__label {
  width: auto !important;
  opacity: 1 !important;
  transform: translate(0,-50%) !important;
}

@media (max-width: 640px) {
  .floating-booking,
  .floating-booking:hover,
  .floating-booking:focus-visible {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    transform: none !important;
  }

  .floating-booking__icon,
  .floating-booking__icon svg,
  .floating-booking svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
  }

  .floating-booking__label {
    display: none !important;
  }
}

/* =========================================================
   V20 — Definitive booking FAB rebuild
   Direct SVG centering, no hidden layout children, no width
   animation, and predictable mobile/desktop geometry.
   ========================================================= */
.floating-booking,
.floating-booking:hover,
.floating-booking:focus,
.floating-booking:focus-visible,
.floating-booking:active {
  position: fixed !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  z-index: 1002 !important;
  display: block !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #8cff00 !important;
  box-shadow: 0 14px 34px rgba(72, 128, 0, .24) !important;
  box-sizing: border-box !important;
  line-height: 0 !important;
  text-indent: 0 !important;
  transform: translateZ(0) !important;
  transition: box-shadow 180ms ease, filter 180ms ease !important;
  isolation: isolate !important;
}

.floating-booking:hover,
.floating-booking:focus-visible {
  width: 58px !important;
  filter: brightness(.97) !important;
  box-shadow: 0 16px 38px rgba(72, 128, 0, .32) !important;
}

.floating-booking__svg {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 25px !important;
  height: 25px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #071c20 !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transform: none !important;
  pointer-events: none !important;
}

/* Remove every legacy inner element from layout if cached markup appears. */
.floating-booking__icon,
.floating-booking__label {
  display: none !important;
}

/* Desktop-only tooltip lives outside the FAB and cannot shift the icon. */
.floating-booking::after {
  content: attr(data-tooltip) !important;
  position: absolute !important;
  top: 50% !important;
  right: calc(100% + 10px) !important;
  display: block !important;
  width: max-content !important;
  max-width: 140px !important;
  padding: 7px 10px !important;
  color: #fff !important;
  background: #071c20 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(6px,-50%) !important;
  transition: opacity 160ms ease, transform 180ms ease !important;
}

.floating-booking:hover::after,
.floating-booking:focus-visible::after {
  opacity: 1 !important;
  transform: translate(0,-50%) !important;
}

@media (max-width: 640px) {
  .floating-booking,
  .floating-booking:hover,
  .floating-booking:focus,
  .floating-booking:focus-visible,
  .floating-booking:active {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    border-radius: 50% !important;
    transform: translateZ(0) !important;
  }

  .floating-booking__svg {
    width: 23px !important;
    height: 23px !important;
  }

  .floating-booking::after {
    display: none !important;
    content: none !important;
  }
}


/* =========================================================
   V21 — Booking FAB icon hard reset
   The calendar artwork is now a centred CSS background, so no
   inherited SVG positioning can pull it outside the circle.
   ========================================================= */
.floating-booking,
.floating-booking:hover,
.floating-booking:focus,
.floating-booking:focus-visible,
.floating-booking:active {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  background-color: #8cff00 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071c20' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5.5' width='16' height='14' rx='3'/%3E%3Cpath d='M8 3.5v4M16 3.5v4M4 10h16'/%3E%3Cpath d='m9 14 2 2 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 25px 25px !important;
}

.floating-booking > svg,
.floating-booking__svg,
.floating-booking__icon,
.floating-booking__label {
  display: none !important;
}

.floating-booking .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 640px) {
  .floating-booking,
  .floating-booking:hover,
  .floating-booking:focus,
  .floating-booking:focus-visible,
  .floating-booking:active {
    background-position: 50% 50% !important;
    background-size: 23px 23px !important;
  }
}
