/* ===================================================================
   Enum Digital — Landing Page Styles
   =================================================================== */

:root {
  --bg: #151515;
  --bg-elevated: #101018;
  --bg-card: #14141d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-muted: #9a9aa8;
  --text-faint: #63636f;

  --accent: #6e5bff;
  --accent-2: #ff5b9e;
  --accent-3: #5bdaff;
  --gradient: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  --gradient-soft: linear-gradient(120deg, rgba(110, 91, 255, 0.15) 0%, rgba(255, 91, 158, 0.15) 100%);

  --container: 1780px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-tight: 'Inter Tight', 'Inter', sans-serif;
  --font-serif: 'Instrument Serif', serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: #faff00 #000000;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #faff00;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: #faff00;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

section { position: relative; }

::selection { background: var(--accent); color: #fff; }

/* Background noise + glow */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(760px circle at 28% 62%, rgba(150, 150, 158, 0.34), transparent 65%),
    radial-gradient(500px circle at 85% 30%, rgba(160, 160, 170, 0.18), transparent 60%),
    radial-gradient(700px circle at 50% 90%, rgba(91, 218, 255, 0.08), transparent 60%);
}

/* ===================== Preloader ===================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__mark {
  display: block;
  height: 48px;
  width: auto;
  overflow: hidden;
}

/* ===================== Header ===================== */
.header {
  position: fixed;
  top: 20px;
  left: 24px;
  right: 24px;
  margin: 0 auto;
  max-width: var(--container);
  z-index: 100;
  transition: top 0.4s var(--ease);
}
.header__topbar {
  display: flex;
  justify-content: flex-end;
  padding: 0 14px;
  margin-bottom: 14px;
}
.header__inner {
  position: relative;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 28px;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.is-scrolled {
  top: 14px;
}
.header.is-scrolled .header__inner {
  padding: 11px 14px 11px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}
.logo__img {
  display: block;
  height: 36px;
  width: auto;
}
.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 100px;
  background: #19181d;
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__links a:hover {
  background: #faff00;
  color: #0a0a0f;
}

.nav__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.nav__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #faff00;
  color: #0a0a0f;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: #0a0a0f;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn--quote {
  background: #faff00;
  color: #0a0a0f;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn--quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 255, 0, 0.3);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 200;
}
.nav-toggle span {
  position: absolute;
  left: 1px;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:first-child { top: 9px; }
.nav-toggle span:last-child { top: 15px; }
.nav-toggle.is-active span:first-child { top: 12px; transform: rotate(45deg); }
.nav-toggle.is-active span:last-child { top: 12px; transform: rotate(-45deg); }

.nav-mobile { display: none; }

/* ===================== Hero ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 4 -1.5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
}
.hero__figure {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 93.5%;
  max-height: 748px;
  width: auto;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.hero__tagline {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  font-family: var(--font-tight);
  font-size: 40px;
  font-weight: 700;
  color: #d0d0d0;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
}
.hero__tagline-tight {
  font-family: var(--font-tight);
  font-weight: 700;
  font-style: normal;
  color: #d0d0d0;
}
.hero__tagline-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: #faff00;
}
.hero > .container {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  padding-left: 28px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}
.hero__content {
  min-width: 0;
}
.hero__form-wrap {
  justify-self: end;
  width: 100%;
  max-width: 460px;
  min-width: 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  overflow: hidden;
}
.hero__eyebrow span.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero__title {
  font-family: var(--font-tight);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 16ch;
  color: #d0d0d0;
}
.hero__title .line { overflow: hidden; display: block; }
.hero__title .line span { display: inline-block; will-change: transform; }

/* Generic line-mask reveal — same slide-up technique as the hero title,
   reused for every section's main heading. */
.line-mask { overflow: hidden; display: block; }
.line-mask > span { display: inline-block; will-change: transform; }
.hero__title .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.hero__sub {
  margin-top: 28px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 46ch;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Discovery-call CTA — pill button */
.btn--discovery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 44px;
  border-radius: 100px;
  background: rgba(128, 128, 128, 0.1);
  border: 2px solid #4d4d4d;
  outline: 3px solid #faff00;
  outline-offset: 3px;
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  animation: discoveryOutlinePulse 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.btn--discovery:hover {
  background: #faff00;
  border-color: #faff00;
  color: #0a0a0f;
}
@keyframes discoveryOutlinePulse {
  0%, 100% { outline-offset: 3px; outline-color: rgba(250, 255, 0, 1); }
  50% { outline-offset: 12px; outline-color: rgba(250, 255, 0, 0.12); }
}

.hero__partners {
  display: block;
  margin-top: 44px;
  height: 32px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.hero__stats {
  /* Hidden for now — re-enable by removing this display:none */
  display: none;
  margin-top: 100px;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ===================== Callback card (hero, right side) ===================== */
.callback-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  padding: 40px;
}
.callback-card__title {
  font-family: var(--font-tight);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-align: left;
}
.callback-card__desc {
  margin-top: 4px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 16px;
  text-align: left;
}
.callback-card__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  background: #faff00;
}
.callback-card__submit:hover {
  background: #faff00;
}

/* Phone / country field */
.phone-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.callback-card input,
.callback-card .phone-wrap,
.discovery-modal__form-col input,
.discovery-modal__form-col .phone-wrap {
  border-radius: 100px;
}
.callback-card .phone-flag-btn,
.discovery-modal__form-col .phone-flag-btn {
  padding-left: 16px;
}
.callback-card .phone-number-input,
.discovery-modal__form-col .phone-number-input {
  padding-right: 20px;
}
.callback-card textarea,
.discovery-modal__form-col textarea {
  border-radius: 20px;
  min-height: 76px;
  resize: vertical;
}
.phone-wrap:focus-within {
  border-color: var(--accent);
  background: var(--bg-card);
}
.phone-flag-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-right: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-flag-img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  display: block;
  object-fit: cover;
}
.phone-number-input.phone-number-input {
  border: none;
  background: transparent;
  flex: 1;
  min-width: 0;
  padding: 14px 16px 14px 10px;
}
.phone-number-input.phone-number-input:focus {
  outline: none;
  border: none;
  background: transparent;
}
.phone-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.phone-search-wrap {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-search-wrap input {
  padding: 10px 12px;
  font-size: 13.5px;
}
.phone-country-list {
  overflow-y: auto;
  max-height: 260px;
}
.phone-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13.5px;
  transition: background 0.2s var(--ease);
}
.phone-country-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.phone-country-item.selected {
  background: rgba(110, 91, 255, 0.14);
}
.phone-country-item .flag-img {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}
.phone-country-item .cname {
  flex: 1;
  min-width: 0;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-country-item .dcode {
  color: var(--text-faint);
  font-size: 12.5px;
  flex-shrink: 0;
}
.phone-country-empty {
  padding: 16px 14px;
  color: var(--text-faint);
  font-size: 13px;
  text-align: center;
}

/* ===================== Discovery Call Modal ===================== */
body.modal-open { overflow: hidden; }
.discovery-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.discovery-modal.is-open { display: flex; }
.discovery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.discovery-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  min-height: 480px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 32px;
  background:
    url('../../images/glassh.png') top center / 100% auto no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(250, 255, 0, 0.15);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  animation: discoveryCardBorderBlink 1.8s ease-in-out infinite;
}
.discovery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.discovery-modal__close:hover {
  background: #faff00;
  color: #0a0a0f;
  transform: rotate(90deg);
}
.discovery-modal__visual {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(400px, 100%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.discovery-modal__figure {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 92%;
  max-height: 480px;
  object-fit: contain;
  object-position: bottom;
}
.discovery-modal__form-col {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 76px 44px 24px;
}
.discovery-modal__form-col #discoveryModalTitle {
  font-size: 40px;
}
.discovery-modal__title-muted { color: #d0d0d0; }
.discovery-modal__title-accent { color: #faff00; }
.discovery-modal__form-col .callback-card__desc {
  width: 100%;
}
.discovery-modal__form-col .form-group {
  margin-bottom: 14px;
}
@keyframes discoveryCardBorderBlink {
  0%, 100% {
    border-color: rgba(250, 255, 0, 0.15);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.5),
      0 0 0 rgba(250, 255, 0, 0);
  }
  50% {
    border-color: rgba(250, 255, 0, 0.9);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.5),
      0 0 32px rgba(250, 255, 0, 0.55);
  }
}
@media (prefers-reduced-motion: reduce) {
  .discovery-modal__panel {
    animation: none;
    border-color: rgba(250, 255, 0, 0.4);
  }
}
@media (max-width: 900px) {
  .discovery-modal__panel { max-width: 480px; min-height: 0; }
  .discovery-modal__visual { display: none; }
  .discovery-modal__form-col { width: 100%; margin-left: 0; padding: 60px 28px 24px; }
  .discovery-modal__form-col #discoveryModalTitle { font-size: 32px; }
}
@media (max-width: 480px) {
  .discovery-modal__close { top: 12px; right: 12px; }
  .discovery-modal__form-col { padding: 48px 18px 20px; }
}

@media (max-width: 1180px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__form-wrap { justify-self: stretch; max-width: 480px; margin: 0 auto; }
  .hero__figure { display: none; }
  .hero__tagline { display: none; }
}

@media (max-width: 1300px) {
  .header__topbar { display: none; }
}

@media (max-width: 1100px) {
  .nav, .btn--quote { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-mobile.is-open { transform: translateY(0); }
  .nav-mobile a { font-family: 'Inter Tight', serif; font-size: 28px; font-weight: 600; }
  .nav-mobile .btn--quote {
    display: inline-flex;
    margin-top: 12px;
    font-family: var(--font);
    font-size: 15px;
  }
}

/* ===================== As Featured In ===================== */
.featured {
  position: relative;
  z-index: 2;
  background: #09090b;
  padding: 56px 0;
  text-align: center;
}
.featured__label {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  will-change: transform;
}
.marquee__logos {
  height: 44px;
  width: auto;
  /* Override the global img{max-width:100%} — the strip must keep its full width to scroll. */
  max-width: none;
  display: block;
}
.marquee__logos--original {
  height: auto;
  width: auto;
  max-width: none;
  display: block;
}
.marquee__track--gap {
  gap: 40px;
  align-items: center;
}
.marquee--spaced {
  margin-top: 32px;
}
.client-logo {
  height: 73px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ===================== FAQ accordion ===================== */
.faq-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  text-align: left;
}
.faq-col {
  display: flex;
  flex-direction: column;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  color: #d0d0d0;
  position: relative;
}
.faq-item__question::before,
.faq-item__question::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
}
.faq-item__question::before {
  background: #3a3a3a;
}
.faq-item__question::after {
  background: #faff00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.faq-item.is-open .faq-item__question::after {
  transform: scaleX(1);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #faff00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faff00;
}
.faq-item__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.faq-item__icon-v {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.faq-item.is-open .faq-item__question {
  color: #ffffff;
}
.faq-item.is-open .faq-item__icon-v {
  transform: scaleY(0);
}
.faq-item__answer {
  height: 0;
  overflow: hidden;
}
.faq-item__answer p {
  padding-top: 22px;
  padding-bottom: 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  color: #d0d0d0;
  line-height: 1.6;
}
.faq-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.faq-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 100px;
  background: #faff00;
  color: #0a0a0f;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 255, 0, 0.3);
}
@media (max-width: 1279px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ===================== We Mastered ===================== */
.mastered {
  padding: 140px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, #010101 0%, #07080a 100%);
}
#faq {
  background-image: url('../../images/spotlight.png'), linear-gradient(180deg, #010101 0%, #07080a 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, top center;
  background-size: min(900px, 90vw) auto, cover;
}
.mastered--black {
  background: #000000;
}
.mastered--black .marquee {
  margin-top: 64px;
}
.mastered__eyebrow {
  display: block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #faff00;
  margin-bottom: 20px;
}
.mastered__heading {
  font-family: var(--font-tight);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mastered__line1 {
  display: block;
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 700;
  font-style: normal;
  color: #d0d0d0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.mastered__line2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(40px, 7.4vw, 96px);
  font-weight: 400;
  font-style: italic;
  color: #faff00;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
/* When two segments share one line-mask (e.g. "Happy Clients" + "Say"), give them breathing room. */
.line-mask > span + span {
  margin-left: 0.18em;
}
/* Italic glyphs (e.g. the "?" in "Scale?") can overhang their box and get clipped by .line-mask's overflow:hidden. */
.line-mask--pad-right {
  padding-right: 0.15em;
}
.mastered__sub {
  margin: 32px auto 0;
  max-width: 46ch;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.6;
}
.mastered__sub--wide {
  max-width: 85ch;
}

.problem-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 30px);
  text-align: left;
}
.problem-card-wrap {
  display: flex;
  flex-direction: column;
}
.problem-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.2vw, 36px) clamp(18px, 2vw, 32px);
  aspect-ratio: 1.56 / 1;
}
.problem-card--blue { background: #2e7cff; }
.problem-card--pink { background: #ff3d8b; }
.problem-card--lime { background: #ccff2d; }
.problem-card--dark { background: #11151a; }
.problem-card--dark .problem-card__heading,
.problem-card--dark .problem-card__sub,
.problem-card--dark .problem-card__link {
  color: #faff00;
}
.problem-card__reflection-clip {
  margin-top: 3px;
  overflow: hidden;
}
.problem-grid__cta {
  margin-top: 64px;
  text-align: center;
}
.problem-card__reflection {
  transform: scaleY(-1);
  filter: grayscale(1);
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 20%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 20%);
  pointer-events: none;
  user-select: none;
}
/* Force every reflection to the same source color as the first (blue) card so
   grayscale(1) resolves to one consistent tone across all four, on both breakpoints. */
.problem-card__reflection.problem-card--pink,
.problem-card__reflection.problem-card--lime,
.problem-card__reflection.problem-card--dark {
  background: #2e7cff;
}
.problem-card__heading {
  font-family: var(--font);
  font-size: clamp(19px, 1.65vw, 30px);
  font-weight: 600;
  color: #151515;
  line-height: 1.25;
}
.problem-card__sub {
  margin-top: 12px;
  font-family: var(--font);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 300;
  color: #151515;
  line-height: 1.5;
}
.problem-card__link {
  margin-top: auto;
  padding-top: clamp(14px, 2vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  color: #151515;
  text-transform: uppercase;
}
.problem-card__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.problem-card__link:hover svg {
  transform: translateX(4px);
}
@media (max-width: 960px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card { aspect-ratio: auto; min-height: 240px; }
}
@media (max-width: 620px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 200px; }
}

/* ===================== H2H ===================== */
.h2h {
  position: relative;
  z-index: 0;
  padding: 140px 0;
  background: linear-gradient(180deg, #010101 0%, #07080a 100%);
}
.h2h::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  z-index: -1;
  width: 460px;
  height: 1002px;
  transform: translateY(-50%);
  background-image: url('../../images/background2.webp');
  background-repeat: no-repeat;
  background-position: left center;
  /* 250% width shows only the left 40% (100/250) of the source image; height matches the resulting scaled image height so nothing is cropped vertically */
  background-size: 250% auto;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}
.h2h::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 460px;
  height: 1311px;
  transform: translateY(-50%);
  background-image: url('../../images/background3.webp');
  background-repeat: no-repeat;
  background-position: right center;
  /* 333.33% width shows only the right 30% (100/333.33) of the source image; height matches the resulting scaled image height so nothing is cropped vertically */
  background-size: 333.33% auto;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}
.h2h__stack {
  text-align: center;
}
.h2h__heading {
  font-family: var(--font-tight);
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 700;
  font-style: normal;
  color: #d0d0d0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h2h__heading .accent {
  color: #faff00;
}
.h2h__tag-wrap {
  margin-top: 20px;
}
.h2h__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 96px);
  color: #faff00;
  line-height: 1.1;
}
.h2h__image {
  position: relative;
  margin-top: 56px;
}
.h2h__image-float {
  position: relative;
  z-index: 1;
  animation: h2hImageFloat 6s ease-in-out infinite;
}
.h2h__image img {
  width: 100%;
  max-width: 1170px;
  height: auto;
  margin: 0 auto;
  display: block;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.h2h__image:hover img {
  transform: scale(1.03);
}
@keyframes h2hImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .h2h__image-float { animation: none; }
}

/* ---- H2H comparison block ---- */
.h2h__compare {
  margin-top: 90px;
}
.h2h__compare-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  max-width: 1000px;
  margin: 0 auto;
}
.h2h__compare-heading-brand {
  font-family: var(--font-tight);
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 700;
  font-style: normal;
  color: #d0d0d0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h2h__compare-heading-arrow {
  flex-shrink: 0;
  width: clamp(24px, 2.4vw, 34px);
  height: auto;
  transform: rotate(90deg);
}
.h2h__compare-heading-serif {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 400;
  font-style: italic;
  color: #faff00;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h2h__compare-heading-line2 {
  display: block;
  max-width: 100%;
  text-align: center;
}
.h2h__compare-heading-line2 .h2h__compare-heading-brand,
.h2h__compare-heading-line2 .h2h__compare-heading-serif {
  font-size: 40px;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .h2h__compare-heading-line2 .h2h__compare-heading-brand,
  .h2h__compare-heading-line2 .h2h__compare-heading-serif {
    font-size: 28px;
  }
}
.h2h__compare-sub {
  margin: 20px auto 0;
  max-width: 640px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.6;
}
.h2h__divider {
  width: 90px;
  height: 1px;
  background: #faff00;
  opacity: 0.6;
  margin: 48px auto;
}
.h2h__compare-subheading {
  font-family: var(--font-tight);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  font-style: normal;
  color: #d0d0d0;
  letter-spacing: -0.02em;
}
.h2h__compare-subheading .accent {
  color: #faff00;
}
.h2h__equation {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: left;
}
.h2h__equation-left {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 100px;
  background: rgba(250, 255, 0, 0.08);
  border: 1px solid rgba(250, 255, 0, 0.3);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.h2h__equation-logo {
  display: block;
  height: 24px;
  width: auto;
}
.h2h__equation-left:hover {
  transform: translateY(-3px);
  background: rgba(250, 255, 0, 0.14);
  border-color: rgba(250, 255, 0, 0.5);
}
.h2h__equation-sign {
  font-family: var(--font-tight);
  font-size: 24px;
  font-weight: 700;
  color: #faff00;
  animation: h2hSignPulse 2.6s ease-in-out infinite;
}
@keyframes h2hSignPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.75; }
}
.h2h__equation-right {
  max-width: 360px;
}
.h2h__equation-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: #d0d0d0;
}
.h2h__equation-list {
  margin-top: 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.h2h__equation-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(250, 255, 0, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(-14px);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.h2h__equation-list li.is-in {
  opacity: 1;
  transform: translateX(0);
}
.h2h__equation-list li::before {
  content: '\2715';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 9px;
  color: #faff00;
  background: rgba(250, 255, 0, 0.12);
}
.h2h__equation-list li:hover {
  color: #d0d0d0;
  background: rgba(250, 255, 0, 0.08);
  border-color: rgba(250, 255, 0, 0.3);
  transform: translateX(2px);
}
.h2h__equation-result {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(250, 255, 0, 0.1);
  border: 1px solid rgba(250, 255, 0, 0.35);
  font-family: var(--font);
  font-size: 19px;
  font-weight: 700;
  color: #faff00;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.h2h__equation-result.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: h2hResultGlow 2.8s ease-in-out 0.6s infinite;
}
@keyframes h2hResultGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(250, 255, 0, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(250, 255, 0, 0); }
}
@media (max-width: 640px) {
  .h2h__equation { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .h2h__equation-list li { text-align: left; }
}

/* ===================== Industries marquee ===================== */
.industries-marquee {
  margin-top: 72px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.industries-marquee.is-dragging {
  cursor: grabbing;
}
.industries-marquee__track {
  display: inline-grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 20px;
  will-change: transform;
}
.industry-item {
  width: 183px;
}
.industry-item__image {
  width: 183px;
  height: 183px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}
.industry-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease);
  pointer-events: none;
}
.industry-item:hover .industry-item__image img {
  filter: grayscale(0);
}
.industry-item__label {
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 300;
  color: #d0d0d0;
}
.industry-item__num {
  color: #faff00;
}
@media (max-width: 720px) {
  .industry-item { width: 150px; }
  .industry-item__image { width: 150px; height: 150px; }
  .industries-marquee__track { row-gap: 36px; }
}
@media (max-width: 480px) {
  .industry-item { width: 120px; }
  .industry-item__image { width: 120px; height: 120px; }
  .industry-item__label { font-size: 10px; }
}

/* ===================== Testimonials reel carousel ===================== */
.reels-carousel {
  margin-top: 72px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.reels-carousel::-webkit-scrollbar { display: none; }
.reels-carousel.is-dragging { cursor: grabbing; }
.reels-carousel__track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.reel-card {
  flex-shrink: 0;
  width: 300px;
  height: auto;
}
.reel-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-card);
}
.reel-card__media::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.reel-card__poster,
.reel-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.reel-card__poster {
  transition: opacity 0.35s ease;
}
.reel-card__video {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.reel-card__media.is-playing .reel-card__poster {
  opacity: 0;
}
.reel-card__media.is-playing .reel-card__video {
  opacity: 1;
}
.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reel-card__play svg { margin-left: 2px; }
.reel-card__play:disabled { cursor: default; }
.reel-card__media.is-playing .reel-card__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
}
.reel-card__caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  text-align: left;
}
.reel-card__title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  text-align: left;
}
.reel-card__subtitle {
  margin-top: 2px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 300;
  color: #d0d0d0;
  line-height: 1.2;
  text-align: left;
}
.reels-scrollbar {
  width: 300px;
  max-width: 60vw;
  height: 1px;
  background: #ffffff;
  margin: 40px auto 0;
  position: relative;
}
.reels-scrollbar__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0%;
  background: #faff00;
}
@media (max-width: 1024px) {
  .reel-card { width: 240px; }
}
@media (max-width: 600px) {
  .reels-carousel { padding: 0 4vw; }
  .reels-carousel__track { gap: 3vw; }
  .reel-card { width: 44vw; }
  .reel-card__title { font-size: 12px; }
  .reel-card__subtitle { font-size: 10px; }
  .reel-card__play { width: 36px; height: 36px; }
  .reel-card__play svg { width: 14px; height: 14px; }
  .reels-scrollbar { max-width: 80vw; }
}

