/* ═══════════════════════════════════════
   HERO CINEMATIC MODULE
═══════════════════════════════════════ */
.home-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* multi-video background */
.home-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.home-hero-video.active {
  opacity: 1;
  z-index: 1;
}

.home-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

/* content layer */
.home-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--px);
}

.home-hero-hed {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
}

.home-hero-hed-static {
  font-weight: 400;
}

/* vertical word carousel — 4-word window with overflow mask */
.carousel-slot {
  overflow: hidden;
  height: 4.268em;            /* 4 × 1.067em — shows 1 above, active, 2 below */
  margin-top: -1.067em;       /* pull up so the active word aligns */
  margin-bottom: -2.134em;    /* with the static text baseline */
  display: inline-block;
  position: relative;
  text-align: left;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  /* transition driven by inline style in HeroCinematicModule.jsx */
}

.carousel-word {
  font-size: inherit;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  height: 1.067em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.carousel-word.active {
  opacity: 1;
}

.home-hero-sub {
  margin-top: 28px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

.home-hero-sub strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.home-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.btn-hero-primary {
  height: 44px;
  padding: 0 24px;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-primary:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.btn-hero-ghost {
  height: 44px;
  padding: 0 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.76);
  animation: hintBob 2.4s ease-in-out infinite;
}

@keyframes hintBob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(4px);
  }
}

.scroll-hint svg {
  opacity: 0.76;
}
/* ═══════════════════════════════════════
   SERVICE MODULE
═══════════════════════════════════════ */
.service-section {
  background: #fff;
  padding: 88px 0 40px;
}

.svc-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.container-tight {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.flex-col-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.svc-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
}

.svc-see-all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* chip row */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 81px;
}

.chip {
  position: relative;
  overflow: hidden;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s;
  user-select: none;
}

.chip:hover {
  background: rgba(0, 0, 0, 0.06);
}

.chip.active {
  background: #DDDDDD;
  border-color: #DDDDDD;
}

.chip:not(.active) .chip-label {
  opacity: 0.6;
}

.chip-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}

.chip-label {
  position: relative;
  z-index: 1;
}

/* card */
.service-card-wrapper {
  position: relative;
  margin-left: -40px;
  margin-right: -40px;
}

.service-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1360 / 825;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.65s ease;
  z-index: 1;
}

.slide-bg.active {
  opacity: 1;
}

.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ken Burns variations — assigned randomly via JS, linear so motion never stops */
.slide-bg.kb-zoom-in    { animation: kbZoomIn 5s linear forwards; }
.slide-bg.kb-zoom-out   { animation: kbZoomOut 5s linear forwards; }
.slide-bg.kb-pan-left   { animation: kbPanLeft 5s linear forwards; }
.slide-bg.kb-pan-right  { animation: kbPanRight 5s linear forwards; }
.slide-bg.kb-diag-zoom  { animation: kbDiagZoom 5s linear forwards; }

@keyframes kbZoomIn {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes kbZoomOut {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

@keyframes kbPanLeft {
  from { transform: scale(1.05) translateX(2%); }
  to   { transform: scale(1.05) translateX(-2%); }
}

@keyframes kbPanRight {
  from { transform: scale(1.05) translateX(-2%); }
  to   { transform: scale(1.05) translateX(2%); }
}

@keyframes kbDiagZoom {
  from { transform: scale(1) translate(1%, 1%); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 2;
  pointer-events: none;
}

.peninsula {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 3;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 40px;
  max-width: 568px;
  min-width: 160px;
}

.premium-shadow {
  box-shadow: none;
}

.peninsula-link {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.peninsula-link:hover {
  opacity: 0.7;
}

.peninsula-desc {
  margin-top: 8px;
  font-size: 18px;
  line-height: 21.6px;
  color: #000;
  font-weight: 400;
}
/* ═══════════════════════════════════════
   PLATFORM PILLARS MODULE
═══════════════════════════════════════ */
.pillars-section {
  background: #000;
  padding: 100px 0;
}

.pillars-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.pillars-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.pillars-hed {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}

.pillars-hed strong {
  font-weight: 700;
}

.pillars-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.38);
  max-width: 380px;
  align-self: end;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.pillar {
  background: #000;
  padding: 44px 36px;
  transition: background 0.2s;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.03);
}

.pillar-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 32px;
}

.pillar-ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
}

