:root {
  --y: #ff7433;
  --y2: #dd4d0a;
  --ink: #0e1014;
  --soft: #3d4452;
  --mute: #8a909e;
  --surf: #f7f6f3;
  --dark: #181c24;
  --primary-green: #60ad4a;
  --teal-accent: #60ad4a;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bord: rgba(0, 0, 0, 0.08);
  --wbord: rgba(255, 255, 255, 0.12);
  --nav-h: 100px;
  --top-h: 38px;
  --font: "Archivo", sans-serif;
  --disp: "Barlow Condensed", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #000000;
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font);
  cursor: pointer;
}

img {
  display: block;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--y);
  border-radius: 4px;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

/* TOPBAR */
.tp {
  height: var(--top-h);
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
  transition: transform 0.35s var(--ease);
}

.tp.hide {
  transform: translateY(-100%);
}

.tp__in {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tp__a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ffffffeb;
  transition: color 0.2s;
}

.tp__a i {
  font-size: 10px;
  color: var(--y);
}

.tp__a:hover {
  color: #fff;
}

.tp__soc {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tp__s {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffffcf;
  font-size: 10px;
  transition: all 0.2s;
}

.tp__s:hover {
  border-color: var(--y);
  color: var(--y);
  transform: translateY(-1px);
}

/* HEADER */
.hd {
  position: fixed;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s,
    box-shadow 0.4s,
    top 0.35s var(--ease);
}

.hd.solid {
  background: rgb(0 0 0 / 97%);
  border-bottom-color: var(--bord);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(20px);
  top: 0;
}

.hd__inner {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo__img {
  height: 70px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo__img {
  transform: scale(1.07) rotate(6deg);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--disp);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  transition: color 0.3s;
}

.hd.solid .logo__name {
  color: var(--ink);
}

.logo__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 3px;
  transition: color 0.3s;
}

.hd.solid .logo__tag {
  color: var(--mute);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  height: var(--nav-h);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color 0.25s;
  font-family: math;
}

.hd.solid .nav > li > a {
  color: #fff;
}

.nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--y);
  transition: width 0.28s var(--ease);
}

.nav > li:hover > a::after,
.nav > li.active > a::after {
  width: 22px;
}

.nav > li:hover > a,
.nav > li.active > a {
  color: var(--y) !important;
}

.chev {
  font-size: 8px;
  opacity: 0.45;
  transition:
    transform 0.28s,
    opacity 0.28s;
}

.nav > li:hover > a .chev {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* L1 dropdown */
.drop {
  position: absolute;
  top: calc(var(--nav-h) + 2px);
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--bord);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transform-origin: top left;
  transition:
    opacity 0.22s,
    visibility 0.22s,
    transform 0.22s var(--ease);
  z-index: 99;
}

.nav > li:hover > .drop {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.drop li {
  position: relative;
}

.drop li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin: 0 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--soft);
  border-radius: 7px;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.18s;
}

.drop li:hover > a {
  background: var(--surf);
  color: var(--ink);
  padding-left: 18px;
}

.ddi {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(245, 196, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--y);
  font-size: 11px;
  flex-shrink: 0;
  transition:
    background 0.15s,
    transform 0.2s;
}

.drop li:hover > a .ddi {
  background: rgba(245, 196, 0, 0.22);
  transform: scale(1.1);
}

.ddl {
  flex: 1;
}

.dda {
  font-size: 8px;
  color: var(--mute);
}

.drop .sep {
  height: 1px;
  background: var(--bord);
  margin: 0px 12px;
}

/* L2 dropdown */
.drop2 {
  position: absolute;
  top: 0;
  left: calc(100% + 0px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--bord);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px) scale(0.97);
  transform-origin: top left;
  transition:
    opacity 0.2s,
    visibility 0.2s,
    transform 0.2s;
  z-index: 101;
}

.drop li:hover > .drop2 {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0) scale(1);
}

.drop2 li a {
  font-size: 12px;
  font-weight: 400;
}

/* CTA */
.hd__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hd.solid .btn-ghost {
  background: transparent;
  color: var(--soft);
  border-color: var(--bord);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hd.solid .btn-ghost:hover {
  background: var(--surf);
  color: var(--ink);
}

.btn-fill {
  color: #fff;
  border: 1px solid #fff;
}

.btn-fill:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.38);
}

.btn-fill:hover .fa-arrow-right-long {
  color: #fff;
  transform: scale(1.07) rotate(35deg);
}

/* Base hidden state */
.reveal {
  opacity: 0;
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animate when .visible is added */
.reveal.visible {
  animation-fill-mode: both;
  animation-duration: 0.95s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible.fade-up {
  animation-name: fadeUp;
}
.reveal.visible.fade-left {
  animation-name: fadeLeft;
}
.reveal.visible.fade-right {
  animation-name: fadeRight;
}
.reveal.visible.scale-in {
  animation-name: scaleIn;
}

/* Stagger delays */
.reveal.visible[data-delay="100"] {
  animation-delay: 0.2s;
}
.reveal.visible[data-delay="200"] {
  animation-delay: 0.4s;
}
.reveal.visible[data-delay="300"] {
  animation-delay: 0.6s;
}
.reveal.visible[data-delay="400"] {
  animation-delay: 0.8s;
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s;
}

.hd.solid .ham span {
  background: #fff;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
           MOBILE NAV — MULTI-LEVEL PANEL SYSTEM
        ═══════════════════════════════════════════════════ */

/* Overlay */
.mob-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s,
    visibility 0.32s;
  backdrop-filter: blur(4px);
}

.mob-ov.is-open {
  opacity: 1;
  visibility: visible;
}

/* Outer drawer shell — clips all panels */
.mob-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 92vw);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  /* clips sliding panels */
}

.mob-nav.is-open {
  transform: translateX(0);
}

/* ── Panel base ── */
.mob-panel {
  position: absolute;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

/* L0 root panel — default visible */
.mob-panel--root {
  transform: translateX(0);
}

.mob-panel--root.slide-out {
  transform: translateX(-30%);
}

/* L1/L2 panels — start off-screen to the right */
.mob-panel--sub {
  transform: translateX(100%);
}

.mob-panel--sub.slide-in {
  transform: translateX(0);
}

/* ── Panel header bar ── */
.mob-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--ink);
}

/* Back button (sub panels) */
.mob-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  padding: 6px 8px;
  border-radius: 7px;
  transition: all 0.18s;
  cursor: pointer;
}

.mob-back i {
  font-size: 10px;
  color: var(--y);
}

.mob-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Panel title (sub panels) */
.mob-panel__title {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* Root header — logo + close */
.mob-nav__logo {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

.mob-nav__logo span {
  color: var(--y);
}

.mob-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}

.mob-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ── Menu lists ── */
.mob-menu {
  list-style: none;
  padding: 8px 12px 0;
}

.mob-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mob-menu li:last-child {
  border-bottom: none;
}

/* Generic row — both <a> and <button> */
.mob-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 10px;
  width: 100%;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  border: none;
  border-radius: 9px;
  transition:
    color 0.16s,
    background 0.16s;
  cursor: pointer;
}

.mob-row:hover {
  color: var(--y);
  background: rgba(245, 196, 0, 0.06);
}

.mob-row .ddi {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(245, 196, 0, 0.08);
  color: var(--y);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.16s;
}

.mob-row:hover .ddi {
  background: rgba(245, 196, 0, 0.18);
}

.mob-row__label {
  flex: 1;
}

.mob-row__arr {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.22);
  transition:
    color 0.16s,
    transform 0.2s;
}

.mob-row:hover .mob-row__arr {
  color: var(--y);
  transform: translateX(2px);
}