/* ===================== Case studies carousel ===================== */
.case-carousel {
  margin-top: 72px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.case-carousel::-webkit-scrollbar { display: none; }
.case-carousel.is-dragging { cursor: grabbing; }
.case-carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.case-card {
  flex-shrink: 0;
  width: 300px;
  height: auto;
  border-radius: 20px;
  background: #000000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.case-card__top {
  flex: 1;
  min-height: 0;
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
}
.case-card__logo {
  align-self: flex-start;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}
.case-card__title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: #d0d0d0;
  line-height: 1.35;
  text-align: left;
}
.case-card__image {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 10px 10px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-card__cta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #000000;
  border-radius: 100px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.case-card__cta-arrow {
  flex-shrink: 0;
  color: #9a9aa8;
  transform: rotate(-45deg);
  transition: color 0.3s var(--ease);
}
.case-card__cta:hover {
  background: #faff00;
  color: #000000;
}
.case-card__cta:hover .case-card__cta-arrow {
  color: #000000;
}
.case-dots {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.case-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.case-dots__dot.is-active {
  background: #faff00;
  transform: scale(1.35);
}
@media (max-width: 1024px) {
  .case-card { width: 260px; }
  .case-card__image { width: 240px; height: 240px; }
}
@media (max-width: 600px) {
  .case-carousel { padding: 0 4vw; }
  .case-carousel__track { gap: 3vw; }
  .case-card { width: 44vw; }
  .case-card__top { padding: 14px 12px 10px; }
  .case-card__image { width: calc(44vw - 20px); height: calc(44vw - 20px); margin: 0 10px 10px; }
  .case-card__title { font-size: 13px; }
  .case-card__logo { margin-bottom: 10px; max-height: 18px; }
  .case-card__cta { padding: 7px 10px; font-size: 11px; }
}

.service-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 20px);
  text-align: left;
}
.service-tile {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}
.service-tile__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}
.service-tile:hover .service-tile__img {
  transform: scale(1.08);
}
.service-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.2) 32%, transparent 55%);
  pointer-events: none;
}
.service-tile__label {
  position: absolute;
  top: clamp(14px, 1.6vw, 24px);
  left: clamp(14px, 1.6vw, 24px);
  right: 14px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-tight);
  font-size: clamp(16px, 1.85vw, 34px);
  line-height: 1.05;
  color: #ffffff;
}
.service-tile__word--bold {
  font-weight: 700;
  font-style: normal;
}
.service-tile__word--italic {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .service-tile__label { font-size: 22px; }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .service-tile__label { font-size: 15px; top: 12px; left: 12px; right: 10px; }
}
@media (max-width: 360px) {
  .service-tile__label { font-size: 13px; }
}

