/* ============================================================
   LEADBRIX — Core Styles
   Navbar + Hero Section
   ============================================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #fcc902;
  --yellow-dim: #e6b800;
  --yellow-glow: rgba(252, 201, 2, 0.18);
  --black: #000;
  --white: #fff;
  --grey-100: #f7f7f5;
  --grey-200: #eeede9;
  --grey-400: #a8a49a;
  --grey-600: #6b6760;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
  background: var(--color-offwhite);
  line-height: var(--line-height-body);
  overflow-x: hidden;
  cursor: none;
}

html.lenis {
  height: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden !important;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #fcc902;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease-smooth),
    height 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth),
    opacity 0.25s var(--ease-smooth);
  mix-blend-mode: multiply;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(252, 201, 2, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease-smooth);
}

.cursor.is-hovering {
  width: 16px;
  height: 16px;
  background: #000000;
}

.cursor-follower.is-hovering {
  width: 56px;
  height: 56px;
  border-color: rgba(0, 0, 0, 0.4);
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: rgba(244, 246, 251, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  transition:
    background 0.4s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--color-border-mid);
  box-shadow: var(--shadow-soft);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar__logo-text {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
}

.navbar__logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fcc902;
  border-radius: 50%;
  margin-left: 2px;
  margin-bottom: -2px;
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.navbar__nav-item {
  position: relative;
}

.navbar__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: 8px;
  transition:
    color 0.2s var(--ease-smooth),
    background 0.2s var(--ease-smooth);
  white-space: nowrap;
}

.navbar__nav-link:hover {
  color: var(--color-text-primary);
  background: rgba(252, 201, 2, 0.08);
}

.navbar__nav-link.is-active {
  color: var(--color-text-primary);
  font-weight: 600;
}

.navbar__nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition:
    transform 0.2s var(--ease-smooth),
    opacity 0.2s;
}

.navbar__nav-link:hover svg {
  opacity: 0.8;
}

.navbar__nav-item.is-open > .navbar__nav-link svg {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* ── Dropdown Menu ── */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.13),
    0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease-smooth),
    transform 0.22s var(--ease-smooth),
    visibility 0.22s;
  z-index: 200;
}

.navbar__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  border-radius: 2px 0 0 0;
}

.navbar__nav-item.is-open > .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition:
    background 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
  white-space: nowrap;
}

.navbar__dropdown-link:hover {
  background: rgba(252, 201, 2, 0.08);
  color: #000000;
  transform: translateX(2px);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(252, 201, 2, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s var(--ease-smooth);
}

.navbar__dropdown-link:hover .dropdown-icon {
  background: rgba(252, 201, 2, 0.22);
}

.dropdown-icon svg {
  width: 15px;
  height: 15px;
  stroke: #000000;
}

.dropdown-item__title {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.dropdown-item__desc {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 1px;
  line-height: 1.3;
}

.navbar__dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 6px 8px;
}

/* CTA Button */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: #fcc902;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: none;
  letter-spacing: 0.01em;
  transition:
    background 0.25s var(--ease-smooth),
    transform 0.25s var(--ease-bounce),
    box-shadow 0.25s var(--ease-smooth);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(252, 201, 2, 0.35);
}

.navbar__cta:hover {
  background: #e6b500;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(252, 201, 2, 0.45);
}

.navbar__cta:active {
  transform: translateY(0);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease-smooth),
    opacity 0.3s;
}

/* ===== FOOTER STYLES ===== */
.rv-footer {
  background: #000000;
  padding: 72px 0 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.rv-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.rv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.rv-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.rv-brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #7a7a8a;
  margin-bottom: 28px;
  max-width: 280px;
}

.rv-socials {
  display: flex;
  gap: 10px;
}
.rv-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2a2a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7a8a;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.rv-social-btn:hover {
  border-color: #fcc902;
  color: #fcc902;
}

