/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #f4f4f5;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 140px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-logo {
  height: 46px;
  width: 125px;
  flex-shrink: 0;
}

.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #9f9fa9;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.3s, transform 0.2s;
}

.header-cta:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0 0 -10px 0;
}

.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1920px;
  height: 1080px;
  max-width: none;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 322px 140px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 59px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  width: 496px;
}

.page-advisory .hero-title {
  width: 750px;
}

.page-advisory .hero-title .hero-title-white,
.page-advisory .hero-title .hero-title-gray {
  display: inline;
}

.hero-title-white,
.hero-subtitle.hero-title-white {
  color: #fff;
  display: block;
}

.hero-title-gray {
  color: #9f9fa9;
  display: block;
}

.hero-text-right {
  margin-top: 100px;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 600;
  color: #9f9fa9;
  text-align: right;
  line-height: 59px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  width: 496px;
  text-shadow: 0 4px 9.1px #000;
}

.hero-stats {
  font-size: 14px;
  font-weight: 400;
  color: #adadad;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 28px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  padding: 0 140px 18px;
}

.hero-bottom-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.hero-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 16px 17px;
  height: 53px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

.hero-cta-btn:hover {
  background: #e4e4e7;
  transform: translateY(-2px);
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: #9f9fa9;
  line-height: 22px;
  max-width: 459px;
  text-align: left;
}

.hero-logo-icon {
  width: 45px;
  height: 45px;
}

.hero-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== PAGE CONTAINER (48px safe margin) ===== */
.page-container {
  width: 100%;
  box-sizing: border-box;
  padding-left: 140px;
  padding-right: 140px;
}

/* ===== SECTIONS SHARED ===== */
.section-title {
  font-size: 48px;
  font-weight: 500;
  color: #f4f4f5;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #9f9fa9;
  line-height: 28px;
  padding-bottom: 12px;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  padding: 21px 20px;
  border: 1px solid #b4b4b4;
  color: #9f9fa9;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.connect-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: #fff;
}

/* ===== LOGO BARS ===== */
.logo-bars {
  padding: 0 140px;
}

.logo-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #262626;
  overflow: hidden;
}

.logo-bar-row:last-child {
  border-bottom: none;
  border-top: 1px solid #262626;
}

.logo-bar-label {
  flex-shrink: 0;
  width: 348px;
  padding: 26px 23px;
}

.logo-bar-label p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #9f9fa9;
  white-space: nowrap;
}

.logo-bar-logos {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 66px;
  min-width: 0;
  overflow: hidden;
}

.logo-bar-logos.spread {
  justify-content: space-between;
  gap: 0;
}

.logo-bar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bar-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.logo-bar-logo:hover img {
  opacity: 1;
}

.logo-bar-logo.decrypt-logo {
  width: 114px;
  height: 25px;
}

.logo-bar-logo.bi-logo {
  width: 92px;
  height: 29px;
}

.logo-bar-logo.yahoo-logo {
  width: 79px;
  height: 29px;
}

.logo-bar-logo.forbes-logo {
  width: 130px;
  height: 32px;
}

.logo-bar-logo.sv-logo {
  width: 125px;
  height: 46px;
}

.logo-bar-logo.sv-logo img {
  width: 98.4%;
  height: 94.87%;
}

/* Duplicate logos — shown only on mobile marquee, hidden on desktop */
.logo-bar-logo-dup {
  display: none;
}

/* ===== FOUR PILLARS ===== */
.pillars {
  padding: 72px 140px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 900px;
}

.pillars-header {
  margin-bottom: 36px;
}

.pillars-header .section-title {
  margin-bottom: 24px;
}

.pillars-cards {
  display: flex;
  align-items: stretch;
  position: relative;
  height: 535px;
  gap: 0;
}

.pillar-card {
  height: 535px;
  border-radius: 29px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 39px 24px 43px;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 650ms cubic-bezier(0.22, 1, 0.36, 1), flex-basis 650ms cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, transform 0.8s ease !important;
  will-change: width, flex-basis;
}

.pillar-card:not(:last-child) {
  margin-right: -118px;
}

.pillar-dark {
  background: #111;
  z-index: 1;
}

.pillar-gold {
  background: #f9b64f;
  z-index: 2;
}

.pillar-purple {
  background: #683cbf;
  z-index: 3;
}

.pillar-light {
  background: #f2f2f2;
  z-index: 4;
}

.pillar-name {
  font-size: 24px;
  font-weight: 500;
  color: #f4f4f5;
  text-transform: uppercase;
  line-height: 32px;
  text-align: center;
  position: absolute;
  top: 39px;
  white-space: nowrap;
}

.pillar-name-dark {
  color: #000;
}

.pillar-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  position: absolute;
  top: 337px;
  left: 50%;
  transform: translateX(-50%);
}

.pillar-gold .pillar-icon,
.pillar-light .pillar-icon {
  color: #000;
}

.pillar-desc {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 26px;
  width: 304px;
  position: absolute;
  top: 383px;
  left: 50%;
  transform: translateX(-50%);
}

.pillar-desc-dark {
  color: #000;
}

.pillar-stats {
  font-size: 12px;
  font-weight: 400;
  color: #71717b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: absolute;
  bottom: 43px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pillar-stats-dark {
  color: #000;
}

.pillar-image {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-dark .pillar-image {
  width: 232px;
  height: 309px;
}

.pillar-gold .pillar-image {
  width: 240px;
  height: 270px;
  top: 101px;
}

.pillar-purple .pillar-image {
  width: 181px;
  height: 270px;
  top: 92px;
}

.pillar-light .pillar-image {
  width: 199px;
  height: 265px;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: -41px;
}

/* ===== IMPACT ===== */
.impact {
  display: flex;
  gap: 36px;
  padding: 72px 140px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 900px;
  align-items: flex-start;
}

.impact-sticky {
  flex: 1;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 120px 0;
}

.impact-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
  flex-shrink: 0;
}

.impact-card {
  width: 660px;
  height: 450px;
  border-radius: 29px;
  overflow: hidden;
  position: relative;
}

.impact-card-bg {
  position: absolute;
  inset: 0;
}

.impact-card-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-card-dark .impact-card-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 89px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.impact-card-light .impact-card-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 89px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.impact-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 59px 43px 0;
}

.impact-label {
  font-size: 20px;
  font-weight: 500;
  color: #f4f4f5;
  text-transform: uppercase;
  width: 184px;
  line-height: 28px;
}

.impact-label-dark {
  color: #000;
}

.impact-number {
  font-size: 72px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -3.6px;
  line-height: 72px;
}

