:root {
  --primary-deep: #0D2B4F;
  --primary-dark: #123D6B;
  --primary: #1C68B5;
  --primary-light: #3A8BD4;
  --primary-bg: #E8F3FC;
  --secondary: #E8B55A;
  --secondary-dark: #D49A2E;
  --secondary-dim: #B87D15;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --grey: #E8E8E8;
  --text: #212121;
  --text-2: #3D3D3D;
  --text-3: #6B6B6B;
  --border: rgba(33, 33, 33, .08);
  --nav-h: 64px;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
}

.feat-ico .icon,
.deal-ico .icon,
.sector-ico .icon,
.ci2-ico .icon {
  width: 60%;
  height: 60%;
}

.info-ico .icon {
  width: 1em;
  height: 1em;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(13, 43, 79, .4);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  will-change: transform;
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li a {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  padding: 0 1.1rem;
  line-height: var(--nav-h);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--secondary-dark);
  color: var(--primary-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .8rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  margin-left: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* ── PAGES ── */
.page {
  display: none;
  /*padding-top: var(--nav-h);*/
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec {
  padding: 5.5rem 0;
}

.sec-grey {
  background: var(--off-white);
}

.sec-dark {
  background: var(--primary-deep);
}

.sec-navy {
  background: var(--primary-dark);
}

.wwd-header{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:end;
  margin-bottom:3rem;
}

/* ── TYPE ── */
.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: .75rem;
}

.eyebrow-w {
  color: var(--secondary);
}

.h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--white);
}

.h1 em {
  font-style: italic;
  color: var(--secondary);
}

.h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--primary-deep);
}

.h2-w {
  color: var(--white);
}

.h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--primary-deep);
}

.h3-w {
  color: var(--white);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 640px;
}

.lead-w {
  color: rgba(255, 255, 255, .6);
}

.bar {
  width: 40px;
  height: 3px;
  background: var(--secondary-dark);
  margin: 1.2rem 0 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.btn:active {
  transform: scale(.95);
}

.btn-gold {
  background: var(--secondary-dark);
  color: var(--primary-deep);
  border-color: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.btn-dark {
  background: var(--primary-deep);
  color: var(--white);
  border-color: var(--primary-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: .85rem;
}

/* ── FLOW BUTTON ── */

.flow-btn {
  --flow-arr-w: 16px;
  --flow-circle-bg: var(--primary-deep);
  transition: border-radius .6s cubic-bezier(.23,1,.32,1),
              border-color .6s cubic-bezier(.23,1,.32,1),
              color .6s cubic-bezier(.23,1,.32,1),
              transform .3s;
}

.btn.flow-btn:hover,
.nav-cta.flow-btn:hover,
.book-lnk.flow-btn:hover {
  border-radius: 12px;
  border-color: transparent;
  color: #fff;
}

.flow-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--flow-arr-w);
  height: var(--flow-arr-w);
  z-index: 9;
  stroke: currentColor;
  fill: none;
  transition: all .8s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}

.flow-arr-l { left: -25%; }
.flow-arr-r { right: 1rem; }

.flow-btn:hover .flow-arr-l { left: 1rem; }
.flow-btn:hover .flow-arr-r { right: -25%; }

.flow-txt {
  position: relative;
  z-index: 1;
  translate: -12px 0;
  transition: translate .8s ease-out;
}

.flow-btn:hover .flow-txt {
  translate: 12px 0;
}

.flow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--flow-circle-bg, var(--primary-deep));
  opacity: 0;
  pointer-events: none;
  transition: width .8s cubic-bezier(.19,1,.22,1),
              height .8s cubic-bezier(.19,1,.22,1),
              opacity .8s cubic-bezier(.19,1,.22,1);
}

.flow-btn:hover .flow-circle {
  width: 450px;
  height: 450px;
  opacity: 1;
}

