: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.10);
    --font: "poppins", sans-serif;
    --disp: "poppins", sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --page-bg: #0c0f14;
    --card-bg: #13171f;
    --card-bg2: #181d27;
    --clt-bg-top: #0b0e14;
    --clt-bg-bottom: #12161f;
    --clt-border: rgba(255,255,255,0.06);
    --clt-logo: rgba(255,255,255,0.55);
    --clt-logo-hover: #ffffff;
    --line: rgba(255, 255, 255, 0.07);
    --line2: rgba(255, 255, 255, 0.12);
}

*,
*::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;
}

p{
    font-family:"poppins", sans-serif !important;
    font-size:15px !important;
}
 
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--y);
  border-radius: 4px;
}

 

/* 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: 100px;
  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: 65px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/*.logo:hover .logo__img {*/
/*  transform: scale(1.05) rotate(2deg);*/
/*}*/

.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 10px;
  height: var(--nav-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color 0.25s;
  font-family:   "poppins", sans-serif;;
}

.hd.solid .nav > li > a {
  color: #fff;
}

.nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  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: 15px;
}

.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;*/
  background:#ff7433;
}

.btn-fill:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.38);
  background: #237847;
}

.cta-btn{
    background: #237847;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
}

.cta-btn:hover{
    background: #237847;
    color: #fff;
    padding: 6px 11px;
    border-radius: 15px;
}

.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: #237847;
  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(50px + 150px + -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, 70px);
  font-weight: 900;
  line-height: 0.91;
  text-transform: uppercase;
  color: #fff;
      word-spacing: 9px;
    letter-spacing: -3.5px;
  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, 4.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;
  margin: 10px 0;
}

.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: 80vh;
  display: flex;
  align-items: center;

  /* Semi-fixed background */
  background-image: url("../image/img/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(64px, 10vw, 65px);
  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(39px, 4.5vw, 38px);
  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 #ffffff5c;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.35s var(--ease);
  cursor: default;
}

.wcu-reason:first-child {
  border-top: 1px solid #ffffff5c;
}

.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: #ff7433;
  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: #ffffff5c;
  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, 4vw, 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 .heasddd {
    font-family: var(--disp);
    font-size: clamp(2.6rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin-bottom: 48px;
  }

  .faq-left .heasddd span {
    color: var(--y);
  }

    .faq-left p{
        color:#fff;
    }

  /* ── 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: #5e6981;
  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: #fff;
  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: #5e6981;
  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: #fff;
}

.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(234 80 19 / 70%) 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, 3rem);
    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: 15px;
      font-weight: 500;
      color: #fff;
      font-family: "poppins", sans-serif;
      text-transform: capitalize;
      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: 13px;
      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;
      }
    }
    
    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 30px 5vw 55px;
      overflow: hidden;
    }

    .hero-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -54%);
      font-family: var(--disp);
      font-size: clamp(120px, 22vw, 320px);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }

    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      /* margin-bottom: 72px; */
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--y);
      margin-bottom: 28px;
      font-weight: 500;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--y);
    }

    .hero h1 {
      font-family: var(--disp);
      font-size: clamp(52px, 7vw, 100px);
      font-weight: 900;
      line-height: .92;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 32px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--y);
    }

    .hero-desc {
      font-size: 17px;
      color: var(--mute);
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 48px;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
    }

    .stat-num {
      font-family: var(--disp);
      font-size: 52px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .stat-num span {
      color: var(--y);
    }

    .stat-label {
      font-size: 12px;
      color: var(--mute);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .hero-right {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .hero-card {
      background: var(--card-bg);
      border: 1px solid var(--line2);
      border-radius: 6px;
      padding: 28px 24px;
      transition: border-color .3s, transform .3s;
    }

    .hero-card:hover {
      border-color: rgba(255, 116, 51, 0.4);
      transform: translateY(-4px);
    }

    .hero-card:first-child {
      grid-column: span 2;
      background: linear-gradient(135deg, rgba(255, 116, 51, 0.12) 0%, rgba(255, 116, 51, 0.04) 100%);
      border-color: rgba(255, 116, 51, 0.2);
    }

    .hero-card-icon {
      font-size: 32px;
      margin-bottom: 14px;
      line-height: 1;
    }

    .hero-card h3 {
      font-family: var(--disp);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }

    .hero-card p {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* ─── IMAGES ROW ─── */
    .hero-images {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 16px;
      position: relative;
    }

    .img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line2);
    }

    .img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s var(--ease);
      filter: brightness(0.82) saturate(0.9);
    }

    .img-wrap:hover img {
      transform: scale(1.04);
      filter: brightness(0.9) saturate(1.1);
    }

    .img-wrap.tall {
      height: 480px;
    }

    .img-wrap.short {
      height: 480px;
    }

    .img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 24px;
      background: linear-gradient(0deg, rgba(12, 15, 20, 0.85) 0%, transparent 100%);
    }

    .img-caption span {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    .img-caption strong {
      display: block;
      font-family: var(--disp);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.03em;
    }

    .img-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--y);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
    }

    /* ─── DIVIDER ─── */
    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line2) 30%, var(--line2) 70%, transparent);
    }

    /* ─── ABOUT STORY ─── */
    .story-section {
      padding: 30px 5vw;
    }

    .story-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--y);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--y);
    }

    /* intro split */
    .story-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 100px;
    }

    .story-intro-heading {
      font-family: var(--disp);
      font-size: clamp(40px, 4.5vw, 68px);
      font-weight: 900;
      color: #fff;
      line-height: .95;
      letter-spacing: -0.02em;
    }

    .story-intro-heading em {
      color: var(--y);
      font-style: italic;
    }

    .story-intro-body {
      padding-top: 10px;
    }

    .story-intro-body p {
      font-size: 16px;
      color: var(--mute);
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .story-intro-body p:last-child {
      margin-bottom: 0;
    }

    .story-intro-body p strong {
      color: #e8eaf0;
      font-weight: 600;
    }

    /* pull quote */
    .pull-quote {
      border-left: 3px solid var(--y);
      padding: 28px 40px;
      background: var(--card-bg);
      border-radius: 0 6px 6px 0;
      /* margin: 80px 0; */
    }

    .pull-quote blockquote {
      font-family: var(--disp);
      font-size: clamp(26px, 2.5vw, 40px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .pull-quote cite {
      font-size: 13px;
      color: var(--mute);
      font-style: normal;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* timeline */
    .story-timeline {
      margin-bottom: 100px;
    }

    .timeline-heading {
      font-family: var(--disp);
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 48px;
    }

    .timeline-heading em {
      color: var(--y);
      font-style: italic;
    }

    .timeline-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .tl-item {
      background: var(--card-bg);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .tl-item:first-child {
      border-radius: 6px 0 0 6px;
    }

    .tl-item:last-child {
      border-radius: 0 6px 6px 0;
    }

    .tl-item:hover {
      background: var(--card-bg2);
    }

    .tl-year {
      font-family: var(--disp);
      font-size: 56px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 116, 51, 0.25);
      line-height: 1;
      margin-bottom: 16px;
    }

    .tl-event {
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 12px;
    }

    .tl-detail {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* long text blocks */
    .story-blocks {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      margin-bottom: 100px;
    }

    .story-block h3 {
      font-family: var(--disp);
      font-size: clamp(24px, 2vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }

    .story-block p {
      font-size: 15px;
      color: var(--mute);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .story-block p:last-child {
      margin-bottom: 0;
    }

    .story-block p strong {
      color: var(--y);
      font-weight: 600;
    }

    /* team */
    .team-section {
      margin-bottom: 100px;
    }

    .team-heading {
      font-family: var(--disp);
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 48px;
    }

    .team-heading em {
      color: var(--y);
      font-style: italic;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .team-card {
      background: var(--card-bg);
      border: 1px solid var(--line2);
      border-radius: 8px;
      padding: 32px 24px;
      text-align: center;
      transition: border-color .3s, transform .3s;
    }

    .team-card:hover {
      border-color: rgba(255, 116, 51, 0.35);
      transform: translateY(-5px);
    }

    .team-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--y), var(--y2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--disp);
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin: 0 auto 16px;
    }

    .team-name {
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 4px;
    }

    .team-role {
      font-size: 12px;
      color: var(--y);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .team-bio {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* big number strip */
    .big-numbers {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      margin-bottom: 100px;
      background: var(--card-bg);
      border-radius: 8px;
      overflow: hidden;
    }

    .big-num-item {
      padding: 48px 32px;
      text-align: center;
      border-right: 1px solid var(--line2);
      transition: background .3s;
    }

    .big-num-item:last-child {
      border-right: none;
    }

    .big-num-item:hover {
      background: var(--card-bg2);
    }

    .big-num-val {
      font-family: var(--disp);
      font-size: 60px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .big-num-val span {
      color: var(--y);
    }

    .big-num-label {
      font-size: 12px;
      color: var(--mute);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 10px;
    }

    /* full-width text */
    .story-full {
      margin-bottom: 100px;
    }

    .story-full h3 {
      font-family: var(--disp);
      font-size: clamp(28px, 2.5vw, 44px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
      line-height: .95;
    }

    .story-full h3 em {
      color: var(--y);
      font-style: italic;
    }

    .story-full-cols {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
    }

    .story-full-col p {
      font-size: 15px;
      color: var(--mute);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .story-full-col p:last-child {
      margin-bottom: 0;
    }

    .story-full-col p strong {
      color: #e8eaf0;
      font-weight: 600;
    }

    /* awards */
    .awards-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 100px;
    }

    .award-item {
      background: var(--card-bg);
      border: 1px solid var(--line2);
      border-radius: 8px;
      padding: 32px 28px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: border-color .3s;
    }

    .award-item:hover {
      border-color: rgba(255, 116, 51, 0.3);
    }

    .award-icon {
      font-size: 36px;
      flex-shrink: 0;
      line-height: 1;
    }

    .award-title {
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 6px;
    }

    .award-year {
      font-size: 12px;
      color: var(--y);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .award-desc {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* ─── MISSION / VISION ─── */
    .mv-section {
      padding: 0 5vw 120px;
    }

    .mv-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .mv-heading {
      font-family: var(--disp);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 900;
      color: #fff;
      line-height: .95;
      letter-spacing: -0.02em;
      margin-bottom: 80px;
    }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .mv-card {
      padding: 64px 56px;
      position: relative;
      overflow: hidden;
    }

    .mv-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .4s;
    }

    .mv-card:hover::before {
      opacity: 1;
    }

    .mv-card.mission {
      background: var(--card-bg);
      border-radius: 6px 0 0 6px;
    }

    .mv-card.mission::before {
      background: linear-gradient(135deg, rgba(255, 116, 51, 0.06) 0%, transparent 60%);
    }

    .mv-card.vision {
      background: var(--card-bg2);
      border-radius: 0 6px 6px 0;
    }

    .mv-card.vision::before {
      background: linear-gradient(225deg, rgba(96, 173, 74, 0.08) 0%, transparent 60%);
    }

    .mv-card-num {
      font-family: var(--disp);
      font-size: 120px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
      position: absolute;
      right: 32px;
      top: 20px;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
    }

    .mv-tag {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .mv-card.mission .mv-tag {
      background: rgba(255, 116, 51, 0.15);
      color: var(--y);
      border: 1px solid rgba(255, 116, 51, 0.25);
    }

    .mv-card.vision .mv-tag {
      background: rgba(96, 173, 74, 0.12);
      color: var(--primary-green);
      border: 1px solid rgba(96, 173, 74, 0.2);
    }

    .mv-card h2 {
      font-family: var(--disp);
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
      position: relative;
      z-index: 1;
    }

    .mv-card p {
      font-size: 16px;
      color: var(--mute);
      line-height: 1.8;
      max-width: 420px;
      position: relative;
      z-index: 1;
    }

    .mv-accent-line {
      width: 48px;
      height: 3px;
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .mv-card.mission .mv-accent-line {
      background: var(--y);
    }

    .mv-card.vision .mv-accent-line {
      background: var(--primary-green);
    }

    

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── CURSOR ─── */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--y);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: screen;
      transition: transform .15s, width .25s, height .25s;
      transform: translate(-50%, -50%);
    }

    .cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 116, 51, 0.4);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform .35s, width .3s, height .3s, border-color .2s;
    }
    
    .hidesection{
        line-height:0px;
        font-size:0px;
        height:0;
    }
    .hidesection p{
        line-height:0px;
        font-size:0px;
        visibility: hidden;
    }
    .hidesection h1, h2, h3, h4, h5{
        line-height:0px;
        font-size:0px;
    }
    .hidesection li {
        line-height:0px;
        font-size:0px;
    }
     /* ─── HERO ─── */
.abtt-hero {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  padding: 30px 5vw 55px;
  overflow: hidden;
}

.abtt-hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-family: var(--disp);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.abtt-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.abtt-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* margin-bottom: 72px; */
}

.abtt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 28px;
  font-weight: 500;
}

.abtt-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--y);
}

.abtt-hero h1 {
  font-family: var(--disp);
  font-size: clamp(52px, 4vw, 100px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}

.abtt-hero h1 em {
  font-style: italic;
  color: var(--y);
}

.abtt-hero-desc {
  font-size: 17px;
  color: var(--mute);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 48px;
}

.abtt-hero-stats {
  display: flex;
  gap: 48px;
}

.abtt-stat-num {
  font-family: var(--disp);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.story-section ol{
    color:var(--mute);
}
.story-section ul{
    color:var(--mute);
}
.abtt-stat-num span {
  color: var(--y);
}

.abtt-stat-label {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.abtt-hero-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.abtt-hero-card {
  background: var(--card-bg);
  border: 1px solid var(--line2);
  border-radius: 6px;
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}

.abtt-hero-card:hover {
  border-color: rgba(255, 116, 51, 0.4);
  transform: translateY(-4px);
}

.abtt-hero-card:first-child {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 116, 51, 0.12) 0%, rgba(255, 116, 51, 0.04) 100%);
  border-color: rgba(255, 116, 51, 0.2);
}

.abtt-hero-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.abtt-hero-card h3 {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.abtt-hero-card p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.6;
}

/* ─── IMAGES ROW ─── */
.abtt-hero-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  position: relative;
}

.abtt-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line2);
}

.abtt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
  filter: brightness(0.82) saturate(0.9);
}

.abtt-img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1.1);
}