.rv-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.rv-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #fcc902;
  border-radius: 2px;
}

.rv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rv-footer-links a {
  font-size: 14px;
  color: #7a7a8a;
  text-decoration: none;
  transition: color 0.2s;
}
.rv-footer-links a:hover {
  color: #ffffff;
}

.rv-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rv-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #7a7a8a;
  line-height: 1.6;
}
.rv-contact-icon {
  color: #fcc902;
  margin-top: 2px;
  flex-shrink: 0;
}

.rv-app-btns {
  display: flex;
  gap: 10px;
}
.rv-app-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #111118;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #cccccc;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.rv-app-btn:hover {
  border-color: #fcc902;
  color: #ffffff;
}

.rv-footer-divider {
  height: 1px;
  background: #1e1e2a;
  width: 100%;
}

.rv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.rv-footer-bottom p {
  font-size: 13px;
  color: #4a4a5a;
  margin: 0;
}
.rv-footer-legal {
  display: flex;
  gap: 24px;
}
.rv-footer-legal a {
  font-size: 13px;
  color: #4a4a5a;
  text-decoration: none;
  transition: color 0.2s;
}
.rv-footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .rv-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .rv-footer-top {
    grid-template-columns: 1fr;
  }
  .rv-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .rv-footer-legal {
    flex-wrap: wrap;
    gap: 16px;
  }
}
/* ===== END FOOTER STYLES ===== */

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-offwhite);
  padding-top: var(--navbar-height);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 80px var(--container-px) 100px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border-mid);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  box-shadow: var(--shadow-float);
  opacity: 0;
  transform: translateY(16px);
}

.hero__eyebrow-icon {
  width: 14px;
  height: 14px;
  color: #fcc902;
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-primary);
  font-size: var(--font-size-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-dark-navy);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
}

.hero__headline em {
  font-style: normal;
  color: #fcc902;
}

.hero__subtext {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fcc902;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: none;
  letter-spacing: 0.01em;
  transition:
    background 0.25s var(--ease-smooth),
    transform 0.3s var(--ease-bounce),
    box-shadow 0.25s var(--ease-smooth);
  box-shadow: 0 6px 24px rgba(252, 201, 2, 0.4);
  text-decoration: none;
}