/* Variant circle colors */
.btn-gold.flow-btn {
  --flow-circle-bg: var(--primary-deep);
}
.btn-dark.flow-btn {
  --flow-circle-bg: var(--primary);
}
.btn-ghost.flow-btn {
  --flow-circle-bg: var(--primary);
}
.btn-outline.flow-btn {
  --flow-circle-bg: rgba(255,255,255,.2);
}
.nav-cta.flow-btn {
  --flow-arr-w: 14px;
}
.book-lnk.flow-btn {
  --flow-circle-bg: var(--secondary-dark);
}
.book-lnk.flow-btn:hover {
  color: #fff;
}

/* ── HERO ── */
.hero {
  background: var(--primary-deep);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  padding-top: calc(var(--nav-h) + 3rem);
}

#hero-beams {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .3;
}

#hero-beams canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(28, 104, 181, .18), transparent);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-desc {
  font-size:1.08rem;
  line-height:1.8;
  max-width:520px;
  margin-top:1.5rem;
  color: #ffffff !important;
}

.hero-tag {
  display: inline-flex;
  background: rgba(200, 150, 62, .12);
  border: 1px solid rgba(200, 150, 62, .25);
  padding: .4rem 1rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
}

.hero-tag span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary-dark);
}

.hero-btns {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ── HERO CARDS CAROUSEL ── */

.hero-cards-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero-cards-wrap {
  width: 100%;
  height: 320px;
  perspective: 1200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-cards {
  position: relative;
  width: 360px;
  height: 504px;
}

.hc {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  transition: transform .7s cubic-bezier(.34,1.56,.64,1),
              opacity .7s ease,
              filter .7s ease;
  backface-visibility: hidden;
  transform: translateX(var(--tx, 0px)) translateZ(var(--tz, 0px)) rotateY(var(--ry, 0deg)) scale(var(--sc, 1));
}

.hc:hover {
  transform: translateX(var(--tx, 0px)) translateZ(var(--tz, 0px)) rotateY(var(--ry, 0deg)) scale(var(--sc, 1)) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.hc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .2;
}

.hc-pat {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .12;
}

.hc-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 16px;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.hc:hover .hc-glow {
  opacity: 1;
}

.hc-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(13,43,79,.85) 0%, rgba(13,43,79,.3) 50%, transparent 100%);
}

.hc-ico {
  color: var(--secondary);
  margin-bottom: .5rem;
}

.hc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}

.hc-num span {
  color: var(--secondary);
}

.hc-num-sm {
  font-size: 1.3rem;
  line-height: 1.2;
}

.hc-label {
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-top: .35rem;
  letter-spacing: .04em;
}

/* Per-card backgrounds */
.hc[data-metric="25"] .hc-bg {
  background: linear-gradient(145deg, #0D2B4F 0%, #1C68B5 60%, #3A8BD4 100%);
}
.hc[data-metric="25"] .hc-pat {
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.04) 12px, rgba(255,255,255,.04) 13px);
}

.hc[data-metric="7.6K"] .hc-bg {
  background: linear-gradient(145deg, #1C68B5 0%, #3A8BD4 50%, #5BA8E0 100%);
}
.hc[data-metric="7.6K"] .hc-pat {
  background-image: radial-gradient(circle at 20px 20px, rgba(255,255,255,.05) 2px, transparent 2px);
  background-size: 30px 30px;
}

.hc[data-metric="15"] .hc-bg {
  background: linear-gradient(145deg, #0D2B4F 0%, #1C68B5 40%, #E8B55A 100%);
}
.hc[data-metric="15"] .hc-pat {
  background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 21px),
              repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 21px);
  background-size: 40px 40px;
}

.hc[data-metric="fee"] .hc-bg {
  background: linear-gradient(145deg, #123D6B 0%, #0D2B4F 50%, #1C68B5 100%);
}
.hc[data-metric="fee"] .hc-pat {
  background: repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(232,181,90,.05) 15px, rgba(232,181,90,.05) 16px);
}

/* Glow colors per card */
.hc[data-metric="25"] .hc-glow { box-shadow: 0 0 40px rgba(28,104,181,.3), inset 0 0 40px rgba(28,104,181,.1); }
.hc[data-metric="7.6K"] .hc-glow { box-shadow: 0 0 40px rgba(58,139,212,.3), inset 0 0 40px rgba(58,139,212,.1); }
.hc[data-metric="15"] .hc-glow { box-shadow: 0 0 40px rgba(232,181,90,.2), inset 0 0 40px rgba(232,181,90,.08); }
.hc[data-metric="fee"] .hc-glow { box-shadow: 0 0 40px rgba(28,104,181,.25), inset 0 0 40px rgba(28,104,181,.08); }

