/* ── Skip link (accessibility + SEO) ───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 100000;
  background: var(--mastercolor, #000);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* Lenis overrides scroll behaviour — native smooth must be off */
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  /* Default OS cursor is always visible; the custom dot rides on top */
  cursor: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  text-decoration: none;
}

.landingTextMain {
  font-size: clamp(30px, 3.5vw, 50px);
}

.subHeading {
  font-size: clamp(25px, 3vw, 48px);
}

.landingPadding {
  padding-top: 74px;
}

.landingMain {
  height: calc(100svh - 83px);
}

/* ── Hero H1 letter reveal ───────────────────────────────────────────────
   Each word is wrapped in a <span class="hero-word"> (white-space:nowrap).
   Each letter inside is a <span class="hero-char"> that animates in with:
     opacity 0→1  |  blur 8px→0  |  translateY 12px→0
   Stagger is driven by the --i CSS var set inline by JS.
──────────────────────────────────────────────────────────────────────── */
.hero-reveal-text {
  /* keep the text wrapping naturally */
  display: block;
  /* Hide raw text immediately so JS split is invisible (prevents FOUC) */
  visibility: hidden;
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  /* opacity + transform are compositor-only — zero repaint cost.
     blur() was removed: it forced a raster layer per character (60+ layers)
     and caused the paint spike felt on page landing. */
  animation: heroCharIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.028s);
  will-change: opacity, transform;
}

@keyframes heroCharIn {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Reduced motion — show immediately, no animation */
@media (prefers-reduced-motion: reduce) {
  .hero-reveal-text {
    visibility: visible;
  }
  .hero-char {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Page-enter animations ───────────────────────────────────────────────
   .page-enter       — fade + slide up  (header items, nav, paragraph, cta)
   .page-enter-scale — fade + scale up  (hero image)
   --delay is set per-element by JS from data-delay attribute.
   Base step = 0.06s per unit.
──────────────────────────────────────────────────────────────────────── */
.page-enter {
  opacity: 0;
  transform: translateY(16px);
  animation: pageEnterUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.page-enter-scale {
  opacity: 0;
  transform: scale(0.96);
  animation: pageEnterScale 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

@keyframes pageEnterUp {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes pageEnterScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-enter,
  .page-enter-scale {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Hero — Full-Height Video Left, Content Right ──────────────────────── */
.hero-section {
  display: grid;
  grid-template-columns: 52% 1fr;
  min-height: calc(100svh - 59px);
}

.hero-vid-pane {
  background: #0a0a0a;
}

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

.hero-content-pane {
  padding: 56px clamp(28px, 4vw, 64px) 56px clamp(28px, 3.5vw, 56px);
}

.hero-eyebrow {
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.48);
  padding: 5px 14px 5px 8px;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 100px;
  background: #fff;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  animation: heroDotPulse 2.2s ease infinite;
}

@keyframes heroDotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero-hd {
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--black);
}

.hero-sub {
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 32px;
}

.hero-actions {
  margin-bottom: 36px;
}

.hero-ghost-btn {
  color: var(--black);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.hero-ghost-btn:hover {
  opacity: 1;
}

.hero-stat {
  padding: 0 20px;
}
.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat strong {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.hero-stat sup {
  font-size: 0.52em;
  vertical-align: super;
}

.hero-tag {
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.38);
  padding: 4px 12px;
  border: 1px solid var(--layoutBorderColor);
}

/* ── Hero responsive ── */
@media (max-width: 991.98px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-vid-pane {
    height: 55vw;
    min-height: 260px;
  }
  .hero-content-pane {
    border-left: none;
    border-top: 1px solid var(--layoutBorderColor);
    padding: 40px 24px;
  }
  .hero-stat:first-child {
    padding-left: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-vid-pane {
    height: 68vw;
  }
  .hero-hd {
    font-size: clamp(26px, 6vw, 36px);
  }
}

/* ── Custom cursor ───────────────────────────────────────────────────────
   .cursor-dot — small filled dot that tracks the pointer exactly.
   The hollow ring has been removed; the OS default pointer is restored
   so the native cursor is always visible. The dot is purely decorative.
   Hidden by default; .cursor--visible fades it in on first mousemove.
──────────────────────────────────────────────────────────────────────── */

/* Hide the ring entirely if it was ever created */
.cursor-ring {
  display: none !important;
}

.cursor-dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--secondaryMastercolor);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  will-change: transform;
  transition:
    opacity 0.3s ease,
    background-color 0.25s ease;
}

/* Visible state */
.cursor-dot.cursor--visible {
  opacity: 1;
}

/* Hidden state — used when custom orb replaces cursor (e.g. prod-cards) */
.cursor-dot.cursor--hidden {
  opacity: 0 !important;
  transition: opacity 0.15s ease;
}

/* ── Light dot — used on dark-background sections ──────────────── */
.cursor-dot.cursor--light {
  background-color: #fff;
}

.customTabMainSection .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--black);
}

.titleLeft::after {
  content: "";
  position: absolute;
  border-left: 1px solid var(--black);
  /* background-color: var(--black); */
  bottom: -32px;
  height: 20px;
  width: 1px;
}
.titleLeft::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 1px;
  border-left: 1px solid var(--black);
  bottom: -32px;
  right: 0;
}

.titleRight::after {
  content: "";
  position: absolute;
  border-right: 1px solid var(--black);
  /* background-color: var(--black); */
  bottom: -32px;
  height: 20px;
  width: 1px;
}
.titleRight::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 1px;
  border-left: 1px solid var(--black);
  bottom: -32px;
  right: 0;
}

/* Tabs */
.customTabMainSection .nav-item {
  width: 100%;
}
.customTabMainSection .nav-link {
  background: var(--black);
  color: var(--white);
  margin-right: 6px;
  font-size: 14px;
  width: 100%;
  padding: 10px 14px;
}

.customTabMainSection .nav-link.active {
  background: var(--secondaryMastercolor);
}

/* Pills */
.customTabMainSection .sub-pill {
  background: #eee;
  padding: 8px 13px;
  font-size: 13px;
  /* margin: 5px; */
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

/* ── Mobile journey accordion: custom theme ─────────────────────────── */
#mobileOnboarding,
#mobileTrust {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--layoutBorderColor);
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-bg: var(--black);
  --bs-accordion-btn-color: var(--white);
  --bs-accordion-active-bg: var(--secondaryMastercolor);
  --bs-accordion-active-color: var(--white);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 1rem;
  --bs-accordion-body-padding-y: 1rem;
  border: none;
}

#mobileOnboarding .accordion-item,
#mobileTrust .accordion-item {
  border: none;
  border-bottom: 1px solid var(--gray);
  background: transparent;
  margin-bottom: 5px;
}

#mobileOnboarding .accordion-button,
#mobileTrust .accordion-button {
  background: var(--landingBackground);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  border-radius: 0 !important;
  padding: 14px 16px;
  box-shadow: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

/* open state */
#mobileOnboarding .accordion-button:not(.collapsed),
#mobileTrust .accordion-button:not(.collapsed) {
  background: var(--secondaryMastercolor);
  color: var(--white);
  box-shadow: none;
}

/* override Bootstrap's dark chevron with a white one */
#mobileOnboarding .accordion-button::after,
#mobileTrust .accordion-button::after {
  filter: brightness(2) invert(1);
}