.impact-number-dark {
  color: #000;
}

.impact-card-bottom {
  position: absolute;
  bottom: 42px;
  left: 36px;
  right: 36px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.impact-step {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 70px;
}

.impact-step-dark {
  color: #000;
}

.impact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.impact-divider-dark {
  background: rgba(0, 0, 0, 0.2);
}

.impact-detail {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 26px;
}

.impact-detail-dark {
  color: #000;
}

/* ===== PROCESS ===== */
.process {
  display: flex;
  gap: 36px;
  padding: 72px 140px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 900px;
  align-items: flex-start;
}

.process-sticky {
  flex: 1;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 120px 0;
  order: 2;
}

.process-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
  flex-shrink: 0;
  order: 1;
}

.process-card {
  width: 660px;
  height: 425px;
  border-radius: 29px;
  overflow: hidden;
  position: relative;
}

.process-card-bg {
  position: absolute;
  inset: 0;
}

.process-card-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 89px;
  background: rgba(255, 255, 255, 0.3);
}

.process-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 59px 43px 0;
}

.process-label {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 28px;
}

.process-icon {
  width: 60px;
  height: 61px;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-card-bottom {
  position: absolute;
  bottom: 42px;
  left: 36px;
  right: 36px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.process-step {
  font-size: 16px;
  color: #000;
  line-height: 70px;
}

.process-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.process-detail {
  font-size: 18px;
  color: #000;
  line-height: 28px;
}

/* ===== FEATURED ===== */
.featured {
  padding: 72px 140px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured .section-title {
  margin-bottom: 84px;
}

.featured-cards {
  display: flex;
  gap: 24px;
}

/* Hide carousel nav on desktop */
.featured-carousel-nav {
  display: none;
}

.featured-card {
  flex: 1;
  height: 624px;
  background: #000;
  border: 1px solid rgba(93, 93, 93, 0.31);
  border-radius: 23px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.featured-card-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
}

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

.featured-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 40%);
}

.featured-card-info {
  position: absolute;
  top: 24px;
  left: 23px;
  right: 23px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.featured-card-logo {
  height: 29px;
  width: 92px;
}

.featured-card-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.featured-card-logo-group {
  height: 25px;
  width: 114px;
}

.featured-card-logo-group img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.featured-sv-logo {
  height: 100%;
}

.featured-card-title {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  line-height: 1.167;
}

.featured-card-date {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.167;
}

.featured-card-cta {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.34);
  padding: 14px 19px;
  border-radius: 25px;
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s, bottom 0.3s;
  text-decoration: none;
}

.featured-card:hover .featured-card-cta {
  opacity: 1;
  bottom: 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  height: 444px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  margin: 120px 0;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 896px;
  padding: 0 24px;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 500;
  color: #f4f4f5;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 16px 32px;
  height: 56px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background: #e4e4e7;
  transform: translateY(-2px);
}

.cta-note {
  font-size: 14px;
  color: #71717b;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 20px;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 97px 140px 40px;
}

.footer-main {
  display: flex;
  gap: 34px;
  padding: 0 140px;
  margin-bottom: 64px;
}

.footer-brand {
  width: 474px;
  flex-shrink: 0;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-sv-badge {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #f4f4f5;
  letter-spacing: -0.6px;
}

.footer-brand-logo {
  width: 215px;
  height: 79.12px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 28px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  color: #9f9fa9;
  line-height: 22.75px;
  max-width: 384px;
}

.footer-col {
  flex: 1;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 24px;
  line-height: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-list li a,
.footer-list li {
  font-size: 14px;
  color: #9f9fa9;
  line-height: 20px;
  transition: color 0.3s;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-list li a:hover {
  color: #fff;
}

.footer-location {
  font-size: 12px !important;
  color: #9f9fa9;
  line-height: 16px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 33px 140px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 12px;
  color: #71717b;
  line-height: 19.5px;
  max-width: 620px;
}

.footer-disclaimer strong {
  font-weight: 700;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.footer-legal-links a {
  font-size: 12px;
  color: #71717b;
  line-height: 16px;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-copyright {
  font-size: 12px;
  color: #52525c;
  line-height: 16px;
  padding: 0 140px;
}

/* ===== ABOUT HERO V2 ===== */
.about-hero-v2 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-hero-v2-bg {
  position: absolute;
  inset: 0;
}

.about-hero-v2-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1920px;
  height: 1080px;
  max-width: none;
  object-fit: cover;
}

.about-hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.about-hero-v2-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 322px 140px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex: 1;
}

.about-hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 643px;
}

.about-hero-v2-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-hero-v2-label-line {
  width: 32px;
  height: 1px;
  background: #fff;
  display: block;
}

.about-hero-v2-label-text {
  font-size: 13px;
  font-weight: 500;
  color: #9f9fa9;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-hero-v2-title {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #f4f4f5;
  line-height: 59px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  width: 600px;
}

.about-hero-v2-stats {
  font-size: 14px;
  font-weight: 400;
  color: #adadad;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 28px;
}

.about-hero-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  width: fit-content;
  margin-top: 8px;
}

.about-hero-v2-cta:hover {
  background: #fff;
  color: #000;
}

.about-hero-v2-desc {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-size: 15px;
  font-weight: 300;
  color: #9f9fa9;
  line-height: 22px;
  max-width: 339px;
  text-align: left;
}

/* ===== ABOUT QUOTE ===== */
.about-quote {
  position: relative;
  width: 100%;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-quote .quote-banner-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  width: 1920px;
  height: 1080px;
  max-width: none;
  object-fit: cover;
}

.about-quote .quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.about-quote .quote-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1020px;
  padding: 60px 140px;
}

.about-quote .quote-text {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-quote .quote-text em {
  font-style: italic;
}

.about-quote .quote-author {
  font-size: 15px;
  font-weight: 400;
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT TIMELINE (sticky left + scroll right) ===== */
.about-timeline {
  display: flex;
  gap: 36px;
  padding: 72px 140px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 900px;
  align-items: flex-start;
}

.about-timeline-sticky {
  flex: 1;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 120px 0;
}

.about-timeline-cards {
  flex: 0 0 660px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
}

/* Make year labels visible inside timeline cards */
.page-about .engage-card-bottom .engage-card-label {
  position: static;
  top: auto;
  left: auto;
}

/* ===== ABOUT PRINCIPLES (scroll left + sticky right) ===== */
.about-principles {
  display: flex;
  gap: 36px;
  padding: 72px 140px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 900px;
  align-items: flex-start;
}

.about-principles-sticky {
  flex: 1;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 120px 0;
  order: 2;
}

.about-principles-cards {
  flex: 0 0 660px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
  order: 1;
}

.about-principle-card {
  position: relative;
  width: 660px;
  height: 433px;
  border-radius: 29px;
  overflow: hidden;
}

.about-principle-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-principle-card-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-principle-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 152px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}

.about-principle-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-principle-num {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 20px;
}

.about-principle-name {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 28px;
  text-transform: uppercase;
}

.about-principle-detail {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 22px;
}

/* ===== ABOUT LEADERSHIP ===== */
.about-leadership {
  padding: 128px 127px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-leadership-title {
  margin-bottom: 128px;
  padding-bottom: 32px;
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.about-leader {
  display: flex;
  flex-direction: column;
  gap: 77px;
}

.about-leader-photo {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  overflow: hidden;
  background: #18181b;
}

.about-leader-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-leader-photo-placeholder span {
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 4px;
}

.about-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-leader-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-leader-name {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #f4f4f5;
  line-height: 36px;
}

.about-leader-role {
  font-size: 15px;
  font-weight: 400;
  color: #9f9fa9;
  line-height: 20px;
  margin-top: -20px;
}

.about-leader-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.about-leader-points li {
  font-size: 16px;
  font-weight: 400;
  color: #d4d4d8;
  line-height: 24px;
  padding-left: 22px;
  position: relative;
}

.about-leader-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4d4d8;
}

/* ===== ABOUT METRICS ===== */
.about-metrics {
  padding: 72px 0 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.about-metrics-header {
  margin-bottom: 60px;
  padding: 0 140px;
}

.about-metrics-header .section-title {
  margin-bottom: 12px;
}

.about-metric-card {
  flex: 0 0 412.5px;
  height: 535px;
  border-radius: 29px;
  background: #111;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease;
}

.about-metric-card:hover {
  transform: translateY(-4px);
}

/* Card 1: Users onboarded */
.about-metric-card.am-card-1:hover {
  background: #f3f4f1;
}

.about-metric-card.am-card-1:hover .about-metric-number {
  color: #000;
}

.about-metric-card.am-card-1:hover .about-metric-subtitle {
  color: #000;
}

.about-metric-card.am-card-1:hover .about-metric-card-img img {
  filter: invert(1);
}

/* Card 2: Business owners */
.about-metric-card.am-card-2:hover {
  background: #ffebb2;
}

.about-metric-card.am-card-2:hover .about-metric-number {
  color: #000;
}

.about-metric-card.am-card-2:hover .about-metric-subtitle {
  color: #000;
}

.about-metric-card.am-card-2:hover .about-metric-card-img img {
  filter: invert(1);
}

/* Card 3: Raised by founders */
.about-metric-card.am-card-3:hover {
  background: #feb64c;
}

.about-metric-card.am-card-3:hover .about-metric-number {
  color: #000;
}

.about-metric-card.am-card-3:hover .about-metric-subtitle {
  color: #000;
}

.about-metric-card.am-card-3:hover .about-metric-card-img img {
  filter: invert(1);
}

/* Card 4: Countries */
.about-metric-card.am-card-4:hover {
  background: #6954c8;
}

.about-metric-card.am-card-4:hover .about-metric-number {
  color: #fff;
}

.about-metric-card.am-card-4:hover .about-metric-subtitle {
  color: #fff;
}

.about-metric-card.am-card-4:hover .about-metric-card-img img {
  filter: none;
}

/* Card 5: Execution leadership */
.about-metric-card.am-card-5:hover {
  background: #2849ff;
}

.about-metric-card.am-card-5:hover .about-metric-number {
  color: #fff;
}

.about-metric-card.am-card-5:hover .about-metric-subtitle {
  color: #fff;
}

.about-metric-card.am-card-5:hover .about-metric-card-img img {
  filter: none;
}

/* Card 6: Sprint cadence */
.about-metric-card.am-card-6:hover {
  background: #26d6c9;
}

.about-metric-card.am-card-6:hover .about-metric-number {
  color: #000;
}

.about-metric-card.am-card-6:hover .about-metric-subtitle {
  color: #000;
}

.about-metric-card.am-card-6:hover .about-metric-card-img img {
  filter: invert(1);
}

.about-metric-card-img {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: 279px;
  height: 267px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-metric-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: filter 0.4s ease;
  filter: none;
}

.about-metric-number {
  position: absolute;
  top: 321px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 300;
  line-height: 116px;
  letter-spacing: -3px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.about-metric-subtitle {
  position: absolute;
  top: 437px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #d4d4d8;
  text-transform: uppercase;
  width: 263px;
  text-align: center;
  transition: color 0.4s ease;
}

/* ===== ABOUT PAGE CTA OVERRIDE ===== */
.page-about .cta-section {
  margin-top: 0;
}

/* ===== ABOUT PAGE RESPONSIVE (≤1400px) ===== */
@media (max-width: 1400px) {
  .about-hero-v2-content {
    padding: 200px 32px 48px;
  }

  .about-hero-v2-title {
    font-size: 40px;
    line-height: 50px;
    width: 100%;
  }

  .about-timeline,
  .about-principles {
    flex-direction: column;
    padding: 60px 32px;
  }

  .about-timeline-sticky,
  .about-principles-sticky {
    position: relative;
    top: auto;
    padding: 0 0 40px;
  }

  .about-principles-sticky {
    order: -1;
  }

  .about-principles-cards {
    order: 1;
  }

  .about-timeline-cards,
  .about-principles-cards {
    flex: none;
    width: 100%;
    padding: 0;
    gap: 60px;
  }

  .about-principle-card {
    width: 100%;
  }

  .about-leadership {
    padding: 80px 32px;
  }

  .about-leadership-title {
    margin-bottom: 60px;
  }

  .about-metrics {
    padding: 60px 32px 80px;
  }
}

/* ===== ABOUT PAGE RESPONSIVE (≤768px) ===== */
@media (max-width: 768px) {
  .about-hero-v2 {
    min-height: 100vh;
    height: auto;
  }

  .about-hero-v2-content {
    flex-direction: column;
    padding: 120px 24px 40px;
    align-items: flex-start;
    gap: 24px;
    flex-grow: 1;
  }

  .about-hero-v2-title {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 2.4px;
    width: 100%;
  }

  .about-hero-v2-desc {
    position: static;
    max-width: 100%;
    margin-top: auto;
  }

  .about-quote {
    height: 500px;
  }

  .about-quote .quote-banner-content {
    padding: 40px 24px;
  }

  .about-quote .quote-text {
    font-size: 28px;
  }

  .about-timeline,
  .about-principles {
    padding: 48px 24px;
    min-height: auto;
    gap: 32px;
  }

  .about-timeline-sticky,
  .about-principles-sticky {
    padding: 0 0 24px;
    gap: 16px;
  }

  .about-timeline-cards,
  .about-principles-cards {
    gap: 24px;
  }

  .about-principle-card {
    height: 380px;
  }

  .about-leadership {
    padding: 60px 24px;
  }

  .about-leadership-title {
    margin-bottom: 40px;
  }

  .about-leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-leader {
    gap: 40px;
  }

  .about-metrics {
    padding: 48px 0 60px;
  }

  .about-metrics-header {
    padding: 0 32px;
  }

  .about-metric-card {
    flex: 0 0 320px;
    height: 400px;
  }

  .about-metric-card-img {
    top: 30px;
    width: 200px;
    height: 190px;
  }

  .about-metric-number {
    top: 230px;
    font-size: 64px;
    line-height: 80px;
  }

  .about-metric-subtitle {
    top: 320px;
    font-size: 14px;
    line-height: 22px;
    width: 220px;
  }
}

@media (max-width: 480px) {
  .about-hero-v2-title {
    font-size: 28px;
    line-height: 40px;
  }

  .about-leader-name {
    font-size: 22px;
    line-height: 28px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* Blur page content when menu is open */
body.menu-open .hero,
body.menu-open .logo-bars,
body.menu-open .pillars,
body.menu-open .impact,
body.menu-open .process,
body.menu-open .featured,
body.menu-open .cta-section,
body.menu-open .site-footer {
  filter: blur(8px);
  transition: filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Remove blur when menu is closed */
.hero,
.logo-bars,
.pillars,
.impact,
.process,
.featured,
.cta-section,
.site-footer {
  transition: filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-inner {
  padding: 8px 24px 32px;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9f9fa9;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  margin: -0.5px;
  position: relative;
  transition: color 0.3s, background 0.3s;
}

.mobile-menu-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Decorative corner brackets */
.mobile-menu-item::before {
  content: '┌';
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

.mobile-menu-item::after {
  content: '┘';
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

/* Center cross decorations at grid intersections */
.mobile-menu-grid::before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.15);
  z-index: 2;
  pointer-events: none;
}

.mobile-menu-grid::after {
  content: '—';
  position: absolute;
  top: calc(100% / 3);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 14px 20px;
  margin-top: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background 0.3s;
  width: 100%;
}

.mobile-menu-cta:hover {
  background: #e4e4e7;
}

/* Hamburger → X animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column;
    padding-top: 200px;
    gap: 24px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 36px;
    line-height: 44px;
    width: 100%;
  }

  .hero-subtitle {
    text-align: left;
  }

  .impact,
  .process {
    flex-direction: column;
  }

  .impact-sticky,
  .process-sticky {
    position: relative;
    top: auto;
    padding: 0 0 40px;
  }

  .impact-cards,
  .process-cards {
    padding: 0 0 72px;
    width: 100%;
    flex-shrink: 1;
  }

  .impact-card,
  .process-card {
    width: 100%;
  }

  .process-sticky {
    order: 0;
  }

  .process-cards {
    order: 1;
  }
}

/* ===== MOBILE BREAKPOINT (≤768px) ===== */
@media (max-width: 768px) {

  /* --- Header --- */
  .site-header {
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.87);
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100vh;
    height: auto;
  }

  /* Scale video down to show full logo on mobile */
  .hero-bg video {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(3.5);
    object-fit: contain;
  }

  .hero-content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 24px;
    padding-top: 75px;
    gap: 0;
    align-items: flex-start;
  }

  /* Order: stats (1) → title (2) → subtitle (3) */
  .hero-text-left {
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .hero-stats {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1.4px;
    margin-top: 0;
    order: -1;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 2.4px;
    width: 100%;
    order: 2;
  }

  .hero-title-gray {
    color: #9f9fa9;
  }

  .page-advisory .hero-title {
    width: 100%;
  }

  .page-advisory .hero-title .hero-title-white,
  .page-advisory .hero-title .hero-title-gray {
    display: block;
  }

  .hero-text-right {
    margin-top: 24px;
    order: 2;
  }

  .hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.5px;
    text-align: left;
    width: 100%;
    text-shadow: 0 4px 9.1px #000;
  }

  .hero-subtitle.hero-title-white {
    color: #9f9fa9;
  }

  /* Show hero bottom on mobile */
  .hero-bottom {
    display: block;
    padding: 0 24px 24px;
    margin-top: auto;
  }

  .hero-bottom-line {
    display: none;
  }

  .hero-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-bottom .hero-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-logo-icon {
    display: none;
  }

  /* --- Logo Bars --- */
  .logo-bars {
    padding: 17px 24px 0;
  }

  .logo-bar-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border-bottom: none;
    border-color: #919191;
  }

  .logo-bar-row:first-child {
    border-bottom: 1px solid #919191;
    padding-bottom: 26px;
  }

  .logo-bar-row:nth-child(2) {
    border-bottom: 1px solid #919191;
    border-top: 1px solid #919191;
    padding: 26px 0;
  }

  .logo-bar-row:last-child {
    border-bottom: none;
    border-top: 1px solid #919191;
    padding-top: 26px;
  }

  .logo-bar-label {
    width: 100%;
    padding: 12px 0;
  }

  .logo-bar-label p {
    font-size: 24px;
    letter-spacing: 5px;
  }

  .logo-bar-logos {
    gap: 24px;
    flex-wrap: wrap;
  }

  .logo-bar-logos.spread {
    justify-content: flex-start;
    gap: 24px;
  }

  /* Marquee: row clips, logos container scrolls as a unit */
  .logo-bar-row:nth-child(2),
  .logo-bar-row:nth-child(3) {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }

  .logo-bar-row:nth-child(2) .logo-bar-logos,
  .logo-bar-row:nth-child(3) .logo-bar-logos {
    flex-wrap: nowrap;
    overflow: visible;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
  }

  .logo-bar-row:nth-child(2) .logo-bar-logos .logo-bar-logo,
  .logo-bar-row:nth-child(3) .logo-bar-logos .logo-bar-logo {
    flex: 0 0 auto;
    padding: 0 24px;
    animation: none;
    display: flex;
  }

  /* Trusted by — bigger logos on mobile */
  .logo-bar-row:nth-child(2) .logo-bar-logos .logo-bar-logo img {
    height: 70px !important;
    width: auto;
  }

  /* Media partners — comfortable size */
  .logo-bar-row:nth-child(3) .logo-bar-logos .logo-bar-logo img {
    height: 36px !important;
    width: auto;
  }

  @keyframes marqueeScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* --- Sections Shared --- */
  .section-title {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.6px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  /* --- Four Pillars --- */
  .pillars {
    padding: 72px 24px;
    min-height: auto;
  }

  .pillars-cards {
    flex-direction: column;
    height: auto;
    gap: 24px;
  }

  .pillar-card {
    width: 100% !important;
    flex-basis: auto !important;
    height: 535px;
  }

  .pillar-card:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0;
  }

  /* --- Impact --- */
  .impact {
    flex-direction: column;
    padding: 24px 24px 0;
    min-height: auto;
    gap: 36px;
  }

  .impact-sticky {
    position: relative;
    top: auto;
    padding: 53px 0;
    gap: 24px;
  }

  .impact-cards {
    padding: 0 0 24px;
    gap: 24px;
    width: 100%;
    flex-shrink: 1;
  }

  .impact-card {
    width: 100%;
    height: 400px;
  }

  .impact-card-content {
    padding: 22px 20px 0;
  }

  .impact-label {
    font-size: 20px;
    width: auto;
  }

  .impact-number {
    font-size: 72px;
  }

  .impact-card-bottom {
    bottom: 18px;
    left: 20px;
    right: 20px;
  }

  /* --- Process --- */
  .process {
    flex-direction: column;
    padding: 72px 24px 0;
    min-height: auto;
    gap: 32px;
  }

  .process-sticky {
    position: relative;
    top: auto;
    padding: 0 0 0;
    order: 0;
    gap: 24px;
  }

  .process-cards {
    padding: 0 0 24px;
    gap: 32px;
    order: 1;
    width: 100%;
    flex-shrink: 1;
  }

  .process-card {
    width: 100%;
    min-height: 425px;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .process-card-content {
    padding: 24px 29px 0;
  }

  .process-card-bottom {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 36px 32px;
    margin-top: auto;
  }

  /* --- Featured (Mobile Carousel) --- */
  .featured {
    padding: 72px 24px 48px;
  }

  .featured .section-title {
    margin-bottom: 36px;
  }

  .featured-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow: hidden;
    position: relative;
  }

  /* Force visibility — override .animate-in opacity inside overflow container */
  .featured-card.animate-in {
    opacity: 1;
    transform: none;
  }

  .featured-card {
    flex: 0 0 100%;
    height: 480px;
    min-width: 100%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 23px;
  }

  /* Carousel Navigation — square light buttons with dark arrows */
  .featured-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }

  .featured-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }

  .featured-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .featured-nav-btn:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
  }

  .featured-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .featured-dots {
    display: none;
  }

  /* --- CTA --- */
  .cta-section {
    height: 444px;
    margin: 0;
  }

  .cta-container {
    gap: 40px;
  }

  .cta-title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1.2px;
  }

  .cta-btn {
    width: 296px;
    height: 56px;
    font-size: 16px;
  }

  .cta-note {
    width: 252px;
    text-align: center;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 97px 24px 40px;
  }

  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    margin-bottom: 64px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 25px;
    padding: 33px 0 0;
  }

  .footer-disclaimer {
    max-width: 100%;
  }

  .footer-copyright {
    padding: 0;
  }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    line-height: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }

  .cta-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-btn {
    width: 100%;
    max-width: 296px;
  }

  .impact-number {
    font-size: 56px;
    line-height: 56px;
  }
}