.pillar-arrow {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}
/* ═══════════════════════════════════════
   CCA SECTION MODULE
═══════════════════════════════════════ */
.cca-section {
  background: #fff;
  padding: 100px 0;
}

.cca-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.cca-intro {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.cca-hed {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #000;
}

.cca-hed strong {
  font-weight: 700;
}

.cca-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.5);
  align-self: end;
}

.cca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.cca-card {
  background: #fff;
  padding: 44px 36px;
}

.cca-card-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.18);
  margin-bottom: 20px;
}

.cca-card-ttl {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 14px;
}

.cca-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.45);
}
/* ═══════════════════════════════════════
   IMPACT SECTION MODULE
═══════════════════════════════════════ */
.impact-section {
  background: #000;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.impact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.impact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}

.impact-hed {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  max-width: 440px;
}

.impact-hed strong {
  font-weight: 700;
}

.impact-since {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 10px;
  letter-spacing: 0.06em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.impact-item {
  background: #000;
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.impact-item:hover {
  border-top-color: var(--accent);
  background: rgba(34, 176, 225, 0.03);
}

.impact-num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.impact-num sup {
  font-size: 26px;
  vertical-align: super;
}

.impact-lbl {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}
.case-study-module {
    height: 100vh;
    background: #fff;
    color: #000;
    overflow: hidden;
}


/* ─── SCROLL-JACKED PARALLAX STACK ─── */

.case-study-layout {
    max-width: var(--max, 1360px);
    margin: 0 auto;
    padding: 0 var(--px, 80px);
    display: flex;
    gap: 40px;
    position: relative;
    height: 100vh;
    align-items: center;
}

/* ─── PROGRESS BAR ─── */
.case-hud-sidebar {
    flex: 0 0 2px;
    display: flex;
    align-items: center;
}

.case-hud-stepper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.case-hud-dot {
    width: 2px;
    height: 36px;
    background: #e5e5e5;
    transition: background 0.3s ease;
}

.case-hud-dot.active {
    background: #000;
}

/* ─── DYNAMIC PARALLAX TRACK ─── */
.case-study-parallax-track {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.case-panel {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 109px 0 40px;
    width: 100%;
}

/* Left Column — eyebrow + title */
.case-panel-left {
    flex: 0 0 42%;
    max-width: 538px;
}

/* Right Column — description + CTA + media stacked */
.case-panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 732px;
}

.case-eyebrow {
    display: block;
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 24px;
}

.case-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    line-height: 60px;
    letter-spacing: 0;
    color: #000;
    margin: 0;
}

.case-title strong {
    font-weight: 500;
}

.case-description {
    font-size: 24px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Media Asset Box */
.case-panel-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.case-media-overlay {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    pointer-events: none;
}

.case-media-content {
    width: 100%;
    max-width: 732px;
    aspect-ratio: 732 / 412;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* ─── CTA READ MORE ─── */
.case-cta {
    margin-bottom: 24px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 49px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-read-more:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .case-study-layout {
        padding: 0 var(--px, 40px);
    }

    .case-panel {
        flex-direction: column;
        gap: 32px;
    }

    .case-panel-left {
        flex: none;
        max-width: 100%;
    }

    .case-panel-right {
        max-width: 100%;
    }

    .case-hud-sidebar {
        display: none;
    }
}
.test-section { background: #f7f7f7; padding: 100px 0; }
.test-inner { max-width: 900px; margin: 0 auto; padding: 0 var(--px); text-align: center; }
.test-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0,0,0,0.3); margin-bottom: 48px; }

.test-slider-container { display: flex; flex-direction: column; align-items: center; }

.test-slide {
  background: transparent;
  padding: 20px 0;
  width: 100%;
}

.test-quote-icon {
  font-size: 60px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  font-family: serif;
}

.test-quote-text {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(0,0,0,0.8);
  margin-bottom: 32px;
}

.test-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.test-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}

.test-org {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
}

.test-progress-selectors {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}

.test-progress-track {
  width: 60px;
  height: 3px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.test-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .test-quote-text {
    font-size: 20px;
  }
}
.v-scroll-section {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.v-scroll-inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.v-scroll-left {
  position: relative;
  width: 50%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.v-scroll-title-wrap {
  max-width: 500px;
}

.v-scroll-hed {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.v-scroll-hed strong {
  font-weight: 700;
}

.v-scroll-arrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* Panel progress dots */
.v-scroll-progress {
  display: flex;
  gap: 8px;
}

.v-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.v-scroll-dot.active {
  background: var(--accent);
}

.v-scroll-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.ubicquia.com/sites/default/files/styles/responsive_img_large/public/Pole_Camera_1.jpg.webp') center/cover no-repeat;
  opacity: 0.5;
  z-index: 1;
}

/* Right panel — centered, single card visible */
.v-scroll-right {
  position: relative;
  width: 50%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-right: 10%;
}

.v-scroll-card {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
}

.v-card-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.v-card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.v-card-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .v-scroll-left {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    align-items: flex-start;
    padding-top: 15vh;
    z-index: 4;
  }

  .v-scroll-right {
    width: 100%;
    align-items: flex-end;
    padding: 0 5% 10%;
  }
}
.featured-news-module {
  position: relative;
  width: 100%;
  height: 675px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fn-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.fn-bg-image {
  position: absolute;
  inset: -10%; /* Extra size for parallax scaling */
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.fn-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fn-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(49, 43, 36, 0.35), rgba(49, 43, 36, 0.35)),
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.fn-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fn-eyebrow {
  display: none;
}

.fn-date {
  display: none;
}

.fn-hed {
  font-size: 60px;
  font-weight: 400;
  color: #fff;
  line-height: 64px;
  margin-bottom: 50px;
}

.fn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
  background: #fff;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.fn-cta:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.fn-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.fn-cta:hover .fn-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .fn-cta {
    font-size: 13px;
    padding: 14px 24px;
  }
}
.raw-video-module {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 2000; /* Higher than Navbar z-index 1000 */
  overflow: hidden;
  background: #000;
}

.raw-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-mute-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .video-mute-btn {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
}
.faq-section {
  background: #f3f3f3;
  height: 675px;
  display: flex;
  align-items: center;
}

.faq-inner {
  max-width: var(--max, 1360px);
  margin: 0 auto;
  padding: 0 var(--px, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.faq-hed {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 60px;
  color: #000;
  flex: 0 0 auto;
  max-width: 388px;
}

.faq-hed strong {
  font-weight: 500;
}

.faq-list {
  flex: 0 0 680px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-left: auto;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  padding: 0 36px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 80px;
}

.faq-question {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  color: #22B0E1;
}

.faq-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
}

.faq-icon-inner {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: #000;
}

.faq-item.open .faq-icon-inner {
  color: #000;
}

.faq-answer-container {
  overflow: hidden;
}

.faq-answer {
  padding-top: 0;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
}

@media (max-width: 900px) {
  .faq-section {
    height: auto;
    padding: 60px 0;
  }
  .faq-inner {
    flex-direction: column;
    gap: 40px;
  }
  .faq-hed {
    font-size: 36px;
    line-height: 42px;
    max-width: none;
  }
  .faq-list {
    flex: 1 1 auto;
    width: 100%;
  }
  .faq-question {
    font-size: 18px;
  }
  .faq-answer {
    font-size: 16px;
  }
}
/* ═══════════════════════════════════════
   CTA SECTION MODULE
═══════════════════════════════════════ */
.cta-section {
  background: #000 url('https://www.ubicquia.com/sites/default/files/styles/webp/public/Ubicquia_Webpage_Connect_With_Us_BG%20illustr_2560x1920px.jpg.webp') center/cover no-repeat;
  padding: 120px var(--px);
  text-align: center;
}

.cta-hed {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 36px;
}

.cta-hed strong {
  font-weight: 700;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 44px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-accent {
  height: 44px;
  padding: 0 24px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.btn-accent:hover {
  opacity: 0.85;
}

.btn-w-outline {
  height: 44px;
  padding: 0 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-w-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.customer-quote-section {
  background: #fff;
  height: 675px;
  display: flex;
  align-items: center;
}

.cq-inner {
  max-width: var(--max, 1360px);
  margin: 0 auto;
  padding: 0 var(--px, 80px);
  text-align: center;
}

.cq-headline {
  font-size: 52px;
  font-weight: 300;
  line-height: 60px;
  color: #000;
  margin-bottom: 24px;
}

.cq-headline strong {
  font-weight: 500;
}

.cq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 48px;
}

.cq-cta:hover {
  background: #000;
  color: #fff;
}

.cq-cards {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 calc(50% - 255px);  /* half viewport minus half card — enough room for every card to center */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cq-cards::-webkit-scrollbar {
  display: none;
}

.cq-card {
  flex: 0 0 510px;
  min-width: 320px;
  height: 287px;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cq-quote {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
  font-style: italic;
  margin-bottom: 24px;
}

.cq-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #22B0E1;
  text-transform: uppercase;
}

.cq-org {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
}

.cq-progress {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.cq-progress-bar {
  width: 25px;
  height: 2px;
  background: #787878;
  border-radius: 0;
}

.cq-progress-bar.active {
  background: #22B0E1;
}

@media (max-width: 900px) {
  .cq-headline {
    font-size: 36px;
    line-height: 42px;
  }
  .cq-card {
    flex: 0 0 85%;
  }
}
.tfs-section {
  background: #fff;
  height: 338px;
  display: flex;
  align-items: center;
  text-align: center;
}

.tfs-inner {
  max-width: var(--max, 1360px);
  margin: 0 auto;
  padding: 0 var(--px, 80px);
}

.tfs-headline {
  font-size: 60px;
  font-weight: 300;
  line-height: 64px;
  color: #1E2445;
  margin-bottom: 24px;
}

.tfs-headline .accent {
  color: #22AFE1;
}

.tfs-support {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  color: #000;
  margin-bottom: 32px;
}

.tfs-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tfs-cta:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 900px) {
  .tfs-headline {
    font-size: 32px;
    line-height: 38px;
  }
}
.page-hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg video,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--px, 80px);
}

.page-hero-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 64px;
  color: #fff;
  margin-bottom: 24px;
  max-width: 900px;
}

.page-hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 33.6px;
  color: #fff;
  max-width: 720px;
  margin-bottom: 40px;
}

.page-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-hero-cta:hover {
  background: transparent;
  color: #fff;
}

.page-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .page-hero-title {
    font-size: 36px;
    line-height: 42px;
  }
  .page-hero-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.numbers-section {
  background: #f3f3f3;
  padding: 80px 0;
}

.numbers-inner {
  max-width: var(--max, 1360px);
  margin: 0 auto;
  padding: 0 var(--px, 80px);
}

.numbers-headline {
  font-size: 52px;
  font-weight: 500;
  line-height: 60px;
  color: #000;
  max-width: 702px;
  margin-bottom: 60px;
}

.numbers-headline-light {
  font-weight: 300;
}

.numbers-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.numbers-counter {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 287px;
}

.numbers-value {
  font-size: 80px;
  font-weight: 400;
  line-height: 86px;
  color: #22B0E1;
}

.numbers-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
}

@media (max-width: 900px) {
  .numbers-headline {
    font-size: 32px;
    line-height: 38px;
  }
  .numbers-grid {
    gap: 16px;
  }
  .numbers-counter {
    min-height: 200px;
  }
  .numbers-value {
    font-size: 48px;
    line-height: 52px;
  }
}
.video-module-section {
  position: relative;
  width: 100%;
  height: 675px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-module-content {
  width: 83.5%;
  max-width: 1203px;
  height: 100%;
  object-fit: cover;
}

.video-module-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ivs-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.ivs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ivs-bg img,
.ivs-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ivs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ivs-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--px, 80px);
  max-width: var(--max, 1360px);
  margin: 0 auto;
}