.abtt-img-wrap.abtt-tall {
  height: 480px;
}

.abtt-img-wrap.abtt-short {
  height: 250px;
}

.abtt-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(12, 15, 20, 0.85) 0%, transparent 100%);
}

.abtt-img-caption span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.abtt-img-caption strong {
  display: block;
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.abtt-img-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--y);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}



    /* ─── DIVIDER ─── */
    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line2) 30%, var(--line2) 70%, transparent);
    }

    /* ─── ABOUT STORY ─── */
    .story-section {
      padding: 30px 5vw;
    }

    .story-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--y);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--y);
    }

    /* intro split */
    .story-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 100px;
    }

    .story-intro-heading {
      font-family: var(--disp);
      font-size: clamp(40px, 4.5vw, 68px);
      font-weight: 900;
      color: #fff;
      line-height: .95;
      letter-spacing: -0.02em;
    }

    .story-intro-heading em {
      color: var(--y);
      font-style: italic;
    }

    .story-intro-body {
      padding-top: 10px;
    }

    .story-intro-body p {
      font-size: 16px;
      color: var(--mute);
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .story-intro-body p:last-child {
      margin-bottom: 0;
    }

    .story-intro-body p strong {
      color: #e8eaf0;
      font-weight: 600;
    }

    /* pull quote */
    .pull-quote {
      border-left: 3px solid var(--y);
      padding: 28px 40px;
      background: var(--card-bg);
      border-radius: 0 6px 6px 0;
      /* margin: 80px 0; */
    }

    .pull-quote blockquote {
      font-family: var(--disp);
      font-size: clamp(26px, 2.5vw, 40px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .pull-quote cite {
      font-size: 13px;
      color: var(--mute);
      font-style: normal;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* timeline */
    .story-timeline {
      margin-bottom: 100px;
    }

    .timeline-heading {
      font-family: var(--disp);
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 48px;
    }

    .timeline-heading em {
      color: var(--y);
      font-style: italic;
    }

    .timeline-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .tl-item {
      background: var(--card-bg);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .tl-item:first-child {
      border-radius: 6px 0 0 6px;
    }

    .tl-item:last-child {
      border-radius: 0 6px 6px 0;
    }

    .tl-item:hover {
      background: var(--card-bg2);
    }

    .tl-year {
      font-family: var(--disp);
      font-size: 56px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 116, 51, 0.25);
      line-height: 1;
      margin-bottom: 16px;
    }

    .tl-event {
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 12px;
    }

    .tl-detail {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* long text blocks */
    .story-blocks {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      margin-bottom: 100px;
    }

    .story-block h2 {
      font-family: var(--disp);
      font-size: clamp(24px, 2vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    
    .story-block h3 {
      font-family: var(--disp);
      font-size: clamp(24px, 2vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    
    .story-block h4 {
      font-family: var(--disp);
      font-size: clamp(24px, 2vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    
    .story-block h5 {
      font-family: var(--disp);
      font-size: clamp(24px, 2vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    
    .story-block h6 {
      font-family: var(--disp);
      font-size: clamp(24px, 2vw, 36px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }

    .story-block p {
      font-size: 15px;
      color: var(--mute);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .story-block p:last-child {
      margin-bottom: 0;
    }

    .story-block p strong {
      color: var(--y);
      font-weight: 600;
    }

    /* team */
    .team-section {
      margin-bottom: 100px;
    }

    .team-heading {
      font-family: var(--disp);
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 48px;
    }

    .team-heading em {
      color: var(--y);
      font-style: italic;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .team-card {
      background: var(--card-bg);
      border: 1px solid var(--line2);
      border-radius: 8px;
      padding: 32px 24px;
      text-align: center;
      transition: border-color .3s, transform .3s;
    }

    .team-card:hover {
      border-color: rgba(255, 116, 51, 0.35);
      transform: translateY(-5px);
    }

    .team-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--y), var(--y2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--disp);
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin: 0 auto 16px;
    }

    .team-name {
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 4px;
    }

    .team-role {
      font-size: 12px;
      color: var(--y);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .team-bio {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* big number strip */
    .big-numbers {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      margin-bottom: 100px;
      background: var(--card-bg);
      border-radius: 8px;
      overflow: hidden;
    }

    .big-num-item {
      padding: 48px 32px;
      text-align: center;
      border-right: 1px solid var(--line2);
      transition: background .3s;
    }

    .big-num-item:last-child {
      border-right: none;
    }

    .big-num-item:hover {
      background: var(--card-bg2);
    }

    .big-num-val {
      font-family: var(--disp);
      font-size: 60px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .big-num-val span {
      color: var(--y);
    }

    .big-num-label {
      font-size: 12px;
      color: var(--mute);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 10px;
    }

    /* full-width text */
    .story-full {
      margin-bottom: 100px;
    }

    .story-full h3 {
      font-family: var(--disp);
      font-size: clamp(28px, 2.5vw, 44px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
      line-height: .95;
    }

    .story-full h3 em {
      color: var(--y);
      font-style: italic;
    }

    .story-full-cols {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
    }

    .story-full-col p {
      font-size: 15px;
      color: var(--mute);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .story-full-col p:last-child {
      margin-bottom: 0;
    }

    .story-full-col p strong {
      color: #e8eaf0;
      font-weight: 600;
    }

    /* awards */
    .awards-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 100px;
    }

    .award-item {
      background: var(--card-bg);
      border: 1px solid var(--line2);
      border-radius: 8px;
      padding: 32px 28px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: border-color .3s;
    }

    .award-item:hover {
      border-color: rgba(255, 116, 51, 0.3);
    }

    .award-icon {
      font-size: 36px;
      flex-shrink: 0;
      line-height: 1;
    }

    .award-title {
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 6px;
    }

    .award-year {
      font-size: 12px;
      color: var(--y);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .award-desc {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }

    /* ─── MISSION / VISION ─── */
    .mv-section {
      padding: 0 5vw 120px;
    }

    .mv-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .mv-heading {
      font-family: var(--disp);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 900;
      color: #fff;
      line-height: .95;
      letter-spacing: -0.02em;
      margin-bottom: 80px;
    }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .mv-card {
      padding: 64px 56px;
      position: relative;
      overflow: hidden;
    }

    .mv-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .4s;
    }

    .mv-card:hover::before {
      opacity: 1;
    }

    .mv-card.mission {
      background: var(--card-bg);
      border-radius: 6px 0 0 6px;
    }

    .mv-card.mission::before {
      background: linear-gradient(135deg, rgba(255, 116, 51, 0.06) 0%, transparent 60%);
    }

    .mv-card.vision {
      background: var(--card-bg2);
      border-radius: 0 6px 6px 0;
    }

    .mv-card.vision::before {
      background: linear-gradient(225deg, rgba(96, 173, 74, 0.08) 0%, transparent 60%);
    }

    .mv-card-num {
      font-family: var(--disp);
      font-size: 120px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
      position: absolute;
      right: 32px;
      top: 20px;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
    }

    .mv-tag {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .mv-card.mission .mv-tag {
      background: rgba(255, 116, 51, 0.15);
      color: var(--y);
      border: 1px solid rgba(255, 116, 51, 0.25);
    }

    .mv-card.vision .mv-tag {
      background: rgba(96, 173, 74, 0.12);
      color: var(--primary-green);
      border: 1px solid rgba(96, 173, 74, 0.2);
    }

    .mv-card h2 {
      font-family: var(--disp);
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
      position: relative;
      z-index: 1;
    }

    .mv-card p {
      font-size: 16px;
      color: var(--mute);
      line-height: 1.8;
      max-width: 420px;
      position: relative;
      z-index: 1;
    }

    .mv-accent-line {
      width: 48px;
      height: 3px;
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .mv-card.mission .mv-accent-line {
      background: var(--y);
    }

    .mv-card.vision .mv-accent-line {
      background: var(--primary-green);
    }

    /* ─── PROCESS ─── */
    .process-section {
      padding: 120px 5vw;
      overflow: hidden;
    }

    .process-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .process-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 100px;
      gap: 40px;
    }

    .process-header-right {
      max-width: 380px;
      font-size: 15px;
      color: var(--mute);
      line-height: 1.8;
      flex-shrink: 0;
      padding-bottom: 8px;
    }

    .process-heading {
      font-family: var(--disp);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 900;
      color: #fff;
      line-height: .95;
      letter-spacing: -0.02em;
    }

    .process-heading em {
      color: var(--y);
      font-style: italic;
    }

    .process-track {
      position: relative;
    }

    .process-spine {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--line2);
    }

    .process-spine-fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      background: linear-gradient(180deg, var(--y), var(--primary-green));
      height: 0%;
      transition: height .1s linear;
    }

    .process-step {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      align-items: center;
      gap: 0;
      padding: 60px 0;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }

    .process-step.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .process-step:nth-child(odd) .step-content {
      grid-column: 1;
      text-align: right;
    }

    .process-step:nth-child(odd) .step-center {
      grid-column: 2;
    }

    .process-step:nth-child(odd) .step-visual {
      grid-column: 3;
    }

    .process-step:nth-child(even) .step-content {
      grid-column: 3;
      order: 3;
      text-align: left;
    }

    .process-step:nth-child(even) .step-center {
      grid-column: 2;
      order: 2;
    }

    .process-step:nth-child(even) .step-visual {
      grid-column: 1;
      order: 1;
    }

    .step-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
    }

    .step-node {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid var(--line2);
      background: var(--page-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--disp);
      font-size: 20px;
      font-weight: 700;
      color: var(--mute);
      transition: all .4s;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    .process-step.visible .step-node {
      border-color: var(--y);
      color: var(--y);
      background: rgba(255, 116, 51, 0.1);
      box-shadow: 0 0 24px rgba(255, 116, 51, 0.2);
    }

    .step-content {
      padding: 0 48px;
    }

    .step-num-label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--y);
      font-weight: 600;
      margin-bottom: 12px;
      display: block;
    }

    .step-title {
      font-family: var(--disp);
      font-size: clamp(28px, 2.5vw, 42px);
      font-weight: 700;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--mute);
      line-height: 1.75;
      max-width: 360px;
    }

    .process-step:nth-child(odd) .step-desc {
      margin-left: auto;
    }

    .step-tags {
      display: flex;
      gap: 8px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .process-step:nth-child(odd) .step-tags {
      justify-content: flex-end;
    }

    .step-tag {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 5px 12px;
      border-radius: 2px;
      background: var(--card-bg);
      color: var(--mute);
      border: 1px solid var(--line2);
    }

    .step-visual {
      padding: 0 32px;
    }

    .step-card {
      background: var(--card-bg);
      border: 1px solid var(--line2);
      border-radius: 8px;
      padding: 28px;
      transition: border-color .4s, transform .4s;
      position: relative;
      overflow: hidden;
    }

    .process-step.visible .step-card {
      border-color: rgba(255, 116, 51, 0.2);
      transform: scale(1.02);
    }

    .step-card-glow {
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 116, 51, 0.15) 0%, transparent 70%);
      top: -40px;
      right: -40px;
      pointer-events: none;
    }

    .step-card-icon {
      font-size: 36px;
      margin-bottom: 16px;
      line-height: 1;
    }

    .step-card-title {
      font-family: var(--disp);
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 10px;
    }

    .step-card-text {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.6;
    }
    
    /* ─── PROCESS SECTION RESPONSIVE ─── */

/* Tablet & Smaller Screens */
@media (max-width: 768px) {
  .process-section {
    padding: 80px 5vw;
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 24px;
  }

  .process-header-right {
    max-width: 100%;
    padding-bottom: 0;
  }

  .process-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .process-track {
    position: relative;
  }

  .process-spine {
    display: none;
  }

  .process-spine-fill {
    display: none;
  }

  .process-step {
    display: block;
    grid-template-columns: none;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }

  .process-step.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    grid-column: auto;
    text-align: left;
    padding: 0 0 24px 0;
    order: unset;
  }

  .process-step:nth-child(odd) .step-center,
  .process-step:nth-child(even) .step-center {
    grid-column: auto;
    order: unset;
    margin: 20px 0;
  }

  .process-step:nth-child(odd) .step-visual,
  .process-step:nth-child(even) .step-visual {
    grid-column: auto;
    order: unset;
    padding: 0;
    margin-top: 20px;
  }

  .step-center {
    margin-bottom: 0;
  }

  .step-node {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .step-content {
    padding: 0;
  }

  .step-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 12px;
  }

  .step-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .process-step:nth-child(odd) .step-desc {
    margin-left: 0;
  }

  .process-step:nth-child(odd) .step-tags {
    justify-content: flex-start;
  }

  .step-tags {
    gap: 6px;
    margin-top: 16px;
  }

  .step-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .step-visual {
    padding: 0;
  }

  .step-card {
    padding: 20px;
  }

  .step-card-glow {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }

  .step-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .step-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .step-card-text {
    font-size: 12px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .process-section {
    padding: 60px 4vw;
  }

  .process-inner {
    max-width: 100%;
  }

  .process-header {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 16px;
  }

  .process-header-right {
    font-size: 14px;
    line-height: 1.6;
  }

  .process-heading {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1;
  }

  .process-step {
    padding: 32px 0;
    border-bottom: 1px solid var(--line2);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .step-num-label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .step-title {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 12px;
    line-height: 1.6;
  }

  .step-node {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .step-card {
    padding: 16px;
    border-radius: 6px;
  }

  .step-card-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .step-card-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .step-card-text {
    font-size: 11px;
    line-height: 1.5;
  }

  .step-tag {
    font-size: 9px;
    padding: 3px 8px;
  }
}

/* Small Mobile Devices (< 360px) */
@media (max-width: 360px) {
  .process-section {
    padding: 48px 3vw;
  }

  .process-heading {
    font-size: clamp(24px, 6vw, 32px);
  }

  .step-title {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .step-node {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .step-card {
    padding: 12px;
  }
}

    /* ─── VALUES ─── */
    .values-section {
      padding: 0 5vw 120px;
    }

    .values-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .values-heading {
      font-family: var(--disp);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 900;
      color: #fff;
      line-height: .95;
      letter-spacing: -0.02em;
      margin-bottom: 60px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .value-item {
      background: var(--card-bg);
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .value-item:first-child {
      border-radius: 6px 0 0 6px;
    }

    .value-item:last-child {
      border-radius: 0 6px 6px 0;
    }

    .value-item:hover {
      background: var(--card-bg2);
    }

    .value-num {
      font-family: var(--disp);
      font-size: 72px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 116, 51, 0.2);
      line-height: 1;
      margin-bottom: 20px;
    }

    .value-title {
      font-family: var(--disp);
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 14px;
    }

    .value-desc {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.7;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── CURSOR ─── */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--y);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: screen;
      transition: transform .15s, width .25s, height .25s;
      transform: translate(-50%, -50%);
    }

    .cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 116, 51, 0.4);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform .35s, width .3s, height .3s, border-color .2s;
    }
    
    @media only screen and (max-width: 767px) {
      .abtt-hero-top{
          grid-template-columns:1fr;
          gap:0;
      }
    .awards-strip {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        
    }
    .mv-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mv-card {
        padding: 64px 20px;
    }
    .process-header {
        display: grid;
    }
    .mv-section {
        padding: 0 5vw 40px;
    }
    .process-section {
        padding: 50px 5vw;
        overflow: hidden;
    }
      
    }
    
    /* CSS */
.experience-tag {
    animation: floatUpDown 3s ease-in-out infinite;
        position: absolute;
    left: 20%;
    top: 40%;
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 32px;
    border: 2px solid #FF9800;
    border-radius: 8px;
    background-color: rgba(255, 152, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.experience-badge i {
    font-size: 32px;
    color: #FF9800;
    position: relative;
    z-index: 1;
}

.experience-years {
    font-size: 52px;
    font-weight: 900;
    color: #FF9800;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.experience-text {
    font-size: 16px;
    font-weight: 700;
    color: #FF9800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .experience-badge {
        padding: 20px 24px;
    }

    .experience-badge i {
        font-size: 28px;
    }

    .experience-years {
        font-size: 40px;
    }

    .experience-text {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

/* ── SECTION ── */
  .prj {
    background: var(--page-bg);
    padding: 90px 0 100px;
    overflow: hidden;
  }

  /* ── EYEBROW ── */
  .prj__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--disp);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 14px;
  }
  .prj__eyebrow::before,
  .prj__eyebrow::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: var(--y);
    opacity: .55;
  }

  /* ── TITLE ── */
  .prj__title {
    font-family: var(--disp);
    font-size: clamp(40px, 5.5vw, 66px);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -1px;
    color: var(--surf);
    text-transform: uppercase;
  }
  .prj__title span { color: var(--y); }

  .prj__subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--mute);
    max-width: 400px;
    line-height: 1.75;
    margin-top: 16px;
  }

  /* ── VIEW ALL LINK (header right) ── */
  .prj__view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mute);
    text-decoration: none;
    border: 1px solid var(--line2);
    padding: 11px 22px;
    border-radius: 2px;
    transition: color .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
  }
  .prj__view-all:hover {
    color: var(--ink);
    background: var(--y);
    border-color: var(--y);
  }
  .prj__view-all i { font-size: 10px; }

  /* ── GRID ── */
  .prj__grid { margin-top: 52px; }

  /* ── CARD ── */
  .prj-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    display: block;
    text-decoration: none;
    transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
  }
  .prj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0,0,0,.6);
    border-color: var(--line2);
  }

  /* Image */
  .prj-card__img-wrap {
    position: relative;
    overflow: hidden;
  }
  .prj-card--feat  .prj-card__img-wrap { aspect-ratio: 16/9; }
  .prj-card--reg   .prj-card__img-wrap { aspect-ratio: 4/3; }

  .prj-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
    /*filter: brightness(.8) saturate(.85);*/
  }
  .prj-card:hover .prj-card__img {
    transform: scale(1.06);
    /*filter: brightness(.65) saturate(1.05);*/
  }

  /* Gradient overlay */
  .prj-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,15,20,.92) 0%, transparent 52%);
    pointer-events: none;
  }

  /* Number badge */
  .prj-card__num {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--disp);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--y);
    background: rgba(12,15,20,.72);
    border: 1px solid rgba(255,116,51,.2);
    padding: 4px 10px;
    border-radius: 2px;
    backdrop-filter: blur(6px);
  }

  /* Tag — visible on hover via CSS only */
  .prj-card__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--disp);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
    background: var(--y);
    padding: 4px 10px;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .prj-card:hover .prj-card__tag {
    opacity: 1;
    transform: translateY(0);
  }

  /* Body */
  .prj-card__body { padding: 18px 20px 20px; }

  .prj-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 7px;
  }
  .prj-card__location i { font-size: 9px; }

  .prj-card__name {
    font-family: var(--disp);
    font-size: 20px;
    font-weight: 700;
    color: var(--surf);
    line-height: 1.15;
    letter-spacing: .2px;
    margin-bottom: 14px;
  }
  .prj-card--feat .prj-card__name { font-size: 25px; }

  .prj-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .prj-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--mute);
    font-family: var(--font);
  }
  .prj-card__meta-item i { color: var(--y); font-size: 10px; }

  .prj-card__arrow {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mute);
    font-size: 11px;
    flex-shrink: 0;
    transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
  }
  .prj-card:hover .prj-card__arrow {
    background: var(--y);
    border-color: var(--y);
    color: var(--ink);
  }

  /* ── STAT STRIP ── */
  .prj__stats {
    display: flex;
    border-top: 1px solid var(--line);
    margin-top: 56px;
  }
  .prj__stat {
    flex: 1;
    padding: 30px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .prj__stat:last-child { border-right: none; }

  .prj__stat-num {
    font-family: var(--disp);
    font-size: 38px;
    font-weight: 800;
    color: var(--y);
    letter-spacing: -1px;
    line-height: 1;
  }
  .prj__stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mute);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .prj__stat-label i { color: var(--y); font-size: 9px; }

  /* ── CTA ROW ── */
  .prj__cta-row {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .prj__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 28px;
    background: var(--y);
    color: var(--ink);
    border-radius: 2px;
    text-decoration: none;
    transition: background .22s var(--ease);
  }
  .prj__cta-btn:hover { background: var(--y2); color: var(--ink); }

  .prj__cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mute);
    text-decoration: none;
    border-bottom: 1px solid var(--line2);
    padding-bottom: 2px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }
  .prj__cta-ghost:hover { color: var(--y); border-color: var(--y); }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .prj__view-all { display: none; }
  }
  @media (max-width: 767px) {
    .prj__stats { flex-wrap: wrap; }
    .prj__stat   { min-width: 50%; border-right: none; border-bottom: 1px solid var(--line); }
    .prj__stat:last-child { border-bottom: none; }
  }
  
  /* ══════════════════════════════════════════════════════
   BACK BAR
══════════════════════════════════════════════════════ */
.pd-back {
  background: var(--card-bg);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}