/* ===== TECH STACK SECTION ===== */
.tech-stack {
  padding: 72px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.tech-stack-header {
  margin-bottom: 60px;
  padding: 0 140px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #f4f4f5;
  line-height: 48px;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #9f9fa9;
  line-height: 28px;
}

.tech-stack-scroll {
  overflow: hidden;
  margin: 0 140px;
}

.tech-stack-track {
  display: flex;
  gap: 60px;
  min-width: max-content;
  animation: tech-stack-marquee 20s linear infinite;
}

.tech-stack-track:hover {
  animation-play-state: paused;
}

@keyframes tech-stack-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-stack-card {
  flex: 0 0 427.5px;
  height: 535px;
  border-radius: 29px;
  background: #111;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease;
}

.tech-stack-card:hover {
  transform: translateY(-4px);
}

/* Frontend */
.tech-stack-card.frontend-card:hover {
  background: #f3f4f1;
}

.tech-stack-card.frontend-card:hover .tech-stack-label {
  color: rgba(0, 0, 0, 0.49);
}

.tech-stack-card.frontend-card:hover .tech-stack-techs {
  color: #000;
}

.tech-stack-card.frontend-card:hover .tech-stack-card-img img {
  filter: invert(1);
}

/* Backend */
.tech-stack-card.backend-card:hover {
  background: #ffebb2;
}

.tech-stack-card.backend-card:hover .tech-stack-label {
  color: #71717b;
}

.tech-stack-card.backend-card:hover .tech-stack-techs {
  color: #000;
}

.tech-stack-card.backend-card:hover .tech-stack-card-img img {
  filter: invert(1);
}

/* Mobile */
.tech-stack-card.mobile-card:hover {
  background: #feb64c;
}

.tech-stack-card.mobile-card:hover .tech-stack-label {
  color: #000;
}

.tech-stack-card.mobile-card:hover .tech-stack-techs {
  color: #000;
}

.tech-stack-card.mobile-card:hover .tech-stack-card-img img {
  filter: invert(1);
}

/* Data */
.tech-stack-card.data-card:hover {
  background: #6949c4;
}

.tech-stack-card.data-card:hover .tech-stack-label {
  color: #fff;
}

.tech-stack-card.data-card:hover .tech-stack-techs {
  color: #fff;
}

.tech-stack-card.data-card:hover .tech-stack-card-img img {
  filter: none;
}

/* Cloud & DevOps */
.tech-stack-card.cloud-card:hover {
  background: #2b3eff;
}

.tech-stack-card.cloud-card:hover .tech-stack-label {
  color: #fff;
}

.tech-stack-card.cloud-card:hover .tech-stack-techs {
  color: #fff;
}

.tech-stack-card.cloud-card:hover .tech-stack-card-img img {
  filter: none;
}

/* Testing & Realtime */
.tech-stack-card.testing-card:hover {
  background: #34e9c6;
}

.tech-stack-card.testing-card:hover .tech-stack-label {
  color: #71717b;
}

.tech-stack-card.testing-card:hover .tech-stack-techs {
  color: #000;
}

.tech-stack-card.testing-card:hover .tech-stack-card-img img {
  filter: invert(1);
}

/* AI Tools */
.tech-stack-card.ai-card {
  background: #111;
}

.tech-stack-card.ai-card:hover {
  background: #FF78BE;
}

/* Default image (white chip on dark) — visible by default, hidden on hover */
.tech-stack-card.ai-card .ai-img-default {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Hover image (dark chip on pink) — hidden by default, shown on hover */
.tech-stack-card.ai-card .ai-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tech-stack-card.ai-card:hover .ai-img-default {
  opacity: 0;
}

.tech-stack-card.ai-card:hover .ai-img-hover {
  opacity: 1;
}

/* AI card label */
.tech-stack-card.ai-card .tech-stack-label {
  color: #71717b;
  transition: color 0.4s ease;
}

.tech-stack-card.ai-card:hover .tech-stack-label {
  color: #71717b;
}

/* Techs text — dot version (default dark), slash version (hover pink) */
.tech-stack-card.ai-card .ai-techs-default {
  color: #d4d4d8;
  display: block;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.tech-stack-card.ai-card .ai-techs-hover {
  display: none;
  color: #000;
}

.tech-stack-card.ai-card:hover .ai-techs-default {
  display: none;
}

.tech-stack-card.ai-card:hover .ai-techs-hover {
  display: block;
  color: #000;
}

.tech-stack-card-img {
  position: absolute;
  top: 39px;
  left: 43px;
  right: 42.5px;
  aspect-ratio: 386 / 399;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-stack-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: filter 0.4s ease;
}

/* Default: white images on dark bg (images are white on transparent) */
.tech-stack-card-img img {
  filter: none;
}

.tech-stack-card-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 26px;
}

.tech-stack-label {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 16px;
  color: #71717b;
  margin-bottom: 12px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.tech-stack-techs {
  font-size: 18px;
  font-weight: 400;
  color: #d4d4d8;
  line-height: 29.25px;
  text-align: center;
  width: 263px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

/* ===== SERVICE SECTION (sticky left, scroll right) ===== */
.service-section {
  display: flex;
  gap: 0;
  justify-content: space-between;
  padding: 72px 140px 1px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-sticky {
  flex: 1;
  max-width: 560px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: fit-content;
  padding: 120px 0;
}

.section-title-lg {
  font-family: 'Manrope', sans-serif;
  font-size: 64px;
  font-weight: 500;
  color: #f4f4f5;
  line-height: 68px;
  margin-bottom: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-subtitle-md {
  font-size: 24px;
  font-weight: 500;
  color: #9f9fa9;
  line-height: 28px;
  margin-bottom: 24px;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 1px solid #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  color: #9f9fa9;
  transition: color 500ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 246px;
  height: 46px;
  justify-content: center;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.connect-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #8A38F5;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.connect-btn:hover {
  color: #fff;
}

.connect-btn:hover::before {
  transform: scaleX(1);
}

.connect-btn::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 15L15 5M15 5H8M15 5v7' stroke='%239f9fa9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  transition: background 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.connect-btn:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 15L15 5M15 5H8M15 5v7' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.service-cards {
  flex: 0 0 660px;
  display: flex;
  flex-direction: column;
  gap: 104px;
  padding: 120px 0;
}

.service-card {
  position: relative;
  border-radius: 29px;
  overflow: hidden;
  background: #fff;
  height: 425px;
  display: flex;
  flex-direction: column;
}

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

.service-card-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: -7px;
  right: 0;
  height: 89px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 59px 43px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-label {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 28px;
}

.service-label-v2 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 28px;
}

.service-icon {
  width: 60px;
  height: 61px;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-bottom {
  position: relative;
  z-index: 2;
  padding: 0 36px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  margin-top: auto;
}

.service-step {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 26px;
  flex-shrink: 0;
  line-height: 70px;
}

.service-divider {
  width: 100%;
  height: 0;
  border-top: 1px solid #d4d4d8;
  flex-shrink: 0;
}

.service-detail {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 28px;
}

/* Dark card variant (card 1) */
.service-card-overlay-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.service-label-white {
  color: #fff;
}

.service-step-white {
  color: #fff;
}

.service-divider-light {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.service-detail-white {
  color: #fff;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  position: relative;
  width: 1440px;
  max-width: 100%;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 40px auto;
}

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

.quote-banner-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  width: 1920px;
  height: 1080px;
  max-width: none;
  object-fit: cover;
}

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.quote-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1020px;
  padding: 60px 140px;
}

.quote-text {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.quote-author {
  font-size: 15px;
  font-weight: 400;
  color: #a1a1aa;
  line-height: 1.6;
}

/* ===== ENGAGEMENT CARDS ===== */
.engage-card {
  border-radius: 29px;
  overflow: hidden;
  position: relative;
  width: 660px;
  max-width: 100%;
  min-height: 425px;
  height: auto;
  transition: transform 0.3s ease;
}

.engage-card:hover {
  transform: translateY(-4px);
}

/* Decorative visuals container */
.engage-card-visuals {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 181px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0);
  z-index: 0;
}

.engage-visual {
  display: block;
  max-width: none;
  object-fit: cover;
}

/* Gold card visuals — rotated vertical lines */
.engage-visual-rotated {
  width: 181px;
  height: 252px;
  transform: rotate(-90deg);
  transform-origin: center center;
  flex-shrink: 0;
}

.engage-visual-left {
  position: relative;
  left: -75px;
}

.engage-visual-flipped {
  transform: rotate(-90deg) scaleY(-1);
}

/* Light card visuals — wave patterns */
.engage-visual-left-wave {
  width: 230px;
  height: 198px;
  object-fit: cover;
}

.engage-visual-right-wave {
  width: 230px;
  height: 198px;
  object-fit: cover;
}

.engage-visual-flipped-h {
  transform: scaleY(-1) rotate(180deg);
}

/* Dark card visuals — rotated textures */
.engage-visual-left-dark {
  width: 214px;
  height: 181px;
  transform: rotate(-90deg);
  flex-shrink: 0;
  position: relative;
  left: 30px;
}

.engage-visual-right-dark {
  width: 214px;
  height: 181px;
  transform: rotate(-90deg) scaleY(-1);
  flex-shrink: 0;
}

/* Bar chart icon */
.engage-card-icon {
  position: absolute;
  top: 52px;
  right: 36px;
  width: 60px;
  height: 61px;
  z-index: 2;
}

.engage-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ENGAGEMENT A/B/C label */
.engage-card-label {
  position: absolute;
  top: 252px;
  left: 36px;
  font-family: 'Consolas', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #52525c;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  z-index: 2;
}

.engage-card-label-muted {
  color: #9c9c9c;
}

/* Fundraising page: label flows inside the bottom content block */
.page-fundraising .engage-card-bottom .engage-card-label {
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
}

/* Bottom text block — Figma: bottom=33px, gap=11px */
.engage-card-bottom {
  position: absolute;
  bottom: 33px;
  left: 36px;
  right: 42px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 2;
}

.engage-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.engage-card-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.engage-card-detail {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

/* Gold card */
.engage-card-gold {
  background: #ffce48;
}

.engage-card-gold .engage-card-title,
.engage-card-gold .engage-card-subtitle,
.engage-card-gold .engage-card-detail {
  color: #000;
}

/* Yellow card (fundraising variant) */
.engage-card-yellow {
  background: #facc15;
}

.engage-card-yellow .engage-card-title,
.engage-card-yellow .engage-card-subtitle,
.engage-card-yellow .engage-card-detail {
  color: #000;
}

/* Light card */
.engage-card-light {
  background: #f3f3f3;
}

.engage-card-light .engage-card-title,
.engage-card-light .engage-card-subtitle,
.engage-card-light .engage-card-detail {
  color: #000;
}

/* Dark card */
.engage-card-dark {
  background: #111;
}

.engage-card-dark .engage-card-title {
  color: #fff;
}

.engage-card-dark .engage-card-subtitle,
.engage-card-dark .engage-card-detail {
  color: #fff;
}

/* Purple card */
.engage-card-purple {
  background: #6949c4;
}

.engage-card-purple .engage-card-title,
.engage-card-purple .engage-card-subtitle,
.engage-card-purple .engage-card-detail {
  color: #fff;
}

.engage-card-purple .engage-card-label {
  color: #9c9c9c;
}

/* Teal card */
.engage-card-teal {
  background: #34e9c7;
}

.engage-card-teal .engage-card-title,
.engage-card-teal .engage-card-subtitle,
.engage-card-teal .engage-card-detail {
  color: #000;
}

.engage-card-teal .engage-card-label {
  color: #52525c;
}

/* Light Yellow card */
.engage-card-lightyellow {
  background: #ffebb2;
}

.engage-card-lightyellow .engage-card-title,
.engage-card-lightyellow .engage-card-subtitle,
.engage-card-lightyellow .engage-card-detail {
  color: #000;
}

/* ===== METRICS SECTION (scroll left, sticky right) ===== */
.metrics-section {
  display: flex;
  gap: 36px;
  padding: 72px 140px 1px;
  position: relative;
}

.metrics-cards {
  flex: 0 0 660px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 0;
}

.metrics-sticky {
  flex: 1;
  max-width: 560px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: fit-content;
  text-align: left;
  padding: 120px 0;
}

.metrics-sticky .connect-btn {
  margin-left: 0;
}

.metric-card {
  position: relative;
  border-radius: 29px;
  overflow: hidden;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.metric-card-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-card-dark {
  background: #18181b;
}

.metric-card-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.metric-card-light {
  background: #f4f4f5;
}

.metric-card-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.85) 100%);
  z-index: 1;
}

.metric-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 29px;
}

.metric-number {
  font-family: 'Manrope', sans-serif;
  font-size: 60px;
  font-weight: 300;
  color: #fff;
  line-height: 60px;
  letter-spacing: -3px;
  position: absolute;
  top: 59px;
  right: 37px;
  text-align: right;
}

.metric-number-dark {
  color: #000;
}

.metric-label {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 33px;
  text-transform: uppercase;
  width: 301px;
  position: absolute;
  bottom: 29px;
  left: 29px;
}

.metric-label-dark {
  color: #000;
}

/* ===== PILLAR PAGE RESPONSIVE ===== */
@media (max-width: 1400px) {

  .service-section,
  .metrics-section {
    flex-direction: column;
    padding: 60px 32px;
    border-bottom: none;
  }

  .service-sticky,
  .metrics-sticky {
    position: relative;
    top: auto;
    flex: none;
    text-align: left;
    padding: 0 0 40px;
    order: -1;
  }

  .service-cards,
  .metrics-cards {
    flex: none;
    width: 100%;
    padding: 0;
    gap: 60px;
  }

  .metrics-sticky .connect-btn {
    margin-left: 0;
  }

  .section-title-lg {
    font-size: 36px;
    line-height: 40px;
  }

  .quote-text {
    font-size: 36px;
  }

  .tech-stack {
    padding: 60px 0 40px;
  }

  .tech-stack-scroll {
    margin: 0 32px;
  }

  .tech-stack-header {
    padding: 0 32px;
  }

  .tech-stack-card {
    flex: 0 0 320px;
    height: 400px;
  }

  .tech-stack-card-img {
    bottom: 140px;
    aspect-ratio: unset;
    overflow: hidden;
  }

  .tech-stack-card-text {
    padding: 0 16px 16px;
  }

  .tech-stack-techs {
    width: 220px;
    font-size: 15px;
  }

  .service-card {
    height: 400px;
  }

  .service-card-overlay,
  .service-card-overlay-dark {
    height: 89px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .service-card-content {
    padding: 30px 24px 0;
  }

  .service-card-bottom {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    padding: 0;
  }

  .service-detail {
    min-height: 56px;
  }

  .engage-card {
    width: 100%;
    height: auto;
    aspect-ratio: 660 / 425;
  }

  /* Scale visuals container proportionally: top 48/425=11.3%, height 181/425=42.6% */
  .engage-card-visuals {
    top: 11.3%;
    height: 42.6%;
  }

  /* Scale images to card width */
  .engage-visual-rotated {
    width: 27.4%;
    /* 181/660 */
    height: 100%;
  }

  .engage-visual-left {
    left: -11.4%;
    /* -75/660 */
  }

  .engage-visual-left-wave,
  .engage-visual-right-wave {
    width: 34.8%;
    /* 230/660 */
    height: 100%;
  }

  .engage-visual-left-dark,
  .engage-visual-right-dark {
    width: 32.4%;
    /* 214/660 */
    height: 100%;
  }

  .engage-visual-left-dark {
    left: 4.5%;
    /* 30/660 */
  }

  /* Icon: top 52/425=12.2%, right 36/660=5.5%, size 60/660=9.1% */
  .engage-card-icon {
    top: 12.2%;
    right: 5.5%;
    width: 9.1%;
    height: auto;
    aspect-ratio: 60 / 61;
  }

  /* Label: top 252/425=59.3%, left 36/660=5.5% */
  .engage-card-label {
    top: 59.3%;
    left: 5.5%;
    font-size: clamp(10px, 2.1vw, 14px);
  }

  /* Bottom: bottom 33/425=7.8%, left 36/660=5.5%, right 42/660=6.4% */
  .engage-card-bottom {
    bottom: 7.8%;
    left: 5.5%;
    right: 6.4%;
    gap: clamp(4px, 1.7vw, 11px);
  }

  .engage-card-title {
    font-size: clamp(16px, 4.8vw, 32px);
    line-height: 1.1;
  }

  .engage-card-subtitle {
    font-size: clamp(12px, 3vw, 20px);
    line-height: 1.4;
  }

  .engage-card-detail {
    font-size: clamp(10px, 2.1vw, 14px);
    line-height: 1.6;
  }

  .metric-card {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 160px 24px 0;
  }

  .hero-bottom {
    padding: 0 24px 18px;
  }

  .hero-bottom-content {
    flex-direction: column;
    gap: 16px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .pillars,
  .impact,
  .process,
  .featured {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-section {
    margin: 60px 0;
    height: 320px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-main,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-copyright {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    padding: 10px;
  }

  .service-section,
  .metrics-section {
    padding: 40px 20px;
  }

  .section-title-lg {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 1px;
  }

  .section-subtitle-md {
    font-size: 18px;
  }

  .connect-btn {
    width: 200px;
    height: 40px;
    font-size: 14px;
  }

  .metric-number {
    font-size: 42px;
    line-height: 42px;
  }

  .metric-label {
    font-size: 16px;
    line-height: 22px;
    width: 160px;
  }

  .service-card {
    height: 380px;
  }

  .engage-card {
    height: 425px;
  }

  .metric-card {
    height: 340px;
  }

  .quote-banner {
    min-height: 360px;
  }

  .quote-text {
    font-size: 28px;
  }

  .quote-banner-content {
    padding: 40px 24px;
  }

  .tech-stack {
    padding: 40px 0 30px;
  }

  .tech-stack-scroll {
    margin: 0 20px;
  }

  .tech-stack-header {
    padding: 0 20px;
  }

  .tech-stack-card {
    flex: 0 0 260px;
    height: 340px;
  }

  .tech-stack-card-img {
    bottom: 120px;
  }

  .tech-stack-card-text {
    padding: 0 12px 12px;
  }

  .tech-stack-techs {
    width: 200px;
    font-size: 13px;
  }

  .tech-stack-track {
    gap: 24px;
  }
}

/* ===== CONSULTATION DIALOG ===== */
.consultation-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}

.consultation-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consultation-dialog {
  position: relative;
  width: 670px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultation-overlay.active .consultation-dialog {
  transform: translateY(0) scale(1);
}

/* Close button */
.consultation-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #71717b;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 2;
}

.consultation-close:hover {
  color: #f4f4f5;
}

/* Header — sticky at top */
.consultation-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 40px 24px;
  padding-right: 72px;
  flex-shrink: 0;
  background: #09090b;
  position: relative;
  z-index: 1;
}

.consultation-header::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(to bottom, #09090b, transparent);
  pointer-events: none;
  z-index: 1;
}

.consultation-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: #f4f4f5;
}

.consultation-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #9f9fa9;
}

/* Form — scrollable area */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  padding: 16px 40px 40px;
  flex: 1;
  min-height: 0;
}

.consultation-form::-webkit-scrollbar {
  width: 4px;
}

.consultation-form::-webkit-scrollbar-track {
  background: transparent;
}

.consultation-form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.consultation-row {
  display: flex;
  gap: 24px;
}

.consultation-row .consultation-field {
  flex: 1;
  min-width: 0;
}

.consultation-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consultation-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #d4d4d8;
}