.ivs-content.align-right {
  align-items: flex-end;
  text-align: right;
}

.ivs-content.align-left {
  align-items: flex-start;
  text-align: left;
}

.ivs-title {
  font-size: 52px;
  font-weight: 300;
  line-height: 60px;
  color: #fff;
  max-width: 600px;
  margin-bottom: 16px;
}

.ivs-title strong {
  font-weight: 600;
}

.ivs-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  max-width: 560px;
  margin-bottom: 32px;
}

.ivs-panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.ivs-panel-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ivs-panel-body {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-bottom: 16px;
}

.ivs-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ivs-panel-cta:hover {
  background: transparent;
  color: #fff;
}

.ivs-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .ivs-title {
    font-size: 32px;
    line-height: 38px;
  }
  .ivs-content.align-right {
    align-items: flex-start;
    text-align: left;
  }
}
.sih {
  position: relative;
  width: 100%;
  height: 338px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.sih::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--sih-overlay, 0.3));
  z-index: 0;
}

.sih__inner {
  position: absolute;
  top: 147px;
  left: 0;
  right: 0;
  z-index: 1;
}

.sih__inner-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.sih__title {
  font-family: 'Lato', sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 64px;
  margin: 0 0 38px;
  color: inherit;
}

.sih__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  max-width: 778px;
  color: inherit;
}.smi {
  width: 100%;
  background: #fff;
  color: #000;
  overflow: hidden;
}