.btn-primary:hover {
  background: #e6b500;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(252, 201, 2, 0.5);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-bounce);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ── Floating Stat Cards ── */
.hero__float-left {
  position: absolute;
  left: clamp(20px, 4vw, 80px);
  top: 50%;
  transform: translateY(-60%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.hero__float-right {
  position: absolute;
  right: clamp(20px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.float-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  opacity: 0;
  transform: translateX(-28px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__float-right .float-card {
  transform: translateX(28px);
  min-width: 200px;
}

.float-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card__icon--blue {
  background: rgba(252, 201, 2, 0.12);
}

.float-card__icon--green {
  background: rgba(34, 197, 94, 0.1);
}

.float-card__icon svg {
  width: 20px;
  height: 20px;
}

.float-card__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.float-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.traffic-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  min-width: 210px;
  opacity: 0;
  transform: translateX(28px);
}

.traffic-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.traffic-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.bar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  transition: height 1.2s var(--ease-smooth);
}

.bar--pale {
  background: rgba(252, 201, 2, 0.15);
}
.bar--light {
  background: rgba(252, 201, 2, 0.35);
}
.bar--mid {
  background: rgba(252, 201, 2, 0.65);
}
.bar--full {
  background: #fcc902;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(252, 201, 2, 0.07) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.hero__glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
  top: 30%;
  right: 15%;
  pointer-events: none;
  z-index: 1;
}

/* section 2 */
.stats-section {
  background: #f0f2f5;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  max-width: 1280px;
  margin: 0 auto;
}

.stats-left {
  flex: 0 0 auto;
  max-width: clamp(240px, 35%, 380px);
  min-width: 200px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #d0d5dd;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000000;
  background: transparent;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  white-space: nowrap;
}

.badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.stats-heading {
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(14px, 2vw, 24px);
}

.stats-heading .blue {
  color: #fcc902;
}

.stats-heading .dark {
  color: #000000;
}

.stats-desc {
  font-size: clamp(13px, 1.4vw, 16px);
  color: #7a8599;
  line-height: 1.6;
  font-weight: 400;
}

.stats-cards {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  flex: 1 1 0;
  min-width: 0;
}

.stat-card {
  background: #ffffff;
  border-radius: clamp(12px, 1.5vw, 18px);
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 28px);
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 18px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(252, 201, 2, 0.2);
}

.card-icon {
  width: clamp(28px, 3vw, 38px);
  height: clamp(28px, 3vw, 38px);
  color: #fcc902;
  flex-shrink: 0;
}

.card-number-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.card-number {
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.card-arrow {
  width: clamp(16px, 1.8vw, 22px);
  height: clamp(16px, 1.8vw, 22px);
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 4px;
}

.card-label {
  font-size: clamp(11px, 1.2vw, 14px);
  color: #7a8599;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-left {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
  .stats-cards {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .stats-cards {
    flex-direction: column;
  }
  .stat-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }
  .card-icon {
    width: 32px;
    height: 32px;
  }
  .card-number-row {
    flex: 1 1 100%;
  }
}

@media (max-width: 360px) {
  .stats-section {
    padding: 28px 16px;
  }
}

/* slider section */
.lb-slider-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.lb-slider-label {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.lb-track-wrapper {
  position: relative;
  width: 940px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.lb-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 130px;
  background: linear-gradient(to left, #eef0f7 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.lb-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: lb-scroll 28s linear infinite;
}

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

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

.lb-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  padding: 0 32px;
  flex-shrink: 0;
}

.lb-logo-pill {
  border-radius: 12px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
}

.lb-logo-pill img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.lb-divider {
  width: 1px;
  height: 28px;
  background: rgba(252, 201, 2, 0.2);
  flex-shrink: 0;
}

/* services section */
.svc-section {
  padding: 80px 60px 120px;
}

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

.svc-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(252, 201, 2, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 20px;
}

.svc-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
}

.svc-gray {
  color: #6b7280;
}
.svc-pink {
  color: #fcc902;
}

.svc-outline-btn {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #000000;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.svc-outline-btn:hover {
  background: #000000;
  color: #fcc902;
}

.svc-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-card {
  position: sticky;
  top: var(--card-top);
  background: var(--card-bg);
  border-radius: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(252, 201, 2, 0.12);
}

.svc-card-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 52px 56px;
  min-height: 340px;
}

.svc-card-content {
  flex: 1;
}

.svc-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.svc-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #fcc902;
  border-radius: 2px;
  flex-shrink: 0;
}

.svc-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 18px;
  line-height: 1.15;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.svc-tag {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(252, 201, 2, 0.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #000000;
}

.svc-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #000000;
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.svc-btn:hover {
  background: #000000;
  color: #fcc902;
}

.svc-icon-box {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: rgba(252, 201, 2, 0.08);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(252, 201, 2, 0.15);
}
.svc-icon-box svg {
  width: 72px;
  height: 72px;
}

@media (max-width: 768px) {
  .svc-section {
    padding: 48px 20px 80px;
  }
  .svc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .svc-card-inner {
    flex-direction: column;
    padding: 32px 28px;
    gap: 28px;
    min-height: unset;
  }
  .svc-icon-box {
    width: 100px;
    height: 100px;
  }
}

/* scroll text cards section */
.marquee-section {
  padding: 56px 0;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  white-space: nowrap;
  cursor: default;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
  margin-right: 12px;
  margin-bottom: 10px;
}

.pill:hover {
  border-color: rgba(252, 201, 2, 0.5);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.11);
}

.pill span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
  text-transform: uppercase;
}

.pill i {
  font-size: 15px;
  flex-shrink: 0;
}

.pi-purple i {
  color: #fcc902;
}
.pi-teal i {
  color: #fcc902;
}
.pi-coral i {
  color: #fcc902;
}
.pi-pink i {
  color: #fcc902;
}
.pi-blue i {
  color: #000000;
}
.pi-amber i {
  color: #fcc902;
}

/* standard section */
.rv-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin: 0 auto;
}