#mobileOnboarding .accordion-button:not(.collapsed)::after,
#mobileTrust .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#mobileOnboarding .accordion-body,
#mobileTrust .accordion-body {
  background: var(--landingBackground);
  padding: 14px 16px;
}

/* Pills inside mobile accordion */
#mobileOnboarding .sub-pill,
#mobileTrust .sub-pill {
  background: #fff;
  border: 1px solid var(--layoutBorderColor);
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-primary);
  margin-right: 6px;
  margin-bottom: 6px;
  display: inline-block;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.identitySOlutionLineCardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(1),
.identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(2) {
  border-right: 1px solid var(--layoutBorderColor);
  border-bottom: 1px solid var(--layoutBorderColor);
}

.identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(3) {
  border-bottom: 1px solid var(--layoutBorderColor);
}

.identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(4),
.identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(5) {
  border-right: 1px solid var(--layoutBorderColor);
}

.scaleCountSection {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.scaleCountSection .scaleCountSectionCard {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 260px;
  border-radius: 0 40px 40px 40px;
  padding: 20px;
}

.scaleCountSection .scaleCountSectionCard:nth-child(1) {
  background-color: #fceade;
}
.scaleCountSection .scaleCountSectionCard:nth-child(2) {
  background-color: #f3782b;
}
.scaleCountSection .scaleCountSectionCard:nth-child(3) {
  background-color: #ffbb94;
}
.scaleCountSection .scaleCountSectionCard:nth-child(4) {
  background-color: #ff9557;
}
.scaleCountSection .scaleCountSectionCard:nth-child(5) {
  background-color: #efefef;
}

.scaleCountSectionCard h3 {
  font-size: 40px;
  color: var(--black);
}

.scaleCountSectionCard p {
  font-size: 15px;
  color: var(--black);
}

/* ── Testimonial Carousel ────────────────────────────────────────────────── */

/* Outer wrapper — clips the sliding track */
.tc-carousel {
  position: relative;
  --tc-gap: 24px;
  --tc-visible: 3; /* cards visible at once on desktop */
}

.tc-track-outer {
  overflow: hidden;
}

/* The sliding row of cards */
.tc-track {
  display: flex;
  gap: var(--tc-gap);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Each card fills exactly 1/var(--tc-visible) of the outer width */
.tc-track .testimonial-card {
  flex: 0 0
    calc((100% - var(--tc-gap) * (var(--tc-visible) - 1)) / var(--tc-visible));
  min-width: 0;
}

/* ── Card shared styles ── */
.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card--green {
  background: #dff0e8;
}
.testimonial-card--white {
  background: #e6e8f5;
}
.testimonial-card--purple {
  background: #e4e3f2;
}

.testimonial-quote-icon {
  font-size: 42px;
  line-height: 1;
  color: #3a3a4a;
  margin-bottom: 16px;
  display: block;
  font-family: Georgia, serif;
}

.testimonial-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #2c2c2c;
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars .star {
  width: 16px;
  height: 16px;
  fill: #f5a623;
}

/* ── Controls row (prev · dots · next) ── */
.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--layoutBorderColor, #b2b3b7);
  background: transparent;
  cursor: pointer;
  color: #1a1a2e;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.tc-btn:hover {
  background: var(--secondaryMastercolor, #f66320);
  border-color: var(--secondaryMastercolor, #f66320);
  color: #fff;
}

.tc-btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Dots */
.tc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c8d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}

.tc-dot.is-active {
  background: var(--secondaryMastercolor, #f66320);
  transform: scale(1.35);
}

.customtabHeightSection {
  padding-top: 70px;
  height: 333px;
  /* padding-bottom: 200px; */
}

/* ========================================================================
   FOOTER — Minimal Styles (Bootstrap + Custom Classes)
   ======================================================================== */

/* Social icons */
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background: rgba(246, 99, 32, 0.1);
  color: var(--secondaryMastercolor);
  border: 1.5px solid var(--secondaryMastercolor);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--secondaryMastercolor);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 99, 32, 0.25);
}

.footer-x-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(98%) saturate(1268%)
    hue-rotate(6deg);
}

.footer-social-icon:hover .footer-x-icon {
  filter: brightness(0) invert(1);
} /* Footer section headings */
.footer-heading {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  /* border-bottom: 2px solid var(--black); */
  /* padding-bottom: 10px; */
  margin-bottom: 3px;
}

/* Footer contact labels */
.footer-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--layoutBorderColor);
}

/* Footer contact link */
.footer-contact-link {
  color: var(--black);
}

/* Footer link hover effect */
.footer-link {
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--secondaryMastercolor) !important;
  padding-left: 4px;
}

/* Footer certification badge */
.footer-cert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(246, 99, 32, 0.08);
  border: 1px solid rgba(246, 99, 32, 0.2);
}

.footer-cert img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-cert p {
  color: var(--secondaryMastercolor);
  line-height: 1.3;
}

.footerText_design {
  font-size: 200px;
  color: #f6f6f6;
  margin-bottom: 0;
}

/* Modal Container */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cookie-settings-modal.is-active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop */
.cookie-settings-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Modal Content */
.cookie-settings-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInModal 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideInModal {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Header */
.cookie-settings-header {
  border-bottom: 1px solid var(--layoutBorderColor);
  flex-shrink: 0;
}

.cookie-settings-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--secondaryMastercolor);
}

.cookie-settings-logo svg {
  width: 100%;
  height: 100%;
}

.btn-close i {
  font-size: 1rem;
}

/* Body Container */
.cookie-settings-body {
  flex: 1;
  min-height: 300px;
}

/* Left Sidebar */
.cookie-settings-left {
  width: 220px;
  background: var(--white);
  border-right: 1px solid var(--layoutBorderColor);
  overflow-y: auto;
  flex-shrink: 0;
}

.cookie-category-list {
  display: flex;
  flex-direction: column;
}