.smi__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 107px var(--px) 147px;
}

.smi__title {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  line-height: 60px;
  margin: 0 0 42px;
  text-align: center;
  color: inherit;
}

.smi__title-light {
  font-weight: 300;
}

.smi__title-bold {
  font-weight: 500;
}

.smi__columns {
  display: flex;
  gap: 8%;
  align-items: flex-start;
}

.smi__text {
  flex: 0 0 41.5%;
}

.smi__body {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 0 30px;
  color: inherit;
}

.smi__body:last-child {
  margin-bottom: 0;
}

.smi__image-wrap {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.smi__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}.tg {
  width: 100%;
  background: #fff;
  color: #000;
}

.tg__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px var(--px) 76px;
  display: flex;
  flex-direction: column;
  gap: 63px;
}

/* ── Row: label column + card grid ── */
.tg__row {
  display: grid;
  grid-template-columns: 17.6% 1fr;
  column-gap: 1.5%;
  align-items: start;
  position: relative;
}

.tg__label-col {
  padding-top: 4px;
}

.tg__group-label {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

.tg__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 23px;
}

/* ── Member card ── */
.tg__card {
  display: flex;
  flex-direction: column;
}

.tg__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 242 / 279;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.48);
  overflow: hidden;
  margin-bottom: 25px;
}