.pd-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mute);
  transition: color .2s var(--ease);
}
.pd-back a:hover { color: var(--y); }
.pd-back a i { font-size: 10px; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.pd-hero {
  background: var(--dark);
  padding: 54px 0 46px;
  border-bottom: 1px solid var(--line);
}
.pd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 12px;
}
.pd-hero__eyebrow::before,
.pd-hero__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--y);
  opacity: .5;
}
.pd-hero__title {
  font-family: var(--disp);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--surf);
  margin-bottom: 10px;
}
.pd-hero__title span { color: var(--y); }
.pd-hero__region {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mute);
}
.pd-hero__region i { color: var(--y); margin-right: 6px; }

/* ══════════════════════════════════════════════════════
   PROJECT INFO — 50 / 50
══════════════════════════════════════════════════════ */
.pd-info {
  background: var(--card-bg);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}

/* Column label */
.pd-info__col-label {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pd-info__col-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line2);
}

/* ── Description content — scoped under .pd-desc-content ── */
.pd-desc-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.85;
  margin-bottom: 14px;
}
.pd-desc-content p:last-child { margin-bottom: 0; }
.pd-desc-content a { color: var(--y); border-bottom: 1px solid rgba(255,116,51,.3); transition: border-color .2s; }
.pd-desc-content a:hover { border-color: var(--y); }