/* ── HERO NOTE ── */

.hero-note {
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.2rem;
  margin-top: 1.5rem;
  transition: background .3s;
}

.hero-note:hover {
  background: var(--primary-light);
}

.hero-note span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
}

/* ── MARQUEE X ── */
.marquee-x {
  position: relative;
  height: 200vh;
  background: white;
}

.marquee-x-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.marquee-x-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  padding: 1.5rem 0;
  will-change: transform;
  background: var(--secondary-dark);
}

.marquee-x-ribbon[data-dir="-1"] {
  transform: translate(-50%, -50%) rotate(6deg);
  opacity: .35;
}

.marquee-x-ribbon[data-dir="1"] {
  transform: translate(-50%, -50%) rotate(-6deg);
}

.marquee-x-ribbon > div {
  display: inline-flex;
  white-space: nowrap;
}

.marquee-x-inner {
  display: inline-flex;
  gap: 4rem;
  align-items: center;
}

.marquee-x-inner span {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.marquee-x-inner em {
  font-style: normal;
  color: rgba(33, 33, 33, .35);
}

/* ── VIDEO REVEAL SECTION ── */
.sec-video-reveal {
  position: relative;
  overflow: hidden;
  background: var(--white);
  clip-path: inset(0% round 0px);
}

.sec-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.sec-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,43,79,.85) 0%, rgba(13,43,79,.4) 50%, rgba(13,43,79,.75) 100%);
  pointer-events: none;
}

.sec-video-reveal .wrap {
  position: relative;
  z-index: 2;
}

.sec-video-reveal .h2 {
  color: var(--white);
}

.sec-video-reveal .eyebrow {
  color: var(--secondary);
}

.sec-video-reveal .offer {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
}

.sec-video-reveal .offer-featured {
  border-color: var(--secondary);
}

.sec-video-reveal .offer-fee {
  background: rgba(245,245,245,.85);
}

.sec-video-reveal > .wrap > p {
  color: rgba(255,255,255,.55);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--primary-dark);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-text {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.4;
}

/* ── FEATURE CARDS ── */
.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1);
}

.feat:hover {
  box-shadow: 0 12px 40px rgba(28, 104, 181, .1);
  transform: translateY(-4px);
  border-color: var(--secondary);
}

.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.feat:hover::before {
  transform: scaleX(1);
}

.feat-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.feat-ico {
  width: 44px;
  height: 44px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feat-t {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: .5rem;
}

.feat-d {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── OFFER STACK ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.offer {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  position: relative;
}

.offer-featured {
  border: 2px solid var(--secondary-dark);
}

.offer-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-dark);
  color: var(--primary-deep);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  white-space: nowrap;
}

.offer-tier {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.offer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--primary-deep);
  margin-bottom: .6rem;
  line-height: 1.2;
}

.offer-for {
  font-size: .85rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  border-left: 3px solid var(--secondary-dark);
  padding-left: .8rem;
}

.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.8rem;
}

.offer-features li {
  font-size: .88rem;
  color: var(--text-2);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.offer-features li::before {
  content: '\2192';
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

.offer-fee {
  background: var(--off-white);
  padding: .9rem 1rem;
  font-size: .82rem;
  color: var(--primary-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.offer-fee span {
  color: var(--primary);
}

/* ── CASE STUDY ── */
.case-study {
  height: 550vh;
  position: relative;
  background: var(--primary-deep);
  overflow: clip;
}

.cs-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.cs-wm-text {
  display: inline-block;
  white-space: nowrap;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 10rem);
  font-weight: 700;
  color: rgba(255, 255, 255, .035);
  padding-left: 2rem;
  line-height: 1.1;
}

.cs-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.cs-phase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
}

.cs-phase-inner {
  max-width: 800px;
  text-align: center;
  width: 100%;
}

.cs-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  border: 1px solid rgba(200, 150, 62, .3);
  padding: .4rem 1rem;
  margin-bottom: 1.5rem;
}

.cs-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  filter: blur(8px);
  opacity: 0.4;
}