.cookie-category-btn {
  background: none;
  border: none;
  text-align: left;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookie-category-btn:hover {
  background: rgba(246, 99, 32, 0.05);
  color: var(--secondaryMastercolor);
}

.cookie-category-btn.is-active {
  background: var(--white);
  color: var(--secondaryMastercolor);
  border-left-color: var(--secondaryMastercolor);
}

/* Right Content Area */
.cookie-settings-right {
  flex: 1;
  overflow-y: auto;
}

.cookie-category-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.cookie-category-content.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Footer */
.cookie-settings-footer {
  border-top: 1px solid var(--layoutBorderColor);
  flex-shrink: 0;
}

/* Scrollbar Styling */
.cookie-settings-left::-webkit-scrollbar,
.cookie-settings-right::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.cookie-settings-left::-webkit-scrollbar-track,
.cookie-settings-right::-webkit-scrollbar-track {
  background: transparent;
}

.cookie-settings-left::-webkit-scrollbar-thumb,
.cookie-settings-right::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.cookie-settings-left::-webkit-scrollbar-thumb:hover,
.cookie-settings-right::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.bannerBackground {
  background: url(../assets/images/team-bg.webp) no-repeat center center/cover;
}

.tp-section-subtitle.pre::before {
  content: "";
  height: 8px;
  width: 8px;
  margin-right: 12px;
  border-radius: 4px;
  display: inline-block;
  transform: translateY(-2px);
  background-color: var(--secondaryMastercolor);
}

.tp-career-title.fs-100 {
  font-size: clamp(40px, 5vw, 100px);
}

.tp-section-arrow-svg {
  left: 50%;
  top: 50px;
}

.tp-contact-main-bottom {
  margin-top: -200px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Contact Form Section (.ctf-*)
   ═══════════════════════════════════════════════════════════════════════════ */
.ctf-left {
  padding: 56px 48px 56px 32px;
}
.ctf-right {
  padding: 48px 32px 48px 48px;
}

.ctf-heading {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
}
.ctf-subtext {
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  max-width: 400px;
}
.ctf-trust-icon {
  width: 22px;
  height: 22px;
}
.ctf-trust-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.ctf-chip {
  border: 1px solid var(--layoutBorderColor);
  padding: 8px 14px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.ctf-chip:hover {
  border-color: var(--secondaryMastercolor);
  color: var(--secondaryMastercolor);
}
.ctf-chip svg {
  color: var(--secondaryMastercolor);
}

.ctf-frame-card {
  border: 1px solid var(--layoutBorderColor);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}
.ctf-frame-header {
  padding: 12px 16px;
}
.ctf-frame-dot {
  width: 10px;
  height: 10px;
}
.ctf-dot-red {
  background: #ff5f56;
}
.ctf-dot-yellow {
  background: #ffbd2e;
}
.ctf-dot-green {
  background: #27c93f;
}
.ctf-frame-label {
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 991.98px) {
  .ctf-left {
    padding: 40px 24px 32px;
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor);
  }
  .ctf-right {
    padding: 32px 24px 40px;
  }
}

.ar-about-funfact-item-icon {
  border: 1px solid #ccc;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   About Us page
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Shared section label (dot + uppercase text) ─────────────────────────
   Reused across hero, mission, capabilities, values, team sections.
   Usage: <p class="about-label">Who We Are</p>
────────────────────────────────────────────────────────────────────────── */
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primaryTextColor);
  margin-bottom: 20px;
}
.about-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
  flex-shrink: 0;
}

/* ── Hero headline ───────────────────────────────────────────────────────── */
.about-hero-headline {
  font-size: clamp(42px, 6vw, 96px);
  font-weight: var(--fw_medium);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 0;
}

/* ── Hero bottom row — image + lead text ─────────────────────────────────── */
.about-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
.about-hero-lead {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}

/* ── Stats cards (light background, rounded cards) ───────────────────────── */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 48px 0;
}
.about-stats-item {
  background: var(--landingBackground);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.about-stats-number {
  font-size: clamp(48px, 5vw, 60px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.about-stats-suffix {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--black);
}
.about-stats-label {
  font-size: 14px;
  color: var(--primaryTextColor);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* ── Page images (cover, full-width) ─────────────────────────────────────── */
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img--tall {
  height: 480px;
}

/* ── Capabilities hover list ─────────────────────────────────────────────── */
.cap-hover-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--layoutBorderColor);
}

.cap-hover-item {
  border-bottom: 1px solid var(--layoutBorderColor);
  cursor: default;
  transition: border-color 0.25s ease;
}

.cap-hover-item.is-active {
  border-bottom-color: var(--secondaryMastercolor);
}

.cap-hover-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
}

.cap-hover-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--layoutBorderColor);
  min-width: 36px;
  transition: color 0.25s ease;
}

.cap-hover-item.is-active .cap-hover-num,
.cap-hover-item:hover .cap-hover-num {
  color: var(--black);
}

.cap-hover-title {
  flex: 1;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--layoutBorderColor);
  transition: color 0.25s ease;
}

.cap-hover-item.is-active .cap-hover-title,
.cap-hover-item:hover .cap-hover-title {
  color: var(--black);
}

.cap-hover-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.cap-hover-item.is-active .cap-hover-arrow,
.cap-hover-item:hover .cap-hover-arrow {
  background: var(--secondaryMastercolor);
}

.cap-hover-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* ── Image stack (clip + slide) ──────────────────────────────────────────── */
.cap-img-stack {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
}

.cap-img-slot {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  /* hidden off-screen by default; JS moves to 0 for active */
}

.cap-img-slot.is-visible {
  transform: translateY(0%);
}

.cap-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Value cards ─────────────────────────────────────────────────────────── */
/* ── Value cards (2×2 grid, number top + content bottom) ────────────────── */
.value-card-new {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.value-card-new:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.value-card-new__num {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0;
  line-height: 1;
}
.value-card-new__body {
  margin-top: auto;
  padding-top: 32px;
}
.value-card-new__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.value-card-new__text {
  font-size: 13px;
  font-weight: 400;
  color: var(--primaryTextColor);
  line-height: 1.6;
  margin: 0;
}

/* ── Values "View Details" link ─────────────────────────────────────────── */
.value-view-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}
.value-view-link:hover {
  color: var(--secondaryMastercolor);
}
.value-view-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.value-view-link:hover .value-view-arrow {
  transform: rotate(45deg);
}
.value-view-arrow svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
}

/* ── Team section headline ────────────────────────────────────────────────── */
.team-section-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── Team hover list (left column) ──────────────────────────────────────── */
.team-hover-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-hover-item {
  cursor: default;
  padding: 28px 0 0;
}

.team-hover-row {
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}

.team-hover-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-hover-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  /* inactive: dim grey; active: orange */
  color: var(--layoutBorderColor);
  transition: color 0.3s ease;
}

.team-hover-name {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--layoutBorderColor);
  transition: color 0.3s ease;
}

/* divider line — grey by default, orange when active */
.team-hover-divider {
  height: 1px;
  background: var(--layoutBorderColor);
  transition: background 0.3s ease;
}

/* Active / hovered state */
.team-hover-item.is-active .team-hover-role,
.team-hover-item:hover .team-hover-role {
  color: var(--secondaryMastercolor);
}

.team-hover-item.is-active .team-hover-name,
.team-hover-item:hover .team-hover-name {
  color: var(--black);
}

.team-hover-item.is-active .team-hover-divider,
.team-hover-item:hover .team-hover-divider {
  background: var(--secondaryMastercolor);
}

/* ── Team image stack (right column) ────────────────────────────────────── */
.team-img-stack {
  position: sticky;
  top: 100px;
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
  margin-left: 40px;
}

.team-img-slot {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  /* only .is-visible slots are shown; JS animates transform */
}

.team-img-slot.is-visible {
  transform: translateY(0%);
}

.team-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Team mobile cards ─────────────────────────────────────────────────── */
.team-mobile-grid {
  display: grid;
  gap: 14px;
}

.team-mobile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
}

.team-mobile-img {
  width: 76px;
  height: 92px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.team-mobile-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.team-mobile-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondaryMastercolor);
}

.team-mobile-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

@media (min-width: 992px) {
  .team-mobile-grid {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   Industries page  –  ind-*
══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────────── */
.ind-hero-headline {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: var(--fw_medium);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--mastercolor);
  margin-bottom: 0;
}

.ind-hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--primaryTextColor);
  max-width: 600px;
  line-height: 1.72;
}

/* ── Grid border shell ───────────────────────────────────────────────── */
/* indp-* = industries PAGE grid cards (industries.html only)            */
/* ind-*  = index.html accordion widget — kept completely separate       */
.indp-grid {
  border-top: 1px solid var(--layoutBorderColor);
  border-left: 1px solid var(--layoutBorderColor);
}

.indp-grid-cell {
  border-right: 1px solid var(--layoutBorderColor);
  border-bottom: 1px solid var(--layoutBorderColor);
}

