/* ═══════════════════════════════════════════════════════════
   FINDWAYDIGITAL LONDON — ZERO CARD / EDITORIAL DESIGN v3
   Font: Bebas Neue (display) + DM Sans (body)
   Theme: Dark editorial luxury with red signal accents
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

:root {
  --red: #fb0e3f;
  --dark: #07090f;
  --mid: #111827;
  --light: #f5f5f0;
  --muted: #4b5563;
  /* Darker for better contrast on light backgrounds */
  --white: #ffffff;

  --grad-red: linear-gradient(135deg, #fb0e3f 0%, #ff6030 100%);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ───────────────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s var(--ease-back);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(251, 14, 63, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.18s var(--ease-expo);
  transform: translate(-50%, -50%);
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  background: rgba(251, 14, 63, 0.08);
  border-color: var(--red);
}

@media (max-width: 1024px),
(pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── NOISE TEXTURE OVERLAY ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.15;
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero-new-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* London photo BG */
.hero-new-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 1) 100%),
    url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?q=85&w=2200&auto=format&fit=crop') center 30% / cover no-repeat;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05) translateY(0);
  }

  to {
    transform: scale(1.12) translateY(-2%);
  }
}



.hero-new-section .container {
  position: relative;
  z-index: 3;
}

/* Live indicator */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 1s var(--ease-expo) 0.2s both;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
  box-shadow: 0 0 8px var(--red);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ── SPLIT TEXT HEADLINE ─────────────────────────────── */
.hero-new-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 3rem;
  overflow: hidden;
}

.h1-line {
  display: block;
  overflow: hidden;
}

.h1-line span {
  display: block;
  animation: lineReveal 1.1s var(--ease-expo) both;
}

.h1-line:nth-child(1) span {
  animation-delay: 0.3s;
}

.h1-line:nth-child(2) span {
  animation-delay: 0.5s;
}

.h1-line:nth-child(3) span {
  animation-delay: 0.7s;
  color: var(--red);
}

@keyframes lineReveal {
  from {
    transform: translateY(110%);
  }

  to {
    transform: translateY(0);
  }
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 6rem;
  animation: fadeSlideUp 1.2s var(--ease-expo) 0.9s both;
}

.hero-new-section p {
  flex: 1;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  font-weight: 300;
}

/* Stats as horizontal text */
.hero-new-section-stats {
  display: flex;
  gap: 4rem;
  flex-shrink: 0;
}

.stat-item {
  text-align: right;
}

.stat-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.stat-item h3 em {
  color: var(--red);
  font-style: normal;
}

.stat-item p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.hero-cta-wrap {
  margin-top: 2.5rem;
}

/* ── BUTTON ──────────────────────────────────────────── */
.btn-quote,
.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  padding: 1rem 2.4rem;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  cursor: none;
}

.btn-quote::before,
.btn-premium-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-expo);
  z-index: -1;
}

.btn-quote:hover,
.btn-premium-cta:hover {
  border-color: var(--red);
  color: var(--white);
}

.btn-quote:hover::before,
.btn-premium-cta:hover::before {
  transform: translateX(0);
}

/* Arrow icon */
.btn-quote i,
.btn-premium-cta i {
  transition: transform 0.4s var(--ease-back);
}

.btn-quote:hover i,
.btn-premium-cta:hover i {
  transform: translateX(6px);
}

/* ════════════════════════════════════════════════════
   MARQUEE TICKER
════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--red);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.marquee-track .sep {
  color: rgba(255, 255, 255, 0.4);
  padding: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

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

/* ════════════════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════════════ */
section {
  padding: 140px 0;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.8rem;
}

/* ── REVEAL ANIMATIONS (JS-driven) ──────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

[data-delay="1"] {
  transition-delay: 0.1s !important;
}

[data-delay="2"] {
  transition-delay: 0.2s !important;
}

[data-delay="3"] {
  transition-delay: 0.3s !important;
}

[data-delay="4"] {
  transition-delay: 0.45s !important;
}

[data-delay="5"] {
  transition-delay: 0.6s !important;
}

/* ════════════════════════════════════════════════════
   WHY CHOOSE — STACKED NUMBERED ROWS
════════════════════════════════════════════════════ */
#why-choose {
  background: var(--white);
  position: relative;
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.why-header-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  overflow: hidden;
}

.h2-line {
  display: block;
  overflow: hidden;
}

.h2-line span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-expo);
}

.reveal-up.in .h2-line span,
.reveal-left.in .h2-line span {
  transform: translateY(0);
}

.h2-line:nth-child(2) span {
  transition-delay: 0.1s;
}