.cs-desc-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .12);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 0% 100%;
}

/* ── TIMELINE ── */
.cs-timeline-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cs-timeline {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 80vh;
}

.tl-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, .08);
}

.tl-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg, var(--secondary), var(--secondary-dark));
  box-shadow: 0 0 12px rgba(232, 181, 90, .4), 0 0 30px rgba(232, 181, 90, .2);
  z-index: 1;
}

.tl-item {
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
  align-items: flex-start;
  opacity: 0;
}

.tl-item[data-tl="1"] { top: 2%; }
.tl-item[data-tl="2"] { top: 27%; }
.tl-item[data-tl="3"] { top: 52%; }
.tl-item[data-tl="4"] { top: 77%; }

.tl-item[data-tl="1"],
.tl-item[data-tl="3"] {
  justify-content: flex-start;
  padding-left: calc(50% + 2rem);
  padding-right: 5%;
}

.tl-item[data-tl="2"],
.tl-item[data-tl="4"] {
  justify-content: flex-end;
  padding-left: 5%;
  padding-right: calc(50% + 2rem);
}

.tl-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-deep);
  border: 3px solid var(--secondary);
  box-shadow: 0 0 10px rgba(232, 181, 90, .3);
  z-index: 2;
}

.tl-content {
  max-width: 280px;
}

.tl-content.right {
  text-align: left;
}

.tl-content.left {
  text-align: right;
}

.tl-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: .4rem;
}

.tl-text {
  font-size: .85rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
}

/* ── METRICS ── */
.cs-metrics {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-metric {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(232, 181, 90, .2);
  border-radius: .4rem;
  backdrop-filter: blur(2px);
  padding: .7rem 1rem;
  max-width: 170px;
  opacity: 0;
}

.cs-metric-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--secondary);
  line-height: 1.1;
}

.cs-metric-lbl {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: .2rem;
}

.cs-metric-tr1 { top: 20%; left: 2%; transform: rotate(4deg); }
.cs-metric-tr2 { top: 20%; right: 2%; transform: rotate(-3deg); }
.cs-metric-bl { bottom: 12%; left: 2%; transform: rotate(-5deg); }
.cs-metric-br { bottom: 5%; right: 2%; transform: rotate(3deg); }

@media (max-width: 960px) {
  .case-study {
    height: auto;
    padding: 0;
  }
  .cs-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .cs-phase {
    position: relative;
    inset: auto;
    padding: 2.5rem 1.2rem;
    opacity: 1 !important;
    pointer-events: auto;
    min-height: auto;
    transform: none !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .cs-phase-inner {
    max-width: 100%;
  }
  .cs-badge {
    font-size: .6rem;
    padding: .3rem .8rem;
  }
  .cs-heading {
    filter: none !important;
    opacity: 1 !important;
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .cs-desc-text {
    background-image: none !important;
    color: rgba(255,255,255,.65) !important;
    font-size: .95rem;
    margin-bottom: 1rem;
  }
  .cs-timeline-wrap {
    height: auto;
    display: block;
    padding: 1rem 0;
  }
  .cs-timeline {
    height: auto;
    padding-left: 2rem;
  }
  .tl-line, .tl-progress {
    left: 0;
    transform: none;
  }
  .tl-progress {
    height: 100% !important;
  }
  .tl-item {
    position: relative;
    top: auto !important;
    left: auto;
    padding: 1rem 0 1rem 2rem !important;
    opacity: 1 !important;
    justify-content: flex-start !important;
    margin-bottom: 1.2rem;
  }
  .tl-dot {
    left: 0;
    top: 1.1rem;
    width: 12px;
    height: 12px;
  }
  .tl-content {
    max-width: none;
  }
  .tl-content.left, .tl-content.right {
    text-align: left;
  }
  .cs-metrics {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    padding: .5rem 0;
  }
  .cs-metric {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    max-width: none;
    padding: .6rem .8rem;
  }
  .cs-watermark {
    display: none;
  }
}

/* ── MIIREP SCORECARD ── */
.col-2-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .col-2-cont { grid-template-columns: 1fr; gap: 2.5rem; }
  .sc-inner { padding: 1.5rem; }
  .sc-country { font-size: 1.8rem; }
  .dim-row { grid-template-columns: 1fr auto 80px; gap: .5rem; }
  .dim-name { font-size: .72rem; }
  .sc-ring { width: 60px; height: 60px; }
  .sc-badge-num { font-size: 1.1rem; }
  .sc-verdict-text { font-size: .75rem; }
}

.miirep-preview {
  background: var(--off-white);
  padding: 5.5rem 0;
}

/* ── Card ── */
.scorecard {
  position: relative;
  background: var(--primary-deep);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.06);
}