/* L2 rows (inside sub-panel) — slightly smaller */
.mob-panel--l2 .mob-row {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

/* L3 rows (inside l2 sub-panel) */
.mob-panel--l3 .mob-row {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.mob-panel--l3 .mob-row:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Section label inside sub-panel */
.mob-section-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  padding: 14px 10px 6px;
}

/* ── Root panel footer ── */
.mob-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px 0;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mob-nav__cta .btn {
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  font-size: 13px;
}

.mob-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mob-contact {
  padding: 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mob-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.mob-contact a i {
  color: var(--y);
  font-size: 10px;
}

.mob-contact a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
  user-select: none;
  z-index: 9;
}

.slides {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  overflow: hidden;
  z-index: 0;
}

.slide.is-active .slide__bg {
  transform: scale(1);
}

.slide__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.slide__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgb(8 10 14 / 0%) 0%,
    rgba(8, 10, 14, 0.45) 52%,
    rgba(8, 10, 14, 0.1) 100%
  );
}

.slide__ov2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(8 10 14 / 42%) 0%, transparent 48%);
}

.slide__body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: calc(150px + 250px + -55px);
}

.slide__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease 0.1s,
    transform 0.55s ease 0.1s;
}

.slide__eye::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--y);
  border-radius: 2px;
}

.slide__h {
  font-family: var(--disp);
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 900;
  line-height: 0.91;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease 0.22s,
    transform 0.65s var(--ease) 0.22s;
}

.slide__h em {
  font-style: normal;
  color: var(--y);
  display: block;
}

.slide__p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease 0.38s,
    transform 0.6s ease 0.38s;
}

.slide__acts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease 0.52s,
    transform 0.55s ease 0.52s;
}

.slide.is-active .slide__eye,
.slide.is-active .slide__h,
.slide.is-active .slide__p,
.slide.is-active .slide__acts {
  opacity: 1;
  transform: translateY(0);
}

.sl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  transition: all 0.26s var(--ease);
}

.sl-btn-y {
  background: var(--y);
  color: var(--ink);
}

.sl-btn-y:hover {
  background: var(--y2);
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 10px 30px rgba(245, 196, 0, 0.4);
}

.sl-btn-o {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.sl-btn-o:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.46);
  transform: translateY(-2px);
}

.h-arrows {
  position: absolute;
  bottom: 100px;
  right: 35px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.h-arr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(10px);
  transition: all 0.24s;
}

.h-arr:hover {
  background: var(--y);
  border-color: var(--y);
  color: var(--ink);
  transform: scale(1.08);
}

.h-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.h-dot {
  width: 3px;
  height: 22px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  padding: 0;
  transition: all 0.35s var(--ease);
}

.h-dot.on {
  background: #fff;
  height: 42px;
}

.h-counter {
  position: absolute;
  bottom: 44px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--disp);
}

.h-counter .cur {
  font-size: 36px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
}

.h-counter .sep {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.2);
}

.h-counter .tot {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.28);
}

.h-prog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.h-prog__fill {
  height: 100%;
  background: var(--y);
  width: 0%;
  transition: width 0.07s linear;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .ham {
    display: flex;
  }

  .hd__cta .btn-ghost {
    display: none;
  }

  .hd__cta{
    display: none;
  }

  .logo__img {
    height: 55px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 90px;
    --top-h: 0px;
  }

  .tp {
    display: none;
  }

  .hd {
    top: 0 !important;
  }

  .hero {
    height: 70svh;
  }

  .slide__body {
    padding-top: 100px;
  }

  .h-arrows {
    bottom: 32px;
    left: 20px;
  }

  .h-counter {
    bottom: 36px;
    right: 20px;
  }

  .h-dots {
    right: 14px;
  }
}

@media (max-width: 480px) {
  .sl-btn {
    padding: 11px 18px;
    font-size: 12.5px;
  }

  .slide__body {
    padding: 0 20px;
    padding-top: 90px;
  }
}

/* ══════════════════════════════
   SECTION WRAPPER
══════════════════════════════ */
.cab-section {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  background: var(--ink);
  position: relative;
  padding: 40px 10px 125px 10px;
}

/* ══════════════════════════════
   MAIN GRID
══════════════════════════════ */
.cab-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-rows: 1fr auto;
  min-height: 580px;
}

/* ══════════════════════════════
   TALL LEFT IMAGE  (col1, spans both rows)
══════════════════════════════ */
.cab-img-tall {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  overflow: visible;
  /* allow tagline to bleed out */
}

.cab-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════
   CONTENT BLOCK  (col2, row1)
══════════════════════════════ */
.cab-content {
  grid-column: 2;
  grid-row: 1;
  padding: 1.5rem 3rem 1rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

/* ══════════════════════════════
   BOTTOM ROW  (col2, row2)
   tagline bleeds LEFT over the image
══════════════════════════════ */
.cab-bottom {
  grid-column: 1 / 3;
  /* span full width */
  grid-row: 2;
  display: grid;
  grid-template-columns: 380px 1fr;
  /* match main grid columns */
  align-items: end;
  position: relative;
}

/* tagline sits in col1 area, overlapping the bottom of the image */
.cab-tagline-wrap {
  grid-column: 1;
  position: relative;
  /* push up so it half-overlaps the image above */
  margin-top: -3.5rem;
  padding: 0 0 1.5rem 1.5rem;
  z-index: 2;
}

.cab-tagline {
  font-family: var(--disp);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.88;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  bottom: -80px;
}

/* small image sits in col2 area */
.cab-img-small-wrap {
  grid-column: 2;
  padding: 0 3rem 1.5rem 4rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cab-img-small {
  /* width: 280px; */
  position: relative;
  flex-shrink: 0;
}

.cab-img-small img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════
   ALL CLASSES LINK
══════════════════════════════ */
.cab-all-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
  margin-top: 1.2rem;
  padding-bottom: 0.2rem;
  position: absolute;
  right: 45px;
  bottom: -82px;
}

.cab-all-link:hover {
  color: var(--y);
}

.cab-all-link i {
  font-size: 0.8rem;
}

/* ══════════════════════════════
   EYEBROW
══════════════════════════════ */
.cab-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--y);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cab-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--y);
  flex-shrink: 0;
}

/* ══════════════════════════════
   TITLE
══════════════════════════════ */
.cab-title {
  font-family: var(--disp);
  font-size: 65px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

/* ══════════════════════════════
   BODY
══════════════════════════════ */
.cab-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--mute);
  max-width: 400px;
}

/* ══════════════════════════════
   BUTTON
══════════════════════════════ */
.cab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1.4rem;
  background: transparent;
  border: 1.5px solid var(--y);
  color: var(--y);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
  width: fit-content;
}

.cab-btn:hover {
  background: var(--y);
  color: #fff;
}

/* ══════════════════════════════
   FA PLUS CORNER MARKERS
══════════════════════════════ */
.cab-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.cab-corners i {
  position: absolute;
  color: var(--y);
  font-size: 25px;
  line-height: 1;
}

.cab-corners i:nth-child(1) {
  top: -10px;
  left: -10px;
}

.cab-corners i:nth-child(2) {
  top: -10px;
  right: -10px;
}

.cab-corners i:nth-child(3) {
  bottom: -10px;
  left: -10px;
}

.cab-corners i:nth-child(4) {
  bottom: -10px;
  right: -10px;
}

/* ══════════════════════════════
   REVEAL SYSTEM
══════════════════════════════ */
.cab-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
  position: relative;
}

.cab-reveal.cab-visible {
  opacity: 1;
  transform: translateY(0);
}