.why-header-content p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s var(--ease-expo) 0.4s;
}

.why-header-content p.in {
  opacity: 1;
  transform: translateY(0);
}

.why-header-image {
  position: relative;
  width: 100%;
  opacity: 0;
  transform: scale(1.05) translateY(20px);
  transition: opacity 1.2s var(--ease-expo), transform 1.2s var(--ease-expo);
}

.why-header-image.in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.why-header-image .image-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 2.5s var(--ease-expo);
  transform: scale(1.15);
}

.why-header-image.in .image-inner {
  transform: scale(1);
}

.why-header-image:hover .image-inner {
  transform: scale(1.05);
}

.why-header-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(251, 14, 63, 0.15), transparent);
  mix-blend-mode: overlay;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .why-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-header-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Numbered rows — NO cards */
.why-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: background 0.4s ease;
}

.why-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.6s var(--ease-expo);
}

.why-row:hover::after {
  width: 100%;
}

.why-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  transition: color 0.4s ease;
  letter-spacing: -0.02em;
}

.why-row:hover .why-num {
  color: rgba(251, 14, 63, 0.25);
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-title i {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(251, 14, 63, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--red);
  transition: all 0.4s var(--ease-back);
  flex-shrink: 0;
}

.why-row:hover .why-title i {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: rotate(15deg) scale(1.1);
}

.why-desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ── IMAGE REVEAL ON HOVER (EDITORIAL EFFECT) ───────── */
.why-image-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  aspect-ratio: 16/10;
  border-radius: 2px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: translate(-20%, -50%) scale(0.6) rotate(-5deg);
  transition: opacity 0.5s var(--ease-expo), transform 0.1s linear;
}

.why-row:hover .why-image-reveal {
  opacity: 1;
}

.why-image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 1.5s var(--ease-expo);
}

.why-row:hover .why-image-reveal img {
  transform: scale(1);
}

@media (max-width: 1024px) {
  .why-image-reveal {
    display: none !important;
  }
}

/* ════════════════════════════════════════════════════
   SERVICES — DIAGONAL SPLIT LAYOUT
════════════════════════════════════════════════════ */
.services {
  background: var(--light);
  color: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.services-intro {
  padding: 140px 0 180px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
  z-index: 1;
}

.services-intro .container {
  position: relative;
  z-index: 2;
}

.services-intro .section-label {
  color: var(--red);
}

.services-intro h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  color: var(--dark);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.services-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.8;
}

/* Horizontal scrolling service pills */
.services-scroll-wrap {
  overflow: hidden;
  background: var(--light);
  padding: 80px 0;
}

.services-scroll-track {
  display: flex;
  gap: 2px;
  animation: svcScroll 30s linear infinite;
}

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

.svc-pill {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 3rem;
  background: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: none;
}

.svc-pill:hover {
  border-left-color: var(--red);
  background: #f9f0f2;
}

.svc-pill i {
  font-size: 1.5rem;
  color: var(--red);
}

.svc-pill span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

@keyframes svcScroll {
  from {
    transform: translateX(0);
  }

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

/* Expanded service list */
.services-body {
  background: var(--light);
  padding: 0 0 120px;
}

.svc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.svc-item {
  padding: 4rem 3.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.svc-item:nth-child(odd) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.svc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 14, 63, 0.04), transparent);
  transition: left 0.7s var(--ease-expo);
}

.svc-item:hover::before {
  left: 100%;
}

.svc-item:hover {
  background: rgba(251, 14, 63, 0.025);
}

.svc-num-small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: block;
}

.svc-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 1rem;
  transition: letter-spacing 0.4s ease;
}

.svc-item:hover h4 {
  letter-spacing: 0.06em;
}

.svc-item p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  font-weight: 300;
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-back);
}

.svc-item:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════════════
   PROCESS — VERTICAL TIMELINE
════════════════════════════════════════════════════ */
#process {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

/* Morphing blob BG */
#process::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(251, 14, 63, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: morphBlob 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes morphBlob {
  0% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
    transform: translate(-50%, -50%) scale(1);
  }

  33% {
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    transform: translate(-50%, -50%) scale(1.1);
  }

  66% {
    border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
    transform: translate(-50%, -50%) scale(0.95);
  }

  100% {
    border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.process-header {
  text-align: center;
  margin-bottom: 8rem;
}

.process-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Vertical timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Centre spine */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(251, 14, 63, 0.4) 20%, rgba(251, 14, 63, 0.4) 80%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 6rem;
  position: relative;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-left,
.tl-right {
  padding: 0 3rem;
}

.tl-left {
  text-align: right;
}

/* Alternating layout */
.tl-item:nth-child(even) .tl-content {
  grid-column: 3;
}

.tl-item:nth-child(even) .tl-empty {
  grid-column: 1;
}

/* Center node */
.tl-node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tl-dot {
  width: 54px;
  height: 54px;
  background: var(--white);
  border: 2px solid rgba(251, 14, 63, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--red);
  transition: all 0.5s var(--ease-back);
  position: relative;
}

.tl-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(251, 14, 63, 0);
  transition: all 0.5s ease;
}