.rv-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.rv-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: #fcc902;
}
.rv-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fcc902;
}

.rv-headline {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 24px;
}
.rv-headline em {
  color: #fcc902;
  font-style: italic;
}

.rv-body {
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 480px;
}

.rv-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 44px;
}
.rv-ft-title {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.rv-ft-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.rv-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fcc902;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.rv-cta:hover {
  gap: 12px;
}

.rv-right {
  position: relative;
}
.rv-img-box {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}
.rv-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8);
  display: block;
}

.rv-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.rv-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(252, 201, 2, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.rv-badge-label {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 2px;
}
.rv-badge-val {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 768px) {
  .rv-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 5%;
  }
  .rv-img-badge {
    left: 12px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-headline {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 36px;
}

.cta-list-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-list li {
  font-size: 14.5px;
  color: #9a9aaa;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.cta-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fcc902;
}

.cta-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}

.cta-logo-item {
  font-size: 15px;
  font-weight: 700;
  color: #3a3a4a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
}

.cta-form-title {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cta-form-sub {
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-field {
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
}

.cta-field:last-of-type {
  border-bottom: none;
}

.cta-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #000000;
  background: transparent;
  padding: 0;
}

.cta-input::placeholder {
  color: #9ca3af;
}

.cta-phone-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-flag {
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-phone-input {
  flex: 1;
}

.cta-optional {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-textarea-label {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.cta-textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: 13.5px;
  color: #6b7280;
  background: transparent;
  line-height: 1.6;
  font-family: inherit;
  padding: 0;
}

.cta-textarea::placeholder {
  color: #9ca3af;
}

.cta-btn {
  margin-top: 24px;
  width: 100%;
  padding: 15px;
  background: #fcc902;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.88;
}

.cta-consent {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.cta-consent a {
  color: #6b7280;
  text-decoration: underline;
}

.cta-note {
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .cta-form-card {
    padding: 28px 24px;
  }
  .cta-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== END CTA SECTION ===== */

/* ===== OUR APPROACH ===== */
.approach-section {
  padding: 90px 0;
}

.approach-header {
  text-align: center;
  margin-bottom: 72px;
}

.approach-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.approach-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fcc902;
  display: inline-block;
}

.approach-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fcc902;
  text-transform: uppercase;
}

.approach-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.approach-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #fcc902, #e6b500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approach-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-timeline {
  position: relative;
  margin-bottom: 0;
}

.approach-line {
  position: absolute;
  top: 36px;
  left: calc(12.5% - 0px);
  right: calc(12.5% - 0px);
  height: 1px;
  background: #2a2a3a;
  z-index: 0;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.approach-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0a0a0f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.approach-arrow {
  font-size: 14px;
  color: #4a4a5a;
  line-height: 1;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}

.approach-card {
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 40px 28px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  justify-content: flex-end;
}

.approach-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.approach-card-desc {
  font-size: 13.5px;
  color: #9a8aaa;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .approach-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .approach-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .approach-cards {
    grid-template-columns: 1fr;
  }
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== END APPROACH ===== */

/* ===== SUCCESS STORIES ===== */
.ss-section {
  padding: 90px 0;
  overflow: hidden;
}

.ss-header {
  text-align: center;
  margin-bottom: 64px;
}

.ss-headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.ss-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #fcc902, #e6b500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ss-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ss-left {
  position: relative;
}

.ss-slider {
  position: relative;
  min-height: 420px;
}

.ss-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}

.ss-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.ss-slide-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.ss-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #1a1a2e;
  border: 1px solid #2a2a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ss-case-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fcc902;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ss-case-btn:hover {
  opacity: 0.85;
}

.ss-project-name {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.ss-quote {
  font-size: 14.5px;
  color: #9a8aaa;
  line-height: 1.75;
  border-left: 3px solid #fcc902;
  padding-left: 16px;
  margin: 0 0 32px;
  font-style: italic;
}

.ss-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}

.ss-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ss-stat-val {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}

.ss-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5a5a7a;
  text-transform: uppercase;
}