.sc-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,181,90,.08) 0%, transparent 70%);
  pointer-events: none;
}

.sc-inner {
  position: relative;
  padding: 2rem 2.2rem;
  z-index: 1;
}

/* ── Head ── */
.sc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .6rem;
}

.sc-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.15);
  padding: .25rem .65rem;
  border-radius: 100px;
}

/* ── Ring ── */
.sc-ring {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.sc-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sr-bg {
  fill: none;
  stroke: rgba(255,255,255,.06);
  stroke-width: 5;
}

.sr-fill {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  filter: drop-shadow(0 0 6px rgba(232,181,90,.3));
}

.sc-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sc-badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}

.sc-badge-lbl {
  font-size: .45rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 1px;
}

.sc-country {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: .15rem;
}

.sc-meta {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

.sc-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 60%, transparent);
  margin: 1.25rem 0;
}

/* ── Dimensions ── */
.sc-body {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.dim-row {
  display: grid;
  grid-template-columns: 1fr auto 100px;
  gap: .75rem;
  align-items: center;
}

.dim-name {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}

.dim-score {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.dim-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
}

.dim-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: var(--c, var(--secondary));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ── Verdict ── */
.sc-verdict {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid rgba(232,181,90,.25);
}

.sc-verdict-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .3rem;
}

.sc-verdict-text {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

/* ── Button ── */
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  padding: .65rem 1.2rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--secondary);
  background: transparent;
  border: 1px solid rgba(232,181,90,.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.sc-btn:hover {
  background: rgba(232,181,90,.08);
  border-color: rgba(232,181,90,.4);
  gap: .7rem;
}

.sc-btn svg {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.sc-btn:hover svg {
  transform: translateX(3px);
}

/* ── QUOTE PARALLAX ── */
.quote-parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-deep);
}

.quote-bg {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  right: 0;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-bg-fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--primary-deep);
}

.quote-bg img[style*="display: none"] ~ .quote-bg-fallback,
.quote-bg img:not([src]) ~ .quote-bg-fallback {
  display: block;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,43,79,.85) 0%, rgba(13,43,79,.3) 40%, rgba(13,43,79,.75) 100%);
}

.quote-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  max-width: 720px;
  width: 90%;
  opacity: 0;
  transform: translateY(60px);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.quote-card-icon {
  color: var(--secondary-dark);
  margin-bottom: 1rem;
  opacity: .4;
}

.quote-card-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--primary-deep);
  font-style: italic;
  border-left: 4px solid var(--secondary-dark);
  padding-left: 1.5rem;
}

.quote-card-attr {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: 1rem;
  padding-left: 1.5rem;
  letter-spacing: .04em;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--primary-deep);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#ctaCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.m-cta-pattern {
  display: none;
  opacity: .25;
  position: absolute;
  margin: auto;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 200%;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(28, 104, 181, .15), transparent);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  opacity: 1;
}

.final-cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.final-cta-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.final-cta-note {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  margin-top: 1.2rem;
  font-style: italic;
}

/* ── CTA + Footer reveal ── */
#ctaFooterSection {
  position: relative;
  min-height: 200vh;
  background: #111;
}
#ctaFooterPin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
#ctaFooterPin > .final-cta {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#ctaFooterPin > .final-cta .wrap {
  width: 100%;
}
#ctaFooterPin > footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