.tg__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.tg__about-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  padding: 10px 0;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.tg__photo-wrap:hover .tg__about-btn {
  opacity: 1;
}

.tg__name {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 4px;
  color: #000;
}

.tg__job-title {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
  color: #000;
}

/* ── Backdrop ── */
.tg__backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
}

/* ── Bio popup ── */
.tg__popup {
  position: absolute;
  top: 0;
  width: 532px;
  height: 370px;
  background: #f3f3f3;
  border-radius: 10px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 31px 34px 34px;
  box-sizing: border-box;
}

/* Cards 1 & 2: popup opens to the right */
.tg__popup--right {
  left: 19%;
}

/* Cards 3 & 4: popup opens to the left */
.tg__popup--left {
  right: 0;
}

.tg__popup-close {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 0;
}

.tg__popup-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 26px;
  padding-right: 32px;
}

.tg__popup-name {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #22B0E1;
  line-height: 1.2;
}

.tg__popup-title {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.3;
}

.tg__popup-scroll-area {
  flex: 1;
  overflow-y: auto;
  position: relative;
  padding-right: 20px;
  scrollbar-width: none;
}

.tg__popup-scroll-area::-webkit-scrollbar {
  display: none;
}

.tg__popup-bio {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  color: #000;
  white-space: pre-line;
}