/* ===================== Section heading ===================== */
.section {
  padding: 140px 0;
}
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
}
.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  max-width: 14ch;
}
/* ===================== Process ===================== */
.process {
  display: flex;
  flex-direction: column;
}
.process-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  transition: padding 0.4s var(--ease);
}
.process-row:last-child { border-bottom: 1px solid var(--border); }
.process-row__num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-faint);
}
.process-row h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.process-row p { color: var(--text-muted); font-size: 15px; }

/* ===================== Testimonial ===================== */
.testimonial {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 80px;
  text-align: center;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 26ch;
  margin: 0 auto;
}
.testimonial__author {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
}
.testimonial__author strong { display: block; font-size: 14px; }
.testimonial__author span { font-size: 13px; color: var(--text-faint); }

/* ===================== CTA ===================== */
.cta-card {
  margin-top: 72px;
  width: 100%;
  height: 500px;
  border-radius: 40px;
  display: flex;
  align-items: stretch;
  text-align: left;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
  box-shadow:
    60px 0 120px -20px rgba(210, 210, 210, 0.4),
    0 60px 120px -20px rgba(210, 210, 210, 0.4);
}
.cta-card__col {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.cta-card__left-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 60px);
  padding: 0 0 0 clamp(24px, 4.5vw, 64px);
  min-width: 0;
}
.cta-card__logos {
  width: auto;
  max-width: clamp(200px, 22vw, 320px);
  height: auto;
}
.cta-card__heading {
  display: flex;
  flex-direction: column;
}
.cta-card__line1 {
  font-family: var(--font-tight);
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 700;
  font-style: normal;
  color: #d0d0d0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cta-card__line2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 400;
  font-style: italic;
  color: #faff00;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.cta-card__col--middle {
  align-items: center;
  justify-content: center;
}
.cta-card__col--middle::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 160%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 60% 75% at 50% 100%, rgba(217, 217, 217, 0.28) 0%, rgba(217, 217, 217, 0.1) 45%, rgba(217, 217, 217, 0) 75%);
  z-index: -1;
}
.cta-card__image {
  height: 100%;
  width: auto;
  max-width: none;
}
.cta-card__col--right {
  align-items: center;
  justify-content: center;
}