/* numbered badge */
.cab-badge {
  position: absolute;
  z-index: 10;
  width: 30px;
  height: 30px;
  background: var(--y);
  color: #fff;
  font-family: var(--disp);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.cab-reveal.cab-visible .cab-badge {
  opacity: 0;
  transform: scale(0.5);
}

.cab-reveal[data-num="1"] .cab-badge {
  top: -10px;
  left: -10px;
}

.cab-reveal[data-num="2"] .cab-badge {
  top: -10px;
  left: -10px;
}

.cab-reveal[data-num="3"] .cab-badge {
  top: -10px;
  right: -10px;
  left: auto;
}

.cab-reveal[data-num="4"] .cab-badge {
  top: -10px;
  left: -10px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .cab-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .cab-img-tall {
    grid-column: 1;
    grid-row: 1;
    height: 400px;
    overflow: hidden;
  }

  .cab-content {
    grid-column: 1;
    grid-row: 2;
    padding: 2.5rem 1.5rem 1rem;
  }

  .cab-bottom {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  /* on mobile the tagline goes AFTER content, small image below it */
  .cab-tagline-wrap {
    grid-column: 1;
    grid-row: 2;
    margin-top: -3rem;
    padding: 0 1.5rem 1rem;
    position: relative;
    z-index: 2;
  }

  .cab-img-small-wrap {
    grid-column: 1;
    grid-row: 3;
    padding: 0 1.5rem 3.5rem;
    justify-content: flex-start;
  }

  .cab-img-small {
    width: 100%;
  }

  .cab-img-small img {
    height: 220px;
  }

  .cab-tagline {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }
}

@media (max-width: 500px) {
  .cab-img-tall {
    height: 300px;
  }

  .cab-content {
    padding: 2rem 1.2rem 0.8rem;
  }

  .cab-title {
    font-size: 1.8rem;
  }

  .cab-body {
    font-size: 0.88rem;
  }

  .cab-tagline {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }
}

/* ══════════════════════════════
   SECTION
══════════════════════════════ */
.cls-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

/* bg climbing wall texture overlay */
.cls-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,116,51,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.cls-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════
   LAYOUT: image col + list col
══════════════════════════════ */
.cls-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

/* ── IMAGE PANEL (left) ── */
.cls-img-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cls-img-frame {
  position: relative;
  width: 320px;
  /* height controlled by JS to sit adjacent to hovered item */
  height: 300px;
  overflow: hidden;
  transition: top 0.45s var(--ease);
  /* will be repositioned via JS */
}

.cls-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.4s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.cls-img-frame img.cls-img-active {
  opacity: 1;
  transform: scale(1.0);
}
/* on hover trigger zoom */
.cls-img-frame.cls-zoomed img.cls-img-active {
  transform: scale(1.06);
}

/* ── LIST PANEL (right) ── */
.cls-list-panel {
  border-left: 1px solid var(--wbord);
  padding-left: 0;
}

/* ── CATEGORY LABEL ── */
.cls-category {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  padding:15px 40px;
  border-top: 1px solid var(--wbord);
  display: block;
}
.cls-category:first-child {
  border-top: none;
  padding-top: 0;
}

/* ── CLASS ROW ── */
.cls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.55rem 2.5rem 1.55rem 2.5rem;
  border-top: 1px solid var(--wbord);
  cursor: pointer;
  position: relative;
  transition: background 0.25s var(--ease);
  text-decoration: none;
  gap: 1rem;
}
.cls-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--y);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
}
.cls-row:hover {
  background: rgba(255,116,51,0.05);
}
.cls-row:hover::before {
  transform: scaleY(1);
}

.cls-row-name {
  font-family: var(--disp);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color 0.2s var(--ease), letter-spacing 0.3s var(--ease);
}
.cls-row:hover .cls-row-name {
  color: var(--y);
  letter-spacing: 0.02em;
}

.cls-row-arrow {
  color: var(--mute);
  font-size: 1rem;
  flex-shrink: 0;
  transition: color 0.2s var(--ease), transform 0.3s var(--ease);
}
.cls-row:hover .cls-row-arrow {
  color: var(--y);
  transform: translateX(-25px);
  font-size: 25px;
}

/* last row border bottom */
.cls-row:last-child {
  border-bottom: 1px solid var(--wbord);
}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 768px) {
  .cls-layout {
    grid-template-columns: 1fr;
  }
  .cls-img-panel {
    display: none; /* hide floating image on mobile */
  }
  .cls-list-panel {
    border-left: none;
    padding-left: 0;
  }
  .cls-category {
    padding-left: 1rem;
  }
  .cls-row {
    padding: 0.7rem 1rem;
  }
  .cls-row-name {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .cls-section {
    padding: 3rem 0 3rem;
  }
}

/* ══════════════════════════════
   MARQUEE WRAP — diagonal tape
══════════════════════════════ */
.mqw-outer {
  overflow: hidden; /* clips the rotated bleed */
  width: 100%;
  padding: 50px 0;
}

.mqw-section {
  position: relative;
  overflow: hidden;
  /* diagonal slant */
  transform: rotate(-2.2deg) scaleX(1.04);
  margin: 1.5rem 0;
  /* compensate for rotation bleed */
  padding: 0;
}

/* two strips — one below the other */
.mqw-strip {
  background: var(--y);
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  line-height: 1;
}

/* gap between strips */
.mqw-strip + .mqw-strip {
  margin-top: 3px;
}

/* inner track — duplicated for seamless loop */
.mqw-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* strip 1 goes left, strip 2 goes right */
}

.mqw-strip:nth-child(1) .mqw-track { animation: mqw-left 40s linear infinite; }
.mqw-strip:nth-child(2) .mqw-track { animation: mqw-right 40s linear infinite; }

@keyframes mqw-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mqw-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── ITEM ── */
.mqw-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1.4rem;
}

.mqw-text {
  font-family: var(--disp);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.mqw-sep {
  color: var(--ink);
  font-size: 0.65rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* pause on hover */
.mqw-section:hover .mqw-strip:nth-child(1) .mqw-track { animation-play-state: paused; }
.mqw-section:hover .mqw-strip:nth-child(2) .mqw-track { animation-play-state: paused; }

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
  .mqw-section { transform: rotate(-2.2deg) scaleX(1.06); }
  .mqw-strip { padding: 0.4rem 0; }
}

/* ══════════════════════════════
   SECTION
══════════════════════════════ */
.srv-section {
  background: var(--ink);
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.srv-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════
   HEADER BLOCK
══════════════════════════════ */
.srv-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.srv-title {
  font-family: var(--disp);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.srv-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--mute);
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

/* ── NAV BUTTONS ── */
.srv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.srv-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  flex-shrink: 0;
}
.srv-nav-btn.prev {
  background: var(--dark);
  color: #fff;
}
.srv-nav-btn.prev:hover {
  background: var(--soft);
}
.srv-nav-btn.next {
  background: var(--y);
  color: #fff;
}
.srv-nav-btn.next:hover {
  background: var(--y2);
}

/* ══════════════════════════════
   CAROUSEL WRAPPER
   — bleeds to edges
══════════════════════════════ */
.srv-carousel-wrap {
  margin: 0 -2rem; /* bleed past inner padding */
}

/* ══════════════════════════════
   CARD
══════════════════════════════ */
.srv-card {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.srv-card-img {
  position: relative;
  overflow: hidden;
  height: 300px;
  flex-shrink: 0;
}
.srv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.srv-card:hover .srv-card-img img {
  transform: scale(1.06);
}

/* BODY */
.srv-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  background: var(--dark);
}

/* tag */
.srv-card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
}
.srv-card-tag i {
  font-size: 0.6rem;
}