.ss-trusted-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #4a4a6a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ss-trusted-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ss-trust-logo {
  font-size: 11px;
  font-weight: 700;
  color: #3a3a5a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #2a2a3a;
  padding: 5px 10px;
  border-radius: 6px;
}

.ss-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a3a;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  padding: 0;
}

.ss-dot.active {
  background: #fcc902;
  width: 24px;
  border-radius: 4px;
}

.ss-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 540px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.ss-col {
  overflow: hidden;
  height: 100%;
}

.ss-col-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ss-track-up {
  animation: scrollUp 18s linear infinite;
}

.ss-track-slow {
  animation-duration: 24s;
}

.ss-track-down {
  animation: scrollDown 20s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.ss-img-card {
  border-radius: 14px;
  flex-shrink: 0;
  height: 160px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.ss-img-label {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.ss-img-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ss-col:hover .ss-col-track {
  animation-play-state: paused;
}

@media (max-width: 1024px) {
  .ss-body {
    grid-template-columns: 1fr;
  }
  .ss-right {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .ss-right {
    grid-template-columns: repeat(2, 1fr);
    height: 300px;
  }
  .ss-col:last-child {
    display: none;
  }
  .ss-stats {
    gap: 28px;
  }
}
/* ===== END SUCCESS STORIES ===== */

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 90px 0;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fcc902;
  display: inline-block;
  display: none;
}

.reviews-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fcc902;
  text-transform: uppercase;
}

.reviews-headline {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.reviews-headline-gray {
  color: #4a4a5a;
}

.reviews-right-head {
  padding-bottom: 6px;
}

.reviews-sub {
  font-size: 14.5px;
  color: #7a7a8a;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 340px;
  margin-left: auto;
  text-align: right;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.reviews-stars span {
  color: #fcc902;
  font-size: 18px;
}

.reviews-rating-text {
  font-size: 13px;
  font-weight: 600;
  color: #7a7a8a;
}

.reviews-divider {
  height: 1px;
  background: #1e1e2a;
  margin-bottom: 48px;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.reviews-card {
  background: #0e0e18;
  border: 1px solid #1e1e2e;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}

.reviews-card:hover {
  border-color: rgba(252, 201, 2, 0.35);
}

.reviews-card-stars {
  color: #fcc902;
  font-size: 14px;
  letter-spacing: 2px;
}

.reviews-card-text {
  font-size: 13.5px;
  color: #8a8a9a;
  line-height: 1.75;
  flex: 1;
}

.reviews-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #1e1e2e;
}

.reviews-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.reviews-author-name {
  font-size: 13px;
  font-weight: 700;
}

.reviews-author-role {
  font-size: 11.5px;
  color: #5a5a7a;
  margin-top: 2px;
}

/* ===== VIDEO TESTIMONIALS ===== */
.vt-section {
  margin-top: 8px;
}

.vt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.vt-title {
  font-size: 20px;
  font-weight: 700;
}

.vt-controls {
  display: flex;
  gap: 10px;
}

.vt-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #2a2a3a;
  background: #0e0e18;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.vt-btn:hover {
  background: #fcc902;
  border-color: #fcc902;
  color: #000000;
}

.vt-slider-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.vt-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vt-card {
  flex: 0 0 calc(25% - 12px);
  min-width: calc(25% - 12px);
}

.vt-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a14;
  aspect-ratio: 9/16;
  cursor: pointer;
}

.vt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.vt-overlay.playing {
  background: transparent;
}

.vt-overlay.playing .vt-play-btn {
  opacity: 0;
  pointer-events: none;
}

.vt-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(252, 201, 2, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    background 0.2s;
  backdrop-filter: blur(4px);
}

.vt-play-btn:hover {
  transform: scale(1.1);
  background: #fcc902;
}

.vt-mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 10;
  transition: background 0.2s;
}

.vt-mute-btn.visible {
  display: flex;
}

.vt-mute-btn:hover {
  background: rgba(252, 201, 2, 0.8);
}

.vt-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.vt-progress-bar {
  height: 100%;
  background: #fcc902;
  width: 0%;
  transition: width 0.25s linear;
}

.vt-time {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: none;
}

.vt-time.visible {
  display: block;
}

.vt-card-info {
  padding: 14px 4px 0;
}

.vt-card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.vt-card-role {
  font-size: 12px;
  color: #5a5a7a;
}

.vt-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.vt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a3a;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    width 0.3s;
}

.vt-dot.active {
  background: #fcc902;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .reviews-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-header {
    grid-template-columns: 1fr;
  }
  .reviews-sub,
  .reviews-rating {
    text-align: left;
    justify-content: flex-start;
    margin-left: 0;
  }
  .vt-card {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 600px) {
  .reviews-cards {
    grid-template-columns: 1fr;
  }
  .vt-card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
  }
}
/* ===== END REVIEWS SECTION ===== */