/* Thin right-edge scroll indicator (Figma: 5px wide bar) */
.tg__popup-scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  pointer-events: none;
}

/* ── Footer CTA ── */
.tg__footer {
  display: flex;
  justify-content: center;
  padding-top: 11px;
}

.tg__press-cta {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px 17px;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.tg__press-cta:hover {
  background: #000;
  color: #fff;
}.unf {
  width: 100%;
  background: #fff;
}

/* ── Each accordion row ── */
.unf__item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.unf__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

/* ── Trigger button (full-width clickable header) ── */
.unf__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0 var(--px);
  padding-top: 47px;
  padding-bottom: 25px;
  min-height: 169px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

/* When open, constrain trigger to left half so image has room */
.unf__item--open .unf__trigger {
  padding-right: 52%;
}

/* ── Number + chevron row ── */
.unf__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.unf__number {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.2s;
}

.unf__item--open .unf__number {
  color: #000;
}

/* Chevron arrow — right-pointing when closed, down when open */
.unf__chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.3);
  transform: rotate(-45deg);
  transition: transform 0.2s, border-color 0.2s;
  margin-bottom: 2px;
}

.unf__item--open .unf__chevron {
  transform: rotate(45deg);
  border-color: #000;
}

/* ── Title ── */
.unf__title {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 64px;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.2s;
}

.unf__item--open .unf__title {
  color: #000;
}

/* ── Expanded body area ── */
.unf__body {
  padding: 0 var(--px) 35px;
  padding-right: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-height: 134px; /* 169 total body - 35 bottom padding */
}

.unf__body-text {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0;
  max-width: 533px;
  white-space: pre-line;
}

/* ── Optional CTA button ── */
.unf__cta {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 9px;
  padding: 18px;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.unf__cta:hover {
  background: #000;
  color: #fff;
}

/* ── Right-column image ── */
.unf__image-wrap {
  position: absolute;
  top: 35px;
  right: var(--px);
  bottom: 35px;
  width: 44.5%;
  border-radius: 15px;
  overflow: hidden;
}

.unf__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.df {
  background: #f3f3f3;
}

/* ── Two-column layout ── */
.df__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px);
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

/* ── Left text column ── */
.df__left {
  flex: 1;
  padding-top: 4px;
}

.df__body {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  margin: 0 0 32px;
  white-space: pre-line;
}

.df__detail {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0;
  white-space: pre-line;
}

/* ── White form card ── */
.df__card {
  flex: 0 0 601px;
  background: #fff;
  border-radius: 20px;
  padding: 37px 34px 40px;
  box-sizing: border-box;
}

/* ── Form heading ── */
.df__heading {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 32px;
}

/* ── Field group ── */
.df__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Individual field ── */
.df__field {
  position: relative;
  height: 47px;
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.3);
}

.df__label {
  position: absolute;
  top: 24px;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.df__field--active .df__label {
  top: 1px;
  font-size: 12px;
  color: #22b0e1;
}

.df__field--active {
  border-bottom-color: #22b0e1;
}

.df__input {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  padding: 0;
  box-sizing: border-box;
}

/* ── CAPTCHA placeholder ── */
.df__captcha {
  margin-top: 55px;
}

.df__captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
  height: 74px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 0 14px;
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.df__captcha-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
}