/* ===================== Contact ===================== */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.contact__info h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin: 32px 0 10px;
}
.contact__info h4:first-child { margin-top: 0; }
.contact__info a, .contact__info p { color: var(--text-muted); font-size: 15px; }
.contact__info a:hover { color: var(--text); }

.form-group {
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
}
textarea { resize: vertical; min-height: 120px; }

input.is-invalid, textarea.is-invalid, select.is-invalid,
.phone-wrap.is-invalid {
  border: 1px solid #ff4d4f;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}
.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* ===================== Global Presence ===================== */
.presence {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #010101 0%, #07080a 100%);
}
.presence__head {
  position: relative;
  z-index: 1;
  text-align: center;
}
.presence__globe-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 1055 / 679;
  margin: 64px auto 0;
}
.presence__globe-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(250, 255, 0, 0.35) 0%, rgba(250, 255, 0, 0.16) 40%, rgba(250, 255, 0, 0) 72%);
  z-index: 0;
  pointer-events: none;
}
.presence__bg-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
}
.presence__globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.presence__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.presence__lines polyline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
}
.presence__lines circle { fill: rgba(255, 255, 255, 0.35); }
.presence__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #faff00;
  box-shadow: 0 0 0 5px rgba(250, 255, 0, 0.18), 0 0 18px rgba(250, 255, 0, 0.6);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.presence__pin--tunisia { left: 50.5%; top: 36.8%; }