.pd-desc-content ul li{
    font-size: 14px;
    font-weight: 400;
    color: var(--mute);
    line-height: 1.85;
}

/* vertical divider between cols on desktop */
.pd-info__divider {
  display: none;
}
@media (min-width: 992px) {
  .pd-info__divider {
    display: block;
    width: 1px;
    background: var(--line2);
    align-self: stretch;
    flex-shrink: 0;
  }
}

/* ── Stats list — scoped under .pd-stats-content ── */
.pd-stats-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-stats-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.pd-stats-content ul li:first-child { border-top: 1px solid var(--line); }
.pd-stats-content ul li .icon {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: rgba(255,116,51,.08);
  border: 1px solid rgba(255,116,51,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--y);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-stats-content ul li .txt strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--surf);
  line-height: 1.3;
  margin-bottom: 2px;
}
.pd-stats-content ul li .txt span {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}
.pd-stats-content ul li .txt a { color: var(--y); }

/* ══════════════════════════════════════════════════════
   VIDEO
══════════════════════════════════════════════════════ */
.pd-video {
  background: var(--page-bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.pd-video__frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line2);
  background: var(--card-bg2);
}
.pd-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════════
   BODY CONTENT — scoped under .pd-body-content
══════════════════════════════════════════════════════ */
.pd-body {
  background: var(--card-bg);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

/* All heading-like elements inside content */
.pd-body-content .section-heading {
  font-family: var(--disp);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: var(--surf);
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pd-body-content .section-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--y);
  border-radius: 2px;
  flex-shrink: 0;
}