.tl-item.in .tl-dot {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 30px rgba(251, 14, 63, 0.5);
}

.tl-item.in .tl-dot::after {
  border-color: rgba(251, 14, 63, 0.3);
  inset: -12px;
}

.tl-content {
  padding-top: 10px;
}

.tl-step {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: block;
}

.tl-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1;
}

.tl-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

/* Left-side items align right */
.tl-item:nth-child(odd) .tl-left .tl-content {
  text-align: right;
}

/* ════════════════════════════════════════════════════
   PERFORMANCE — FULL-BLEED TEXT MARQUEE SECTION
════════════════════════════════════════════════════ */
.performance {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.perf-top {
  padding: 120px 0 80px;
}

.perf-top h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  max-width: 800px;
  margin-bottom: 2rem;
}

.perf-top p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* Giant rotating text wheel */
.perf-wheel {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin: 0 -48px;
  display: flex;
  align-items: center;
}

/* Large marquee lines */
.perf-marquee {
  display: flex;
  white-space: nowrap;
  animation: perfMarquee 18s linear infinite;
}

.perf-marquee.reverse {
  animation-direction: reverse;
  animation-duration: 22s;
}

.perf-marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.perf-marquee-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
  transition: -webkit-text-stroke 0.3s ease, color 0.3s ease;
}

.perf-marquee-item span.red-word {
  color: var(--red);
  -webkit-text-stroke: 0px;
}

.perf-marquee-item:hover span {
  color: rgba(0, 0, 0, 0.3);
}

.perf-marquee-item .bullet {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes perfMarquee {
  from {
    transform: translateX(0);
  }

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

/* Four metrics row */
.perf-metrics {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.perf-metric {
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.perf-metric:last-child {
  border-right: none;
}

.perf-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--red);
  transition: width 0.6s var(--ease-expo);
}

.perf-metric:hover::before {
  width: 100%;
}

.perf-metric .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.perf-metric .big-num em {
  color: var(--red);
  font-style: normal;
}

.perf-metric h4 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.perf-metric p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════
   INDUSTRIES — GRID OF TAGS WITH STAGGER
════════════════════════════════════════════════════ */
.industries {
  background: var(--light);
  color: var(--dark);
}

.ind-header {
  margin-bottom: 5rem;
}

.ind-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin: 0 -48px;
  padding: 0 48px;
}

.industry-tag {
  padding: 1.4rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.industry-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-expo);
  z-index: 0;
}

.industry-tag:hover::before {
  transform: scaleY(1);
}

.industry-tag:hover {
  color: var(--white);
}

.industry-tag span {
  position: relative;
  z-index: 1;
}

/* Stagger animation */
.industry-tag {
  opacity: 0;
  transform: translateY(20px);
}

.industry-tag.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS — HORIZONTAL SCROLL STRIP
════════════════════════════════════════════════════ */
.testimonials {
  background: #fafafa;
  padding: 120px 0;
  overflow: hidden;
}

.testi-header {
  margin-bottom: 5rem;
}

.testi-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
}

.testi-scroll {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.testi-scroll::-webkit-scrollbar {
  display: none;
}

.testi-block {
  min-width: 500px;
  max-width: 500px;
  scroll-snap-align: start;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 3rem;
  position: relative;
  flex-shrink: 0;
}

.testi-block .quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--red);
  line-height: 0.7;
  margin-bottom: 1.5rem;
  opacity: 0.25;
  display: block;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testi-stars i {
  color: var(--red);
  font-size: 0.85rem;
}

.testi-block p {
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.testi-block .author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.testi-nav {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.testi-btn {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s ease;
}

.testi-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ════════════════════════════════════════════════════
   FAQ — ACCORDION, NO CARDS
════════════════════════════════════════════════════ */
.faq {
  background: var(--light);
  color: var(--dark);
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
  align-items: end;
}

.faq-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
}

.faq-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.2rem 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--red);
}

.faq-item.active .faq-question {
  color: var(--red);
}

.faq-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dark);
  transition: transform 0.4s var(--ease-expo), background 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-item.active .faq-icon {
  background: var(--red);
  border-color: var(--red);
}