/* name */
.srv-card-name {
  font-family: var(--font);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* desc */
.srv-card-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--mute);
  flex: 1;
}

/* arrow btn */
.srv-card-arrow {
  width: 40px;
  height: 40px;
  background: var(--y);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  flex-shrink: 0;
  align-self: flex-start;
}
.srv-card-arrow:hover {
  background: var(--y2);
  color: #fff;
  transform: translateX(4px);
}

/* ══════════════════════════════
   OWL OVERRIDES
══════════════════════════════ */
.owl-stage {
  display: flex;
  align-items: stretch;
}
.owl-item {
  display: flex;
}
.owl-item .srv-card {
  width: 100%;
}

/* gap between cards */
.srv-carousel-wrap .owl-stage-outer {
  padding-bottom: 0;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .srv-section { padding: 3.5rem 0 0; }
  .srv-carousel-wrap { margin: 0 -1rem; }
  .srv-inner { padding: 0 1rem; }
  .srv-card-img { height: 220px; }
}

.rv-spacer {
      height: 100vh;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rv-spacer span {
      color: rgba(255, 255, 255, 0.15);
      font-family: var(--disp);
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: .2em;
    }

    /* ══════════════════════════════
   SECTION — tall so scroll has travel
══════════════════════════════ */
    .rv-section {
      position: relative;
      width: 100%;
      height: 250vh;
    }

    /* sticky viewport */
    .rv-sticky {
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    /* BG */
    .rv-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .rv-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .rv-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    /* ── CENTER CONTENT ── */
    .rv-center {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 1.4rem;
      pointer-events: none;
    }

    .rv-title {
      font-family: var(--disp);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 0.92;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }

    .rv-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 0.75rem 1.6rem;
      background: var(--y);
      color: #fff;
      font-family: var(--font);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      pointer-events: all;
      transition: background 0.2s var(--ease);
    }

    .rv-btn:hover {
      background: var(--y2);
      color: #fff;
    }

    /* ══════════════════════════════
   CARDS LAYER
══════════════════════════════ */
    .rv-cards {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    /*
  All 4 cards are absolutely positioned.
  JS will set their transform.
  Initial position = touching at center (corner-to-corner).
  JS calculates exact pixel travel to reach their corner.
*/
    .rv-card {
      position: absolute;
      width: 280px;
      padding: 1.3rem 1.4rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      will-change: transform;
      opacity: 1;
      /* always visible */
    }

    /* corners — positioned touching center */
    /* These are their START positions (corner-to-corner at center) */
    /* JS overrides transform to move them to their final corner */

    .rv-card[data-pos="tl"] {
      background: var(--y);
    }

    .rv-card[data-pos="tr"] {
      background: #fff;
    }

    .rv-card[data-pos="bl"] {
      background: #fff;
    }

    .rv-card[data-pos="br"] {
      background: #fff;
    }

    /* stars */
    .rv-stars {
      display: flex;
      gap: 3px;
    }

    .rv-stars i {
      color: var(--y);
      font-size: 0.8rem;
    }

    .rv-card[data-pos="tl"] .rv-stars i {
      color: #fff;
    }

    /* quote */
    .rv-quote {
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.5;
      color: #fff;
    }

    .rv-card[data-pos="tr"] .rv-quote,
    .rv-card[data-pos="bl"] .rv-quote,
    .rv-card[data-pos="br"] .rv-quote {
      color: var(--ink);
    }

    /* author */
    .rv-author {
      font-size: 0.76rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
    }

    .rv-card[data-pos="tr"] .rv-author,
    .rv-card[data-pos="bl"] .rv-author,
    .rv-card[data-pos="br"] .rv-author {
      color: rgba(0, 0, 0, 0.5);
    }

    .rv-author em {
      font-style: italic;
      font-weight: 400;
    }

    /* ── MOBILE ── */
    @media (max-width:640px) {
      .rv-card {
        width: 170px;
        padding: 0.9rem 1rem;
      }

      .rv-quote {
        font-size: 0.72rem;
      }

      .rv-author {
        font-size: 0.65rem;
      }

      .rv-title {
        font-size: clamp(2rem, 9vw, 3rem);
      }
    }

    

/* ── Section ── */
.thrills-section {
  padding: 80px 0 90px;
}

/* ── Header Row ── */
.thrills-heading {
  font-family: var(--disp);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.thrills-viewall {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.thrills-viewall:hover {
  color: var(--y);
  border-color: var(--y);
}
.thrills-viewall i {
  font-size: 11px;
  transition: transform 0.25s var(--ease);
}
.thrills-viewall:hover i {
  transform: translateX(4px);
}

/* ── Cards Grid ── */
.thrills-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* ── Card ── */
.thrill-card {
  border: 1.5px solid var(--y);
  border-right: none;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.35s var(--ease);
}
.thrill-card:last-child {
  border-right: 1.5px solid var(--y);
}

/* Fill background on hover */
.thrill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--y);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.thrill-card:hover::before {
  transform: scaleY(1);
}

/* All content above the fill */
.thrill-card > * {
  position: relative;
  z-index: 1;
}

/* ── Icon ── */
.thrill-icon {
  font-size: 30px;
  color: var(--y);
  margin-bottom: 36px;
  display: block;
  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.thrill-card:hover .thrill-icon {
  color: var(--bg-white);
  transform: scale(1.15) rotate(-5deg);
}

/* ── Title ── */
.thrill-title {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: color 0.3s var(--ease);
}
.thrill-card:hover .thrill-title {
  color: var(--bg-white);
}

/* ── Body text ── */
.thrill-body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 28px;
  transition: color 0.3s var(--ease);
}
.thrill-card:hover .thrill-body {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Learn More ── */
.thrill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.3s var(--ease),
    gap 0.25s var(--ease);
}
.thrill-link i {
  font-size: 11px;
  transition: transform 0.25s var(--ease);
}
.thrill-card:hover .thrill-link {
  color: var(--bg-white);
}
.thrill-card:hover .thrill-link i {
  transform: translateX(5px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .thrills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .thrill-card {
    border-right: none;
  }
  .thrill-card:nth-child(2),
  .thrill-card:last-child {
    border-right: 1.5px solid var(--y);
  }
  .thrill-card:nth-child(3),
  .thrill-card:nth-child(4) {
    border-top: none;
  }
}

@media (max-width: 575px) {
  .thrills-section {
    padding: 60px 0 70px;
  }
  .thrills-grid {
    grid-template-columns: 1fr;
  }
  .thrill-card {
    border-right: 1.5px solid var(--y);
    border-top: none;
  }
  .thrill-card:first-child {
    border-top: 1.5px solid var(--y);
  }
}

/* ── Section with fixed/parallax bg ── */
.climb-promo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  /* Semi-fixed background */
  background-image: url("../images/a1.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  /* the "semi-fixed" parallax effect */
  overflow: hidden;
}

/* Dark vignette left side so climbers pop */
.climb-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 12, 18, 0.55) 0%,
    rgba(10, 12, 18, 0.15) 45%,
    transparent 100%
  );
  z-index: 0;
}

/* ── Content panel — right side, like screenshot ── */
.promo-panel {
  position: relative;
  z-index: 1;
  margin-left: auto;
  background: rgba(24, 28, 36, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 64px 60px 64px 56px;
  max-width: 560px;
  width: 100%;

  /* Clipped left corner — matching screenshot diagonal */
  clip-path: polygon(48px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 48px);
}

/* ── Eyebrow ── */
.promo-eyebrow {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-eyebrow i {
  color: var(--teal-accent);
  font-size: 15px;
}

/* ── Big sport word ── */
.promo-sport {
  font-family: var(--disp);
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--teal-accent);
  line-height: 0.9;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

/* ── Offer line ── */
.promo-offer {
  font-family: var(--disp);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* ── Sub-line ── */
.promo-sub {
  font-family: var(--font);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── Button ── */
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  background: var(--y);
  border: none;
  padding: 16px 36px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s var(--ease);
}

/* Fill sweep on hover */
.promo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.promo-btn:hover::before {
  transform: scaleX(1);
}

.promo-btn:hover {
  color: var(--bg-white);
}

.promo-btn span,
.promo-btn i {
  position: relative;
  z-index: 1;
}

.promo-btn i {
  font-size: 13px;
  transition: transform 0.25s var(--ease);
}

.promo-btn:hover i {
  transform: translateX(5px);
}

/* ── Accent badge ── */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--y);
  border: 1.5px solid rgba(245, 196, 0, 0.35);
  padding: 7px 16px;
  margin-bottom: 28px;
}

.promo-badge i {
  font-size: 11px;
}

/* ── Divider ── */
.promo-divider {
  width: 48px;
  height: 3px;
  background: var(--teal-accent);
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .climb-promo {
    background-attachment: scroll;
    /* fixed bg causes issues on mobile */
    align-items: flex-end;
    padding-bottom: 0;
  }

  .promo-panel {
    margin: 0 auto;
    max-width: 100%;
    clip-path: polygon(32px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 32px);
    padding: 48px 32px;
  }
}

/* ══════════════════════════════════════
       SECTION SHELL
    ══════════════════════════════════════ */
.wcu-section {
  padding: 110px 0 120px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* faint topo-line texture */
.wcu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 10%,
      rgba(61, 155, 155, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(245, 196, 0, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.wcu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

/* ══════════════════════════════════════
       LEFT — MASKED IMAGE COL
    ══════════════════════════════════════ */
.wcu-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The masked image — uses the PNG mask from the URL */
.wcu-masked-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.05;
}

.wcu-masked-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Apply the splatter mask */
  -webkit-mask-image: url("https://kitnew.moxcreative.com/forestter/wp-content/uploads/sites/16/2022/11/masking_2.png");
  mask-image: url("https://kitnew.moxcreative.com/forestter/wp-content/uploads/sites/16/2022/11/masking_2.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  /* Subtle parallax-like hover scale */
  transition: transform 0.8s var(--ease);
}

.wcu-masked-wrap:hover .wcu-masked-img {
  transform: scale(1.04);
}

/* Floating stat badge — top right */
.wcu-stat-badge {
  position: absolute;
  top: 6%;
  right: -6%;
  background: var(--dark);
  color: var(--bg-white);
  padding: 20px 24px;
  text-align: center;
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%
  );
}

.wcu-stat-badge .stat-num {
  font-family: var(--disp);
  font-size: 44px;
  font-weight: 800;
  font-style: italic;
  color: var(--teal-accent);
  line-height: 1;
}

.wcu-stat-badge .stat-num sup {
  font-size: 22px;
  vertical-align: super;
}

.wcu-stat-badge .stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Floating accent — bottom left */
.wcu-accent-dot {
  position: absolute;
  bottom: 10%;
  left: -4%;
  width: 80px;
  height: 80px;
  border: 3px solid var(--y);
  border-radius: 50%;
  z-index: 3;
  animation: spinDot 12s linear infinite;
  opacity: 0.7;
}

.wcu-accent-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--y);
  border-radius: 50%;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spinDot {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════
           SECTION
        ══════════════════════════════════════ */
.wcu-section {
  min-height: 100vh;
  padding: 80px 0 40px;
  background:#000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.wcu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 10%,
      rgba(61, 155, 155, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(61, 155, 155, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.wcu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  width: 100%;
}

/* ══════════════════════════════════════
           LEFT — ROCK-SHAPED IMAGE (pure CSS)
        ══════════════════════════════════════ */
.wcu-image-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
}

.wcu-rock-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.wcu-rock-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;

  /* Boulder / rock shape — asymmetric border-radius mimics natural stone */
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.1);

  transition:
    transform 0.8s var(--ease),
    border-radius 0.8s var(--ease);
}

.wcu-rock-wrap:hover .wcu-rock-img {
  transform: scale(1.03);
  border-radius: 54% 46% 52% 48% / 48% 58% 42% 52%;
}

/* Floating stat badge */
.wcu-stat-badge {
  position: absolute;
  top: 8%;
  right: -8%;
  background: var(--dark);
  color: var(--bg-white);
  padding: 20px 24px;
  text-align: center;
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%
  );
}

.wcu-stat-badge .stat-num {
  font-family: var(--disp);
  font-size: 44px;
  font-weight: 800;
  font-style: italic;
  color: var(--teal-accent);
  line-height: 1;
}

.wcu-stat-badge .stat-num sup {
  font-size: 22px;
  vertical-align: super;
}

.wcu-stat-badge .stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ══════════════════════════════════════
           RIGHT — CONTENT
        ══════════════════════════════════════ */
.wcu-content-col {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-accent);
  margin-bottom: 18px;
}