.consultation-label .required {
  color: #d4d4d8;
}

.consultation-label .optional {
  font-weight: 400;
  color: #71717b;
}

.consultation-input,
.consultation-textarea,
.consultation-select {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.consultation-input::placeholder,
.consultation-textarea::placeholder {
  color: #52525c;
}

.consultation-input:focus,
.consultation-textarea:focus,
.consultation-select:focus {
  border-color: rgba(255, 255, 255, 0.24);
}

.consultation-input {
  height: 50px;
}

.consultation-textarea {
  min-height: 98px;
  resize: vertical;
  line-height: 24px;
}

/* Select / Dropdown */
.consultation-select-wrapper {
  position: relative;
}

.consultation-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 50px;
  cursor: pointer;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
}

.consultation-select option {
  background: #18181b;
  color: #f4f4f5;
  padding: 12px;
}

.consultation-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #71717b;
  pointer-events: none;
}

/* Submit area */
.consultation-submit-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.consultation-submit-btn {
  width: 100%;
  height: 46px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  overflow: hidden;
  position: relative;
}

.consultation-submit-btn span {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #000;
}

.consultation-submit-btn:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}

.consultation-submit-btn:active {
  transform: translateY(0);
}

/* Footer text */
.consultation-footer-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.consultation-confidence {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #71717b;
}