/* ── Card ────────────────────────────────────────────────────────────── */
.indp-card {
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* Orange accent bar slides in from left on hover */
.indp-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondaryMastercolor);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.indp-grid-cell:hover .indp-card {
  background-color: var(--landingBackground);
}

.indp-grid-cell:hover .indp-card::after {
  transform: scaleX(1);
}

/* ── Icon bubble ─────────────────────────────────────────────────────── */
.indp-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--landingBackground);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition:
    background-color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.indp-grid-cell:hover .indp-icon {
  background: rgba(246, 99, 32, 0.12);
  transform: scale(1.1) rotate(-4deg);
}

.indp-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--secondaryMastercolor);
}

/* ── Number ──────────────────────────────────────────────────────────── */
.indp-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondaryMastercolor);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

/* ── Name ────────────────────────────────────────────────────────────── */
.indp-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--mastercolor);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Description ─────────────────────────────────────────────────────── */
.indp-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--primaryTextColor);
  line-height: 1.72;
  margin-bottom: 0;
  flex: 1;
}

/* ── Arrow CTA (appears on hover) ───────────────────────────────────── */
.indp-arrow {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--secondaryMastercolor);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease 0.06s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.indp-grid-cell:hover .indp-arrow {
  opacity: 1;
  transform: translateX(0);
}

.indp-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   Parallax zoom – video section  (.pz-*)
══════════════════════════════════════════════════════════════════════════ */

/* Clip wrapper — GSAP ScrollTrigger drives the scale on this container.
 * Starting at 0.1 so the section appears nearly invisible before zoom.  */
.pz-clip {
  overflow: hidden;
  border-radius: 16px; /* matches rounded-4 */
  transform: scale(0.1); /* initial — overwritten by GSAP scrub */
  transform-origin: center center;
  will-change: transform;
}

.pz-video {
  width: 100%;
  display: block;
}

.prod-card {
  position: relative;
  /* overflow: hidden; */
}

/* ================================================================
   Industries Accordion Section  — #industriesSection
   ================================================================ */

.ind-section {
  color: var(--black, #000);
}

/* ── Top label bar ─────────────────────────────────────────────── */
.ind-topbar {
  gap: 40px;
  padding: 40px 32px;
}
.ind-topbar-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--black, #000);
  margin: 0;
  flex: 0 0 auto;
  max-width: 420px;
  line-height: 1.25;
}

.ind-topbar-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.65;
  margin: 0;
  max-width: 460px;
  padding-top: 6px;
}