.pd-body-content p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.85;
  margin-bottom: 12px;
  /*max-width: 700px;*/
}
.pd-body-content p:last-child { margin-bottom: 0; }

.pd-body-content a { color: var(--y); border-bottom: 1px solid rgba(255,116,51,.3); transition: border-color .2s; }
.pd-body-content a:hover { border-color: var(--y); }

.pd-body-content blockquote {
  border-left: 3px solid var(--y);
  padding: 14px 22px;
  background: rgba(255,116,51,.05);
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  font-style: italic;
  color: var(--surf);
  line-height: 1.75;
  margin: 28px 0; 
}

.pd-body-content .social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pd-body-content .social-row span {
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 1px;
}
.pd-body-content .social-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 7px 14px;
  border-radius: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none;
}
.pd-body-content .social-row a:hover { color: var(--y); border-color: var(--y); }
.pd-body-content .social-row a i { font-size: 12px; }

.pd-body-content .body-section { margin-bottom: 44px; }
.pd-body-content .body-section:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   GALLERY + LIGHTBOX (pure CSS)
══════════════════════════════════════════════════════ */
.pd-gallery {
  background: var(--page-bg);
  padding: 64px 0 80px;
}

.pd-gallery__header { margin-bottom: 32px; }
.pd-gallery__eyebrow {
  font-family: var(--disp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-gallery__title {
  font-family: var(--disp);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--surf);
  letter-spacing: -.5px;
}

/* Mosaic grid */
.mosaic { display: grid; gap: 5px; }
.mosaic--r1 { grid-template-columns: 1.65fr 1fr 1fr; height: 265px; }
.mosaic--r2 { grid-template-columns: 1fr 1fr 1.65fr; height: 225px; margin-top: 5px; }

/* Each cell is a lightbox anchor */
.mosaic a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.mosaic a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: brightness(.78) saturate(.85);*/
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.mosaic a:hover img { transform: scale(1.07); filter: brightness(.6) saturate(1.1); }

/* Zoom icon overlay */
.mosaic a::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255,255,255,.0);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.mosaic a:hover::after {
  color: rgba(255,255,255,.9);
  background: rgba(12,15,20,.3);
}

/* ── Lightbox — pure CSS via :target ── */
.lb-target {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,10,14,.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease);
}
.lb-target:target {
  opacity: 1;
  pointer-events: all;
}
.lb-target img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  border: 1px solid var(--line2);
}
.lb-target .lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg2);
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 16px;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.lb-target .lb-close:hover { background: var(--y); color: var(--ink); border-color: var(--y); }

/* Prev / next nav inside lightbox */
.lb-target .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg2);
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lb-target .lb-nav:hover { background: var(--y); color: var(--ink); border-color: var(--y); }
.lb-target .lb-prev { left: 20px; }
.lb-target .lb-next { right: 20px; }

/* Caption */
.lb-target .lb-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   RELATED PROJECTS
══════════════════════════════════════════════════════ */
.pd-related {
  background: var(--card-bg);
  padding: 64px 0 80px;
  border-top: 1px solid var(--line);
}
.pd-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.pd-related__title {
  font-family: var(--disp);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--surf);
  letter-spacing: -.5px;
}
.pd-related__title span { color: var(--y); }
.pd-related__all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: 1px solid var(--line2);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.pd-related__all:hover { color: var(--y); border-color: var(--y); }

/* Related card */
.rcard {
  border-radius: 3px;
  overflow: hidden;
  background: var(--card-bg2);
  border: 1px solid var(--line);
  display: block;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.rcard:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.55); border-color: var(--line2); }

.rcard__img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.rcard__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(.85); transition: transform .45s var(--ease), filter .45s var(--ease); }
.rcard:hover .rcard__img-wrap img { transform: scale(1.06); filter: brightness(.62) saturate(1.05); }

.rcard__img-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,15,20,.88) 0%, transparent 55%);
  pointer-events: none;
}
.rcard__img-wrap .badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--disp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--y);
  padding: 3px 10px;
  border-radius: 2px;
}