/* ============================================================
   HERO — ABOUT US
============================================================ */
.about-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  /* background-color: #000; */
}

.customaboutimg {
  /* width: 350px;
  height: 300px; */
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: #000;
  border-radius: 100px;
  padding: 30px;
}

.about-hero__circles {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
}
.about-hero__circles circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.about-hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(252, 201, 2, 0.3);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 32px;
}

.about-hero__eyebrow span.dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
}

.about-hero__headline {
  font-family: var(--font);
  font-size: clamp(40px, 5.5vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about-hero__headline .yellow {
  color: var(--yellow);
}
.about-hero__headline .white {
  color: #000;
}

.about-hero__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #000;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}

.about-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 6px 28px rgba(252, 201, 2, 0.35);
  cursor: none;
}
.about-hero__cta:hover {
  background: var(--yellow-dim);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(252, 201, 2, 0.45);
}

.about-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  width: 420px;
  height: 420px;
}

/* ============================================================
   STATS BAND
============================================================ */
.stats-band {
  outline: none;
  padding: 0;
  border-top: 1px solid rgba(252, 201, 2, 0.2);
  border-bottom: 1px solid rgba(252, 201, 2, 0.2);
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-band__item {
  padding: 40px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats-band__item:last-child {
  border-right: none;
}

.stats-band__num {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats-band__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}

/* ============================================================
   MISSION SECTION
============================================================ */
.mission-section {
  padding: 100px 0;
}

.mission-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* .mission-section__left {
} */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.section-eyebrow__line {
  width: 32px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.section-eyebrow__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

.section-headline {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-headline em {
  font-style: normal;
  color: var(--yellow);
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 40px;
}

.mission-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mission-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(252, 201, 2, 0.1);
  border: 1px solid rgba(252, 201, 2, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mission-feature__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
}

.mission-feature__title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.mission-feature__desc {
  font-size: 13.5px;
  color: #000;
  line-height: 1.6;
}

.mission-section__right {
  position: relative;
}

.mission-img-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-img-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--yellow);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(252, 201, 2, 0.3);
}
.mission-img-badge__icon {
  font-size: 26px;
}
.mission-img-badge__num {
  font-size: 22px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.mission-img-badge__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team-section {
  padding: 100px 0;
}

.team-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition:
    border-color 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(252, 201, 2, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover {
  border-color: rgba(252, 201, 2, 0.25);
  transform: translateY(-4px);
}
.team-card:hover::before {
  opacity: 1;
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(252, 201, 2, 0.1);
  border: 2px solid rgba(252, 201, 2, 0.2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 12px;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.team-card__bio {
  font-size: 12.5px;
  color: #000;
  line-height: 1.65;
}

.team-card__socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-card__social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.team-card__social:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(252, 201, 2, 0.08);
}

/* ============================================================
   VALUES SECTION
============================================================ */
.values-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.values-section__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
}

.values-section__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.value-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.value-card:hover {
  border-color: rgba(252, 201, 2, 0.2);
  transform: translateY(-4px);
}

.value-card__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card__number::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.value-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 14px;
  line-height: 1.2;
}

.value-card__desc {
  font-size: 14px;
  color: #000;
  line-height: 1.75;
}

/* ============================================================
   CTA BOTTOM BAND
============================================================ */
.about-cta {
  padding: 80px 0;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* .about-cta__text {} */

.about-cta__heading {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 10px;
}

.about-cta__sub {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-yellow) !important;
  color: var(--brand-black) !important;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 0 6px rgba(252, 201, 2, 0.25);
  cursor: pointer;
}

.about-cta__btn:hover {
  /* background: var(--yellow); */
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(252, 201, 2, 0.2);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-hero__headline {
    font-size: clamp(36px, 7vw, 56px);
  }
  .mission-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-band__inner {
    grid-template-columns: 1fr;
  }
  .about-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .mission-img-badge {
    left: 12px;
    bottom: -12px;
  }
}

/* entry animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
     POPUP OVERLAY
  ============================================================ */

/* ── Overlay ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Box ── */
.popup-box {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
  padding: 48px 44px 44px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-box::-webkit-scrollbar {
  width: 4px;
}
.popup-box::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

/* ── Close ── */
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  z-index: 10;
}
.popup-close:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.3);
  transform: rotate(90deg);
}
.popup-close svg {
  width: 14px;
  height: 14px;
  stroke: #333;
  stroke-width: 2.2;
}

/* ── Header ── */
.popup-title {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}
.popup-subtitle {
  font-size: 12.5px;
  color: #888;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* ── Form ── */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
  position: relative;
}
.form-field:first-of-type {
  border-top: 1px solid #e0e0e0;
}
.form-field:focus-within {
  border-bottom-color: #fcc902;
}

.form-field input,
.form-field select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #222;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  padding: 0;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder {
  color: #aaa;
  font-size: 14px;
}