.presence__pin--pakistan { left: 56.7%; top: 48.3%; }
.presence__pin--estonia { left: 37.8%; top: 44.5%; }
.presence__pin--uae { left: 54.5%; top: 56.0%; }
.presence__pin--oman { left: 55.3%; top: 61.6%; }
.presence__pin--lithuania { left: 46.6%; top: 58.8%; }
.presence__pin--singapore { left: 44.4%; top: 48.3%; }
.presence__loc {
  position: absolute;
  max-width: 250px;
  z-index: 2;
}
.presence__loc--tunisia { left: calc(7% - 100px); top: 25%; }
.presence__loc--estonia { left: calc(2% - 100px); top: 44.5%; }
.presence__loc--singapore { left: calc(-1% - 100px); top: 71%; }
.presence__loc--pakistan { right: calc(1% - 100px); top: 24%; }
.presence__loc--uae { right: calc(-3% - 100px); top: 45.5%; }
.presence__loc--oman { right: calc(0% - 100px); top: 76%; }
.presence__loc--lithuania { left: 51.5%; top: 93%; transform: translateX(-50%); }
.presence__loc h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tight);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.presence__loc h4::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #faff00;
  flex-shrink: 0;
}
.presence__loc p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #d0d0d0;
  margin-top: 6px;
}
.presence__loc p svg { flex-shrink: 0; margin-top: 2px; }