/* ── Accordion row ─────────────────────────────────────────────── */
.ind-panel-row {
  display: flex;
  align-items: stretch;
  height: 540px;
  border-bottom: 1px solid var(--layoutBorderColor, #b2b3b7);
}

/* ── Individual cards ──────────────────────────────────────────── */
.ind-card {
  flex: 0 0 166px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 18px;
  border-right: 1px solid var(--layoutBorderColor, #b2b3b7);
  background: var(--landingBackground, #f8f8f8);
  cursor: pointer;
  overflow: hidden;
  transition:
    flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s ease;
  position: relative;
  outline: none;
}
.ind-card:focus-visible {
  box-shadow: inset 0 0 0 2px var(--secondaryMastercolor, #f66320);
}
.ind-card--active {
  flex: 0 0 300px;
  background: var(--secondaryMastercolor, #f66320);
}

/* ── Card top (arrow + number) ─────────────────────────────────── */
.ind-card-arrow {
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.3s;
}
.ind-card--active .ind-card-arrow {
  color: #fff;
}
.ind-card-num {
  font-size: 28px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  transition: color 0.3s;
  letter-spacing: -0.5px;
}
.ind-card--active .ind-card-num {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Card expanded body ────────────────────────────────────────── */
.ind-card-body {
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  /* Fixed width = active card (300px) minus horizontal padding (18px×2).      */
  /* Prevents text reflow as the card's flex-basis animates 166px → 300px.    */
  width: 264px;
  flex-shrink: 0;
  /* Delay is now 0.4s so content appears only after the card is mostly done  */
  /* expanding (flex transition is 0.55s), hiding any mid-animation reflow.   */
  transition:
    opacity 0.35s ease 0.3s,
    transform 0.35s ease 0.3s;
}
.ind-card--active .ind-card-body {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ind-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.ind-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}
.ind-card-img-wrap {
  margin-top: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  /* Fixed height so the wrap never jumps; image fills it via height:100%. */
  flex: 0 0 160px;
  height: 160px;
  overflow: hidden;
}
.ind-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ── Card footer (icon + label) ────────────────────────────────── */
.ind-card-foot {
  white-space: nowrap;
}
.ind-card-foot-icon {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.3s;
}
.ind-card--active .ind-card-foot-icon {
  color: rgba(255, 255, 255, 0.9);
}
.ind-card-label {
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.35);
  transition:
    color 0.3s,
    opacity 0.3s;
  opacity: 0;
}
.ind-card--active .ind-card-label {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

/* ── Collapsed-card centered rotated name ──────────────────────── */
.ind-card-name {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.ind-card--active .ind-card-name {
  opacity: 0;
}

/* ── Right info panel ──────────────────────────────────────────── */
.ind-info-panel {
  flex: 1;
  min-width: 0;
  padding: 28px 32px;
  gap: 14px;
  border-right: none;
}

.ind-info-tag {
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.35);
}
.ind-info-count {
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.35);
}
.ind-info-heading {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--black, #000);
  line-height: 1.25;
  margin: 0;
  transition: opacity 0.3s ease;
}
.ind-info-body {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.65;
  margin: 0;
  transition: opacity 0.3s ease;
}

/* ── Dot matrix ────────────────────────────────────────────────── */
.ind-dot-matrix {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
  align-content: stretch;
  min-height: 0;
}
.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--layoutBorderColor, #b2b3b7);
  transition:
    background 0.5s ease,
    transform 0.4s ease;
  justify-self: center;
  align-self: center;
}
.ind-dot--lit {
  background: var(--secondaryMastercolor, #f66320);
  transform: scale(1.25);
}

/* ── Info panel footer ─────────────────────────────────────────── */
.ind-info-footer {
  gap: 12px;
  padding-top: 8px;
}
.ind-info-footer-text {
  gap: 6px;
  color: rgba(0, 0, 0, 0.35);
}
.ind-info-footer-text svg {
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.25);
}

.ind-explore-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}
.ind-explore-arrow svg {
  width: 14px;
  height: 14px;
}

/* ── Progress dots ─────────────────────────────────────────────── */
.ind-progress-bar {
  padding: 16px 32px;
}
.ind-prog-dots {
  gap: 6px;
}
.ind-prog-dot {
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: var(--layoutBorderColor, #b2b3b7);
  transition:
    width 0.4s ease,
    background 0.3s ease;
  cursor: pointer;
}
.ind-prog-dot--active {
  width: 24px;
  background: var(--secondaryMastercolor, #f66320);
}

.uc-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

/* Reduced-motion: full size, GSAP animation skipped in JS */
@media (prefers-reduced-motion: reduce) {
  .pz-clip {
    transform: scale(1) !important;
  }
}

/* Hide decorative cursor layers on touch/coarse/smaller screens */
@media (hover: none), (pointer: coarse), (max-width: 992px) {
  .cursor-ring,
  .cursor-dot,
  .prod-card .pvm-orb {
    display: none;
  }
}

@media (max-width: 1200px) {
  .identitySOlutionLineCardGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(2),
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(4) {
    border-right: none;
  }
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(3) {
    border-right: 1px solid var(--layoutBorderColor);
  }
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(6) {
    border-top: 1px solid var(--layoutBorderColor);
  }
  .ind-card {
    flex: 0 0 110px !important;
  }
  .ind-card--active {
    flex: 0 0 200px !important;
  }
}

@media (max-width: 991.98px) {
  .landingMain {
    height: 100%;
  }
  .landingPadding {
    padding-top: 68px;
  }
  .scaleCountSection {
    grid-template-columns: repeat(3, 1fr);
  }
  .tc-carousel {
    --tc-visible: 2;
  }
  .customtabHeightSection {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-img {
    height: 300px;
  }
  .about-img--tall {
    height: 300px;
  }
  .cap-img-stack {
    position: static;
    height: 280px;
  }
  .ind-topbar {
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px;
  }
  .ind-topbar-title {
    max-width: 100%;
  }
  .ind-panel-row {
    flex-direction: column-reverse;
    height: unset !important;
  }
  .ind-card {
    flex: 0 0 auto !important;
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor, #b2b3b7);
    height: unset;
  }
  .ind-card--active {
    flex: 0 0 auto !important;
  }
  .ind-card-body {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      opacity 0.35s ease,
      max-height 0.4s ease,
      transform 0.35s ease;
  }
  .ind-card--active .ind-card-body {
    opacity: 1;
    max-height: 400px;
  }
  .ind-info-panel {
    min-height: 340px;
  }
  .ind-dot-matrix {
    min-height: 120px;
  }
  .ind-progress-bar {
    padding: 14px 20px;
  }
  .ind-card-name {
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media (max-width: 768px) {
  .cookie-settings-content {
    width: 95%;
    max-height: 90dvh;
    flex-direction: column;
  }

  .cookie-settings-body {
    flex-direction: column;
  }

  .cookie-settings-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor);
    max-height: 65px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .cookie-category-list {
    flex-direction: row;
    padding-bottom: 10px;
  }

  .cookie-category-btn {
    border-left: none;
    border-bottom: 3px solid transparent;
    min-width: max-content;
  }

  .cookie-category-btn.is-active {
    border-left: none;
    border-bottom-color: var(--secondaryMastercolor);
  }

  .cookie-settings-content {
    width: 95%;
    max-height: 90dvh;
    flex-direction: column;
  }

  .cookie-settings-body {
    flex-direction: column;
  }

  .cookie-settings-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--layoutBorderColor);
    max-height: 65px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .cookie-category-list {
    flex-direction: row;
    padding-bottom: 10px;
  }

  .cookie-category-btn {
    border-left: none;
    border-bottom: 3px solid transparent;
    min-width: max-content;
  }

  .cookie-category-btn.is-active {
    border-left: none;
    border-bottom-color: var(--secondaryMastercolor);
  }

  .identitySOlutionLineCardGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(1),
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(3),
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(5) {
    border-right: none;
  }
  .identitySOlutionLineCardGrid .identitySOlutionLineCardGridItem:nth-child(4) {
    border-bottom: 1px solid var(--layoutBorderColor);
  }
  .scaleCountSection {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-carousel {
    --tc-visible: 2;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 576px and below ── */
@media (max-width: 576px) {
  /* .container {
    padding: 0;
  } */
  .scaleCountSection {
    grid-template-columns: repeat(1, 1fr);
  }
  .tc-carousel {
    --tc-visible: 1;
  }

  .cookie-settings-content {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }

  .ind-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  /* On mobile all cells take full width — remove the right border gap */
  .ind-grid-cell {
    border-right: 1px solid var(--layoutBorderColor);
  }
  .about-stats-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  .container {
    padding: 0;
  }
}

/* ── Products cards: pos:relative always (layout); orb desktop-only ─── */

@media (min-width: 993px) {
  .prod-card .pvm-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    padding: 10px;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition:
      transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.22s ease;
    will-change: transform, left, top;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
  }

  .prod-card .pvm-orb.pvm-visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  /* SVG ring — fills orb, spins continuously */
  .prod-card .pvm-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: pvm-spin 8s linear infinite;
    padding: 5px;
  }

  /* Text on circle path */
  .prod-card .pvm-ring-txt {
    fill: var(--black);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-primary, sans-serif);
  }

  /* Arrow centered — sits above the spinning SVG */
  .prod-card .pvm-arrow {
    position: relative;
    z-index: 1;
    color: var(--black);
    font-size: 28px;
    line-height: 1;
    display: block;
    font-style: normal;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transform: rotate(45deg);
    cursor: pointer;
  }

  @keyframes pvm-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
}

/* ══════════════════════════════════════════════════════════════════════
   FINANCIAL SERVICES PAGE  (financial-services.html)
   All selectors prefixed  fs-  to avoid collisions.
══════════════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────────── */
.fs-hero {
  color: #fff;
}

.fs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fs-breadcrumb-link {
  font-size: 12px;
  color: var(--primaryTextColor);
  text-decoration: none;
  transition: color 0.2s;
}
.fs-breadcrumb-link:hover {
  color: var(--secondaryMastercolor);
}
.fs-breadcrumb-sep {
  font-size: 12px;
  color: var(--layoutBorderColor);
}
.fs-breadcrumb-current {
  font-size: 12px;
  color: var(--black);
  font-weight: 500;
}
.fs-hero-headline {
  font-size: clamp(36px, 5.5vw, 65px);
  font-weight: var(--fw_medium);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 24px;
}
.fs-hero-sub {
  max-width: 580px;
  font-size: 14px;
  color: var(--primaryTextColor);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Hero stats strip */
.fs-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--layoutBorderColor);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.fs-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--layoutBorderColor);
}
.fs-hero-stat:last-child {
  border-bottom: none;
}
.fs-hero-stat-val {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.fs-hero-stat-val sup {
  font-size: 0.5em;
  vertical-align: super;
}
.fs-hero-stat-lbl {
  font-size: 12px;
  color: var(--primaryTextColor);
  font-weight: 400;
}

/* Hero decorative image + dark section real images */
.fs-hero-img-wrap {
  margin-top: 48px;
}
.fs-hero-real-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}
.fs-dark-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.fs-solution-img {
  overflow: hidden;
  position: relative;
  background: var(--black);
}
.fs-solution-real-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
  will-change: transform;
}
.fs-panel-real-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ── Blank image placeholders ──────────────────────────────────────── */
.fs-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--landingBackground);
  background-image:
    linear-gradient(rgba(178, 179, 183, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 179, 183, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 12px;
  border: 1px solid var(--layoutBorderColor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Hero banner placeholder — wide strip, no bottom-radius/border */
.fs-img-placeholder--hero {
  aspect-ratio: 21 / 7;
  border-radius: 12px 12px 0 0;
  border-bottom: none;
}
/* Full-height side thumbnail */
.fs-img-placeholder--tall {
  aspect-ratio: unset;
  height: 100%;
  min-height: 380px;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
/* Tab-panel illustration */
.fs-img-placeholder--panel {
  aspect-ratio: 4 / 3;
}
/* Solution card thumbnail */
.fs-img-placeholder--solution {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--layoutBorderColor);
}
/* Solution card icon overlay */
.fs-solution-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--layoutBorderColor);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondaryMastercolor);
}
/* Tab panel icon badge */
.fs-panel-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(246, 99, 32, 0.1);
  border: 1px solid rgba(246, 99, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondaryMastercolor);
  position: absolute;
}

/* ══════════════════════════════════════════════════════════════════
   KEY BENEFITS — sticky split layout (fsbv-)
══════════════════════════════════════════════════════════════════ */

/* Section wrapper */
.fsbv-section {
  background: var(--landingBackground);
}
.fsbv-header {
  pointer-events: none;
}
.fsbv-body {
  display: block;
}
.fsbv-list {
  width: 100%;
}
.fsbv-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondaryMastercolor);
  margin-bottom: 10px;
}
.fsbv-icon svg {
  width: 22px;
  height: 22px;
}
.fsbv-title {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.25;
}
.fsbv-desc {
  font-size: 13px;
  color: var(--primaryTextColor);
  line-height: 1.65;
}