.faq-item.active .faq-icon::before {
  background: #fff;
}

.faq-item.active .faq-icon::after {
  background: #fff;
  transform: rotate(90deg) scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════
   CTA — FULL-BLEED DARK
════════════════════════════════════════════════════ */
.cta-section {
  background: var(--white);
  padding: 160px 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated red orb */
.cta-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 14, 63, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 1;
  }
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.95;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Override btn for CTA */
.cta-section .btn-premium-cta {
  border-color: rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  padding: 1.2rem 3.5rem;
  color: var(--dark);
}

/* ── HELPERS ─────────────────────────────────────────── */
.text-gradient {
  background: var(--grad-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fw-bold {
  font-weight: 700;
}

.fs-big {
  font-size: inherit;
}

.mb-5 {
  margin-bottom: 2rem;
}

.sm-js {}

.hi-txt {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(251, 14, 63, 0.4);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s ease;
}

.hi-txt:hover {
  text-decoration-color: var(--red);
}

.link-red {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link-red:hover {
  opacity: 0.8;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {

  .features-grid,
  .why-row {
    grid-template-columns: 80px 1fr;
  }

  .why-row {
    gap: 1.5rem;
  }

  .why-desc {
    display: none;
  }

  .timeline::before {
    left: 48px;
    transform: none;
  }

  .tl-item {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  .tl-left,
  .tl-right {
    grid-column: 2;
    grid-row: 1;
    text-align: left !important;
    padding: 0 1rem 0 0;
  }

  .tl-item:nth-child(odd) .tl-left .tl-content {
    text-align: left;
  }

  .tl-node {
    grid-column: 1;
    grid-row: 1;
    justify-content: start;
    padding-left: 20px;
  }

  .tl-empty {
    display: none;
  }

  .timeline::before {
    left: 20px;
  }

  .perf-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-list {
    grid-template-columns: 1fr;
  }

  .svc-item:nth-child(odd) {
    border-right: none;
  }

  .hero-bottom {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 32px;
  }

  section {
    padding: 90px 0;
  }

  .hero-new-section h1 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-bottom {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-new-section-stats {
    gap: 2rem;
    justify-content: flex-start;
  }

  .stat-item {
    text-align: left;
  }

  .stat-item h3 {
    font-size: 3.5rem;
  }

  .why-header,
  .faq-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-row {
    grid-template-columns: 50px 1fr;
    padding: 2.5rem 0;
  }

  .why-num {
    font-size: 2.5rem;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .why-desc {
    display: none;
  }

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

  .testi-block {
    min-width: 100%;
    max-width: 100%;
    padding-top: 2rem;
  }

  .testi-nav {
    display: none;
  }

  .testi-block p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testi-block .quote-mark {
    font-size: 5rem;
  }

  .industries-tags {
    margin: 0 -20px;
    padding: 0 20px;
    gap: 0;
  }

  .industry-tag {
    flex: 1 1 50%;
    padding: 1.2rem 1.5rem;
    font-size: 1.25rem;
  }

  .cta-section h2 {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .services-intro {
    clip-path: none;
    padding: 70px 0;
  }

  .perf-wheel {
    height: 260px;
    margin: 0 -24px;
  }

  .perf-marquee-item span {
    font-size: 5rem;
  }
}

/* ── SMALL MOBILE ───────────────────────────────── */
@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 70px 0;
  }

  .hero-new-section {
    padding-bottom: 50px;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 1.8rem;
  }

  .hero-new-section h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
    margin-bottom: 2rem;
  }

  .hero-bottom p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-new-section-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.8rem;
  }

  .svc-item {
    padding: 2.5rem 1.5rem;
  }

  .svc-item h4 {
    font-size: 1.6rem;
  }

  .timeline::before {
    left: 20px;
  }

  .tl-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .tl-node {
    padding-left: 0;
  }

  .tl-dot {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .tl-content h3 {
    font-size: 1.8rem;
  }

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

  .perf-metric {
    padding: 2.5rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .perf-metric:last-child {
    border-bottom: none;
  }

  .perf-metric .big-num {
    font-size: 4rem;
  }

  .perf-marquee-item span {
    font-size: 3.5rem;
  }

  .perf-wheel {
    height: 180px;
  }

  .cta-section {
    padding: 100px 0 !important;
  }

  .cta-section h2 {
    font-size: 2.8rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .industry-tag {
    flex: 1 1 100%;
    padding: 1.1rem 1.2rem;
    font-size: 1.15rem;
  }

  .industries-tags {
    margin: 0;
    padding: 0;
  }
}