/* select placeholder colour trick */
.form-field select.placeholder-active {
  color: #aaa;
}
.form-field select option {
  color: #222;
}
.form-field select option[value=""] {
  color: #aaa;
}

/* custom chevron for select */
.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.select-wrap select {
  padding-right: 28px;
  cursor: pointer;
}
.select-wrap .chevron {
  position: absolute;
  right: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.select-wrap .chevron svg {
  width: 16px;
  height: 16px;
  stroke: #aaa;
  stroke-width: 2;
  transition: stroke 0.2s;
}
.form-field:focus-within .select-wrap .chevron svg {
  stroke: #fcc902;
}

/* phone row */
.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-flag .flag {
  font-size: 16px;
}
.phone-divider {
  width: 1px;
  height: 16px;
  background: #ddd;
  flex-shrink: 0;
}

/* ── Submit ── */
.popup-submit {
  margin-top: 28px;
  width: 100%;
  padding: 17px 24px;
  background: #fcc902;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 6px rgba(252, 201, 2, 0.25);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.popup-submit:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(252, 201, 2, 0.2);
}
.popup-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .popup-box {
    padding: 36px 24px 32px;
  }
  .popup-title {
    font-size: 18px;
  }
}

/* CONTACT HERO
============================================================ */

 .contact-hero {
  background: var(--black) !important;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* decorative grid lines */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 201, 2, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 201, 2, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* yellow glow blob */
.contact-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(252, 201, 2, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(252, 201, 2, 0.3);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.contact-hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
}

.contact-hero__headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.contact-hero__headline .accent {
  color: var(--yellow);
}

.contact-hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ============================================================
   MAIN CONTACT SECTION
============================================================ */
.contact-section {
  padding: 80px 0 100px;
  background: var(--grey-100);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   LEFT — INFO PANEL
============================================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 32px;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-info__label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.contact-info__heading {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.contact-info__heading em {
  font-style: normal;
  color: var(--yellow);
}

.contact-info__body {
  font-size: 14.5px;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* detail cards */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  padding: 18px 20px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.detail-card:hover {
  border-color: rgba(252, 201, 2, 0.4);
  box-shadow: 0 4px 20px rgba(252, 201, 2, 0.08);
}

.detail-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(252, 201, 2, 0.1);
  border: 1px solid rgba(252, 201, 2, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* .detail-card__content {} */
.detail-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 4px;
}
.detail-card__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}
.detail-card__value a {
  color: var(--black);
  transition: color var(--transition);
}
.detail-card__value a:hover {
  color: var(--yellow);
}

/* social row */
.contact-socials {
  display: flex;
  gap: 10px;
}
.contact-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.contact-social:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(252, 201, 2, 0.06);
}
.contact-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   RIGHT — FORM CARD
============================================================ */
.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.contact-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contact-card__sub {
  font-size: 13.5px;
  color: var(--grey-400);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--grey-200);
  padding: 14px 0;
  position: relative;
}
.field-group:first-of-type {
  border-top: 1px solid var(--grey-200);
}
.form-row .field-group:nth-child(2) {
  border-top: 1px solid var(--grey-200);
}

.field-group label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 5px;
  transition: color var(--transition);
}