/* ===================== Footer ===================== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: #07080a;
}
.footer__bottom {
  position: relative;
  padding: 56px 0 64px;
  text-align: center;
}
.footer__copyright {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 24px;
  color: #d0d0d0;
  font-size: 13px;
  text-align: center;
}
.footer__disclaimer {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 300;
  color: #d0d0d0;
  line-height: 1.7;
  text-align: center;
}
.footer__bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--font-tight);
  font-size: clamp(48px, 15vw, 300px);
  font-weight: 700;
  font-style: normal;
  color: #171618;
  line-height: 0.8;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ===================== Scroll to top ===================== */
.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--bg-elevated); }

/* ===================== Utility reveal classes (GSAP targets) ===================== */
.reveal { opacity: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .services { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 60px 1fr; }
  .process-row p { grid-column: 2 / 3; }
  .contact { grid-template-columns: 1fr; }
  .presence__globe-wrap {
    aspect-ratio: auto;
    max-width: 480px;
  }
  /* On mobile the location cards stack in-flow below the globe inside this same
     wrapper, making it very tall — re-anchor the glow to the globe's own box
     (top of the wrapper, sized off width) instead of the whole tall wrapper. */
  .presence__globe-wrap::before {
    top: 0;
    left: 50%;
    width: 78%;
    height: auto;
    aspect-ratio: 1 / 1;
    transform: translateX(-50%);
  }
  /* Same reasoning: pin the decorative background to the globe's own box
     (top of the wrapper, width-based aspect ratio) instead of the full wrapper. */
  .presence__bg-decor {
    inset: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1055 / 679;
  }
  /* Stay position:relative (not static) so this in-flow element still establishes
     a stacking context above the absolutely-positioned bg-decor (z-index:0) behind it —
     a static element would otherwise paint above any positioned sibling regardless of z-index. */
  .presence__globe { position: relative; z-index: 1; width: 100%; height: auto; }
  .presence__lines, .presence__pin { display: none; }
  .presence__loc {
    position: static;
    max-width: none;
    margin-top: 28px;
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .header { top: 12px; left: 12px; right: 12px; }
  .header__inner { padding: 8px 8px 8px 18px; }
  .logo__img { height: 30px; }
  .header__topbar { display: none; }
  .footer__bg-text { display: none; }
  .section { padding: 90px 0; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonial { padding: 48px 24px; }
  .cta-card {
    height: auto;
    flex-direction: column;
    border-radius: 28px;
    padding: 48px 28px;
    text-align: center;
  }
  .cta-card__left-inner {
    padding: 0;
    align-items: center;
    text-align: center;
  }
}

/* ===================== Sticky Contact Widget (desktop) ===================== */
.side-widget {
  --sw-yellow: #FFDB00;
  --sw-dark: #151515;
  position: fixed;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.side-widget__callback-wrap {
  position: relative;
  width: 46px;
  height: 150px;
}

.side-widget__callback {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 150px;
  height: 46px;
  padding: 0 18px;
  background: var(--sw-yellow);
  color: var(--sw-dark);
  font-family: var(--font-tight);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.side-widget__callback:hover { background: var(--sw-dark); color: var(--sw-yellow); }

.side-widget__dot {
  position: relative;
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.side-widget__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  animation: side-widget-pulse 1.4s ease-out infinite;
}
@keyframes side-widget-pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.8); }
}

.side-widget__item {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: var(--sw-dark);
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.25);
  transition: width 0.35s var(--ease);
}
.side-widget__item:hover { width: 214px; }