.wcu-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal-accent);
}

.wcu-title {
  font-family: var(--disp);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.wcu-title span {
  color: #fff;
}

.wcu-subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 440px;
}

/* Reason Items */
.wcu-reasons {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.wcu-reason {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bord);
  position: relative;
  overflow: hidden;
  transition: padding-left 0.35s var(--ease);
  cursor: default;
}

.wcu-reason:first-child {
  border-top: 1px solid var(--bord);
}

.wcu-reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--teal-accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.35s var(--ease);
}

.wcu-reason:hover::before {
  transform: scaleY(1);
}
.wcu-reason:hover {
  padding-left: 14px;
}

.reason-icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgb(96 173 74 / 41%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal-accent);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.wcu-reason:hover .reason-icon-box {
  background: var(--teal-accent);
  color: var(--bg-white);
  transform: rotate(-5deg) scale(1.08);
}

.reason-text {
  flex: 1;
}

.reason-title {
  font-family: var(--disp);
  font-size: 19px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
  transition: color 0.3s var(--ease);
}

.wcu-reason:hover .reason-title {
  color: var(--teal-accent);
}

.reason-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.65;
}

/* Bottom CTA + stats */
.wcu-bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.wcu-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  background: #f5c400;
  padding: 16px 36px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  flex-shrink: 0;
}

.wcu-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.wcu-cta:hover::before {
  transform: scaleX(1);
}
.wcu-cta:hover {
  color: var(--bg-white);
}
.wcu-cta span,
.wcu-cta i {
  position: relative;
  z-index: 1;
}
.wcu-cta i {
  transition: transform 0.25s var(--ease);
}
.wcu-cta:hover i {
  transform: translateX(5px);
}

.wcu-mini-stats {
  display: flex;
  gap: 28px;
}
.mini-stat {
  text-align: left;
}

.mini-stat-num {
  font-family: var(--disp);
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
  color:#fff;
  line-height: 1;
}

.mini-stat-num sup {
  font-size: 20px;
  padding: 5px;
  color: var(--teal-accent);
}

.mini-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color:#fff;
  margin-top: 3px;
}

.mini-stat-divider {
  width: 1px;
  background: var(--bord);
  align-self: stretch;
}

/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 991px) {
  .wcu-content-col {
    padding-left: 0;
    margin-top: 60px;
  }
  .wcu-rock-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
  .wcu-stat-badge {
    right: 0;
  }
}

@media (max-width: 575px) {
  .wcu-section {
    padding: 70px 0 80px;
  }
  .wcu-container {
    padding: 0 24px;
  }
  .wcu-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .wcu-stat-badge {
    right: 10px;
    top: 2%;
  }
  .wcu-rock-img {
    height: 380px;
  }
}

