/* ============================================================
       DESIGN TOKENS
    ============================================================ */
:root {
  --blue: #147fff;
  --lime: #b7ef09;
  --lime-text: #0a1600;
  --dark: #03060d;
  --cream: #fdfcf8;
  --gray-bg: #f6f6f6;
  --text: #0c121a;
  --muted: #5e646c;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-hero: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --pad: clamp(20px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ============================================================
       PART 1 — HERO + NAVBAR
    ============================================================ */
.hero-wrapper {
  padding: 24px;
  background: #fff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 55vw, 774px);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(260.2deg, #07004e 0%, #032ebb 45%, #0082ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 16vw, 180px) var(--pad) 60px;
}

/* Navbar */
.nav {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 58px) var(--pad) 0;
  z-index: 20;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 767px) {
  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.106em;
  line-height: 1.5;
}

.nav-logo-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.025em;
  opacity: 0.7;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .nav-logo-meta {
    font-size: 9px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #fff;
  line-height: 1.43;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: .65;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 6px 6px 6px 20px;
  transition: opacity .2s;
}

.nav-cta:hover {
  opacity: .85;
}

.nav-cta-circle {
  width: 28px;
  height: 28px;
  background: var(--lime-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dark {
  position: relative !important;
  top: 10px !important;
  left: auto !important;
  right: auto !important;
  margin: 0 auto 40px auto !important;
  width: calc(100% - 20px) !important;
  border-radius: 20px !important;
  padding: clamp(28px, 4vw, 38px) var(--pad) !important;
  background: linear-gradient(260.2deg, #07004e 0%, #032ebb 45%, #0082ff 100%) !important;
}

.nav-dark .nav-logo-meta {
  color: rgba(255, 255, 255, 0.9);
}

.nav-dark .nav-link {
  color: #fff;
}

.nav-dark .nav-cta {
  color: rgba(255, 255, 255, 0.9);
}

.nav-dark .nav-cta-arrow svg path {
  stroke: rgba(255, 255, 255, 0.9);
}

.nav-cta-arrow {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero watermark */
.hero-watermark {
  position: absolute;
  bottom: -2vw;
  right: 2vw;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 277px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  letter-spacing: -0.0624em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  font-optical-sizing: auto;
  z-index: 0;
}

/* Hero text + badge */
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 900px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 8px 16px;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #45e58f;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #ffffff;
  line-height: 1.33;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  color: #f6f9fc;
  letter-spacing: -0.016em;
  line-height: 0.85;
  text-align: center;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 8px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-stat-label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
  line-height: 1.33;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================================
       PART 2 — VALUE PROP
    ============================================================ */
.value-prop-section {
  padding: 200px 0 80px;
}

.value-prop-inner {
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.value-prop-heading {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  color: #0f1216;
  letter-spacing: -0.9px;
  line-height: 1.2;
}

.logo-mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #d1f760;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 767px) {
  .logo-mark {
    display: none;
  }
}

/* ============================================================
       PART 3 — ABOUT CARDS
    ============================================================ */
.about-inner {
  padding: 0 var(--pad) 80px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-card {
  height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card-blue {
  background: linear-gradient(231.34deg, #051d8c 0%, #0044cc 45%, #0c84fa 100%);
}

.about-card-translucent {
  background: linear-gradient(145deg, rgba(180, 205, 230, .22), rgba(140, 175, 215, .32));
  border: 1px solid rgba(120, 160, 200, .20);
}

.about-card-cream {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .06);
}

.card-arrow-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-label-light {
  color: rgba(255, 255, 255, .7);
}

.card-label-muted {
  color: var(--muted);
}

.card-heading-white {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  line-height: 1.29;
  max-width: 280px;
}

/* Card 2 — translucent video card */
.card2-labels {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card2-label-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Card 3 — cream stat card */
.stat-large {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.card3-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card3-top {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.chart-placeholder {
  height: 170px;
  width: 100%;
  margin-top: auto;
  margin-bottom: 16px;
  position: relative;
}

.chart-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

.card3-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.card3-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.btn-pill-sm {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 9999px;
  background: transparent;
  border: 1.5px solid var(--lime);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: background .2s;
  white-space: nowrap;
}

.btn-pill-sm:hover {
  background: rgba(183, 239, 9, .12);
}

/* Footer meta row */
.about-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.about-meta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* ============================================================
       PART 3b — MATH STATS SECTION
    ============================================================ */
.math-stats-section {
  padding: 0 0 80px 0;
  background: #fff;
  /* border-top: 1px solid rgba(0, 0, 0, .06); */
}

.math-stats-inner {
  padding: 0 var(--pad);
}

.math-stats-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

@media (max-width: 1024px) {
  .math-stats-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.math-stats-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin: 0;
}

.stats-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.math-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.math-stat-item {
  background: #fdfbf8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.math-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.math-stat-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 50px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.032em;
  line-height: 1;
  margin-bottom: 16px;
}

.math-stat-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.pill-ticker {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 16px 0;
  margin-top: 24px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.pill-ticker-track {
  display: flex;
  align-items: center;
  /* gap: 32px; */
  animation: pillMarquee 30s linear infinite;
  width: max-content;
}

@keyframes pillMarquee {
  0% {
    transform: translateX(0);
  }

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

.pill-ticker-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  /* padding-right: 32px; */
}

/* ============================================================
       PART 5 — OUR SERVICES
    ============================================================ */
.services-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.services-inner {
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 125px;
}

.services-heading-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-shrink: 0;
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin: 0;
}

.services-meta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
}

.services-main-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.026em;
  line-height: 1;
}

.services-subtext {
  max-width: 480px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-align: right;
}

.services-cards {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

/* Cream service list card */
.service-list-card {
  flex: 2;
  background: var(--cream);
  border: 1px solid #dad7d0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  border-bottom: 1px solid #dad7d0;
  flex-shrink: 0;
  transition: background .2s;
}

.service-item:hover {
  background: rgba(0, 0, 0, .02);
}

.service-item-nb {
  border-bottom: none;
}

.svc-header-click {
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.33;
  flex-shrink: 0;
  width: 28px;
}

.svc-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.svc-desc {
  display: none;
  margin: 16px 0 0 52px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.service-item.active .svc-desc {
  display: block;
}

.svc-btn {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid #dad7d0;
  background: transparent;
  cursor: pointer;
  transition: transform .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1;
}

.service-item.active .svc-btn {
  transform: rotate(45deg);
}

/* Dark dashboard card */
.service-dark-card {
  flex: 1;
  background: var(--dark);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  min-height: 520px;
}

.service-dark-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.svc-live-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .1em;
}

.svc-tracking-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--lime);
  letter-spacing: .1em;
}

.svc-tracking-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.service-dash-ph {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-dark-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(3, 6, 13, .55) 55%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.svc-lightning {
  position: absolute;
  right: -114px;
  top: 19px;
  width: 569px;
  height: 654px;
  z-index: 1;
  opacity: .9;
}

.service-dark-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.svc-dark-heading {
  font-family: var(--font-body);
  font-size: 29.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.27;
  margin-bottom: 16px;
}

.svc-dark-cta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lime);
  line-height: 1.43;
  transition: opacity .2s;
  display: inline-block;
}

.svc-dark-cta:hover {
  opacity: .75;
}

/* ============================================================
       PART 6 — OUR WORK / PORTFOLIO
    ============================================================ */
.portfolio-section {
  padding: 100px 0 80px;
}

.portfolio-inner {
  padding: 0 var(--pad);
}

.portfolio-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-heading-blue {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.026em;
  line-height: 0.9;
  margin: 0;
}

.portfolio-meta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
  padding-bottom: 4px;
}

.portfolio-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 12px;
}

.portfolio-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.project-card {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card-img {
  flex: 1;
  min-height: 340px;
  background: var(--gray-bg);
  position: relative;
  display: block;
  overflow: hidden;
}

.project-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.project-arrow-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-text);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.project-avatar-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.project-card-img-sm {
  min-height: 340px;
}

.project-card-info {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .08em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.project-card-title {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.026em;
  margin-bottom: 0;
}

.project-stats {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.project-stat-pill {
  flex: 1;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-stat-val {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.project-stat-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Quote card (4th card) */
.quote-card {
  background: linear-gradient(231.34deg, #051d8c 0%, #0044cc 45%, #0c84fa 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 424px;
}

.quote-card-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: clamp(24px, 5vw, 33px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.027em;
  line-height: 1.25;
  max-width: 600px;
}

.quote-card-avatar {
  position: absolute;
  top: 44px;
  left: 230px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4f8fe0;
  border: 2px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
}

.quote-card-watermark {
  position: absolute;
  bottom: 5px;
  right: 25px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .15);
  letter-spacing: -0.0624em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 767px) {
  .quote-card-avatar {
    display: none;
  }
}

.btn-lime-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 44px;
  padding: 0 15px 0 20px;
  border-radius: 9999px;
  background: var(--lime);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--lime-text);
  transition: opacity .2s;
  width: fit-content;
}

.btn-lime-pill:hover {
  opacity: .9;
}

.btn-lime-pill-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
       PART 7 — STATS BAR
    ============================================================ */
.stats-bar-section {
  padding-bottom: 80px;
}

.stats-bar {
  background: var(--cream);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  border: 1px solid rgba(0, 0, 0, .06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, .08);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .075em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ============================================================
       PART 8 — TEAM
    ============================================================ */
.team-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.team-inner {
  padding: 0 var(--pad);
}

.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.team-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.025em;
  line-height: 0.95;
  max-width: 800px;
}

.team-header-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.team-meta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
}

.team-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
  max-width: 340px;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.team-card {
  height: 443px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.team-card-photo {
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-dark {
  background: var(--dark);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card-blue {
  background: #eef2fb;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.team-glass-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

.team-card-dark-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: var(--blue);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.team-quote {
  font-family: var(--font-body);
  font-size: clamp(22px, 4vw, 24px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.027em;
  line-height: 1.25;
  margin-top: auto;
}

.team-quote-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .08em;
  margin-top: 16px;
}

.team-card-ig-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.team-rating-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: var(--blue);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.team-rating-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 10px;
}

.team-rating-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 12px;
}

.team-trust {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
  letter-spacing: .1em;
}

.team-footer-text {
  margin: 32px auto 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  width: 65%;
  text-align: center;
}

@media (max-width: 1024px) {
  .team-footer-text {
    width: 100%;
  }
}

/* ============================================================
       PART 9 — AUTOMATION / TRACKING
    ============================================================ */
.automation-section {
  padding: 80px 0;
}

.automation-inner {
  background: var(--dark);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.automation-glow {
  position: absolute;
  width: 1152px;
  height: 1152px;
  background: rgba(20, 127, 255, .30);
  border-radius: 50%;
  top: -400px;
  left: -650px;
  filter: blur(80px);
  pointer-events: none;
}

.auto-meta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.auto-heading {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.026em;
  line-height: 0.95;
  margin-bottom: 32px;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 500px;
}

.auto-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.tech-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

.tech-pill {
  height: 24px;
  padding: 0 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  display: inline-flex;
  align-items: center;
}

.dashboard-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.dashboard-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dashboard-panel-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-panel-growth {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lime);
  font-weight: 500;
}

.dashboard-chart-ph {
  width: 100%;
  height: 96px;
  margin-bottom: 20px;
  position: relative;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.dash-metric-box {
  background: rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.dash-metric-val {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.dash-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
}

.dashboard-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-row {
  height: 32px;
  background: rgba(255, 255, 255, .05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}

.dash-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.dash-row-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  width: 50px;
}

.dash-row-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, .9);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-row-amt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--lime);
  font-weight: 700;
}

.dash-row-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
       PART 10 — THE PROCESS
    ============================================================ */
.process-section {
  padding: 100px 0 80px;
}

.process-inner {
  padding: 0 var(--pad);
}

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

.process-heading {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 94px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.026em;
  line-height: 0.921;
}

.process-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.56;
  max-width: 420px;
  margin-left: auto;
}

.process-divider {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(20, 127, 255, 0.4) 50%,
      transparent 100%);
  z-index: 0;
}

.process-cards-wrapper {
  position: relative;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.process-card {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  padding: 24px;
  height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: .08em;
}

.process-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.process-card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.process-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
       PART 11 — REVENUE CALCULATOR HEADER
    ============================================================ */
.calc-section {
  padding: 80px 0;
  background: var(--gray-bg);
  width: 100%;
}

.calc-header-inner {
  padding: 0 var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.calc-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.calc-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.026em;
  line-height: 0.988;
  max-width: 720px;
}

.calc-subtext {
  max-width: 365px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.56;
  text-align: right;
}

/* ---- Calculator Form ---- */
.calc-header-inner {
  margin-bottom: 40px;
}

.calc-form-inner {
  padding: 0 var(--pad);
}

.calc-form {
  background: #0b0e14;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

/* Progress topbar */
.calc-topbar {
  padding: 32px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.calc-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-topbar-title {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .05em;
}

.calc-progress-pct {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime);
}

.calc-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, .09);
  border-radius: 2px;
  overflow: hidden;
}

.calc-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--lime);
  border-radius: 2px;
}

/* Body: left + right */
.calc-body {
  display: flex;
  min-height: 540px;
}

/* Left panel */
.calc-left-panel {
  flex: 0 0 36%;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.calc-left-glow {
  position: absolute;
  width: 600px;
  height: 800px;
  background: rgba(20, 127, 255, 0.35);
  border-radius: 50%;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.calc-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .15em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.calc-left-heading {
  font-family: var(--font-body);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.calc-left-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Right panel */
.calc-right-panel {
  flex: 1;
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Dropdown */
.calc-select-wrap {
  position: relative;
}

.calc-select {
  width: 100%;
  height: 58px;
  background: #12161f;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  padding: 0 52px 0 20px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}

.calc-select:focus {
  border-color: rgba(183, 239, 9, .35);
}

.calc-select option {
  background: #12161f;
  color: #fff;
}

.calc-select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Slider row */
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 58px;
  background: #12161f;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  padding: 0 20px;
  transition: border-color .2s;
}

.calc-slider-row:focus-within {
  border-color: rgba(183, 239, 9, .35);
}

.calc-slider-val {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--lime);
  flex-shrink: 0;
  min-width: 96px;
}

.calc-slider-val-plain {
  color: #fff;
}

.calc-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid #12161f;
  box-shadow: 0 0 0 2px rgba(183, 239, 9, .3);
  cursor: pointer;
  transition: box-shadow .2s;
}

.calc-range:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(183, 239, 9, .2);
}

.calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid #12161f;
  cursor: pointer;
}

.calc-range::-moz-range-progress {
  background: var(--lime);
  height: 4px;
  border-radius: 2px;
}

.calc-slider-minmax {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .28);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Bottom nav */
.calc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .calc-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .calc-dots {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .calc-btn-back {
    order: 2;
  }

  .calc-btn-continue {
    order: 3;
  }
}

.calc-btn-back {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  height: 40px;
  padding: 0 20px;
  cursor: pointer;
  transition: all .2s;
}

.calc-btn-back:hover {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, 0.08);
}