.fsbv-kicker {
  margin-bottom: 14px;
  opacity: 0.9;
}

.fsbv-lead {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fsbv-lead > * {
  position: relative;
  z-index: 1;
}

.fsbv-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 560 420' fill='none'%3E%3Cg opacity='.98'%3E%3Cpath d='M358 58c62 0 112 50 112 112S420 282 358 282' stroke='%23ffffff' stroke-opacity='.14' stroke-width='1.6'/%3E%3Cpath d='M358 88c45 0 82 37 82 82s-37 82-82 82' stroke='%23ff7a3d' stroke-opacity='.32' stroke-width='1.7'/%3E%3Cpath d='M358 118c29 0 52 23 52 52s-23 52-52 52' stroke='%23ffffff' stroke-opacity='.2' stroke-width='1.6'/%3E%3C/g%3E%3Cg opacity='.9'%3E%3Cpath d='M40 332c44-35 96-52 156-52s113 17 163 52' stroke='%23ffffff' stroke-opacity='.14' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M88 364c35-25 76-37 120-37s84 12 119 37' stroke='%23ff7a3d' stroke-opacity='.36' stroke-width='1.8' stroke-linecap='round'/%3E%3C/g%3E%3Cg opacity='.78'%3E%3Crect x='52' y='86' width='98' height='62' rx='10' stroke='%23ffffff' stroke-opacity='.14'/%3E%3Cpath d='M74 110h54M74 125h40' stroke='%23ffffff' stroke-opacity='.22' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 112% 112%;
  background-position: 86% 40%;
  opacity: 0.98;
  pointer-events: none;
}

.fsbv-lead::after {
  content: "";
  position: absolute;
  right: -82px;
  top: -82px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(255, 122, 61, 0.35) 0%,
    rgba(255, 122, 61, 0.04) 48%,
    rgba(255, 122, 61, 0) 72%
  );
  pointer-events: none;
}

.fsbv-lead-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.fsbv-metric {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fsbv-metric-value {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .fsbv-lead::before {
    background-size: 140% 140%;
    background-position: 68% 46%;
    opacity: 0.6;
  }

  .fsbv-lead::after {
    width: 210px;
    height: 210px;
    right: -90px;
    top: -90px;
  }
}

.fsbv-mark {
  min-width: 88px;
}

.fsbv-mark-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fsbv-bullet {
  position: relative;
  padding: 12px 14px 12px 30px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  line-height: 1.6;
}

.fsbv-bullet::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
}

.fsbv-reveal {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.fsbv-reveal:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.06);
  border-color: rgba(246, 99, 32, 0.35);
}

.fs-solution-card {
  border: 1px solid var(--layoutBorderColor);
  overflow: hidden;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.fs-solution-card:hover {
  border-color: rgba(246, 99, 32, 0.4);
  box-shadow: 0 8px 32px rgba(246, 99, 32, 0.1);
}
.fs-solution-card:hover .fs-solution-real-img {
  transform: scale(1.07);
  opacity: 0.88;
}
.fs-solution-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.28) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.fs-solution-card:hover .fs-solution-img::after {
  opacity: 1;
}
.fs-solution-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fs-solution-card--iconic {
  padding: 22px;
}

.fs-solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 16px;
}

.fs-solution-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  color: var(--secondaryMastercolor);
}

.fs-solution-icon svg {
  width: 24px;
  height: 24px;
}

.fs-solution-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(246, 99, 32, 0.08);
  color: var(--secondaryMastercolor);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fs-solution-card--iconic .fs-solution-body {
  padding: 0;
}

.fs-solution-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-solution-points li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--primaryTextColor);
}

.fs-solution-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
}
.fs-solution-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.3;
}
.fs-solution-desc {
  font-size: 13px;
  color: var(--primaryTextColor);
  line-height: 1.6;
  margin: 0;
}

.fs-solutions-board {
  position: relative;
}

.fs-solutions-lead {
  position: relative;
  overflow: hidden;
}

.fs-solutions-lead::after {
  content: "";
  position: absolute;
  inset: auto -36px -46px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.fs-solutions-kicker {
  opacity: 0.9;
}

.fs-solutions-lead-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
}

.fs-solutions-lead-metric {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fs-solutions-metric-value {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.fs-solutions-item {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.fs-solutions-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.06);
  border-color: rgba(246, 99, 32, 0.35);
}

.fs-solutions-item--wide {
  min-height: 100%;
}

.fs-solutions-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--secondaryMastercolor);
}

.fs-solutions-icon svg {
  width: 24px;
  height: 24px;
}

.fs-solutions-point {
  position: relative;
  padding: 12px 14px 12px 30px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  line-height: 1.6;
}

.fs-solutions-point::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
}

.fs-solutions-mosaic {
  position: relative;
}

.fs-solutions-spotlight {
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.fs-solutions-spotlight::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.fs-solutions-spot-metric {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fs-solutions-feature {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.fs-solutions-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.06);
  border-color: rgba(246, 99, 32, 0.35);
}

.fs-solutions-feature--highlight {
  background: linear-gradient(
    180deg,
    rgba(246, 99, 32, 0.04) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.fs-solutions-feature-iconWrap {
  width: 96px;
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.fs-solutions-feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--secondaryMastercolor);
}

.fs-solutions-feature-icon svg {
  width: 24px;
  height: 24px;
}

.fs-solutions-feature-num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fs-solutions-inline-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--secondaryMastercolor);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .fs-solutions-spotlight {
    position: static;
  }
  .fs-solutions-feature-iconWrap {
    width: auto;
    flex-direction: row;
    align-items: center;
  }
}

.fs-solutions-rail-layout {
  position: relative;
}

.fs-solutions-rail-sticky {
  position: sticky;
  top: 96px;
}

.fs-solutions-rail-list {
  border: 1px solid var(--layoutBorderColor);
}

.fs-solutions-rail-row {
  min-height: 100%;
}

.fs-solutions-rail-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fs-solutions-rail-num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fs-solutions-copy {
  max-width: 56ch;
}

.fs-solutions-hub {
  position: relative;
}

.fs-solutions-ops {
  position: relative;
}

.fs-solutions-ops-head {
  border: 1px solid var(--layoutBorderColor);
  background:
    linear-gradient(
      180deg,
      rgba(246, 99, 32, 0.08) 0%,
      rgba(255, 255, 255, 1) 64%
    ),
    var(--white);
}