/* ── DEALS STACK ── */
.deals-stack-section {
  background: var(--off-white);
  padding: 5.5rem 0 0;
  position: relative;
}

.deals-stack {
  position: relative;
}

.deals-stack-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-card {
  position: absolute;
  width: min(820px, 88%);
  height: 56vh;
  min-height: 320px;
  max-height: 420px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.10);
  background: #fff;
  will-change: transform, opacity;
  transform-origin: center center;
}

.deal-card-img {
  position: relative;
  overflow: hidden;
}

.deal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,79,.3), transparent 50%);
}

.deal-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-card-ico {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.deal-card-sector {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .4rem;
}

.deal-card-t {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.deal-card-d {
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.deal-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--primary-bg);
  color: var(--primary);
  padding: .18rem .5rem;
  margin-top: .7rem;
}

/* ── MIIREP BAND (services page) ── */
.miirep-band {
  background: var(--primary-deep);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.miirep-band::after {
  content: 'MIIREP';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: 14rem;
  color: rgba(255, 255, 255, .02);
  pointer-events: none;
}

.score-row {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.score-c {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .3rem;
  text-align: center;
}

.score-v {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--secondary);
  text-align: center;
}

.score-b {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  margin-top: .4rem;
}

.score-f {
  height: 100%;
  background: var(--secondary-dark);
  width: 0;
}

.mc-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin-top: 2rem;
}

.mc {
  background: var(--primary-deep);
  padding: 2rem 1.5rem;
  border-bottom: 3px solid transparent;
}

.mc-l {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .4rem;
}

.mc-n {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .6rem;
}

.mc-d {
  font-size: .83rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ── BOOKS 3D ── */
.books-3d {
  position: relative;
  background: var(--primary-deep);
  overflow: hidden;
}

.books-3d-sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.books-3d-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.books-3d-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ── Books 3D marquee heading ── */
.b3d-marquee {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.b3d-marquee-track {
  display: flex;
  width: max-content;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.07);
  white-space: nowrap;
}

.books-3d-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.b3d-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34%;
  max-width: 360px;
  opacity: 0;
  pointer-events: none;
}

.b3d-content.left {
  left: 5%;
  text-align: left;
}

.b3d-content.right {
  right: 5%;
  text-align: right;
}

.b3d-cover-mobile { display: none; }
.b3d-content .book-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  margin-bottom: 1.2rem;
}

.b3d-content .bb-pub {
  background: var(--secondary-dark);
  color: var(--primary-deep);
}

.b3d-content .bb-soon {
  border: 1px solid var(--secondary-dark);
  color: var(--secondary-dark);
}

.b3d-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.b3d-body {
  font-size: .88rem;
  color: rgba(255, 255, 255, .52);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.book-lnk {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: .55rem 1.3rem;
  border: 1.5px solid var(--secondary-dark);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .3s;
  pointer-events: auto;
}

.book-lnk:active {
  transform: scale(.95);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.bio p {
  font-size: .96rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.bio h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--primary-deep);
  margin: 2.5rem 0 .8rem;
}

.cred-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ci2 {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .9rem;
  align-items: start;
}

.ci2-ico {
  width: 34px;
  height: 34px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.ci2-lbl {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .15rem;
}

.ci2-val {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.4;
}

.vals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.val {
  background: var(--white);
  padding: 2rem;
}

.val-t {
  font-size: .93rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: .5rem;
}

.val-d {
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── SERVICES ── */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.svc-row {
  background: var(--white);
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.7rem 2rem;
}

.svc-n {
  font-size: .7rem;
  font-weight: 800;
  color: var(--text-3);
}

.svc-t {
  font-size: .97rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: .3rem;
}

.svc-d {
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.6;
}

.svc-tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.stag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--primary-bg);
  color: var(--primary);
  padding: .17rem .48rem;
}

.svc-arr {
  color: var(--text-3);
}

.eng-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
}

.eng {
  background: var(--primary-deep);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
}

.eng-step {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 1.5rem;
}

.eng-t {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .7rem;
}