.df__captcha-text {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.df__captcha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.df__captcha-rc {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #4a90d9;
  letter-spacing: 0.03em;
}

.df__captcha-policy {
  font-family: 'Lato', sans-serif;
  font-size: 8px;
  color: #999;
}

/* ── Error ── */
.df__error {
  margin-top: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #c0392b;
}

/* ── Submit button ── */
.df__submit {
  display: inline-block;
  margin-top: 21px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px 17px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.df__submit:hover:not(:disabled) {
  background: #000;
  color: #fff;
}

.df__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Success state ── */
.df__success-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.df__success-msg {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  margin: 0;
}

.df__download-btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 9px;
  padding: 18px 32px;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.df__download-btn:hover {
  background: #000;
  color: #fff;
}.hl {
  background: #f3f3f3;
}

.hl__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 122px var(--px) 80px;
}

.hl__heading {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  line-height: 60px;
  font-weight: 300;
  color: #000;
  margin: 0 0 48px;
}

.hl__heading strong {
  font-weight: 500;
}

.hl__cards {
  display: flex;
  gap: 17px;
}

.hl__card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 33px 25px 33px;
  display: flex;
  flex-direction: column;
  min-height: 287px;
}

.hl__icon {
  width: auto;
  height: 60px;
  object-fit: contain;
  margin-bottom: 40px;
}

.hl__card-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.hl__card-title {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.hl__card-body {
  display: block;
  font-weight: 400;
}.tslider {
  background: #f3f3f3;
}

.tslider__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 121px var(--px) 80px;
}

/* ── Top row: heading+cta left, body right ── */
.tslider__top {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  margin-bottom: 60px;
}

.tslider__left {
  flex: 0 0 530px;
}

.tslider__heading {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  line-height: 60px;
  font-weight: 300;
  color: #000;
  margin: 0 0 32px;
}

.tslider__heading strong {
  font-weight: 500;
}

.tslider__cta {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 18px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tslider__cta:hover {
  background: #000;
  color: #fff;
}

.tslider__body {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  color: #000;
  margin: 0;
}

/* ── Thumbnail row ── */
.tslider__thumbs {
  display: flex;
  gap: 36px;
}

.tslider__thumb {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.tslider__thumb-img {
  width: 100%;
  height: 129px;
  object-fit: cover;
  display: block;
}.ib {
  background: #f3f3f3;
}

.ib__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 81px var(--px) 60px;
}

.ib__heading {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  line-height: 60px;
  font-weight: 300;
  color: #000;
  margin: 0 0 40px;
}

.ib__heading strong {
  font-weight: 500;
}

.ib__cards {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}

.ib__card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  padding: 0 25px;
  min-height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ib__card-title {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 6px;
}

.ib__card-body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  white-space: pre-line;
  line-height: 1.5;
}.demo {
  background: #f3f3f3;
}

.demo__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px);
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

.demo__left {
  flex: 1;
  padding-top: 4px;
}

.demo__body {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  margin: 0 0 32px;
  white-space: pre-line;
}

.demo__detail {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0;
  white-space: pre-line;
}

.demo__card {
  flex: 0 0 601px;
  background: #fff;
  border-radius: 20px;
  padding: 37px 34px 40px;
  box-sizing: border-box;
}

.demo__heading {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 32px;
}

.demo__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo__field {
  position: relative;
  height: 47px;
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.3);
}

.demo__label {
  position: absolute;
  top: 24px;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.demo__field--active .demo__label {
  top: 1px;
  font-size: 12px;
  color: #22b0e1;
}

.demo__field--active {
  border-bottom-color: #22b0e1;
}

.demo__input {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  padding: 0;
  box-sizing: border-box;
}

.demo__select {
  appearance: none;
  cursor: pointer;
}

.demo__captcha {
  margin-top: 55px;
}

.demo__captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
  height: 74px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 0 14px;
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.demo__captcha-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
}

