/* ============================================================
   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(255, 255, 255);
  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% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  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 ===== */


 /* ===== APPROACH SECTION ===== */
  .approach-section {
    background: #fff;
    padding: 80px 0 90px;
    overflow: hidden;
    margin-top: 80px;
  }
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .section-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-yellow);
    display: inline-block;
  }
  .eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--brand-yellow-dark);
    text-transform: uppercase;
  }
  .section-headline {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    color: #0a0a0a;
    line-height: 1.15;
  }
  .section-headline em {
    font-style: normal;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  /* ===== APPROACH WRAPPER ===== */
  .approach-wrapper {
    position: relative;
  }
  .approach-viewport {
    overflow: hidden;
    border-radius: 20px;
  }
  .approach-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .approach-item {
    min-width: 100%;
    padding: 0 60px;
    background-color: #f5f5f3;
  }
  .approach-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    padding: 52px 56px 52px;
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
  }
  .approach-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(252,201,2,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .approach-content {
    flex: 1;
    min-width: 0;
  }
  .approach-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--brand-yellow);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .approach-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--brand-yellow);
    border-radius: 2px;
  }
  .approach-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .approach-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 28px;
  }
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tag {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    background: var(--tag-bg);
    border: 1px solid #000;
    border-radius: 100px;
    padding: 6px 14px;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    cursor: default;
  }
  .tag:hover {
    background: rgba(252,201,2,0.10);
    border-color: rgba(252,201,2,0.25);
    color: var(--brand-yellow);
  }
  .approach-icon-area {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .approach-icon-area svg {
    width: 110px;
    height: 110px;
    opacity: 0.85;
  }
 
  /* ===== APPROACH NAV ARROWS ===== */
  .approach-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e0e8;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    outline: none;
    -webkit-appearance: none;
  }
  .approach-nav:hover {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    box-shadow: 0 4px 18px var(--brand-yellow-glow);
  }
  .approach-nav:hover svg polyline {
    stroke: #000;
  }
  .approach-nav.approach-prev { left: 4px; }
  .approach-nav.approach-next { right: 4px; }
  .approach-nav svg {
    width: 18px;
    height: 18px;
  }
  .approach-nav svg polyline {
    stroke: #555;
    stroke-width: 2;
    transition: stroke 0.2s;
    fill: none;
  }
 
  /* ===== APPROACH DOTS ===== */
  .approach-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }
  .approach-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d8;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
    outline: none;
  }
  .approach-dot.active {
    background: var(--brand-yellow);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(252,201,2,0.2);
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 700px) {
    .approach-item { padding: 0 8px; }
    .approach-card { flex-direction: column; padding: 32px 24px 36px; gap: 28px; }
    .approach-icon-area { width: 80px; height: 80px; }
    .approach-nav.approach-prev { left: -6px; }
    .approach-nav.approach-next { right: -6px; }
  }
  /* ===== END APPROACH SECTION ===== */


/* ===== 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;
  }
}


/* services pages css */


ul{
      margin-bottom: 0;
    }

a { text-decoration: none; }
 
img { display: block; max-width: 100%; }
 
/* ===== LAYOUT UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
 
/* ===== SHARED TYPOGRAPHY ===== */
.section-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-eyebroww {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.9px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--grey-600);
  max-width: 600px;
  line-height: 1.65;
  font-weight: 400;
}
.section-header {
  margin-bottom: 52px;
  text-align: center;
}
.section-header .section-subtitle { margin-inline: auto; }
 
/* ===== BUTTONS ===== */
.btn-primary-cta {
  background: var(--brand-yellow);
  color: var(--black);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-primary-cta:hover {
  background: var(--brand-yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--brand-yellow-glow);
}
.btn-secondary-cta {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-secondary-cta:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-yellow);
  color: var(--black);
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 36px;
}
.btn-learn:hover {
  background: var(--brand-yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--brand-yellow-glow);
}
 