.eng-d {
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65;
}

/* ── INDUSTRIES ── */
.sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sector {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1.1rem;
  transition: box-shadow .3s, transform .3s;
}

.sector:hover {
  box-shadow: 0 8px 28px rgba(28, 104, 181, .1);
  transform: translateY(-2px);
}

.sector-ico {
  width: 46px;
  height: 46px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.sector-t {
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: .35rem;
}

.sector-d {
  font-size: .84rem;
  color: var(--text-2);
  line-height: 1.6;
}

.mkts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.mkt {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.7rem;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}

.mkt:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.mkt-primary {
  border-top: 3px solid var(--secondary-dark);
}

.mkt-flag {
  font-size: 1.8rem;
  margin-bottom: .7rem;
}

.mkt-name {
  font-size: .98rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: .2rem;
}

.mkt-focus {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .55rem;
}

.mkt-d {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.55;
}

.mkt-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--secondary-dark);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-deep);
  padding: .17rem .45rem;
}

/* ── CONTACT ── */
.ct-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.f-grp {
  margin-bottom: 1.3rem;
}

.f-lbl {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: .4rem;
}

.f-in,
.f-ta,
.f-sel {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: .7rem 1rem;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.f-sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233C4455' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.f-in:focus,
.f-ta:focus,
.f-sel:focus {
  border-color: var(--primary);
}

.f-ta {
  resize: vertical;
  min-height: 120px;
}

.f-ok {
  display: none;
  background: var(--primary-bg);
  border: 1.5px solid var(--primary);
  padding: 1.2rem;
  margin-top: .8rem;
  font-size: .9rem;
  color: var(--primary-deep);
}

.info-card {
  background: var(--primary-deep);
  padding: 2.4rem;
}

.info-logo {
  width: 88px;
  margin-bottom: 1.8rem;
  filter: brightness(0) invert(1);
}

.info-h {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 1.7rem;
}

.info-item {
  display: flex;
  gap: .85rem;
  margin-bottom: 1.4rem;
}

.info-ico {
  color: var(--secondary-dark);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.info-lbl {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: .12rem;
}

.info-val {
  font-size: .9rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.5;
}

.info-val a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
}

.info-val a:hover {
  color: var(--secondary);
}

.soc-row {
  display: flex;
  gap: .55rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.soc-a {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .4rem .85rem;
  text-decoration: none;
  transition: border-color .3s, color .3s;
}

.soc-a:hover {
  border-color: var(--secondary-dark);
  color: var(--secondary);
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}

.faq-q {
  font-size: .97rem;
  font-weight: 600;
  color: var(--primary-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform .3s;
}

.faq.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.75;
  display: none;
  padding-top: .6rem;
}

.faq.open .faq-a {
  display: block;
}

/* ── PAGE HERO ── */
.pg-hero {
  background: var(--primary-deep);
  padding: calc(5rem + var(--nav-h)) 0 4rem;
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(28, 104, 181, .1), transparent);
}

.pg-inner {
  position: relative;
  z-index: 1;
}

.pg-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: .5rem 0 1rem;
}

.pg-p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .58);
  max-width: 560px;
  line-height: 1.8;
}

.pg-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--secondary-dark), transparent);
  margin-top: 4rem;
}

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 3rem 0 2rem;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ft-logo {
  height: 30px;/*
  filter: brightness(0) invert(1);*/
  opacity: .90;
  margin-bottom: 1rem;
  display: block;
}

.ft-tag {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  max-width: 240px;
}

.ft-col-h {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1rem;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ft-links a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  cursor: pointer;
  transition: padding-left .3s;
}
.ft-links a:hover {
  padding-left: 4px;
}

.ft-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: .8rem;
}

.ft-copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .04em;
}
.ft-wordmark {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.ft-wordmark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.35;
}

/* ── ANIMATION UTILITIES ── */
[data-reveal] {
  opacity: 0;
}

[data-reveal].is-revealed {
  opacity: 1;
}

.reveal-char {
  display: inline-block;
}

@media (min-width: 961px) {
  .reveal-group > * {
    opacity: 0;
  }
}