/* ══════════════════════════════════════
           ENTRY ANIMATIONS
        ══════════════════════════════════════ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wcu-image-col {
  animation: fadeSlideLeft 0.9s var(--ease) both;
}
.wcu-eyebrow {
  animation: fadeSlideUp 0.7s var(--ease) 0.15s both;
}
.wcu-title {
  animation: fadeSlideUp 0.7s var(--ease) 0.25s both;
}
.wcu-subtitle {
  animation: fadeSlideUp 0.7s var(--ease) 0.35s both;
}
.wcu-reason:nth-child(1) {
  animation: fadeSlideRight 0.6s var(--ease) 0.4s both;
}
.wcu-reason:nth-child(2) {
  animation: fadeSlideRight 0.6s var(--ease) 0.52s both;
}
.wcu-reason:nth-child(3) {
  animation: fadeSlideRight 0.6s var(--ease) 0.64s both;
}
.wcu-reason:nth-child(4) {
  animation: fadeSlideRight 0.6s var(--ease) 0.76s both;
}
.wcu-bottom {
  animation: fadeSlideUp 0.7s var(--ease) 0.85s both;
}

.ts-section {
    background: var(--dark);
    padding: 80px 0 120px;
    font-family: var(--font);
  }

  /* ── RIGHT STICKY (was left) ── */
  .ts-right-sticky {
    position: sticky;
    top: 80px;
    height: fit-content;
    padding-left: 40px;
  }

  .ts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 18px;
  }

  .ts-right-sticky h2 {
    font-family: var(--disp);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: -1px;
  }

  .ts-right-sticky h2 span {
    color: var(--y);
  }

  .ts-right-sticky p {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 320px;
  }

  .ts-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font);
    transition: all .25s var(--ease);
    border: 1px solid var(--wbord);
    cursor: pointer;
  }

  .ts-cta:hover {
    background: var(--y);
    border-color: var(--y);
    color: #fff;
    transform: translateY(-1px);
  }

  .ts-cta i {
    font-size: 13px;
  }

  /* ── LEFT STACK (was right) ── */
  .ts-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ts-card {
    background: #683d29;
    border-radius: 20px;
    padding: 36px 36px 32px;
    position: sticky;
    transition: background .3s var(--ease);
  }

  .ts-card:nth-child(1) {
    top: 100px;
  }

  .ts-card:nth-child(2) {
    top: 120px;
  }

  .ts-card:nth-child(3) {
    top: 140px;
  }

  .ts-card:nth-child(4) {
    top: 160px;
  }

  .ts-card:nth-child(5) {
    top: 180px;
  }

  .ts-card:nth-child(6) {
    top: 200px;
  }

  .ts-card:hover {
    background: #222840;
  }

  .ts-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
  }

  .ts-stars i {
    color: #f5a623;
    font-size: 15px;
  }

  .ts-quote {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 28px;
    font-family: var(--font);
  }

  .ts-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .ts-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--soft);
  }

  .ts-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ts-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    font-family: var(--disp);
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.2;
  }

  .ts-author-role {
    font-size: 12px;
    color: var(--mute);
    margin-top: 2px;
  }

  .ts-author-role span {
    color: var(--y);
    font-weight: 600;
  }

  @media(max-width:991px) {
    .ts-right-sticky {
      position: relative;
      top: auto;
      padding-left: 0;
      margin-top: 44px;
    }

    .ts-card {
      position: relative !important;
      top: auto !important;
    }
  }

.faq-section {
    background: var(--dark);
    padding: 90px 0 110px;
    font-family: var(--font);
  }

  /* ── LEFT ── */
  .faq-left {
    padding-right: 40px;
  }

  .faq-left h2 {
    font-family: var(--disp);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin-bottom: 48px;
  }

  .faq-left h2 span {
    color: var(--y);
  }

  /* ── ROTATING CIRCLE BADGE ── */
  .faq-circle-wrap {
    display: inline-block;
    position: relative;
    width: 220px;
    height: 220px;
  }

  .faq-circle-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform .1s linear;
  }

  /* SVG text path ring */
  .faq-circle-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .faq-circle-svg text {
    font-family: var(--font);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    fill: #fff;
    text-transform: uppercase;
  }

  /* centre icon */
  .faq-circle-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
  }

  /* ── RIGHT ACCORDION ── */
  .faq-right {
    padding-left: 20px;
  }

  .faq-item {
    border-bottom: 1px solid var(--wbord);
  }

  .faq-item:first-child {
    border-top: 1px solid var(--wbord);
  }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
    user-select: none;
  }

  .faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font);
    line-height: 1.4;
    transition: color .25s;
  }

  .faq-num {
    font-family: var(--disp);
    font-size: 13px;
    font-weight: 700;
    color: var(--y);
    letter-spacing: 1px;
    margin-right: 14px;
    flex-shrink: 0;
  }

  .faq-q-left {
    display: flex;
    align-items: center;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--wbord);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mute);
    flex-shrink: 0;
    transition: all .3s var(--ease);
    font-size: 12px;
  }

  .faq-item.open .faq-icon {
    background: var(--y);
    border-color: var(--y);
    color: #fff;
    transform: rotate(180deg);
  }

  .faq-item.open .faq-q-text {
    color: var(--y);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .3s;
  }

  .faq-a-inner {
    padding: 0 0 22px 0;
    font-size: 14px;
    color: var(--mute);
    line-height: 1.8;
    padding-right: 48px;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
  }

  @media(max-width:991px) {
    .faq-left {
      padding-right: 0;
      margin-bottom: 48px;
    }

    .faq-right {
      padding-left: 0;
    }
  }

/* ── FOOTER SHELL ───────────────────────────────────── */
.site-footer {
  background: #f5c4001f;
  border-top: 3px solid var(--y);
  padding-top: 64px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* faint topography texture via repeating-linear-gradient */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    var(--bord) 39px,
    var(--bord) 40px
  );
  pointer-events: none;
  opacity: 0.4;
}

/* ── BRAND COLUMN ───────────────────────────────────── */
.footer-brand .brand-mark {
  font-family: var(--disp);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-mark .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--y);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ink);
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 240px;
}

/* ── NEWSLETTER ─────────────────────────────────────── */
.newsletter-row {
  margin-top: 22px;
}

.newsletter-row .input-group {
  border: 1.5px solid var(--bord);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.newsletter-row .input-group:focus-within {
  border-color: var(--y);
}

.newsletter-row input {
  border: none;
  background: var(--surf);
  font-family: var(--font);
  font-size: 0.8rem;
  padding: 10px 14px;
  color: var(--ink);
  outline: none;
  box-shadow: none !important;
}

.newsletter-row button {
  background: var(--y);
  border: none;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
  cursor: pointer;
}

.newsletter-row button:hover {
  background: var(--y2);
}

/* ── COLUMN LABELS ──────────────────────────────────── */
.footer-col-label {
  font-family: var(--disp);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bord);
}

/* ── NAV LINKS ──────────────────────────────────────── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--soft);
  text-decoration: none;
  padding: 5px 0;
  transition:
    color 0.18s var(--ease),
    gap 0.18s var(--ease);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--mute);
  transition:
    color 0.18s var(--ease),
    transform 0.18s var(--ease);
  width: 14px;
  text-align: center;
}

.footer-links a:hover {
  color: var(--ink);
  gap: 12px;
}

.footer-links a:hover i {
  color: var(--primary-green);
  transform: translateX(2px);
}

/* ── CONTACT ITEMS ──────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--soft);
  line-height: 1.5;
}

.contact-item .ci-icon {
  width: 32px;
  height: 32px;
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--primary-green);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 2px;
}

/* ── SOCIAL ROW ─────────────────────────────────────── */
.social-row {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--bord);
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--mute);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    border-color 0.18s var(--ease),
    color 0.18s var(--ease),
    background 0.18s var(--ease);
}