.fs-solutions-ops-label {
  letter-spacing: 0.08em;
}

.fs-solutions-ops-kpi {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 8px;
  text-align: center;
}

.fs-solutions-ops-kpi strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  color: var(--black);
}

.fs-solutions-ops-kpi span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primaryTextColor);
}

.fs-solutions-ops-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --fs-sol-card-bg-size: 210px 210px;
  --fs-sol-card-bg-position: right -34px bottom -46px;
  --fs-sol-card-bg-opacity: 0.6;
  --fs-sol-card-svg: none;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.fs-solutions-ops-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--fs-sol-card-svg);
  background-repeat: no-repeat;
  background-size: var(--fs-sol-card-bg-size);
  background-position: var(--fs-sol-card-bg-position);
  opacity: var(--fs-sol-card-bg-opacity);
  pointer-events: none;
}

.fs-solutions-ops-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.06);
  border-color: rgba(246, 99, 32, 0.35);
}

.fs-solutions-ops-card--feature {
  --fs-sol-card-bg-size: 260px 260px;
  --fs-sol-card-bg-position: right -42px top -58px;
  --fs-sol-card-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260' fill='none'%3E%3Ccircle cx='168' cy='92' r='64' stroke='%23f66320' stroke-opacity='.23' stroke-width='1.5'/%3E%3Ccircle cx='168' cy='92' r='42' stroke='%23f66320' stroke-opacity='.22' stroke-width='1.5'/%3E%3Cpath d='M40 194c36-28 84-28 120 0' stroke='%23f66320' stroke-opacity='.2' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M62 224c30-21 66-21 95 0' stroke='%23f66320' stroke-opacity='.17' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background: linear-gradient(
    180deg,
    rgba(246, 99, 32, 0.04) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.fs-solutions-ops-card--hotel {
  --fs-sol-card-bg-size: 230px 230px;
  --fs-sol-card-bg-position: right -34px top -38px;
}

.fs-solutions-ops-card--airport {
  --fs-sol-card-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none'%3E%3Cpath d='M20 170h180' stroke='%23f66320' stroke-opacity='.17' stroke-width='1.8'/%3E%3Cpath d='M28 170l52-56 28-8 40-40 16 8-18 42 46 18v14H28Z' stroke='%23f66320' stroke-opacity='.2' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M54 68h110' stroke='%23000' stroke-opacity='.06' stroke-width='1.2'/%3E%3C/svg%3E");
  --fs-sol-card-bg-size: 210px 210px;
  --fs-sol-card-bg-position: right -38px bottom -46px;
}

.fs-solutions-ops-card--booking {
  --fs-sol-card-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none'%3E%3Crect x='40' y='34' width='136' height='150' rx='10' stroke='%23f66320' stroke-opacity='.2' stroke-width='1.6'/%3E%3Cpath d='M64 74h88M64 102h88M64 130h58' stroke='%23f66320' stroke-opacity='.24' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='156' cy='146' r='18' stroke='%23000' stroke-opacity='.06'/%3E%3Cpath d='M150 146l5 5 9-10' stroke='%23f66320' stroke-opacity='.34' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --fs-sol-card-bg-size: 205px 205px;
  --fs-sol-card-bg-position: right -28px bottom -38px;
}

.fs-solutions-ops-card--domestic {
  --fs-sol-card-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none'%3E%3Crect x='28' y='52' width='164' height='116' rx='12' stroke='%23f66320' stroke-opacity='.18' stroke-width='1.6'/%3E%3Cpath d='M56 98h108M56 124h72' stroke='%23f66320' stroke-opacity='.22' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M44 166h140' stroke='%23000' stroke-opacity='.06' stroke-width='1.2'/%3E%3C/svg%3E");
  --fs-sol-card-bg-size: 208px 208px;
  --fs-sol-card-bg-position: right -34px bottom -44px;
}

.fs-solutions-ops-card--dark {
  --fs-sol-card-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Cpath d='M26 170c18-18 34-26 58-34 30-10 56-8 88-2' stroke='%23ffffff' stroke-opacity='.14' stroke-width='1.4'/%3E%3Cpath d='M22 204c30-28 67-38 111-36 28 2 52 8 86 20' stroke='%23f66320' stroke-opacity='.3' stroke-width='1.8'/%3E%3Ccircle cx='178' cy='64' r='34' stroke='%23ffffff' stroke-opacity='.16' stroke-width='1.4'/%3E%3Ccircle cx='178' cy='64' r='18' stroke='%23f66320' stroke-opacity='.35' stroke-width='1.4'/%3E%3C/svg%3E");
  --fs-sol-card-bg-size: 236px 236px;
  --fs-sol-card-bg-position: right -44px bottom -54px;
  --fs-sol-card-bg-opacity: 0.9;
  background: linear-gradient(165deg, #13161a 0%, #21262c 100%);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.fs-solutions-ops-card--mobility {
  --fs-sol-card-bg-size: 224px 224px;
}

.fs-solutions-ops-card--dark .text_secondaryMastercolor {
  color: rgba(255, 255, 255, 0.74) !important;
}

.fs-solutions-ops-card--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.fs-solutions-ops-num {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fs-solutions-ops-num--dark {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.fs-solutions-ops-pill {
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  padding: 9px 10px;
  font-size: 12px;
  color: var(--black);
  text-align: center;
}

.fs-solutions-ops-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondaryMastercolor);
}

.fs-solutions-ops-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fs-solutions-ops-list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.fs-solutions-ops-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f66320;
}

.fs-solutions-strategy {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 255, 255, 0.14),
      transparent 45%
    ),
    linear-gradient(160deg, #111316 0%, #1f2328 100%);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.fs-solutions-strategy-eyebrow {
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.fs-solutions-strategy-copy {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.fs-solutions-strategy-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.36),
    rgba(255, 255, 255, 0)
  );
}

.fs-solutions-strategy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-solutions-strategy-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.fs-solutions-strategy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f66320;
}

.fs-solutions-kpi {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
}

.fs-solutions-kpi strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.fs-solutions-kpi span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.fs-solutions-deck {
  align-content: stretch;
}

.fs-solutions-card {
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.fs-solutions-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.06);
  border-color: rgba(246, 99, 32, 0.3);
}

.fs-solutions-card--hero {
  background: linear-gradient(
    180deg,
    rgba(246, 99, 32, 0.06) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.fs-solutions-card-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--secondaryMastercolor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
}

.fs-solutions-card-icon svg {
  width: 24px;
  height: 24px;
}

.fs-solutions-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fs-solutions-inline-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  color: var(--secondaryMastercolor);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fs-solutions-card--timeline {
  background: linear-gradient(
    180deg,
    rgba(245, 246, 248, 0.72) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.fs-solutions-stage {
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  padding: 16px;
  height: 100%;
}

.fs-solutions-stage-num {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--layoutBorderColor);
  background: var(--landingBackground);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .fs-solutions-ops-card {
    --fs-sol-card-bg-size: 160px 160px;
    --fs-sol-card-bg-position: right -24px bottom -28px;
    --fs-sol-card-bg-opacity: 0.42;
  }

  .fs-solutions-ops-card--dark {
    --fs-sol-card-bg-opacity: 0.6;
  }

  .fs-solutions-ops-card:hover {
    transform: none;
    box-shadow: none;
  }

  .fs-solutions-strategy {
    position: static;
  }

  .fs-solutions-card:hover {
    transform: none;
    box-shadow: none;
  }

  .fs-solutions-rail-sticky {
    position: static;
  }
}

/* ── Benefit tabs navigation ───────────────────────────────────────── */
.fs-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
}
.fs-tab-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
  text-align: left;
  line-height: 1.35;
  flex: 1 1 0;
  min-width: 140px;
  outline: none;
}
.fs-tab-btn:hover {
  color: var(--black);
}
.fs-tab-btn:focus-visible {
  box-shadow: inset 0 0 0 2px var(--secondaryMastercolor);
}
.fs-tab-btn--active {
  color: var(--black);
  border-bottom-color: var(--secondaryMastercolor);
}
.fs-tab-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--secondaryMastercolor);
  font-weight: 600;
}