/* ===== HERO ===== */
.hero-section {
  background: var(--black);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,201,2,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(252,201,2,0.1);
  border: 1px solid rgba(252,201,2,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-yellow);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.hero-badge::before { content: '●'; font-size: 8px; }
.hero-title {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title span { color: var(--brand-yellow); }
.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-review {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.hero-avatars { display: flex; }
.hero-avatars .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #111;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  margin-left: -10px;
  font-size: 11px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.hero-avatars .av:first-child { margin-left: 0; }
.hero-review-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.hero-review-text strong { color: var(--brand-yellow); font-weight: 700; }
.hero-stars { color: var(--brand-yellow); font-size: 13px; letter-spacing: 1px; }
.stats-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 36px; }
.stat-item .stat-val { font-size: 30px; font-weight: 800; color: var(--brand-yellow); letter-spacing: -1px; }
.stat-item .stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 2px; }
 
/* Hero right cards */
.hero-right {
  position: relative;
  height: 500px;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 20px 22px;
  position: absolute;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-main {
  width: 320px; top: 20px; right: 0;
  background: rgba(18,18,18,0.95);
  border-color: rgba(255,255,255,0.1);
}
.hero-card-stat {
  width: 175px; bottom: 90px; left: 0;
  background: rgba(252,201,2,0.07);
  border-color: rgba(252,201,2,0.22);
}
.hero-card-small {
  width: 155px; bottom: 20px; right: 50px;
  background: rgba(12,12,12,0.96);
  border-color: rgba(255,255,255,0.08);
}
.hc-label { font-size: 10.5px; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.hc-value { font-size: 28px; font-weight: 800; color: var(--brand-yellow); letter-spacing: -1px; }
.hc-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.hc-bar { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; margin-top: 14px; overflow: hidden; }
.hc-bar-fill { height: 100%; background: var(--brand-yellow); border-radius: 2px; width: 72%; }
.hc-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.hc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.hc-row span { font-size: 12px; color: rgba(255,255,255,0.45); }
.hc-row .up { color: #4ade80; font-weight: 600; font-size: 12px; }
.hc-pill {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px;
  color: #4ade80;
  font-weight: 600;
  margin-top: 8px;
}
 
/* ===== WHY SECTION ===== */
.why-section { background: var(--white); padding: 110px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 26px 24px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  border-color: rgba(252,201,2,0.28);
  box-shadow: 0 8px 36px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.why-icon {
  width: 42px; height: 42px;
  background: var(--brand-yellow-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}
.why-card-title { font-size: 14.5px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 8px; letter-spacing: -0.2px; }
.why-card-text { font-size: 13px; color: var(--grey-600); line-height: 1.6; }
 
/* ===== CAMPAIGN SECTION ===== */
.campaign-section {
  background: var(--black);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.campaign-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(252,201,2,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.campaign-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
.campaign-left .section-title { color: var(--white); }
.campaign-left .section-subtitle { color: rgba(255,255,255,0.5); }
.campaign-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 10px;
  transition: all 0.28s ease;
  cursor: pointer;
}
.campaign-card:hover {
  background: rgba(252,201,2,0.05);
  border-color: rgba(252,201,2,0.28);
  box-shadow: 0 4px 22px rgba(252,201,2,0.08);
  transform: translateX(4px);
}
.campaign-card-header { display: flex; align-items: center; gap: 11px; margin-bottom: 7px; }
.campaign-icon {
  width: 34px; height: 34px;
  background: var(--brand-yellow-light);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.campaign-card-title { font-size: 13.5px; font-weight: 700; color: var(--white); letter-spacing: -0.2px; }
.campaign-card-text { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.55; padding-left: 45px; }
 
/* ===== SERVICES SECTION ===== */
.services-section { background: var(--grey-100); padding: 110px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 24px 22px;
  transition: all 0.28s ease;
}
.service-card:hover {
  border-color: rgba(252,201,2,0.38);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--brand-yellow-light);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 13px;
}
.service-title { font-size: 14.5px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 7px; letter-spacing: -0.2px; }
.service-text { font-size: 12.5px; color: var(--grey-600); line-height: 1.6; }
.services-cta { text-align: center; }
 
/* ===== CHALLENGES ===== */
.challenges-section { background: var(--white); padding: 110px 0; }
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.challenge-card {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 26px 24px;
  transition: all 0.28s ease;
}
.challenge-card:hover {
  border-color: rgba(252,201,2,0.32);
  box-shadow: 0 6px 26px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.challenge-quote { font-size: 36px; color: var(--brand-yellow); line-height: 1; margin-bottom: 10px; display: block; }
.challenge-title { font-size: 14.5px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 9px; letter-spacing: -0.2px; }
.challenge-text { font-size: 13px; color: var(--grey-600); line-height: 1.65; font-style: italic; }
 
/* ===== PROCESS ===== */
.process-section { background: var(--grey-100); padding: 110px 0; }
.process-inner {
  max-width: 720px;
  margin-inline: auto;
}
.process-step {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid var(--grey-200);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 52px; height: 52px;
  min-width: 52px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-primary);
  transition: all 0.3s;
}
.process-step:hover .process-num {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: var(--black);
}
.process-title { font-size: 15.5px; font-weight: 800; color: var(--color-text-primary); margin-bottom: 6px; letter-spacing: -0.3px; }
.process-text { font-size: 13px; color: var(--grey-600); line-height: 1.6; }
.process-tag {
  display: inline-block;
  background: var(--brand-yellow-light);
  color: var(--brand-yellow-dark);
  border-radius: 100px;
  padding: 2px 11px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.4px;
}
 
/* ===== INDUSTRIES ===== */
.industries-section { background: var(--black); padding: 110px 0; }
.industries-section .section-title { color: var(--white); }
.industry-label { font-size: 15px; font-weight: 700; color: var(--brand-yellow); margin-bottom: 20px; text-align: center; }
.industries-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 12px;
}
.industry-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 18px;
  transition: all 0.28s ease;
}
.industry-card:hover {
  background: rgba(252,201,2,0.05);
  border-color: rgba(252,201,2,0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(252,201,2,0.07);
}
.industry-icon { font-size: 22px; margin-bottom: 9px; display: block; }
.industry-title { font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.industry-text { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.55; }
 
/* ===== BUSINESS TYPES ===== */
.business-section { background: var(--grey-100); padding: 110px 0; }
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.business-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  transition: all 0.25s ease;
}
.business-card:hover {
  border-color: rgba(252,201,2,0.38);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.biz-icon { font-size: 21px; flex-shrink: 0; margin-top: 2px; }
.biz-title { font-size: 13.5px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 4px; }
.biz-text { font-size: 12px; color: var(--grey-600); line-height: 1.5; }
 
/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); padding: 110px 0; }
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 12px;
}
.review-stars-big { color: #f59e0b; font-size: 17px; letter-spacing: 2px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 26px 24px;
  transition: all 0.28s ease;
}
.testimonial-card:hover {
  border-color: rgba(252,201,2,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.test-quote-icon { font-size: 32px; color: var(--brand-yellow); line-height: 1; margin-bottom: 10px; }
.test-rating { color: #f59e0b; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }
.test-text { font-size: 13.5px; color: var(--grey-600); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 10px; padding-top: 15px; border-top: 1px solid var(--grey-200); }
.test-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--black);
  flex-shrink: 0;
}
.test-name { font-size: 13.5px; font-weight: 700; color: var(--color-text-primary); }
.test-role { font-size: 12px; color: var(--grey-400); }
.test-company { font-size: 10.5px; color: var(--brand-yellow-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
 

 
/* ===== SCROLL ANIMATIONS ===== */
.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.will-animate.animated { opacity: 1; transform: translateY(0); }
.will-animate-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-animate-left.animated { opacity: 1; transform: translateX(0); }
 
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .campaign-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-section { padding: 60px 0 70px; }
  .why-section, .services-section, .challenges-section, .process-section,
  .industries-section, .business-section, .testimonials-section,
  .campaign-section, .cta-section { padding: 72px 0; }
  .stats-row { gap: 22px; }
  .stat-item .stat-val { font-size: 26px; }
  .why-grid,
  .services-grid,
  .challenges-grid,
  .industries-grid,
  .business-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
}
 
/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(252,201,2,0.38); border-radius: 3px; }



/* ============================================================
   SERVICES — ONE BY ONE — scoped under svc2- prefix
   Tokens reused from site globals: --yellow, --black, --white,
   --grey-100/200/400/600, --yellow-dim, --yellow-glow
   No font-family declared anywhere.
============================================================= */
 
.svc2-wrap{ max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
 
/* ---------- Hero ---------- */
.svc2-hero{
  background: var(--white);
  padding: 84px 0 40px;
  text-align: center;
}
.svc2-eyebrow{
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow-dim);
  background: var(--yellow-glow);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.svc2-hero__title{
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.svc2-hl{ color: var(--yellow-dim); }
.svc2-hero__sub{
  color: var(--grey-600);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}
 
/* ---------- Story rows ---------- */
.svc2-story{
  background: var(--white);
  padding: 20px 0 40px;
  overflow: hidden;
}
.svc2-row{
  max-width: 1180px;
  margin-inline: auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.svc2-row--reverse .svc2-art{ order: 2; }
.svc2-row--reverse .svc2-copy{ order: 1; }
 
/* ---------- Art / doodle side ---------- */
.svc2-art{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.svc2-shape{
  position: absolute;
  background: var(--yellow);
  z-index: 0;
}
.svc2-shape--circle{
  width: 190px; height: 190px;
  border-radius: 50%;
  left: 10%;
}
.svc2-shape--triangle{
  width: 0; height: 0;
  border-left: 110px solid transparent;
  border-right: 110px solid transparent;
  border-bottom: 190px solid var(--yellow);
  background: transparent;
}
.svc2-shape--blob{
  width: 200px; height: 190px;
  border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
  left: 12%;
}
.svc2-doodle{
  position: relative;
  z-index: 1;
  width: min(280px, 80%);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.08));
}
 
/* ---------- Copy side ---------- */
.svc2-copy{ max-width: 460px; }
.svc2-row--reverse .svc2-copy{ margin-left: auto; }
.svc2-num{
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--yellow-dim);
  margin-bottom: 10px;
}
.svc2-title{
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.svc2-text{
  color: var(--grey-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc2-tags{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc2-tags li{
  font-size: .82rem;
  font-weight: 600;
  color: var(--black);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  padding: 7px 14px;
  border-radius: 999px;
}
 
/* divider between rows */
.svc2-row + .svc2-row{ border-top: 1px solid var(--grey-200); }
 
/* ---------- CTA ---------- */
.svc2-cta{
  background: var(--black);
  padding: 84px 0 96px;
  text-align: center;
}
.svc2-cta__inner{ max-width: 560px; }
.svc2-cta__title{
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc2-cta__text{
  color: var(--grey-400);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.svc2-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.svc2-btn:hover{
  background: var(--yellow-dim);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--yellow-glow);
}
.svc2-btn:focus-visible{ outline: 2px solid var(--yellow); outline-offset: 3px; }
 
/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .svc2-row{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
    text-align: left;
  }
  .svc2-row--reverse .svc2-art,
  .svc2-row--reverse .svc2-copy{ order: initial; }
  .svc2-copy, .svc2-row--reverse .svc2-copy{ max-width: 100%; margin-left: 0; }
  .svc2-art{ min-height: 180px; }
  .svc2-doodle{ width: min(220px, 70%); }
  .svc2-shape--circle, .svc2-shape--blob{ width: 150px; height: 150px; left: 50%; transform: translateX(-50%); }
  .svc2-shape--triangle{
    border-left-width: 85px; border-right-width: 85px; border-bottom-width: 150px;
    left: 50%; transform: translateX(-50%);
  }
}
 
@media (max-width: 480px){
  .svc2-hero{ padding: 60px 0 28px; }
  .svc2-row{ padding: 32px 16px; }
  .svc2-cta{ padding: 64px 0 76px; }
}
 
/* ---------- Per-service "Book a Meeting" button ---------- */
.svc2-meet-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 22px 13px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  border: 1.5px solid var(--black);
  transition: color .3s ease, border-color .3s ease, transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.svc2-meet-btn__shine{
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--yellow);
  transform: translateX(-105%);
  transition: transform .38s cubic-bezier(.2,.8,.2,1);
}
.svc2-meet-btn__dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--yellow-glow);
  animation: svc2-pulse 1.8s ease-out infinite;
}
.svc2-meet-btn__label{ position: relative; }
.svc2-meet-btn__arrow{
  width: 16px; height: 16px;
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.svc2-meet-btn:hover{
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(0,0,0,0.35);
}
.svc2-meet-btn:hover .svc2-meet-btn__shine{ transform: translateX(0); }
.svc2-meet-btn:hover .svc2-meet-btn__dot{ background: var(--black); animation-play-state: paused; }
.svc2-meet-btn:hover .svc2-meet-btn__arrow{ transform: translateX(4px); }
.svc2-meet-btn:active{ transform: translateY(-1px) scale(.98); }
.svc2-meet-btn:focus-visible{ outline: 2px solid var(--yellow); outline-offset: 3px; }
 
@keyframes svc2-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(252,201,2,0.55); }
  70%{ box-shadow: 0 0 0 9px rgba(252,201,2,0); }
  100%{ box-shadow: 0 0 0 0 rgba(252,201,2,0); }
}
 
/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .svc2-btn, .svc2-meet-btn, .svc2-meet-btn__shine, .svc2-meet-btn__arrow{ transition: none !important; }
  .svc2-meet-btn__dot{ animation: none !important; }
}



/* ============================================================
   INDUSTRIES PAGE — scoped under ind- prefix
   Reuses site tokens: --yellow, --black, --white,
   --grey-100/200/400/600, --yellow-dim, --yellow-glow
   No font-family declared anywhere.
============================================================= */
 
.ind-wrap{ max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
 
/* ---------- Hero ---------- */
.ind-hero{
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 72px;
  isolation: isolate;
  text-align: center;
}
.ind-hero__glow{
  position: absolute;
  top: -180px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.ind-hero__wrap{ max-width: 760px; margin-inline: auto; }
.ind-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(252,201,2,0.35);
  background: rgba(252,201,2,0.08);
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 24px;
}
.ind-eyebrow__dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.ind-hero__title{
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.15; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.ind-hl{ color: var(--yellow); }
.ind-hero__sub{
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--grey-400); line-height: 1.65;
  max-width: 540px; margin-inline: auto;
}
 
/* ---------- Quick nav cards ---------- */
.ind-grid-section{ background: var(--grey-100); padding: 56px 0; }
.ind-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ind-card{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 24px 22px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ind-card:hover{
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px -18px rgba(0,0,0,0.18), 0 0 0 1px var(--yellow-glow);
}
.ind-card__icon{
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--yellow-glow);
  color: var(--yellow-dim);
}
.ind-card__icon svg{ width: 24px; height: 24px; }
.ind-card__title{ font-size: 1.02rem; font-weight: 700; color: var(--black); }
.ind-card__text{ font-size: .88rem; color: var(--grey-600); }
 
/* ---------- Story rows ---------- */
.ind-story{ background: var(--white); padding: 20px 0 40px; overflow: hidden; }
.ind-row{
  max-width: 1180px; margin-inline: auto; padding: 56px 24px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px;
  border-top: 1px solid var(--grey-200);
}
.ind-row--reverse .ind-art{ order: 2; }
.ind-row--reverse .ind-copy{ order: 1; }
 
.ind-art{ position: relative; display: flex; align-items: center; justify-content: center; min-height: 220px; }
.ind-shape{ position: absolute; background: var(--yellow); z-index: 0; }
.ind-shape--circle{ width: 190px; height: 190px; border-radius: 50%; left: 10%; }
.ind-shape--triangle{
  width: 0; height: 0;
  border-left: 110px solid transparent; border-right: 110px solid transparent;
  border-bottom: 190px solid var(--yellow); background: transparent;
}
.ind-shape--blob{ width: 200px; height: 190px; border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%; left: 12%; }
.ind-doodle{ position: relative; z-index: 1; width: min(280px, 80%); height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.08)); }
 
.ind-copy{ max-width: 460px; }
.ind-row--reverse .ind-copy{ margin-left: auto; }
.ind-num{ display: block; font-size: .82rem; font-weight: 800; letter-spacing: .08em; color: var(--yellow-dim); margin-bottom: 10px; text-transform: uppercase; }
.ind-title{ font-size: clamp(1.35rem, 2.6vw, 1.75rem); font-weight: 800; color: var(--black); letter-spacing: -0.01em; margin-bottom: 14px; }
.ind-text{ color: var(--grey-600); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.ind-tags{ list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.ind-tags li{ font-size: .82rem; font-weight: 600; color: var(--black); background: var(--grey-100); border: 1px solid var(--grey-200); padding: 7px 14px; border-radius: 999px; }
 
/* ---------- CTA ---------- */
.ind-cta{ background: var(--black); padding: 84px 0 96px; text-align: center; }
.ind-cta__inner{ max-width: 560px; }
.ind-cta__title{ font-size: clamp(1.6rem, 3.4vw, 2.15rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.01em; }
.ind-cta__text{ color: var(--grey-400); font-size: 1rem; line-height: 1.6; margin-bottom: 30px; }
.ind-btn{
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--black);
  font-weight: 700; font-size: 15px; padding: 15px 34px;
  border-radius: 999px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.ind-btn:hover{ background: var(--yellow-dim); transform: translateY(-2px); box-shadow: 0 10px 26px var(--yellow-glow); }
.ind-btn:focus-visible{ outline: 2px solid var(--yellow); outline-offset: 3px; }
.ind-card:focus-visible{ outline: 2px solid var(--yellow); outline-offset: 3px; }
 
/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .ind-cards{ grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 860px){
  .ind-row{ grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; text-align: left; }
  .ind-row--reverse .ind-art, .ind-row--reverse .ind-copy{ order: initial; }
  .ind-copy, .ind-row--reverse .ind-copy{ max-width: 100%; margin-left: 0; }
  .ind-art{ min-height: 180px; }
  .ind-doodle{ width: min(220px, 70%); }
  .ind-shape--circle, .ind-shape--blob{ width: 150px; height: 150px; left: 50%; transform: translateX(-50%); }
  .ind-shape--triangle{ border-left-width: 85px; border-right-width: 85px; border-bottom-width: 150px; left: 50%; transform: translateX(-50%); }
}
 
@media (max-width: 640px){
  .ind-hero{ padding: 90px 0 52px; }
  .ind-grid-section{ padding: 40px 0; }
  .ind-cards{ grid-template-columns: 1fr; }
  .ind-cta{ padding: 64px 0 76px; }
}
 
/* ---------- Per-industry "Book a Meeting" button ---------- */
.ind-meet-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 22px 13px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  border: 1.5px solid var(--black);
  transition: color .3s ease, border-color .3s ease, transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.ind-meet-btn__shine{
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--yellow);
  transform: translateX(-105%);
  transition: transform .38s cubic-bezier(.2,.8,.2,1);
}
.ind-meet-btn__dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--yellow-glow);
  animation: ind-pulse 1.8s ease-out infinite;
}
.ind-meet-btn__label{ position: relative; }
.ind-meet-btn__arrow{
  width: 16px; height: 16px;
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.ind-meet-btn:hover{
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(0,0,0,0.35);
}
.ind-meet-btn:hover .ind-meet-btn__shine{ transform: translateX(0); }
.ind-meet-btn:hover .ind-meet-btn__dot{ background: var(--black); animation-play-state: paused; }
.ind-meet-btn:hover .ind-meet-btn__arrow{ transform: translateX(4px); }
.ind-meet-btn:active{ transform: translateY(-1px) scale(.98); }
.ind-meet-btn:focus-visible{ outline: 2px solid var(--yellow); outline-offset: 3px; }
 
@keyframes ind-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(252,201,2,0.55); }
  70%{ box-shadow: 0 0 0 9px rgba(252,201,2,0); }
  100%{ box-shadow: 0 0 0 0 rgba(252,201,2,0); }
}
 
/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .ind-card, .ind-btn, .ind-meet-btn, .ind-meet-btn__shine, .ind-meet-btn__arrow{ transition: none !important; }
  .ind-meet-btn__dot{ animation: none !important; }
}



/* meeting page css */

.meeting-main{
  padding: 110px 20px;
}



/* pricing page css starts */


.pricing-section{
  background:var(--grey-100,#f7f7f5);
  padding:110px 20px;
}
.pricing-container{
  max-width:1280px;
  margin:0 auto;
}
.pricing-heading{
  text-align:center;
  margin-bottom:50px;
}
.pricing-heading h1{
  font-size:2.4rem;
  font-weight:800;
  color:var(--black,#000);
  margin:0 0 12px;
}
.pricing-heading h1 span{
  color:var(--yellow,#fcc902);
  -webkit-text-stroke:1px var(--black,#000);
}
.pricing-heading p{
  color:var(--grey-600,#6b6760);
  font-size:1.05rem;
  margin:0;
}
 
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  align-items:stretch;
}
 
.price-card{
  background:var(--white,#fff);
  border:1px solid var(--grey-200,#eeede9);
  border-radius:16px;
  padding:36px 26px;
  display:flex;
  flex-direction:column;
  text-align:center;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(0,0,0,0.08);
}
 
/* Featured (Growth) card */
.price-card.featured{
  background:var(--yellow,#fcc902);
  border:none;
  transform:scale(1.04);
  box-shadow:0 20px 40px var(--yellow-glow,rgba(252,201,2,0.35));
}
.price-card.featured:hover{
  transform:scale(1.04) translateY(-6px);
}
.price-card.featured .feature-list li::before{
  color:var(--black,#000);
}
.price-card.featured .plan-daily{
  background:var(--black,#000);
  color:var(--yellow,#fcc902);
}
 
.popular-badge{
  position:absolute;
  top:-16px;
  left:50%;
  transform:translateX(-50%);
  background:var(--black,#000);
  color:var(--yellow,#fcc902);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.5px;
  padding:8px 18px;
  border-radius:20px;
  white-space:nowrap;
}
 
/* Dark (Enterprise) card */
.price-card.dark{
  background:var(--black,#000);
  border:none;
  color:var(--white,#fff);
}
.price-card.dark .plan-name,
.price-card.dark .plan-tag{
  color:var(--white,#fff);
}
.price-card.dark .plan-price.custom{
  color:var(--yellow,#fcc902);
  font-size:1.6rem;
  font-weight:800;
  line-height:1.3;
  margin:14px 0 24px;
}
 
.card-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  margin:0 auto 18px;
}
.icon-black{
  background:var(--black,#000);
  color:var(--yellow,#fcc902);
}
.icon-yellow{
  background:var(--yellow,#fcc902);
  color:var(--black,#000);
}
 
.plan-name{
  font-size:1.3rem;
  font-weight:800;
  letter-spacing:.5px;
  margin:0 0 6px;
  color:var(--black,#000);
}
.plan-tag{
  font-size:.9rem;
  color:var(--grey-600,#6b6760);
  margin:0 0 18px;
}
 
.plan-price{
  margin-bottom:8px;
}
.plan-price .amount{
  font-size:1.9rem;
  font-weight:800;
  color:var(--black,#000);
}
.plan-price .period{
  font-size:.95rem;
  color:var(--grey-600,#6b6760);
  margin-left:2px;
}
 
.plan-daily{
  display:inline-block;
  background:var(--yellow,#fcc902);
  color:var(--black,#000);
  font-weight:700;
  font-size:.8rem;
  padding:6px 14px;
  border-radius:20px;
  margin:0 auto 26px;
}
 
.feature-list{
  list-style:none;
  margin:0 0 30px;
  padding:0;
  text-align:left;
  flex-grow:1;
}
.feature-list li{
  position:relative;
  padding:8px 0 8px 28px;
  font-size:.92rem;
  color:var(--black,#000);
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.feature-list li:last-child{ border-bottom:none; }
.feature-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:8px;
  color:var(--black,#000);
  font-size:.85rem;
}
.feature-list.light li{
  color:var(--white,#fff);
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.feature-list.light li::before{
  color:var(--yellow,#fcc902);
}
 
.plan-btn{
  display:block;
  text-decoration:none;
  padding:14px 0;
  border-radius:10px;
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.4px;
  transition:opacity .2s ease, transform .2s ease;
}
.plan-btn:hover{
  opacity:.9;
  transform:translateY(-2px);
}
.btn-dark{
  background:var(--black,#000);
  color:var(--white,#fff);
}
.btn-yellow{
  background:var(--yellow,#fcc902);
  color:var(--black,#000);
}
 
/* ── Responsive ── */
@media (max-width:1100px){
  .pricing-grid{ grid-template-columns:repeat(2,1fr); }
  .price-card.featured{ transform:none; }
  .price-card.featured:hover{ transform:translateY(-6px); }
}
 
@media (max-width:600px){
  .pricing-grid{ grid-template-columns:1fr; }
  .pricing-heading h1{ font-size:1.8rem; }
  .price-card{ padding:30px 22px; }
}