.rcard__body { padding: 16px 18px 18px; }
.rcard__body .loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 6px;
}
.rcard__body .loc i { font-size: 9px; }
.rcard__body .name {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--surf);
  line-height: 1.15;
  margin-bottom: 12px;
}
.rcard__body .meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rcard__body .meta .m {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--mute);
}
.rcard__body .meta .m i { color: var(--y); font-size: 10px; }
.rcard__body .meta .arrow {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 10px;
  flex-shrink: 0;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.rcard:hover .rcard__body .meta .arrow { background: var(--y); border-color: var(--y); color: var(--ink); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .mosaic--r1,
  .mosaic--r2 { grid-template-columns: 1fr 1fr; height: auto; }
  .mosaic--r1 > a:first-child,
  .mosaic--r2 > a:last-child  { grid-column: span 2; aspect-ratio: 16/7; }
  .mosaic > a { aspect-ratio: 1; }
}

/* ── Section ── */
    .blog-section {
      padding: 60px 0 52px;
      background: var(--page-bg);
      overflow: hidden;
    }
    @media (min-width: 768px)  { .blog-section { padding: 80px 0 64px; } }
    @media (min-width: 1024px) { .blog-section { padding: 96px 0 80px; } }

    /* ── Eyebrow ── */
    .blog-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--y);
      margin-bottom: 14px;
    }
    .blog-eyebrow i { font-size: 10px; }

    /* ── Title ── */
    .blog-title {
      font-family: var(--disp);
      font-style: italic;
      font-weight: 800;
      font-size: clamp(36px, 8vw, 68px);
      line-height: 0.95;
      text-transform: uppercase;
      color: var(--surf);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    .blog-title span { color: var(--y); }

    .blog-desc {
      font-size: 14px;
      color: var(--mute);
      line-height: 1.65;
      max-width: 100%;
    }
    @media (min-width: 768px) { .blog-desc { font-size: 15px; max-width: 400px; } }

    /* ── Nav buttons ── */
    .blog-nav {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }
    @media (min-width: 992px) {
      .blog-nav {
        justify-content: flex-end;
        align-items: flex-end;
        margin-top: 0;
        padding-bottom: 4px;
      }
    }

    .blog-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line2);
      background: var(--card-bg);
      color: var(--mute);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s var(--ease);
      flex-shrink: 0;
    }
    .blog-nav-btn:hover,
    .blog-nav-btn:focus-visible {
      background: var(--y);
      border-color: var(--y);
      color: #fff;
      outline: none;
    }

    /* ── Divider ── */
    .blog-divider {
      height: 1px;
      background: var(--line);
      margin: 28px 0;
    }
    @media (min-width: 768px)  { .blog-divider { margin: 36px 0; } }
    @media (min-width: 1024px) { .blog-divider { margin: 44px 0; } }

    /* ── Owl item spacing ── */
    .owl-carousel .owl-item { padding: 6px 8px 16px; }
    @media (min-width: 640px) { .owl-carousel .owl-item { padding: 8px 10px 20px; } }

    /* ── Card ── */
    .blog-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      border-color: var(--line2);
      transform: translateY(-4px);
    }
    .blog-card--featured { border-color: rgba(255,116,51,0.22); }
    .blog-card--featured:hover { border-color: rgba(255,116,51,0.45); }

    /* Image */
    .blog-card__img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      flex-shrink: 0;
    }
    .blog-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.55s var(--ease);
      display: block;
    }
    .blog-card:hover .blog-card__img img { transform: scale(1.05); }

    /* Category badge */
    .blog-card__cat {
      position: absolute;
      top: 12px;
      left: 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 100px;
      color: #fff;
      background: var(--y);
      white-space: nowrap;
    }
    .blog-card__cat.green { background: var(--primary-green); }
    .blog-card__cat.soft  { background: var(--soft); }

    /* Reading time */
    .blog-card__time {
      position: absolute;
      bottom: 12px;
      right: 12px;
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 500;
      color: #fff;
      background: rgba(0,0,0,0.52);
      backdrop-filter: blur(6px);
      padding: 4px 10px;
      border-radius: 100px;
      white-space: nowrap;
    }
    .blog-card__time i { font-size: 10px; color: var(--y); }

    /* Body */
    .blog-card__body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    @media (min-width: 768px) { .blog-card__body { padding: 22px 24px; gap: 14px; } }

    .blog-card__meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .blog-meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--mute);
      white-space: nowrap;
    }
    .blog-meta-item i { font-size: 10px; color: var(--y); }
    .blog-meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--soft);
      flex-shrink: 0;
    }

    .blog-card__heading {
      font-family: var(--font);
      font-weight: 700;
      font-size: 15px;
      line-height: 1.42;
      color: var(--surf);
      transition: color 0.2s;
    }
    @media (min-width: 768px) { .blog-card__heading { font-size: 16px; } }
    @media (min-width: 1024px) { .blog-card__heading { font-size: 17px; } }
    .blog-card:hover .blog-card__heading { color: var(--y); }

    .blog-card__excerpt {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.65;
      flex: 1;
    }
    @media (min-width: 768px) { .blog-card__excerpt { font-size: 13.5px; } }

    /* Footer */
    .blog-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 14px 20px;
      border-top: 1px solid var(--line);
      flex-shrink: 0;
    }
    @media (min-width: 768px) { .blog-card__footer { padding: 14px 24px; } }

    .blog-author {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
    }
    .blog-author__avatar {
      width: 30px !important;
      height: 30px;
      border-radius: 50%;
      object-fit: cover;
      border: 1.5px solid var(--line2);
      flex-shrink: 0;
    }
    .blog-author__info { min-width: 0; }
    .blog-author__name {
      font-size: 12px;
      font-weight: 600;
      color: var(--surf);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .blog-author__role {
      font-size: 10px;
      color: var(--mute);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-card__link {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--y);
      text-decoration: none;
      transition: gap 0.2s var(--ease);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .blog-card__link:hover { gap: 10px; color: var(--y); }
    .blog-card__link i { font-size: 11px; }

    /* ── Custom dots ── */
    .blog-dots-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 28px;
    }
    @media (min-width: 768px) { .blog-dots-bar { margin-top: 36px; } }

    .blog-dot {
      width: 6px;
      height: 6px;
      border-radius: 100px;
      background: var(--soft);
      transition: all 0.3s var(--ease);
      cursor: pointer;
    }
    .blog-dot.active {
      width: 28px;
      background: var(--y);
    }
    
    .bd-hero {
      background: var(--card-bg);
      border-bottom: 1px solid var(--line);
      padding: 52px 0 44px;
    }

    .bd-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--y);
      margin-bottom: 18px;
    }
    .bd-eyebrow i { font-size: 9px; }

    .bd-title {
      font-family: var(--disp);
      font-style: italic;
      font-weight: 800;
      font-size: clamp(30px, 5vw, 52px);
      line-height: 1.02;
      text-transform: uppercase;
      color: var(--surf);
      letter-spacing: -0.01em;
      margin-bottom: 22px;
      /*max-width: 780px;*/
    }
    .bd-title span { color: var(--y); }

    .bd-meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
    }
    .bd-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--mute);
    }
    .bd-meta-item i { font-size: 10px; color: var(--y); }

    .bd-meta-sep {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--soft);
    }

    .bd-cat-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--y);
      color: #fff;
      padding: 4px 12px;
      border-radius: 100px;
    }
    .bd-cat-badge i { font-size: 9px; }

    /* ─────────────────────────────────────
       MAIN LAYOUT
    ───────────────────────────────────── */
    .bd-main {
      padding: 52px 0 80px;
    }

    /* ─────────────────────────────────────
       COL-8  BLOG CONTENT
    ───────────────────────────────────── */
    .bd-cover {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      margin-bottom: 36px;
      aspect-ratio: 16 / 9;
    }
    .bd-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .bd-cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,12,17,0.55) 0%, transparent 50%);
      pointer-events: none;
    }

    /* Article body typography */
    .bd-body { color: var(--mute); }

    .bd-lead {
      font-size: 17px;
      line-height: 1.72;
      color: var(--surf);
      font-weight: 500;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--line);
    }

    .bd-section-label {
      font-family: var(--disp);
      font-style: italic;
      font-weight: 800;
      font-size: clamp(20px, 3vw, 28px);
      text-transform: uppercase;
      color: var(--surf);
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    .bd-section-label span { color: var(--y); }

    .bd-para {
      font-size: 15px;
      line-height: 1.78;
      color: var(--mute);
      margin-bottom: 20px;
    }

    /* Blockquote */
    .bd-quote {
      border-left: 3px solid var(--y);
      background: var(--card-bg);
      border-radius: 0 10px 10px 0;
      padding: 20px 24px;
      margin: 28px 0;
    }
    .bd-quote__text {
      font-family: var(--disp);
      font-style: italic;
      font-weight: 700;
      font-size: clamp(17px, 2.5vw, 22px);
      color: var(--surf);
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .bd-quote__attr {
      font-size: 12px;
      color: var(--y);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .bd-quote__attr i { font-size: 10px; }

    /* Inline image */
    .bd-inline-img {
      border-radius: 10px;
      overflow: hidden;
      margin: 28px 0;
    }
    .bd-inline-img img {
      width: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 7;
    }
    .bd-inline-img figcaption {
      background: var(--card-bg);
      font-size: 12px;
      color: var(--mute);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .bd-inline-img figcaption i { color: var(--y); font-size: 10px; }

    /* Key points list */
    .bd-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .bd-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      color: var(--mute);
      line-height: 1.6;
    }
    .bd-list li i {
      color: var(--y);
      font-size: 12px;
      margin-top: 3px;
      flex-shrink: 0;
    }

    /* Tags */
    .bd-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }
    .bd-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mute);
      background: var(--card-bg);
      border: 1px solid var(--line2);
      padding: 5px 12px;
      border-radius: 100px;
      text-decoration: none;
      transition: all 0.2s var(--ease);
    }
    .bd-tag:hover { border-color: var(--y); color: var(--y); }
    .bd-tag i { font-size: 9px; }

    /* Author card */
    .bd-author-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      margin-top: 36px;
    }
    .bd-author-card img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--line2);
      flex-shrink: 0;
    }
    .bd-author-card__name {
      font-weight: 700;
      font-size: 15px;
      color: var(--surf);
      margin-bottom: 2px;
    }
    .bd-author-card__role {
      font-size: 11px;
      color: var(--y);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .bd-author-card__role i { font-size: 9px; }
    .bd-author-card__bio {
      font-size: 13px;
      color: var(--mute);
      line-height: 1.65;
    }

    /* ─────────────────────────────────────
       DIVIDER
    ───────────────────────────────────── */
    .bd-divider {
      height: 1px;
      background: var(--line);
      margin: 32px 0;
    }

    /* ─────────────────────────────────────
       COL-4  SIDEBAR
    ───────────────────────────────────── */
    .bd-sidebar { position: sticky; top: 24px; }

    /* Contact form card */
    .bd-form-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 28px;
    }
    .bd-form-card__header {
      background: var(--y);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .bd-form-card__header-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }
    .bd-form-card__title {
      font-family: var(--disp);
      font-style: italic;
      font-weight: 800;
      font-size: 20px;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
    }
    .bd-form-card__sub {
      font-size: 11px;
      color: rgba(255,255,255,0.75);
      margin-top: 2px;
    }
    .bd-form-card__body { padding: 22px; }

    /* Form fields */
    .bd-field { margin-bottom: 14px; }

    .bd-field-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mute);
      margin-bottom: 7px;
    }
    .bd-field-label i { font-size: 9px; color: var(--y); }

    .bd-input,
    .bd-textarea {
      width: 100%;
      background: var(--card-bg2);
      border: 1px solid var(--line2);
      border-radius: 8px;
      padding: 10px 14px;
      font-family: var(--font);
      font-size: 13px;
      color: var(--surf);
      transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
      outline: none;
    }
    .bd-input::placeholder,
    .bd-textarea::placeholder { color: var(--soft); }
    .bd-input:focus,
    .bd-textarea:focus {
      border-color: var(--y);
      box-shadow: 0 0 0 3px rgba(255,116,51,0.12);
    }
    .bd-textarea {
      resize: vertical;
      min-height: 90px;
    }

    .bd-submit {
      width: 100%;
      background: var(--y);
      border: none;
      border-radius: 8px;
      padding: 12px 20px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s var(--ease), transform 0.15s var(--ease);
      margin-top: 6px;
    }
    .bd-submit:hover {
      background: var(--y2);
      transform: translateY(-1px);
    }
    .bd-submit i { font-size: 12px; }

    /* Recent blogs sidebar */
    .bd-recent-label {
      display: flex;
      align-items: center;
      gap: 9px;
      font-family: var(--disp);
      font-style: italic;
      font-weight: 800;
      font-size: 22px;
      text-transform: uppercase;
      color: var(--surf);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }
    .bd-recent-label span { color: var(--y); }
    .bd-recent-label i { font-size: 16px; color: var(--y); }

    .bd-recent-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      gap: 0;
      margin-bottom: 12px;
      text-decoration: none;
      transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
    }
    .bd-recent-card:last-child { margin-bottom: 0; }
    .bd-recent-card:hover {
      border-color: var(--line2);
      transform: translateX(3px);
    }
    .bd-recent-card__img {
      width: 80px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .bd-recent-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s var(--ease);
    }
    .bd-recent-card:hover .bd-recent-card__img img { transform: scale(1.06); }
    .bd-recent-card__info {
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      min-width: 0;
    }
    .bd-recent-card__cat {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--y);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .bd-recent-card__cat i { font-size: 8px; }
    .bd-recent-card__title {
      font-size: 13px;
      font-weight: 600;
      color: var(--surf);
      line-height: 1.38;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color 0.2s;
    }
    .bd-recent-card:hover .bd-recent-card__title { color: var(--y); }
    .bd-recent-card__date {
      font-size: 10px;
      color: var(--mute);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .bd-recent-card__date i { font-size: 9px; color: var(--soft); }

    /* ─────────────────────────────────────
       RESPONSIVE OVERRIDES
    ───────────────────────────────────── */
    @media (max-width: 991.98px) {
      .bd-sidebar { position: static; margin-top: 48px; }
      .bd-hero { padding: 36px 0 30px; }
      .bd-main  { padding: 36px 0 56px; }
    }

    @media (max-width: 575.98px) {
      .bd-author-card { flex-direction: column; align-items: center; text-align: center; }
      .bd-author-card__role { justify-content: center; }
      .bd-meta-row { gap: 10px; }
    }
    
    
    .spd-section {
            padding: 60px 20px;
            background: var(--page-bg);
        }

        .spd-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Showcase */
        .spd-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 60px;
        }

        .spd-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 300px;
            margin: auto;
            width: 100%;
        }

        .spd-image-main {
            grid-column: 1 / -1;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 24px;
            overflow: hidden;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spd-image-main img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .spd-image-thumb {
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 12px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s var(--ease);
        }

        .spd-image-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .spd-image-thumb:hover {
            border-color: var(--y);
            background: var(--card-bg2);
        }

        /* Product Details */
        .spd-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .spd-title {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .spd-name {
            font-size: 28px;
            font-weight: 700;
            font-family: var(--disp);
            color: var(--bg-white);
            letter-spacing: -0.5px;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .spd-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            padding: 6px 12px;
            background: rgba(255, 116, 51, 0.1);
            border: 1px solid var(--y);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: var(--y);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .spd-price-section {
            padding: 20px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .spd-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .spd-price-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--mute);
            font-weight: 600;
        }

        .spd-price-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--y);
            font-family: var(--disp);
        }

        .spd-variant {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .spd-variant-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--mute);
            font-weight: 600;
        }

        .spd-variant-value {
            font-size: 16px;
            color: var(--bg-white);
            font-weight: 500;
        }

        /* Key Specs */
        .spd-key-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            padding: 24px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 8px;
        }

        .spd-spec {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--line2);
        }

        .spd-spec:nth-child(2n) {
            border-bottom-color: transparent;
        }

        .spd-spec-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--y);
            font-family: var(--disp);
        }

        .spd-spec-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--mute);
            font-weight: 600;
        }

        /* Features Grid */
        .spd-features-header {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--mute);
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .spd-features-header i {
            color: var(--y);
            font-size: 16px;
        }

        .spd-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .spd-feature {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 6px;
        }

        .spd-feature-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            color: var(--bg-white);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .spd-feature-title i {
            color: var(--y);
            flex-shrink: 0;
            font-size: 14px;
        }

        .spd-feature-desc {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Description Section */
        .spd-description {
            padding: 24px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 8px;
            margin-top: 40px;
        }

        .spd-desc-heading {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--y);
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .spd-desc-heading i {
            font-size: 14px;
        }

        .spd-desc-content {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .spd-desc-content:last-child {
            margin-bottom: 0;
        }

        /* Certifications */
        .spd-certifications {
            margin-top: 40px;
            padding: 24px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: 8px;
        }

        .spd-cert-heading {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--y);
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .spd-cert-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .spd-cert-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .spd-cert-item i {
            color: var(--y);
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 12px;
        }

        /* CTA Section */
        .spd-cta {
            margin-top: 40px;
            padding: 24px;
            background: linear-gradient(135deg, rgba(255, 116, 51, 0.15) 0%, rgba(221, 77, 10, 0.08) 100%);
            border: 1px solid var(--y);
            border-radius: 8px;
            text-align: center;
        }

        .spd-cta-text {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .spd-contact-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 12px;
        }

        .spd-contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .spd-contact-item i {
            color: var(--y);
            font-size: 14px;
        }

        .spd-contact-link {
            color: var(--y);
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s var(--ease);
        }

        .spd-contact-link:hover {
            opacity: 0.8;
        }

        /* Buy Now Button */
        .spd-buy-btn {
            display: inline-block;
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--y) 0%, var(--y2) 100%);
            border: none;
            border-radius: 6px;
            color: var(--bg-white);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--disp);
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s var(--ease);
            box-shadow: 0 8px 16px rgba(255, 116, 51, 0.2);
        }

        .spd-buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(255, 116, 51, 0.3);
            text-decoration: none;
            color: var(--bg-white);
        }

        .spd-buy-btn:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .spd-section {
                padding: 40px 16px;
            }

            .spd-hero {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .spd-features {
                grid-template-columns: 1fr;
            }

            .spd-key-specs {
                grid-template-columns: 1fr;
            }

            .spd-spec {
                border-bottom: 1px solid var(--line2) !important;
                padding-bottom: 12px;
            }

            .spd-name {
                font-size: 22px;
            }

            .spd-price-value {
                font-size: 28px;
            }

            .spd-cert-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .spd-image-main {
                aspect-ratio: auto;
                min-height: 300px;
            }

            .spd-name {
                font-size: 18px;
            }

            .spd-price-value {
                font-size: 24px;
            }

            .spd-spec-value {
                font-size: 16px;
            }
        }
    
    .body-section h1{
        font-size:35px;
        color:var(--y);
        font-weight:600;
        line-height: 40px;
    }
    
    .body-section h2{
        font-size:30px;
        color:var(--y);
        font-weight:600;
       line-height: 40px;
    }
    .body-section h3{
        font-size:30px;
        color:var(--y);
        font-weight:600;
        line-height: 40px;
    }
    .body-section h46{
        font-size:30px;
        color:var(--y);
        font-weight:600;
        line-height: 40px;
    }
    .body-section h5{
        font-size:30px;
        color:var(--y);
        font-weight:600;
        line-height: 40px;
    }
    .body-section h6{
        font-size:30px;
        color:var(--y);
        font-weight:600;
        line-height: 40px;
    }
    
     
    
    
    .clt-section{
    background: linear-gradient(180deg, var(--clt-bg-top) 0%, var(--clt-bg-bottom) 100%);
    padding: 70px 0;
    border-top: 1px solid var(--clt-border);
    border-bottom: 1px solid var(--clt-border);
    overflow: hidden;
  }

  .clt-eyebrow{
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clt-accent);
    margin-bottom: 34px;
    font-weight: 600;
  }

  .clt-track .owl-stage-outer{
    /* soft fade edges so the loop feels seamless */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .clt-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
  }

  .clt-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--clt-logo);
    font-size: 30px;
    
    
    transition: opacity .3s ease, filter .3s ease, transform .3s ease, color .3s ease;
  }

  .clt-logo span{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    color: inherit;
  }

  .clt-logo:hover{
    opacity: 1;
    filter: grayscale(0%);
    color: var(--clt-logo-hover);
    transform: translateY(-3px);
  }

  /* if using real image logos instead of icon placeholders, use this rule set */
  .clt-logo img{
    max-height: 141px;
    width: auto;
    
    transition: opacity .3s ease, filter .3s ease, transform .3s ease;
  }
  .clt-logo:hover img{
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: translateY(-3px);
  }

  .clt-track .owl-dots,
  .clt-track .owl-nav{
    display: none;
  }
  
  .tml-section{
    background: var(--ink);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
  }

  .tml-section::before{
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255,116,51,0.14) 0%, transparent 70%);
    pointer-events: none;
  }

  .tml-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,116,51,0.1);
    border: 1px solid rgba(255,116,51,0.3);
    color: var(--y);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
  }
  .tml-tag i{ font-size: 10px; }

  .tml-title{
    color: var(--surf);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .tml-title span{ color: var(--y); }

  .tml-desc{
    color: var(--mute);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 90px;
  }

  /* ============ DESKTOP GRID TIMELINE ============ */
  .tml-grid{
    display: none;
    position: relative;
    z-index: 1;
  }

  .tml-track{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
  }

  /* the connecting line, spans center of col-1 dot to center of col-6 dot */
  .tml-track::before{
    content: "";
    position: absolute;
    top: 27px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    background: linear-gradient(90deg, var(--y) 0%, var(--y2) 100%);
    opacity: 0.35;
    z-index: 0;
  }

  .tml-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }

  .tml-dot{
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--y) 0%, var(--y2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ink);
    box-shadow: 0 0 0 6px var(--ink), 0 10px 22px rgba(255,116,51,0.3);
    margin-bottom: 22px;
    transition: transform .3s ease;
  }

  .tml-col:hover .tml-dot{
    transform: scale(1.08);
  }

  .tml-step-num{
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    text-align: center;
  }

  .tml-step-title{
    color: var(--surf);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: center;
    min-height: 42px;
  }

  .tml-step-desc{
    color: var(--mute);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
  }

  @media (min-width: 992px){
    .tml-grid{ display: block; }
    .tml-vertical{ display: none; }
  }

  /* ============ MOBILE / TABLET VERTICAL TIMELINE ============ */
  .tml-vertical{
    position: relative;
    padding-left: 36px;
  }
  .tml-vertical::before{
    content: "";
    position: absolute;
    left: 16px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--y) 0%, var(--y2) 100%);
    opacity: 0.35;
  }
  .tml-v-item{
    position: relative;
    padding-bottom: 36px;
  }
  .tml-v-item:last-child{ padding-bottom: 0; }
  .tml-v-dot{
    position: absolute;
    left: -36px;
    top: 0;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--y) 0%, var(--y2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--ink);
    box-shadow: 0 0 0 5px var(--ink);
  }
  .tml-v-card{
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 18px 20px;
  }
  .tml-v-step-num{
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--y);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
  }
  .tml-v-title{
    color: var(--surf);
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .tml-v-desc{
    color: var(--mute);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
  }

  @media (max-width: 991px){
    .tml-title{ font-size: 30px; }
    .tml-desc{ margin-bottom: 50px; }
    .tml-section{ padding: 60px 0; }
  }
  
  /* ============================
   SPA STATS BAR SECTION
============================ */
.spa-stats{
  position: relative;
  background: var(--ink);
  padding: 90px 0;
  overflow: hidden;
  isolation: isolate;
}

/* subtle background texture */
.spa-stats::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,116,51,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,116,51,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 0;
}