.consultation-privacy {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #52525c;
}

.consultation-privacy a {
  color: #52525c;
  text-decoration: underline;
  transition: color 0.2s;
}

.consultation-privacy a:hover {
  color: #9f9fa9;
}

/* Success state */
.consultation-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 40px;
  animation: consultSuccessFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.consultation-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #f4f4f5;
  animation: consultCheckPop 0.45s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.consultation-success-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #9f9fa9;
  text-align: center;
  max-width: 320px;
}

@keyframes consultSuccessFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes consultCheckPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Body blur when dialog is open */
body.dialog-open {
  overflow: hidden;
}

/* ===== CONSULTATION DIALOG - MOBILE ===== */
@media (max-width: 768px) {
  .consultation-dialog {
    width: calc(100% - 32px);
    max-width: 340px;
    max-height: 85vh;
  }

  .consultation-header {
    padding: 24px 24px 16px;
    padding-right: 56px;
    gap: 12px;
  }

  .consultation-form {
    padding: 8px 24px 24px;
  }

  .consultation-title {
    font-size: 36px;
    line-height: 40px;
  }

  .consultation-subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .consultation-row {
    flex-direction: column;
    gap: 24px;
  }

  .consultation-close {
    top: 20px;
    right: 16px;
  }

  .consultation-form {
    gap: 24px;
  }

  .consultation-submit-area {
    padding-top: 12px;
  }

  .consultation-confidence {
    font-size: 11px;
    line-height: 16px;
  }
}