.calc-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.calc-dot-active {
  width: 32px;
  height: 6px;
  background: var(--lime);
  border-radius: 9999px;
}

.calc-dot-inactive {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.calc-btn-continue {
  height: 48px;
  padding: 0 24px;
  border-radius: 88px;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--lime-text);
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}

.calc-btn-continue:hover {
  opacity: .9;
}

.calc-continue-circle {
  width: 28px;
  height: 28px;
  background: var(--lime-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
       PART 12 — TESTIMONIALS
    ============================================================ */
.testimonials-section {
  padding: 100px 0 80px;
}

.testimonials-inner {
  padding: 0 var(--pad);
}

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

.testimonials-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.026em;
  line-height: 0.935;
}

.testimonials-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.testimonials-nav {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
  margin-bottom: 15px;
}

.testi-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.testi-nav-btn svg {
  stroke: var(--text);
}

.testi-nav-btn:hover:not(:disabled) {
  background: #f0efe9;
}

.testi-nav-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 16px;
  border-radius: 24px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonials-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.testi-card {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 24px;
  padding: 32px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-quote {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.45;
  width: 80%;
}

.testi-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-author-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.testi-company {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}

.testi-metric {
  text-align: right;
}

.testi-metric-val {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.testi-metric-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* Client ticker */
.client-ticker {
  height: 74px;
  background: var(--cream);
  border-radius: 9999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .06);
}

.client-ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: ticker 25s linear infinite;
  width: max-content;
  padding: 0 20px;
}

.client-ticker-item {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.027em;
  white-space: nowrap;
  flex-shrink: 0;
}

.client-ticker-sep {
  color: rgba(12, 18, 26, .3);
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ============================================================
       PART 13 — FAQ
    ============================================================ */
.faq-section {
  padding: 100px 0;
}

.faq-inner {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-left-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.faq-heading {
  font-family: var(--font-body);
  font-size: clamp(32px, 8vw, 58px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.026em;
  line-height: 0.986;
  margin-bottom: 20px;
}

.faq-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid rgba(0, 0, 0, .07);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-q-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
       PART 14 — FINAL CTA
    ============================================================ */
.final-cta-section {
  padding: 0 24px;
  margin-bottom: 100px;
}

.final-cta {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(240.86deg, #051d8c 0%, #0044cc 45%, #0c84fa 100%);
  min-height: 610px;
  position: relative;
  padding: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.final-cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(20, 127, 255, .28);
  border-radius: 50%;
  top: -180px;
  right: 80px;
  filter: blur(80px);
  pointer-events: none;
}

.final-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(45px, 10vw, 95px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.012em;
  line-height: 1;
  max-width: 760px;
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.final-cta-heading-lime {
  color: var(--lime);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.final-cta-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.final-cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-lime-lg {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 60px;
  padding: 0 10px 0 28px;
  border-radius: 9999px;
  background: var(--lime);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--lime-text);
  transition: opacity .2s;
}

.btn-lime-lg:hover {
  opacity: .9;
}

.btn-lime-lg-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 28px;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .8);
  transition: opacity .2s;
}

.btn-outline-white:hover {
  opacity: .8;
}



.final-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  padding: 24px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  will-change: transform, opacity;
}

.final-stat-val {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}

.final-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: normal;
  word-wrap: break-word;
}

/* ============================================================
       PART 15 — FOOTER
    ============================================================ */
.footer-section {
  padding: 0 24px 24px 24px;
}

.footer {
  background: var(--dark);
  border-radius: 32px;
  padding: clamp(60px, 8vw, 100px) var(--pad) clamp(120px, 20vw, 240px);
  position: relative;
  overflow: hidden;
  display: block;
}

.footer-deco {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.footer-email {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.026em;
  line-height: 1.06;
}

.footer-email a {
  transition: opacity .2s;
}

.footer-email a:hover {
  opacity: .7;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 9999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  transition: opacity .2s;
  white-space: nowrap;
}

.btn-white-pill:hover {
  opacity: .85;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

.footer-nav-left {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-left-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.footer-nav-middle {
  display: flex;
  gap: 120px;
  margin-left: auto;
  margin-right: clamp(60px, 10vw, 160px);
}

.footer-nav-right {
  display: flex;
  justify-content: flex-end;
  text-align: left;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

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

.footer-bottom {
  position: absolute;
  bottom: 24px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

@media (max-width: 767px) {
  .footer-email {
    font-size: clamp(28px, 8vw, 40px);
    word-break: break-all;
  }

  .footer-nav {
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }

  .footer-nav-middle {
    flex-direction: column;
    gap: 40px;
    margin-left: 0;
  }

  .footer-nav-right {
    justify-content: flex-start;
  }

  .footer-bottom {
    position: static;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 60px;
  }

  .footer-section {
    padding-bottom: 0px;
  }

  .footer-copy-group {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .testi-quote {
    width: 100%;
  }

}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.footer-powered {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.footer-watermark {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.07;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 1;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}

.footer-powered {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

/* ============================================================
       FLOATING CTA
    ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 375px;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: var(--lime);
  border-radius: 9999px;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(183, 239, 9, .35);
  transition: opacity .2s;
}

.floating-cta-btn:hover {
  opacity: .92;
}

.floating-cta-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--lime-text);
}

.floating-cta-circle {
  width: 32px;
  height: 32px;
  background: var(--lime-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
       ASSET IMAGE STYLES
    ============================================================ */
/* Navbar logo image */
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Project card photos */
.project-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Team photo card */
.team-card-photo {
  padding: 0;
}

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

/* Final CTA 3D model */
.final-cta-3d {
  position: absolute;
  right: -20px;
  top: -100px;
  width: 640px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}



/* Extracted Inline Styles */
.custom-inline-1 {
  color: #fff;
  font-weight: 600;
}

.custom-inline-2 {
  color: var(--lime);
}

.custom-inline-3 {
  color: var(--muted);
}

.custom-inline-4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-inline-5 {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 12px;
  height: 140px;
  background: var(--lime);
  transform: rotate(45deg);
}

.custom-inline-6 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.custom-inline-7 {
  background: linear-gradient(180deg, #1fa5dd 0%, #177aa6 100%);
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.custom-inline-8 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16%;
  height: 80%;
  background: #40f2f5;
  opacity: 0.85;
}

.custom-inline-9 {
  position: absolute;
  bottom: 0;
  left: 21%;
  width: 16%;
  height: 100%;
  background: #40f2f5;
  opacity: 0.9;
}

.custom-inline-10 {
  position: absolute;
  bottom: 0;
  left: 42%;
  width: 16%;
  height: 50%;
  background: #40f2f5;
  opacity: 0.8;
}

.custom-inline-11 {
  position: absolute;
  bottom: 0;
  left: 63%;
  width: 16%;
  height: 85%;
  background: #40f2f5;
  opacity: 0.85;
}

.custom-inline-12 {
  position: absolute;
  bottom: 0;
  left: 84%;
  width: 16%;
  height: 65%;
  background: #40f2f5;
  opacity: 0.8;
}

.custom-inline-13 {
  position: relative;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.custom-inline-14 {
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-inline-15 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-inline-16 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.custom-inline-17 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.custom-inline-18 {
  color: var(--blue);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.custom-inline-19 {
  margin-bottom: auto;
  background: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.custom-inline-20 {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.custom-inline-21 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.custom-inline-22 {
  display: flex;
}

.custom-inline-23 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--lime);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  z-index: 1;
}

.custom-inline-24 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--lime);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: -6px;
  border: 2px solid var(--cream);
  z-index: 2;
}

.custom-inline-25 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--lime);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: -6px;
  border: 2px solid var(--cream);
  z-index: 3;
}

.custom-inline-26 {
  justify-self: end;
}

.custom-inline-27 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px;
}

.custom-inline-28 {
  flex: 1;
}

.custom-inline-29 {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.custom-inline-31 {
  flex: 1;
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.custom-inline-32 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 24px;
  pointer-events: none;
}

.custom-inline-33 {
  position: relative;
  z-index: 10;
}

.project-card-info-wrap {
  align-items: flex-start;
}

.project-card-title-narrow {
  max-width: 55%;
  font-size: 16px;
}

.project-card-tag-narrow {
  max-width: 45%;
  text-align: right;
  line-height: 1.4;
}

.quote-card-btn-row {
  margin-top: 40px;
}

.custom-inline-38 {
  padding: 0 var(--pad);
}

.custom-inline-39 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-inline-40 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.custom-inline-41 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.custom-inline-42 {
  position: relative;
  z-index: 1;
}

.custom-inline-43 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.custom-inline-44 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.custom-inline-45 {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--muted);
}

.custom-inline-46 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1280px) {
  .custom-inline-46 {
    flex-direction: column;
    align-items: flex-start;
  }
}

.custom-inline-47 {
  position: relative;
  z-index: 2;
}

.custom-inline-48 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.custom-inline-49 {
  max-width: 220px;
}

/* Animation Utilities */
.line-wrapper {
  overflow: hidden;
  display: block;
}

.hero-anim-color .word:nth-child(n+5) {
  color: var(--lime);
}

.prop-anim-color .word:nth-child(n+11) {
  color: var(--muted);
}

.math-anim-color .word:nth-child(-n+2) {
  color: var(--blue);
}

.services-anim-color .word:nth-child(1) {
  color: var(--blue);
}

/* .team-anim-color .word:nth-child(1) removed */

.auto-anim-color .word:nth-child(n+4) {
  color: var(--lime);
}

.process-anim-color .word:nth-child(1) {
  color: var(--blue);
}

.testi-anim-color .word:nth-child(n+3) {
  color: var(--blue);
}

.faq-anim-color .word:nth-child(2) {
  color: var(--blue);
}

/* ============================================================
   PART 14.5 — CONTACT
============================================================ */
.contact-section {
  padding: 80px 0;
  background: var(--gray-bg);
  margin-bottom: 30px;
}

.contact-inner {
  padding: 0 var(--pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 24px;
  align-items: stretch;
}

/* LEFT INFO CARD */
.contact-info-card {
  background: #040d21;
  /* deep dark blue */
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-info-glow {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 127, 255, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.contact-info-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact-info-lime,
.contact-heading-lime {
  color: var(--lime);
}

.contact-info-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 320px;
}

.contact-info-reply {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 80px;
}

.contact-info-details {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: auto;
}

.contact-detail-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail-val {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  transition: opacity 0.2s;
}

.contact-detail-val:hover {
  opacity: 0.7;
}

/* RIGHT FORM CARD */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.growth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #0c121a;
}

.req {
  color: #ff3333;
}

.opt {
  color: var(--muted);
  font-weight: 400;
}

/* Inputs */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #0c121a;
  transition: all 0.2s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0a5aa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 127, 255, 0.1);
}

.form-input,
.form-select {
  height: 48px;
}

.form-textarea {
  padding: 16px;
  height: 120px;
  resize: none;
}

/* Wrappers */
.input-wrapper,
.select-wrapper {
  position: relative;
}

.input-wrapper .form-input,
.select-wrapper .form-select {
  width: 100%;
}

.select-wrapper .form-select {
  appearance: none;
  cursor: pointer;
}

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

/* Valid / Error States */
.input-valid .form-input {
  border-color: var(--lime);
  background: #fbffef;
}

.input-valid .form-input:focus {
  box-shadow: 0 0 0 3px rgba(183, 239, 9, 0.2);
}

.input-check-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.input-error .form-input {
  border-color: #ff3333;
  color: #ff3333;
  background: #fffafa;
}

.input-error .form-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-error-msg {
  font-family: var(--font-body);
  font-size: 11px;
  color: #ff3333;
  margin-top: 2px;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-top: 8px;
  width: fit-content;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkbox-check {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.form-checkbox:checked~.checkbox-custom {
  background: var(--lime);
  border-color: var(--lime);
}

.form-checkbox:checked~.checkbox-custom .checkbox-check {
  opacity: 1;
  transform: scale(1);
}

.form-checkbox:focus-visible~.checkbox-custom {
  box-shadow: 0 0 0 3px rgba(183, 239, 9, 0.3);
}

.checkbox-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}

.privacy-link,
span.wpcf7-list-item-label a,
span.wpcf7-list-item-label u {
  color: var(--text);
  text-decoration: underline;
  font-weight: 500;
}

/* Submit Button */
.form-submit-btn {
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-info-details {
    margin-top: 40px;
    gap: 24px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   CONTACT FORM 7 COMPATIBILITY
   ============================================================ */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-spinner {
  display: none !important;
}

div.wpcf7-response-output {
  margin: 16px 0 0 0 !important;
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
}

div.wpcf7-validation-errors {
  border-color: #ff4d4d !important;
}

div.wpcf7-mail-sent-ok {
  border-color: var(--lime) !important;
}

.text-lime {
  color: var(--lime) !important;
}

.text-blue {
  color: var(--blue) !important;
}

span.wpcf7-not-valid-tip {
  color: #ff4d4d !important;
  font-size: 11px !important;
  margin-top: 4px !important;
  font-family: var(--font-body) !important;
}

/* CF7 Checkbox Fix */
span.wpcf7-list-item {
  margin: 0;
  display: flex;
}

span.wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}

span.wpcf7-list-item input[type="checkbox"] {
  position: relative;
  opacity: 1;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 2px solid var(--lime);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 2px;
}

span.wpcf7-list-item input[type="checkbox"]:checked {
  background: var(--lime);
  border-color: var(--lime);
}

span.wpcf7-list-item input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 3px;
}

/* ============================================================
   CONTACT LEFT PANEL
   ============================================================ */
.contact-reply-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-family: monospace;
  font-size: 12px;
  color: #a4b1cd;
}

.contact-reply-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f6f9fc;
  color: #0c121a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  padding-top: 20px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.contact-detail-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-detail-label {
  font-family: monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a4b1cd;
}

.contact-detail-val {
  font-size: 14px;
  color: #f6f9fc;
}

.contact-detail-val a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-detail-val a:hover {
  opacity: 0.8;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

@media (max-width: 1024px) {

  /* Header Mobile Menu */
  .nav-mobile-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 90;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 24px;
  }

  .nav-open-toggle .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-open-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .nav-open-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Flex Stacking */
  .contact-details,
  .services-header,
  .team-header,
  .final-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px !important;
  }

  .portfolio-heading-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px !important;
  }

  .team-header-right {
    display: contents;
  }

  .team-meta-label {
    order: 1;
  }

  .team-heading {
    order: 2;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .team-desc {
    order: 3;
    text-align: left !important;
  }

  .services-cards {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 24px;
  }

  .services-subtext {
    text-align: left;
    max-width: none;
  }

  .service-item {
    padding: 20px 24px;
  }

  .svc-desc {
    margin: 12px 0 0;
  }

  .calc-header-inner,
  .calc-body,
  .final-cta-stats,
  .hero-buttons {
    flex-direction: column;
  }

  .hero {
    height: auto !important;
    min-height: max-content;
    padding-top: 140px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .tech-pills {
    flex-wrap: wrap;
    white-space: normal;
  }

  .final-cta-buttons a,
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .final-cta-stats {
    position: relative;
    margin-top: 32px;
  }

  .automation-inner {
    padding: 40px 24px;
  }

  .value-prop-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .about-inner {
    padding-bottom: 40px;
  }

  .math-stats-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonials-section {
    padding-bottom: 40px;
  }

  .faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .final-cta-stats {
    max-width: none;
  }

  .value-prop-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-cards,
  .portfolio-grid-top,
  .portfolio-grid-bottom,
  .team-cards,
  .process-header,
  .process-cards,
  .math-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-content,
  .stats-bar,
  .testimonials-slide,
  .automation-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testi-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testi-metric {
    text-align: left;
  }

  .about-card {
    height: auto;
    min-height: 320px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .stats-bar {
    height: auto !important;
    padding: 32px 24px;
    gap: 0;
  }

  .stat-item {
    padding: 24px 0;
  }

  .stat-item:first-child {
    padding-top: 0;
  }

  .stat-item:last-child {
    padding-bottom: 0;
  }

  .stat-item+.stat-item::before {
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    bottom: auto;
  }

  .math-stat-item {
    height: auto !important;
    min-height: max-content !important;
    display: flex !important;
    flex-direction: column;
    overflow: visible !important;
  }

  .math-stat-val,
  .math-stat-desc {
    white-space: normal !important;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dash-row {
    height: auto;
    min-height: 32px;
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .calc-left-panel,
  .calc-right-panel {
    padding: 32px 20px;
  }

  .calc-nav {
    padding: 20px 20px 32px;
  }

  .calc-slider-row {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 16px;
  }

  .calc-btn-back,
  .calc-btn-continue {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-divider {
    display: none;
  }

}

.calc-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.calc-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.calc-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 100px;
    /* Space for floating CTA */
  }

  .about-cards,
  .portfolio-grid-top,
  .portfolio-grid-bottom,
  .team-cards,
  .process-header,
  .process-cards,
  .math-stats-grid,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .testi-card {
    gap: 18px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .calc-body {
    flex-direction: column !important;
  }

  .calc-left-panel,
  .calc-right-panel {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 32px 24px !important;
  }

  .calc-left-glow {
    display: none;
  }

  .calc-stack-mobile {
    flex-direction: column !important;
  }

  .calc-stack-mobile>div {
    width: 100% !important;
  }

  .calc-form {
    padding: 20px;
  }

  .calc-nav {
    flex-direction: column;
    gap: 16px;
  }

  .calc-nav button {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 991px) {

  /* Task 1: Reduce gap between cards */
  .math-stats-grid {
    gap: 20px;
    margin-top: 24px;
  }

  .value-prop-cards {
    gap: 16px;
    margin-top: 24px;
    flex-direction: column;
  }

  /* Task 3: Team description left align */
  .team-desc {
    text-align: left !important;
  }

  /* Task 4: Decrease font size on mobile for automation heading */
  .auto-heading {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }

  /* Task 5: Reduce space between The Process section and whatever is above it */
  .process-section {
    padding-top: 40px !important;
  }

  /* Task 6: Calculator subtext align left */
  .calc-header-inner p,
  .calc-header-inner h1 {
    text-align: left !important;
  }

  /* Task 8: Reduce left/right padding of blue section (final-cta) and keep text on single line */
  .final-cta-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .final-cta-heading {
    font-size: 28px !important;
  }

  .final-cta-inner .btn-lime {
    white-space: nowrap !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
  }

  /* Task 9: Remove extra space from the bottom (footer and sticky CTA on mobile) */
  .footer-section {
    padding-bottom: 0px !important;
    /* Reset for mobile */
  }

  .floating-cta {
    bottom: 12px !important;
  }
}

@media (max-width: 767px) {

  .final-cta-left,
  .final-cta-buttons {
    width: 100%;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-buttons .btn-lime-lg {
    justify-content: space-between;
  }

  .final-cta-buttons .btn-outline-white {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-section {
    padding-bottom: 80px !important;
    /* Extra space for sticky CTA on tablet */
  }

  .footer-nav-right {
    justify-content: flex-start;
    /* Align 2026 text with Social */
  }

  .final-cta-left,
  .final-cta-buttons {
    width: 100%;
  }

  .final-cta-buttons a {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .footer-nav {
    display: block;
    column-count: 2;
    column-gap: 40px;
    margin-top: 60px;
  }

  .footer-nav>div,
  .footer-nav-col {
    break-inside: avoid;
    margin-bottom: 40px;
  }

  .footer-nav-middle {
    display: contents;
  }
}


@media (max-width: 991px) {
  .calc-header-inner {
    align-items: flex-start !important;
  }

  .calc-subtext {
    text-align: left !important;
  }
}



@media (max-width: 991px) {

  .footer-bottom,
  .footer-copy-group {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (min-width: 992px) {
  .testimonials-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "header nav"
      "slider slider"
      "ticker ticker";
  }

  .testimonials-header {
    grid-area: header;
    margin-bottom: 40px;
  }

  .testimonials-nav {
    grid-area: nav;
    align-self: flex-end;
    margin-bottom: 40px;
    margin-top: 0 !important;
  }

  .testimonials-slider {
    grid-area: slider;
  }

  .client-ticker {
    grid-area: ticker;
  }
}