.spa-stats::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,116,51,0.10) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.spa-stats__inner{
  position: relative;
  z-index: 2;
}

.spa-stats__head{
  text-align: center;
  max-width: 620px;
  margin: 0 auto 55px;
}

.spa-stats__tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(255,116,51,0.35);
  border-radius: 30px;
  background: rgba(255,116,51,0.08);
  color: var(--y);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.spa-stats__tag i{
  font-size: 10px;
}

.spa-stats__title{
  color: var(--surf);
  font-size: 34px !important;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
}

.spa-stats__title span{
  color: var(--y);
}

.spa-stats__desc{
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Grid of counters */
.spa-stats__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.spa-stats__item{
  position: relative;
  text-align: center;
  padding: 42px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s ease;
}

.spa-stats__item:last-child{
  border-right: none;
}

.spa-stats__item:hover{
  background: rgba(255,116,51,0.06);
}

.spa-stats__icon{
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,116,51,0.15), rgba(221,77,10,0.06));
  border: 1px solid rgba(255,116,51,0.3);
  color: var(--y);
  font-size: 22px;
  transition: transform 0.35s ease;
}

.spa-stats__item:hover .spa-stats__icon{
  transform: translateY(-4px) rotate(-6deg);
}

.spa-stats__num-row{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.spa-stats__num{
  color: var(--surf);
  font-size: 44px !important;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.spa-stats__suffix{
  color: var(--y);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.spa-stats__label{
  color: var(--mute);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
}

.spa-stats__divider{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--y), var(--y2));
  transition: width 0.5s ease;
}

.spa-stats__item:hover .spa-stats__divider{
  width: 60%;
}

/* Counted state pulse */
.spa-stats__item.spa-is-counted .spa-stats__icon{
  animation: spaPop 0.5s ease;
}

@keyframes spaPop{
  0%{ transform: scale(0.85); }
  60%{ transform: scale(1.08); }
  100%{ transform: scale(1); }
}

/* Responsive */
@media (max-width: 991px){
  .spa-stats__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .spa-stats__item{
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .spa-stats__item:nth-child(2n){
    border-right: none;
  }
  .spa-stats__num{
    font-size: 38px;
  }
}

@media (max-width: 575px){
  .spa-stats{
    padding: 60px 0;
  }
  .spa-stats__grid{
    grid-template-columns: 1fr;
  }
  .spa-stats__item{
    border-right: none !important;
  }
  .spa-stats__title{
    font-size: 26px;
  }
  .spa-stats__num{
    font-size: 34px;
  }
  .spa-stats__icon{
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
}


/* ============================
   BD SHARE
============================ */
.bd-share{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
 
.bd-share__label{
  color: var(--mute);
  font-size: 14px;
  font-weight: 600;
}
 
.bd-share__list{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
 
.bd-share__btn{
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--mute);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
 
.bd-share__btn:hover{
  transform: translateY(-3px);
  color: var(--surf);
  border-color: var(--y);
}
 
.bd-share__btn--wa:hover{ background: #25D366; border-color: #25D366; }
.bd-share__btn--fb:hover{ background: #1877F2; border-color: #1877F2; }
.bd-share__btn--li:hover{ background: #0A66C2; border-color: #0A66C2; }
.bd-share__btn--ig:hover{ background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #cc2366; }
 
/* toast for Instagram copy workflow */
.bd-share__toast{
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--surf);
  border: 1px solid rgba(255,116,51,0.35);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  white-space: nowrap;
}
 
.bd-share__toast.bd-is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.bd-share__btn--x:hover{ background: var(--ink); border-color: var(--surf); }
.bd-share__btn--copy:hover{ background: var(--y); border-color: var(--y); color: var(--ink); }
.bd-share__btn--more:hover{ background: var(--y2); border-color: var(--y2); }
 
.bd-share__btn--copy.bd-is-copied{
  background: var(--y);
  border-color: var(--y);
  color: var(--ink);
}
 
/* small note for desktop testers, safe to remove */
.bd-share__hint{
  color: var(--soft);
  font-size: 12px;
  margin-top: 10px;
  max-width: 800px;
}


/* ============================
   EBR — EQUIPMENT / BRANDS SECTION (split-panel switcher)
============================ */
.ebr-sec{
  position: relative;
  background: var(--ink);
  padding: 80px 0;
  overflow: hidden;
}
 
.ebr-sec::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,116,51,0.25), transparent);
}
 
.ebr-head{
  max-width: 560px;
  margin: 0 0 42px;
}
 
.ebr-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(255,116,51,0.35);
  border-radius: 30px;
  background: rgba(255,116,51,0.08);
  color: var(--y);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
 
.ebr-tag i{ font-size: 10px; }
 
.ebr-title{
  color: var(--surf);
  font-size: 28px !important;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
}
 
.ebr-title span{ color: var(--y); }
 
.ebr-desc{
  color: var(--mute);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
 
/* ============================
   Split layout
============================ */
.ebr-split{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  /*min-height: 340px;*/
}
 
/* Left — brand list */
.ebr-list{
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}
 
.ebr-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
 
.ebr-item:last-child{ border-bottom: none; }
 
.ebr-item::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--y);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
 
.ebr-item:hover{
  background: rgba(255,116,51,0.05);
}
 
.ebr-item.ebr-is-active{
  background: rgba(255,116,51,0.09);
}
 
.ebr-item.ebr-is-active::before{
  transform: scaleY(1);
}
 
.ebr-item-mark{
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--mute);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
 
.ebr-item.ebr-is-active .ebr-item-mark{
  color: var(--y);
  border-color: rgba(255,116,51,0.4);
  background: rgba(255,116,51,0.1);
}
 
.ebr-item-txt p{
  margin: 0;
}
 
.ebr-item-name{
  color: var(--surf);
  font-size: 15px;
  font-weight: 700;
}
 
.ebr-item-role{
  color: var(--mute);
  font-size: 12px;
  margin-top: 2px !important;
}
 
/* Right — detail panel */
.ebr-panel{
  position: relative;
  padding: 44px 46px;
}
 
.ebr-pane{
  display: none;
}
 
.ebr-pane.ebr-is-active{
  display: block;
  animation: ebrFade 0.4s ease;
}
 
@keyframes ebrFade{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}
 
.ebr-pane-mark img{
  width: 160px;
  /*height: 64px;*/
  margin: 0px 30px 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0%; 
  color: var(--y);
  font-size: 20px;
  font-weight: 800;
}
 
/* swap .ebr-item-mark / .ebr-pane-mark inner text for an <img> once
   real brand logo files are supplied */
 
.ebr-pane-role{
  color: var(--y);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
 
.ebr-pane-name{
  color: var(--surf);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 16px;
}
 
.ebr-pane-text{
  color: var(--mute);
  font-size: 14.5px;
  line-height: 1.8;
  /*max-width: 480px;*/
  margin: 0 0 26px;
}
 
.ebr-pane-link{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--y);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease, gap 0.3s ease;
}
 
.ebr-pane-link i{
  font-size: 12px;
  transition: transform 0.3s ease;
}
 
.ebr-pane-link:hover{
  background: var(--y2);
  gap: 12px;
}
 
.ebr-pane-link:hover i{
  transform: translateX(3px);
}
 
/* Responsive */
@media (max-width: 767px){
  .ebr-split{
    grid-template-columns: 1fr;
  }
  .ebr-list{
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
  }
  .ebr-item{
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 16px 10px;
    gap: 8px;
  }
  .ebr-item::before{
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
  }
  .ebr-item.ebr-is-active::before{
    transform: scaleX(1);
  }
  .ebr-item-role{
    display: none;
  }
  .ebr-item-name{
    font-size: 12.5px;
  }
  .ebr-panel{
    padding: 32px 24px;
  }
  .ebr-pane-name{
    font-size: 20px;
  }
}
 
@media (max-width: 575px){
  .ebr-sec{ padding: 55px 0; }
  .ebr-title{ font-size: 23px; }
  .ebr-item-mark{
    width: 32px;
    height: 32px;
    font-size: 10px;
  }
}

/* ============================
   TM — TEAM SECTION
============================ */
.tm-sec{
  background: var(--ink);
  padding: 80px 0;
}

/* Head — tag + split title/desc row */
.tm-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(255,116,51,0.35);
  border-radius: 30px;
  background: rgba(255,116,51,0.08);
  color: var(--y);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tm-tag i{ font-size: 10px; }

.tm-head-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}

.tm-title{
  color: var(--surf);
  font-size: 42px !important;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  max-width: 460px;
}

.tm-title span{ color: var(--y); }

.tm-desc{
  color: var(--mute);
  font-size: 15px;
  line-height: 1.75;
  max-width: 340px;
  margin: 0;
  text-align: right;
}

/* Cards */
.tm-card{
  position: relative;
}

.tm-photo{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}

.tm-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.tm-photo:hover img{
  transform: scale(1.05);
  filter: brightness(0.7);
}

.tm-info{
  padding: 20px 4px 0;
}

.tm-name{
  color: var(--surf);
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
}

.tm-status-wrap{
  position: relative;
  height: 20px;
  overflow: hidden;
}

.tm-role,
.tm-contact{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 13.5px;
  font-weight: 600;
  margin: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.tm-role{
  color: var(--mute);
  opacity: 1;
  transform: translateY(0);
}

.tm-contact{
  color: var(--y);
  opacity: 0;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  gap: 7px;
}

.tm-contact i{ font-size: 11px; }

.tm-photo:hover ~ .tm-info .tm-role{
  opacity: 0;
  transform: translateY(-100%);
}

.tm-photo:hover ~ .tm-info .tm-contact{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px){
  .tm-head-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .tm-desc{
    text-align: left;
    max-width: none;
  }
  .tm-title{
    font-size: 32px;
    max-width: none;
  }
}

@media (max-width: 575px){
  .tm-sec{ padding: 55px 0; }
  .tm-title{ font-size: 27px; }
}


.story-block h2{
    margin-top:45px;
}
.story-block h3{
    margin-top:45px;
}
.story-block h4{
    
}
.story-block h5{
    
}
.story-block h6{
    
}


















@media screen and (max-width: 767px) {
  .thrills-viewall{
      display:none;
  }
  .sk-stats{
      display:block;
  }
  .promo-sport{
      font-size:50px;
  }
  .wcu-mini-stats {
    display: flex;
        gap: 10px;
    }
  
}