.side-widget__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--sw-yellow);
  color: var(--sw-dark);
}
.side-widget__icon svg { width: 18px; height: 18px; }

.side-widget__item--whatsapp { background: #25D366; }
.side-widget__item--whatsapp .side-widget__icon { background: transparent; color: #fff; }
.side-widget__item--whatsapp .side-widget__label { color: #fff; }

.side-widget__label {
  padding: 0 16px 0 12px;
  color: #fff;
  font-family: var(--font-tight);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .side-widget { display: none; }
}

/* ===================== Sticky Contact Bar (mobile) ===================== */
.mobile-contact-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: #151515;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact-bar__list {
  display: flex;
  justify-content: flex-start;
}

.mobile-contact-bar__item {
  flex: 0 0 auto;
  width: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 4px calc(12px + env(safe-area-inset-bottom, 0px));
  color: #fff;
  font-family: var(--font-tight);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.mobile-contact-bar__item--callback { background: #FFDB00; color: #151515; font-weight: 400; }
.mobile-contact-bar__item--call,
.mobile-contact-bar__item--whatsapp { width: 15%; }
.mobile-contact-bar__item--whatsapp { background: #25D366; color: #fff; border-right: none; }

.mobile-contact-bar__icon { display: flex; }
.mobile-contact-bar__icon svg { width: 19px; height: 19px; }

@media (max-width: 768px) {
  .mobile-contact-bar { display: block; }
  .to-top { bottom: 74px; }
  .cta-card__line1, .cta-card__line2 { font-size: 40px; text-align: center; }
  .cta-card__col--middle {
    flex-basis: auto;
    height: 320px;
    width: 100%;
    margin-top: 32px;
  }
  .cta-card__col--right { margin-top: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* Hero: bring back the figure as an accent beside the title, widen the form card */
  .hero { padding: 128px 0 60px; }
  .hero > .container { width: 100%; padding-left: 20px; padding-right: 20px; }
  .hero__content { position: relative; z-index: 2; }
  .hero__title { max-width: 50%; font-size: clamp(46px, 12.5vw, 54px); }
  .hero__figure {
    display: block;
    position: absolute;
    z-index: 1;
    top: 114px;
    left: auto;
    right: 2px;
    transform: none;
    height: 205px;
    max-height: none;
    width: auto;
  }
  .hero__actions { display: flex; justify-content: center; margin-top: 52px; }
  .hero__partners { margin-left: auto; margin-right: auto; object-position: center; }
  .hero__form-wrap { width: 100%; max-width: 100%; }
  .callback-card { padding: 24px 18px; }
  .callback-card__title { font-size: 19px; }
  .callback-card__desc { font-size: 14px; margin-bottom: 22px; }

  /* Reduce section top spacing on mobile across all the shared section shells */
  .mastered { padding: 64px 0 56px; }
  .presence { padding: 64px 0 56px; }
  .footer { padding: 24px 0 64px; }
  .footer__bottom { padding: 16px 0 64px; }
  .h2h {
    padding: 64px 0;
    background: linear-gradient(180deg, #010101 0%, #07080a 100%);
  }
  .h2h::before {
    right: 0;
    width: 200px;
    height: 436px;
    opacity: 0.35;
  }
  .h2h::after {
    width: 200px;
    height: 570px;
    opacity: 0.35;
  }
  .problem-grid__cta { margin-top: 32px; }
  .industries-marquee { margin-top: 40px; }

  /* As Featured In + Our Clients marquees: smaller logos, tighter gap */
  .marquee__logos { height: 26px; }
  .marquee__logos--original { height: 44px; }
  .client-logo { height: 56px; }
  .marquee__track--gap { gap: 20px; }

  /* FAQ: smaller type on mobile */
  .faq-item__question { font-size: 15px; padding: 18px 0; gap: 12px; }
  .faq-item__icon { width: 26px; height: 26px; }
  .faq-item__icon svg { width: 14px; height: 14px; }
  .faq-item__answer p { font-size: 13.5px; padding-top: 14px; padding-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