.demo__captcha-text {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.demo__captcha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.demo__captcha-rc {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #4a90d9;
  letter-spacing: 0.03em;
}

.demo__captcha-policy {
  font-family: 'Lato', sans-serif;
  font-size: 8px;
  color: #999;
}

.demo__error {
  margin-top: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #c0392b;
}

.demo__submit {
  display: inline-block;
  margin-top: 21px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px 17px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.demo__submit:hover:not(:disabled) {
  background: #000;
  color: #fff;
}

.demo__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.demo__success-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.demo__success-msg {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  margin: 0;
}.ns {
  background: #f3f3f3;
}

.ns__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px);
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

.ns__left {
  flex: 1;
  padding-top: 4px;
}

.ns__body {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
  color: #000;
  margin: 0 0 40px;
  white-space: pre-line;
}

.ns__detail {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0;
  white-space: pre-line;
}

.ns__card {
  flex: 0 0 601px;
  background: #fff;
  border-radius: 20px;
  padding: 37px 34px 40px;
  box-sizing: border-box;
}

.ns__heading {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 32px;
}

.ns__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ns__field {
  position: relative;
  height: 47px;
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.3);
}

.ns__label {
  position: absolute;
  top: 24px;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.ns__field--active .ns__label {
  top: 1px;
  font-size: 12px;
  color: #22b0e1;
}

.ns__field--active {
  border-bottom-color: #22b0e1;
}

.ns__input {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  padding: 0;
  box-sizing: border-box;
}

/* ── Privacy checkbox ── */
.ns__privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  cursor: pointer;
}

.ns__privacy-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #c1c1c1;
  border-radius: 2px;
  cursor: pointer;
  accent-color: #22b0e1;
}

.ns__privacy-link {
  color: #22b0e1;
  font-weight: 500;
  text-decoration: none;
}

.ns__privacy-link:hover {
  text-decoration: underline;
}

.ns__captcha {
  margin-top: 28px;
}

.ns__captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
  height: 74px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 0 14px;
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.ns__captcha-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
}

.ns__captcha-text {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.ns__captcha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ns__captcha-rc {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #4a90d9;
  letter-spacing: 0.03em;
}

.ns__captcha-policy {
  font-family: 'Lato', sans-serif;
  font-size: 8px;
  color: #999;
}

.ns__error {
  margin-top: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #c0392b;
}

.ns__submit {
  display: inline-block;
  margin-top: 21px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px 17px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ns__submit:hover:not(:disabled) {
  background: #000;
  color: #fff;
}

.ns__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ns__success-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ns__success-msg {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  margin: 0;
}/* ═══════════════════════════════════════
   BODY TEXT MODULE
═══════════════════════════════════════ */
.body-text {
  padding: 80px var(--codex-page-padding);
}

.body-text__inner {
  max-width: 760px;
  margin: 0 auto;
}

.body-text__headline {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  margin: 0 0 40px;
}

/* ── Prose typography ── */
.body-text__prose p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 0 1.2em;
}

.body-text__prose h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin: 1.8em 0 0.6em;
}

.body-text__prose h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 1.6em 0 0.5em;
}

.body-text__prose h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 1.4em 0 0.5em;
}

.body-text__prose blockquote {
  font-size: 20px;
  font-style: italic;
  line-height: 32px;
  border-left: 3px solid var(--codex-color-accent);
  padding-left: 20px;
  margin: 1.6em 0;
}

.body-text__prose a {
  color: var(--codex-color-accent);
  text-decoration: underline;
}

.body-text__prose a:hover {
  opacity: 0.8;
}

.body-text__prose strong {
  font-weight: 700;
}

.body-text__prose em {
  font-style: italic;
}

.body-text__prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.6em 0;
}

.body-text__prose ul,
.body-text__prose ol {
  padding-left: 1.5em;
  margin: 0 0 1.2em;
}

.body-text__prose li {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0.4em;
}