/* ── Benefit tab panels ────────────────────────────────────────────── */
.fs-tab-panel {
  display: none;
}
.fs-tab-panel--active {
  display: block;
}
.fs-panel-heading {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fs-panel-shell,
.fs-panel-sidecard {
  border: 1px solid var(--layoutBorderColor);
  background: var(--white);
  padding: 24px;
  height: 100%;
}

.fs-panel-badge {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(246, 99, 32, 0.08);
  color: var(--secondaryMastercolor);
  border: 1px solid rgba(246, 99, 32, 0.18);
}

.fs-panel-badge svg {
  width: 28px;
  height: 28px;
}

.fs-panel-sidecard {
  background: var(--landingBackground);
}

.fs-panel-side-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondaryMastercolor);
  margin: 0 0 18px;
}

.fs-panel-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.fs-panel-side-list li {
  padding: 14px 0;
  border-top: 1px solid var(--layoutBorderColor);
  font-size: 13px;
  line-height: 1.7;
  color: var(--primaryTextColor);
}

.fs-panel-side-list li:last-child {
  border-bottom: 1px solid var(--layoutBorderColor);
}

/* Bullet list inside panel */
.fs-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fs-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--primaryTextColor);
  line-height: 1.6;
  padding: 14px 0;
  border-bottom: 1px solid var(--layoutBorderColor);
}
.fs-panel-list li:first-child {
  border-top: 1px solid var(--layoutBorderColor);
}
.fs-panel-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
  flex-shrink: 0;
  margin-top: 8px;
}

.product-hover-video {
  height: 380px;
}

/* ── CTA banner ────────────────────────────────────────────────────── */
.fs-cta-sub {
  max-width: 520px;
}
.fs-btn-dark {
  background: var(--black) !important;
}
.fs-btn-dark:hover {
  background: #222 !important;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .fs-hero-stats {
    flex-direction: row;
    border-radius: 12px;
  }
  .fs-hero-stat {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--layoutBorderColor);
    padding: 16px;
  }
  .fs-hero-stat:last-child {
    border-right: none;
  }
  .fs-img-placeholder--tall {
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .fs-tab-btn {
    flex: 1 1 50%;
    min-width: 50%;
    border-bottom: 2px solid transparent;
  }
  .fs-img-placeholder--tall {
    min-height: 200px;
    border-radius: 12px;
    border: 1px solid var(--layoutBorderColor);
  }
  .fs-hero-inner {
    padding-top: 40px;
  }
  .fs-hero-stats {
    margin-top: 24px;
  }

  /* Key Benefits — single column on mobile */
  .fsbv-body {
    display: block;
  }
  .fsbv-list {
    width: 100%;
  }
  .fsbv-mark {
    min-width: 100%;
  }
}

/* ── Tablet: hide sticky image, list takes full width ── */
@media (min-width: 768px) and (max-width: 991px) {
  .fsbv-body {
    display: block;
  }
  .fsbv-list {
    width: 100%;
  }
}

/* ── Privacy Policy ─────────────────────────────────────────────────────── */

/* Hero title — fluid scale */
.pp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primaryHeadingColor);
}

/* Eyebrow badge */
.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246, 99, 32, 0.08);
  border: 1px solid rgba(246, 99, 32, 0.2);
  color: var(--secondaryMastercolor);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.pp-badge svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero meta icons */
.pp-hero-meta-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--secondaryMastercolor);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── TOC Sidebar ─────────────────────────────────────────────────────────── */
.pp-toc {
  position: sticky;
  top: 90px;
}
@media (max-width: 991px) {
  .pp-toc {
    position: static;
    border: 1px solid var(--layoutBorderColor);
    border-radius: 12px;
    padding: 24px;
    background: var(--landingBackground);
    margin-bottom: 32px;
  }
}
.pp-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primaryTextColor);
}
.pp-toc-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 10px 7px 12px;
  font-size: 13px;
  color: var(--primaryTextColor);
  border-left: 2px solid transparent;
  line-height: 1.4;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  border-radius: 0 6px 6px 0;
}
.pp-toc-link:hover,
.pp-toc-link.is-active {
  color: var(--secondaryMastercolor);
  border-left-color: var(--secondaryMastercolor);
  background: rgba(246, 99, 32, 0.04);
}
.pp-toc-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondaryMastercolor);
  min-width: 20px;
  opacity: 0.7;
}

/* ── Section layout ──────────────────────────────────────────────────────── */
.pp-section {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--layoutBorderColor);
  margin-bottom: 3.5rem;
}
.pp-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Section number badge */
.pp-section-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(246, 99, 32, 0.08);
  border: 1px solid rgba(246, 99, 32, 0.15);
  font-size: 13px;
  font-weight: 700;
  color: var(--secondaryMastercolor);
  flex-shrink: 0;
}

/* Paragraph line-height within sections */
.pp-section p {
  line-height: 1.75;
}

/* Custom bullet lists (orange dots) */
.pp-section ul,
.pp-section ol {
  list-style: none;
  padding-left: 0;
}
.pp-section ul li,
.pp-section ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--primaryTextColor);
}
.pp-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
}
.pp-section ol {
  counter-reset: pp-ol;
}
.pp-section ol li {
  counter-increment: pp-ol;
}
.pp-section ol li::before {
  content: counter(pp-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondaryMastercolor);
}

/* ── Data type cards ─────────────────────────────────────────────────────── */
.pp-data-card {
  transition: border-color 0.2s;
}
.pp-data-card:hover {
  border-color: rgba(246, 99, 32, 0.35) !important;
}
.pp-data-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(246, 99, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.pp-data-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondaryMastercolor);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Callout block ───────────────────────────────────────────────────────── */
.pp-callout {
  background: rgba(246, 99, 32, 0.05);
  border: 1px solid rgba(246, 99, 32, 0.2);
  border-left: 3px solid var(--secondaryMastercolor);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}

/* ── Table overrides ─────────────────────────────────────────────────────── */
.pp-table thead th {
  background: var(--landingBackground);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primaryTextColor);
}
.pp-table tbody td {
  vertical-align: top;
}
.pp-table tbody tr:hover td {
  background: rgba(246, 99, 32, 0.025);
}

/* ── Rights item ─────────────────────────────────────────────────────────── */
.pp-right-item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primaryHeadingColor);
  margin-bottom: 6px;
}
.pp-right-item-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondaryMastercolor);
  flex-shrink: 0;
}

/* ── Contact card icon ───────────────────────────────────────────────────── */
.pp-contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(246, 99, 32, 0.08);
  border: 1px solid rgba(246, 99, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--secondaryMastercolor);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