.field-group:focus-within label {
  color: var(--yellow);
}
.field-group:focus-within {
  border-bottom-color: var(--yellow);
}

.field-group input,
.field-group select,
.field-group textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--black);
  font-family: var(--font);
  width: 100%;
  padding: 0;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #ccc;
}

/* select */
.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.select-wrap select {
  padding-right: 24px;
  cursor: pointer;
}
.select-wrap .chevron {
  position: absolute;
  right: 0;
  pointer-events: none;
}
.select-wrap .chevron svg {
  width: 15px;
  height: 15px;
  stroke: var(--grey-400);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}
.field-group:focus-within .chevron svg {
  stroke: var(--yellow);
}
.field-group select.ph {
  color: #ccc;
}
.field-group select option {
  color: var(--black);
}

/* phone */
.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-prefix {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-sep {
  width: 1px;
  height: 16px;
  background: var(--grey-200);
  flex-shrink: 0;
}

/* textarea */
.field-group textarea {
  resize: none;
  height: 72px;
}

/* submit */
.form-submit {
  margin-top: 28px;
  width: 100%;
  padding: 17px 24px;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 0 6px rgba(252, 201, 2, 0.2);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.form-submit:hover {
  background: var(--yellow-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(252, 201, 2, 0.15);
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Thank You State ── */
.thankyou-box {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0 10px;
  animation: fadeUp 0.5s ease both;
}
.thankyou-box.visible {
  display: flex;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(252, 201, 2, 0.12);
  border: 2px solid rgba(252, 201, 2, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.thankyou-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--yellow);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thankyou-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.thankyou-sub {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 340px;
}

/* ============================================================
   MAP STRIP (optional placeholder)
============================================================ */
.map-strip {
  background: var(--black);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-strip__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
  }
  .contact-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 72px 0 56px;
  }
  .contact-card {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row .field-group:nth-child(2) {
    border-top: none;
  }
}