.social-btn:hover {
  border-color: var(--y);
  background: var(--y);
  color: var(--ink);
}

/* ── GRADE BADGES ───────────────────────────────────── */
.grade-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.grade-badge {
  font-family: var(--disp);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.gb-beginner {
  background: #e8f5e3;
  color: var(--primary-green);
}
.gb-inter {
  background: #fff8e0;
  color: #b58900;
}
.gb-advanced {
  background: #fdecea;
  color: #c0392b;
}
.gb-expert {
  background: #f0eaff;
  color: #7c3aed;
}

/* ── DIVIDER ────────────────────────────────────────── */
.footer-divider {
  border: none;
  border-top: 1px solid var(--bord);
  margin: 48px 0 0;
}

/* ── BOTTOM BAR ─────────────────────────────────────── */
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.footer-bottom span a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bottom span a:hover {
  color: var(--ink);
}

.footer-bottom .bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .bottom-links a {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bottom .bottom-links a:hover {
  color: var(--ink);
}

/* ── ACCENT STRIP ───────────────────────────────────── */
.accent-strip {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--y) 0%,
    var(--primary-green) 50%,
    var(--y2) 100%
  );
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
  .footer-col-label::after {
    display: none;
  }
}

/* ── ROCKET BUTTON ─────────────────────────────── */
#rocketBtn {
  position: fixed;
  bottom: 15px;
  right: 0px;
  width: 80px;
  height: 90px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 9999;

  /* hidden by default — sitting below the viewport */
  transform: translateY(120px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s var(--ease);

  /* no outline ring */
  outline: none;
}

/* ── VISIBLE state (added by JS on scroll) ─── */
#rocketBtn.visible {
  transform: translateY(0);
  opacity: 1;
}

/* ── LAUNCH state (added by JS on click) ──── */
#rocketBtn.launching {
  transform: translateY(-120vh) rotate(-5deg) scale(0.7);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.55, 0, 1, 0.45),
    opacity 0.5s 0.4s var(--ease);
}

/* the glow ring behind the rocket */
#rocketBtn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 196, 0, 0.35) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

#rocketBtn:hover::before,
#rocketBtn:focus::before {
  opacity: 1;
}

#rocketBtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* rocket image naturally points up — add slight tilt */
  transform: rotate(0deg);
  filter: drop-shadow(0 6px 18px rgba(245, 196, 0, 0.45))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition:
    filter 0.25s var(--ease),
    transform 0.25s var(--ease);
}

#rocketBtn:hover img {
  filter: drop-shadow(0 10px 28px rgba(245, 196, 0, 0.7))
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transform: rotate(-5deg) translateY(-3px);
}

/* flame particles on hover */
#rocketBtn .flames {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

#rocketBtn:hover .flames {
  opacity: 1;
}

.flame {
  width: 6px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flicker 0.3s ease-in-out infinite alternate;
}

.flame:nth-child(1) {
  height: 14px;
  background: var(--y2);
  animation-delay: 0s;
}
.flame:nth-child(2) {
  height: 20px;
  background: var(--y);
  animation-delay: 0.1s;
}
.flame:nth-child(3) {
  height: 14px;
  background: var(--y2);
  animation-delay: 0.05s;
}

@keyframes flicker {
  from {
    transform: scaleY(0.85) scaleX(1.1);
  }
  to {
    transform: scaleY(1.15) scaleX(0.9);
  }
}

/* ── LAUNCH TRAIL (smoke dots) ─────────────────── */
.trail-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--y);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
}

@keyframes trailFade {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}
.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}
/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--y);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid var(--y);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background-color: var(--y);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: var(--y);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--y);
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .sitemap-card {
    padding: 15px;
  }

  .card-label {
    font-size: 1rem;
  }
}

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59, 130, 246, 0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255, 255, 255, 0.65);
  --phero-sep: rgba(255, 255, 255, 0.4);

  font-family: "DM Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(42 34 0 / 86%) 0%,
    rgb(217 173 0 / 58%) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60ad4a, var(--y), #60ad4a);
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 0px;
}

.phero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: #60ad4a;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}