.parallax-wrap {
  will-change: transform;
  position: relative;
}

/* ── CURSOR ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--secondary-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--secondary-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  transition: width .3s, height .3s, border-color .3s, background .3s;
}

.cursor-ring.is-active {
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  background: rgba(28, 104, 181, .08);
}

/* ── PAGE TRANSITION ── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-deep);
  pointer-events: none;
  transform: translateY(100%);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav {
    padding: 0 1.2rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--primary-deep);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, .05);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    line-height: 1;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
  }
  .nav-links li a::after {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-right {
    position: fixed;
  }
  .hamburger {
    display: flex;
  }
  .wrap {
    padding: 0 1.2rem;
  }
  .sec {
    padding: 3.5rem 0;
  }
  .wwd-header{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-inner,
  .about-grid,
  .ct-grid,
  .ft-top {
    grid-template-columns: 1fr;
  }
  .hero-cards-wrap {
    height: 260px;
  }
  .hero-cards {
    width: 160px;
    height: 230px;
  }
  .hc-num {
    font-size: 2rem;
  }
  .hc-num-sm {
    font-size: 1rem;
  }
  .feats,
  .mc-row {
    grid-template-columns: 1fr;
  }
  .sectors {
    grid-template-columns: 1fr;
  }
  .mkts {
    grid-template-columns: repeat(2, 1fr);
  }
  .eng-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vals {
    grid-template-columns: 1fr;
  }
  .svc-row {
    grid-template-columns: 42px 1fr;
  }
  .svc-arr {
    display: none;
  }
  .b3d-marquee {
    display: none;
  }
  .b3d-cover-mobile {
    display: block;
    margin-bottom: 1.2rem;
  }
  .b3d-cover-mobile img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  }
  .books-3d-sticky {
    height: auto;
    overflow: visible;
  }
  .b3d-content {
    width: 80%;
    max-width: 340px;
  }
  .b3d-content.left {
    left: 10%;
  }
  .b3d-content.right {
    right: 10%;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .dim-row {
    grid-template-columns: 1fr auto 80px;
  }
  .dim-weighted {
    display: none;
  }
  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }
  .marquee-x {
    height: 12rem;
  }
  .marquee-x-sticky {
    height: 12rem;
  }
  .marquee-x-ribbon {
    padding: .75rem 0;
  }
  .marquee-x-inner {
    gap: 1rem;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  #ctaCanvas {
    display: none;
  }
  .m-cta-pattern {
  display: block;
  }
  #ctaFooterSection {
    min-height: auto;
  }
  #ctaFooterPin {
    position: relative;
    height: auto;
  }
  #ctaFooterPin > .final-cta {
    position: relative;
    min-height: 60vh;
  }
  #ctaFooterPin > footer {
    position: relative;
  }
  /* Quote section mobile */
  .quote-parallax {
    height: auto;
    min-height: 100vh;
    padding: 5rem 1.2rem;
  }
  .quote-card {
    padding: 1.8rem;
    width: 100%;
    opacity: 1;
    transform: none;
  }
  .quote-card-text {
    font-size: 1.05rem;
    padding-left: 1.2rem;
  }
  .quote-card-attr {
    padding-left: 1.2rem;
  }

  /* Deals mobile */
  .deals-stack-section {
    padding: 3.5rem 0 0;
  }
  .deals-stack {
    height: auto !important;
    min-height: 0 !important;
  }
  .deals-stack-inner {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    max-width: 90% !important;
    margin: auto;
  }
  .deal-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    margin: 0 0 1.5rem !important;
    width: 100% !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    transform: none !important;
    opacity: 1 !important;
    border-radius: 12px;
  }
  .deal-card-img {
    height: 160px;
  }
  .deal-card-body {
    padding: 1.2rem 1.4rem;
  }
  .deal-card-t {
    font-size: .92rem;
  }
  .deal-card-d {
    font-size: .8rem;
  }
}

@media (max-width: 500px) {
  .marquee-x {
    height: 10rem;
  }
  .marquee-x-sticky {
    height: 10rem;
  }
  .mkts,
  .eng-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

}