.sk-section {
    background: var(--dark);
    padding: 80px 0 120px;
    font-family: var(--font);
  }

  /* ── LEFT STICKY ── */
  .sk-left {
    position: sticky;
    top: 80px;
    height: fit-content;
    padding-right: 40px;
  }

  .sk-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 16px;
  }

  .sk-badge i {
    font-size: 9px;
  }

  .sk-left h2 {
    font-family: var(--disp);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .sk-left h2 span {
    color: var(--y);
  }

  .sk-left p {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.8;
    margin-bottom: 36px;
  }

  .sk-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--y);
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font);
    transition: background .25s var(--ease), transform .2s;
    border: none;
    cursor: pointer;
  }

  .sk-cta:hover {
    background: var(--y2);
    transform: translateY(-2px);
    color: #fff;
  }

  .sk-stats {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--wbord);
    display: flex;
    gap: 28px;
  }

  .sk-stat-num {
    font-family: var(--disp);
    font-size: 2rem;
    font-weight: 800;
    color: var(--y);
    line-height: 1;
  }

  .sk-stat-lbl {
    font-size: 10px;
    color: var(--mute);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  /* ── RIGHT STACK ── */
  .sk-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Card: image on top, info below — exactly like the reference */
  .sk-card {
    background: #1d2130;
    border: 1px solid var(--wbord);
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    transition: border-color .3s var(--ease), box-shadow .3s;
  }

  .sk-card:nth-child(1) {
    top: 100px;
  }

  .sk-card:nth-child(2) {
    top: 120px;
  }

  .sk-card:nth-child(3) {
    top: 140px;
  }

  .sk-card:nth-child(4) {
    top: 160px;
  }

  .sk-card:nth-child(5) {
    top: 180px;
  }

  .sk-card:nth-child(6) {
    top: 200px;
  }

  .sk-card:nth-child(7) {
    top: 220px;
  }

  .sk-card:nth-child(8) {
    top: 240px;
  }

  .sk-card:nth-child(9) {
    top: 260px;
  }

  .sk-card:nth-child(10) {
    top: 280px;
  }

  .sk-card:hover {
    border-color: rgba(255, 116, 51, .45);
  }

  /* IMAGE TOP */
  .sk-img {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #252a38;
  }

  .sk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
    transition: opacity .4s, transform .5s var(--ease);
  }

  .sk-card:hover .sk-img img {
    opacity: .8;
    transform: scale(1.04);
  }

  /* label pill overlaid on image — like "Onboarding screens" in reference */
  .sk-img-pill {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--ink);
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: .3px;
  }

  .sk-img-pill i {
    color: var(--y);
    margin-right: 6px;
    font-size: 11px;
  }

  /* CONTENT BOTTOM */
  .sk-body {
    padding: 24px 28px 22px;
    border-top: 1px solid var(--wbord);
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .sk-num {
    font-family: var(--disp);
    font-size: 13px;
    font-weight: 700;
    color: var(--mute);
    letter-spacing: 1px;
    white-space: nowrap;
    padding-top: 3px;
    min-width: 36px;
  }

  .sk-text {}

  .sk-title {
    font-family: var(--disp);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
  }

  .sk-desc {
    font-size: 13px;
    color: var(--mute);
    line-height: 1.7;
  }

  @media(max-width:991px) {
    .sk-left {
      position: relative;
      top: auto;
      padding-right: 0;
      margin-bottom: 44px;
    }

    .sk-card {
      position: relative !important;
      top: auto !important;
    }
  }

  /* ── HERO BREADCRUMB ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding-bottom: 100px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://html.aqlova.com/hebo-prev/hebo/assets/img/breadcrumb/about-us-bg.png') center/cover no-repeat;
      animation: bgZoom 18s ease-in-out infinite alternate;
      filter: brightness(3) saturate(2.65);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(14, 16, 20, 0.75) 0%, rgba(14, 16, 20, 0.2) 50%, rgba(255, 116, 51, 0.08) 100%);
    }

    @keyframes bgZoom {
      from {
        transform: scale(1.06) translate(0, 0);
      }

      to {
        transform: scale(1.06) translate(-1.5%, -1%);
      }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .breadcrumb-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--wbord);
      border-radius: 100px;
      padding: 5px 16px;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--y);
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
      animation: fadeUp .7s var(--ease) .1s both;
    }

    .hero-title {
      font-family: var(--disp);
      font-size: clamp(72px, 12vw, 160px);
      font-weight: 800;
      color: #fff;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -2px;
      animation: fadeUp .8s var(--ease) .2s both;
    }

    .hero-title em {
      font-style: normal;
      color: var(--y);
    }

    .hero-sub-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 32px;
      flex-wrap: wrap;
      gap: 20px;
      animation: fadeUp .8s var(--ease) .35s both;
    }

    .hero-desc {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.75;
      max-width: 380px;
    }

    .hero-scroll {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.35);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: bounce 2.2s ease-in-out infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(7px);
      }
    }

    /* ── MAP SECTION ── */
    .map-section {
      background: var(--dark);
      padding-top: 0;
    }

    .map-outer {
      width: 100%;
      transition: padding 0.65s var(--ease), border-radius 0.65s var(--ease);
      padding: 0;
    }

    .map-outer.shrunk {
      padding: 0 100px;
    }

    .map-frame-wrap {
      overflow: hidden;
      border-radius: 0;
      transition: border-radius 0.65s var(--ease), box-shadow 0.65s var(--ease);
    }

    .map-outer.shrunk .map-frame-wrap {
      border-radius: 14px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    }

    .map-frame-wrap iframe {
      width: 100%;
      height: 520px;
      display: block;
      border: none;
      /* filter: grayscale(100%) invert(90%) contrast(82%) brightness(0.92);
      transition: filter 0.5s; */
    }

    .map-outer.shrunk .map-frame-wrap iframe {
      /* filter: grayscale(80%) invert(85%) contrast(86%) brightness(0.95); */
    }

    /* ── THREE CONTACT INFO BOXES ── */
    .info-strip {
      background: var(--ink);
      padding: 72px 0 80px;
    }

    .info-box {
      background: var(--dark);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 10px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      height: 100%;
      opacity: 0;
      transform: translateY(36px);
      transition: border-color 0.3s, transform 0.3s;
    }

    .info-box.in-view {
      animation: boxIn 0.65s var(--ease) forwards;
    }

    .info-box:nth-child(1) {
      animation-delay: 0s;
    }

    .info-box:nth-child(2) {
      animation-delay: 0.18s;
    }

    .info-box:nth-child(3) {
      animation-delay: 0.36s;
    }

    @keyframes boxIn {
      from {
        opacity: 0;
        transform: translateY(36px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .info-box::before {
      content: '';
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      background: linear-gradient(90deg, var(--y), var(--y2), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .info-box:hover {
      border-color: rgba(255, 116, 51, 0.3);
      transform: translateY(-4px);
    }

    .info-box:hover::before {
      opacity: 1;
    }

    .info-box-icon {
      width: 52px;
      height: 52px;
      background: rgba(255, 116, 51, 0.1);
      border: 1px solid rgba(255, 116, 51, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--y);
      margin-bottom: 22px;
      transition: background 0.3s, transform 0.3s;
    }

    .info-box:hover .info-box-icon {
      background: rgba(255, 116, 51, 0.2);
      transform: scale(1.08) rotate(-4deg);
    }

    .info-box-label {
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--mute);
      margin-bottom: 8px;
    }

    .info-box-val {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      font-family: var(--disp);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .info-box-sub {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ── CONTACT GRID: info + CEO + form ── */
    .contact-grid {
      background: var(--dark);
      padding: 80px 0 100px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--y);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 26px;
      height: 2px;
      background: var(--y);
      flex-shrink: 0;
    }

    .grid-title {
      font-family: var(--disp);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 0.93;
      letter-spacing: -0.5px;
      margin-bottom: 48px;
    }

    .grid-title em {
      font-style: normal;
      color: var(--y);
    }

    /* plain contact card */
    .plain-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--wbord);
      border-radius: 10px;
      padding: 36px 32px;
      height: 100%;
    }

    .plain-row {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .plain-row:first-child {
      padding-top: 0;
    }

    .plain-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .plain-sub {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--mute);
      margin-bottom: 5px;
    }

    .plain-val {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
    }

    /* CEO card */
    .ceo-card {
      background: rgba(255, 116, 51, 0.05);
      border: 1px solid rgba(255, 116, 51, 0.18);
      border-radius: 10px;
      padding: 36px 32px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .ceo-head {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .ceo-avatar {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--y);
      flex-shrink: 0;
    }

    .ceo-name {
      font-size: 19px;
      font-weight: 700;
    }

    .ceo-role {
      font-size: 11px;
      color: var(--y);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 3px;
    }

    .ceo-quote {
      font-size: 16px;
      font-style: italic;
      color: var(--text-light);
      line-height: 1.72;
      margin: 28px 0 0;
      position: relative;
    }

    .ceo-quote::before {
      content: '\201C';
      font-family: var(--disp);
      font-size: 80px;
      font-style: normal;
      color: rgba(255, 116, 51, 0.13);
      line-height: 1;
      position: absolute;
      top: -20px;
      left: -6px;
    }

    .ceo-lnk {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      color: var(--y);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 116, 51, 0.3);
      padding-bottom: 2px;
      width: fit-content;
      transition: border-color 0.2s, gap 0.2s;
    }

    .ceo-lnk:hover {
      color: var(--y);
      border-color: var(--y);
      gap: 12px;
    }

    /* form */
    .form-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--wbord);
      border-radius: 10px;
      padding: 44px 38px;
    }

    .f-label {
      display: block;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--mute);
      margin-bottom: 8px;
    }

    .f-req {
      color: var(--y);
    }

    .f-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      color: #fff;
      padding: 13px 16px;
      font-size: 14px;
      font-family: var(--font);
      outline: none;
      transition: border-color 0.22s, background 0.22s;
    }

    .f-input::placeholder {
      color: var(--mute);
    }

    .f-input:focus {
      border-color: var(--y);
      background: rgba(255, 116, 51, 0.04);
    }

    select.f-input option {
      background: var(--dark);
      color: #fff;
    }

    textarea.f-input {
      resize: vertical;
    }

    .f-group {
      margin-bottom: 18px;
    }

    .btn-submit {
      background: var(--y);
      color: #fff;
      font-family: var(--font);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 15px 34px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-submit:hover {
      background: var(--y2);
      transform: translateY(-2px);
    }

    /* reveal helper */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: 0.1s;
    }

    .d2 {
      transition-delay: 0.22s;
    }

    .d3 {
      transition-delay: 0.34s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* divider */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    }

    @media (max-width: 768px) {
     
      .hero-title {
        letter-spacing: -1px;
      }

      .map-outer.shrunk {
        padding: 0 12px;
      }

      .form-card {
        padding: 28px 20px;
      }
    }