@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');


:root {
  --color-bg-dark: #0d0d0d;
  --color-bg-card: #1a1a1a;
  --color-text-light: #fafafa;
  --color-text-muted: #888;
  --color-accent: #fd8400;
  --color-accent-hover: #fc3801;
  --color-accent-2: #fc3801;
  --color-border: rgba(250, 250, 250, 0.08);
  --color-border-focus: rgba(253, 132, 0, 0.5);
  
  --font-display: 'Unbounded', sans-serif;
  --font-title: 'Unbounded', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --cursor-size: 20px;
  --cursor-blend: difference;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border: 1px solid var(--color-text-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  mix-blend-mode: var(--cursor-blend);
}

.custom-cursor.hovered {
  width: 80px;
  height: 80px;
  background-color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.custom-cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.custom-cursor.hovered .custom-cursor-text {
  opacity: 1;
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: transparent url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E") repeat;
  opacity: 0.015;
  pointer-events: none;
  z-index: 9998;
  animation: noiseAnimation 1.2s infinite;
}

@keyframes noiseAnimation {
  0% { transform: translate(0,0) }
  10% { transform: translate(-5%,-5%) }
  20% { transform: translate(-10%,5%) }
  30% { transform: translate(5%,-10%) }
  40% { transform: translate(-5%,15%) }
  50% { transform: translate(-10%,5%) }
  60% { transform: translate(15%,0) }
  70% { transform: translate(0,10%) }
  80% { transform: translate(-15%,15%) }
  90% { transform: translate(10%,-10%) }
  100% { transform: translate(5%,5%) }
}

/* Utility Styles */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* Navigation & Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  z-index: 1000;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  padding: 14px 40px;
}

.main-header.scrolled .logo-img {
  height: 24px;
}

.main-header.header-hidden {
  transform: translateY(-110%);
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: height 0.35s ease;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.lang-toggle:hover,
.lang-toggle.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0d0d0d;
}

.menu-trigger {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}

.menu-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-trigger:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-trigger span {
  display: inline-block;
  transition: transform 0.3s;
}

.menu-trigger:hover span {
  transform: translateY(-2px);
}

/* Nav bubble menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 1999;
  transition: opacity 0.35s ease;
}

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

.nav-drawer {
  position: fixed;
  top: 84px;
  right: 24px;
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fd8400;
  color: #0d0d0d;
  z-index: 2000;
  border-radius: 28px;
  padding: 72px 48px 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.85) translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transform-origin: top right;
  transition: transform 0.55s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.nav-drawer.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  color: #0d0d0d;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 50px;
}

.drawer-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  gap: 18px;
}

.nav-item {
  overflow: hidden;
}

.nav-link {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #0d0d0d;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
  transform: translateY(110%);
}

.nav-drawer.open .nav-link {
  transform: translateY(0);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-drawer.open .nav-item:nth-child(1) .nav-link { transition-delay: 0.08s; }
.nav-drawer.open .nav-item:nth-child(2) .nav-link { transition-delay: 0.14s; }
.nav-drawer.open .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
.nav-drawer.open .nav-item:nth-child(4) .nav-link { transition-delay: 0.26s; }
.nav-drawer.open .nav-item:nth-child(5) .nav-link { transition-delay: 0.32s; }

.nav-link:hover {
  color: #fff;
  transform: skewX(-3deg) translateX(8px);
}

.drawer-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.drawer-info h4 {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 1px;
}

.drawer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  width: 100%;
}

.drawer-socials a {
  color: #0d0d0d;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.drawer-socials a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .nav-drawer {
    top: 72px;
    right: 16px;
    width: calc(100vw - 32px);
    padding: 52px 24px 24px;
  }

  .nav-link {
    font-size: clamp(24px, 8vw, 36px);
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 100px 0 60px;
  z-index: 10;
  overflow: hidden;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.35) 45%, rgba(13, 13, 13, 0.8) 100%),
    linear-gradient(to right, rgba(13, 13, 13, 0.5) 0%, transparent 50%, rgba(13, 13, 13, 0.3) 100%);
}

.hero-subtitle {
  font-family: var(--font-title);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 30px;
  font-weight: 800;
  min-height: 1.5em;
}

.street-tag {
  display: inline-block;
  position: relative;
  padding: 10px 18px;
  border: 1px solid rgba(253, 132, 0, 0.35);
  background: rgba(253, 132, 0, 0.06);
  transform: skewX(-6deg);
  overflow: hidden;
}

.street-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-120%);
}

.street-text {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  transform: skewX(6deg);
}

.street-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) skewX(-12deg);
}

.street-underline {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 10px;
  transform: skewX(6deg);
}

.street-underline-path {
  stroke: #fafafa;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.street-tag.street-shine::before {
  animation: streetShine 0.7s ease forwards;
}

@keyframes streetShine {
  to { transform: translateX(120%); }
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: clamp(8px, 2.4vw, 11px);
    letter-spacing: 1.5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .street-tag {
    padding: 8px 12px;
  }
}

/* Hero eyebrow label */
.hero-eyebrow {
  font-family: var(--font-title);
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
    height: auto;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(32px, 11vw, 56px);
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-title span {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  .hero-desc {
    font-size: clamp(13px, 3.8vw, 16px);
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-cta-btn {
    font-size: 13px;
    padding: 15px 22px;
    width: auto;
    white-space: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7.5vw, 110px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

/* Clip container — text slides up from inside, no overflow flash */
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  padding-top: 0.15em;
}

/* Reference-style: first line normal weight */
.hero-title .hero-line:first-child span {
  display: block;
  font-size: clamp(28px, 4.5vw, 68px);
  font-weight: 400;
  color: rgba(250,250,250,0.85);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

/* Middle line smaller italic-like */
.hero-title-sub {
  display: block;
  font-family: var(--font-body) !important;
  font-size: clamp(16px, 2.2vw, 28px) !important;
  font-weight: 400 !important;
  color: rgba(250,250,250,0.65) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

/* Big bold bottom line - the punchline */
.hero-title-mega {
  display: block;
  font-size: clamp(40px, 8.5vw, 130px) !important;
  font-weight: 900 !important;
  color: var(--color-text-light) !important;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-desc {
  max-width: 560px;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  width: fit-content;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-text-light);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}

.hero-cta-btn:hover {
  transform: translateY(-5px);
  color: #070707;
}

.hero-cta-btn:hover::before {
  transform: translateY(0);
}

.hero-cta-btn span {
  position: relative;
  z-index: 2;
}

.hero-cta-btn svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}

.hero-cta-btn:hover svg {
  transform: translateX(5px) rotate(-45deg);
}

/* Floating Grid background */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 80px 80px;
  background-image:
    linear-gradient(to right, rgba(253, 132, 0, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(253, 132, 0, 0.10) 1px, transparent 1px);
  z-index: -1;
  pointer-events: none;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(253,132,0,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(252,56,1,0.12) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(253,132,0,0.08) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 60px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(calc(-50% + 30px), -30px) scale(1.15); }
}

/* Horizontal Scroll Section */
.horizontal-scroll-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #0c0c0c;
}

.horizontal-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 300vw; /* 3 screens */
  height: 100vh;
  align-items: center;
}

.horizontal-slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
}

.case-slide.is-active .slide-tag {
  animation: caseTagPulse 1.2s ease-in-out infinite;
}

.case-slide.is-active .slide-media {
  box-shadow: 0 0 60px rgba(253, 132, 0, 0.15);
  border-color: rgba(253, 132, 0, 0.35);
}

@keyframes caseTagPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(253, 132, 0, 0); }
  50% { box-shadow: 0 0 20px rgba(253, 132, 0, 0.35); }
}

.slide-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.slide-info h3 {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  word-spacing: 0.15em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.case-char {
  letter-spacing: normal;
}

.slide-info p {
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.slide-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.slide-media {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.slide-img-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-media:hover .slide-img-mock {
  transform: scale(1.05);
}

.slide-img-mock::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(253,132,0,0.12) 0%, transparent 100%);
}

.slide-num {
  position: absolute;
  right: 50px;
  top: 50px;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  color: rgba(245, 242, 235, 0.03);
  line-height: 1;
}

@media (max-width: 992px) {
  .horizontal-scroll-wrapper {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .horizontal-slide {
    width: 100%;
    height: auto;
    padding: 80px 20px;
  }
  .slide-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .slide-num {
    top: 20px;
    right: 20px;
  }
}

/* Process Timeline Section */
.path-section {
  padding: 140px 0 120px;
  position: relative;
  background-color: var(--color-bg-dark);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
  min-height: 880px;
}

.process-path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.process-path-bg {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
}

.process-path-glow {
  stroke: #fafafa;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.35));
}

/* Steps — NO CSS transition on opacity/transform (GSAP controls them) */
.process-step {
  position: relative;
  width: calc(50% - 40px);
  margin-bottom: 80px;
  opacity: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.process-step--left {
  margin-right: auto;
  flex-direction: row;
}

.process-step--right {
  margin-left: auto;
  flex-direction: row-reverse;
  text-align: right;
}

/* Circle with number */
.process-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  line-height: 1;
}

/* Text label */
.process-step-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.process-step-card::before {
  display: none;
}

.process-step-card p {
  font-family: var(--font-title);
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

/* ── Desktop: Winding path alignment and styling ── */
@media (min-width: 769px) {
  .process-timeline {
    height: 1120px;
    min-height: 1120px;
    width: 900px;
    margin: 60px auto 0;
  }
  
  .process-step {
    position: absolute !important;
    margin: 0 !important;
    width: auto !important;
    max-width: 320px !important;
  }
  
  .process-step-card {
    max-width: 240px;
  }
  
  /* Step 1: left side */
  .process-step[data-step="1"] {
    top: 154px;
    left: 424px;
    right: auto;
    flex-direction: row;
    text-align: left;
  }
  
  /* Step 2: right side */
  .process-step[data-step="2"] {
    top: 354px;
    left: auto;
    right: 424px;
    flex-direction: row-reverse;
    text-align: right;
  }
  
  /* Step 3: left side */
  .process-step[data-step="3"] {
    top: 554px;
    left: 424px;
    right: auto;
    flex-direction: row;
    text-align: left;
  }
  
  /* Step 4: right side */
  .process-step[data-step="4"] {
    top: 754px;
    left: auto;
    right: 424px;
    flex-direction: row-reverse;
    text-align: right;
  }

  /* Step 5: left side */
  .process-step[data-step="5"] {
    top: 954px;
    left: 424px;
    right: auto;
    flex-direction: row;
    text-align: left;
  }
}

/* ── Mobile: straight vertical line instead of S-curve ── */
@media (max-width: 768px) {
  .process-timeline {
    min-height: auto;
    padding: 0 20px 0 28px;
  }

  /* Hide the S-curve SVG on mobile — replaced by a simple left border line */
  .process-path-svg {
    display: none;
  }

  /* Vertical line drawn via pseudo-element on the timeline container */
  .process-timeline::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
  }

  /* The animated glow line — height driven by JS via --line-progress */
  .process-timeline::after {
    content: '';
    position: absolute;
    left: 44px;
    top: 26px;
    width: 2px;
    height: var(--line-progress, 0%);
    background: #fafafa;
    box-shadow: 0 0 8px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.4);
  }

  .process-step,
  .process-step--left,
  .process-step--right {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 36px;
    flex-direction: row !important;
    text-align: left !important;
    margin-bottom: 28px;
  }

  .process-step-card p {
    font-size: clamp(13px, 4vw, 16px);
  }
}

/* Services Section (legacy) */
.services-section {
  padding: 160px 0;
  position: relative;
  background-color: var(--color-bg-dark);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 90px);
  text-transform: uppercase;
  line-height: 0.9;
}

.section-title span:first-child {
  color: var(--color-text-light);
}

.section-title span:last-child {
  color: var(--color-accent);
}

.section-sub {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  max-width: 300px;
  line-height: 1.4;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
  border-color: rgba(253, 132, 0, 0.4);
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(253,132,0,0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 30px;
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-light);
}

.service-features li::before {
  content: '→';
  color: var(--color-accent);
  font-weight: bold;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 40px 30px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-sub {
    text-align: left;
  }
}

/* Stats Section */
.stats-section {
  padding: 140px 0;
  background-color: #0a0a0a;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 0 10px;
  min-width: 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  color: var(--color-text-light);
  margin-bottom: 12px;
  word-break: break-word;
}

.stat-num span {
  color: var(--color-accent);
  font-size: 0.65em;
}

.stat-prefix {
  color: var(--color-accent);
}

.stat-label {
  font-family: var(--font-title);
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  line-height: 1.35;
  padding: 0 8px;
  hyphens: auto;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
  }
  .stat-item::after {
    display: none;
  }
  .stat-num {
    font-size: clamp(28px, 8vw, 44px);
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 0 4px;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 160px 0;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  perspective: 1200px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  opacity: 0;
  transform-style: preserve-3d;
}

.testimonial-card:nth-child(1) { transform: rotate(-2deg); }
.testimonial-card:nth-child(2) { transform: rotate(1.5deg) translateY(20px); }
.testimonial-card:nth-child(3) { transform: rotate(-1deg); }

.testimonial-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.testimonial-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(253, 132, 0, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}

.testimonial-card:hover .testimonial-inner {
  border-color: rgba(253, 132, 0, 0.4);
  box-shadow: 0 24px 60px rgba(253, 132, 0, 0.12);
}

.testimonial-card:hover .testimonial-inner::after {
  opacity: 1;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.4;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: inline-block;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #0d0d0d;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-title);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card:nth-child(2) {
    transform: rotate(0deg) translateY(0);
  }
}

/* About Section */
.about-section {
  padding: 160px 0 220px;
  position: relative;
  z-index: 1;
}

/* Contact overlap zone */
.contact-overlap-zone {
  position: relative;
  z-index: 10;
  margin-top: -140px;
}

.chalk-bridge {
  position: relative;
  height: 120px;
  background: transparent;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}

.contact-section {
  padding: 0 0 160px;
  background: transparent;
  position: relative;
  z-index: 20;
}

.contact-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 -30px 100px rgba(0, 0, 0, 0.65), 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(80px) scale(0.94);
  opacity: 0;
  will-change: transform, opacity;
}

.about-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.45;
  font-weight: 400;
  max-width: 1000px;
  color: rgba(250, 250, 250, 0.2);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.about-char {
  transition: color 0.12s ease, text-shadow 0.12s ease;
}

.about-char.lit {
  color: var(--color-text-light);
  text-shadow: 0 0 24px rgba(253, 132, 0, 0.12);
}

.chalk-svg {
  width: 100%;
  height: 100%;
}

.chalk-path {
  stroke: rgba(250, 250, 250, 0.85);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(0.3px);
  opacity: 0.9;
}

.chalk-path--2 {
  stroke-width: 2;
  opacity: 0.5;
}

.contact-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.contact-header h2 span {
  color: var(--color-accent);
  font-style: normal;
}

/* Dynamic Insights / News */
.insights-section {
  padding: 160px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.insight-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.insight-card:hover .insight-media img {
  transform: scale(1.05);
}

.insight-meta {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.insight-title {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.5vw, 28px);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.insight-card:hover .insight-title {
  color: var(--color-accent);
}

.insight-excerpt {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* Marquee Ticker Strip */
.marquee-strip {
  background-color: var(--color-accent);
  padding: 18px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.marquee-item::after {
  content: '★';
  font-size: 12px;
  color: var(--color-bg-dark);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Logos strip (above services marquee) */
.marquee-strip--logos {
  background-color: #111111;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-track--reverse {
  animation: marqueeScrollReverse 28s linear infinite;
}

.marquee-logo-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.marquee-logo-item img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s ease;
  display: block;
}

.marquee-logo-item img:hover {
  opacity: 0.85;
}

.marquee-logo-item::after {
  content: '◆';
  font-size: 7px;
  color: var(--color-accent);
  opacity: 0.6;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-header p {
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item h4 {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.contact-info-item a, .contact-info-item p {
  font-size: 20px;
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--color-text-muted);
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  pointer-events: none;
  transition: transform 0.3s, font-size 0.3s, color 0.3s;
}

/* Floating Label Logic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-25px);
  font-size: 11px;
  color: var(--color-accent);
}

.form-input:focus {
  border-bottom-color: var(--color-accent);
}

/* Scroll progress bar for works section */
.works-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  width: 0%;
  z-index: 20;
  transition: none;
}

/* Slide counter badge */
.slide-counter {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-counter-current {
  color: var(--color-text-light);
  font-size: 24px;
}

.submit-btn {
  background: none;
  border: 1px solid var(--color-text-light);
  color: var(--color-text-light);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 28px;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.submit-btn:hover {
  border-color: var(--color-accent);
}

.submit-btn:hover::before {
  transform: translateY(0);
}

.form-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--color-accent);
  color: #0d0d0d;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  padding: 20px 40px;
  border-radius: 8px;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(253, 132, 0, 0.3);
  max-width: 90vw;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Footer */
.main-footer {
  background-color: var(--color-bg-dark);
  padding: 100px 0 40px 0;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.footer-socials a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-bottom p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  /* Smaller footer socials on mobile */
  .footer-socials a {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .footer-socials {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .path-section {
    padding: 48px 0 36px;
  }

  .path-section .section-header {
    margin-bottom: 32px;
  }
}

/* ── Mobile-only header tweaks ── */
@media (max-width: 768px) {
  .main-header {
    padding: 16px 20px;
  }

  .main-header.scrolled {
    padding: 12px 20px;
  }

  .logo-img {
    height: 22px;
  }

  .main-header.scrolled .logo-img {
    height: 20px;
  }

  .header-actions {
    gap: 12px;
  }

  .lang-toggle {
    font-size: 10px;
    padding: 6px 11px;
    letter-spacing: 0.5px;
  }

  .menu-trigger {
    font-size: 13px;
    gap: 7px;
  }

  .menu-trigger svg {
    width: 20px;
    height: 20px;
  }
}

/* ── Contact form: textarea ── */
.form-textarea {
  resize: none;
  line-height: 1.6;
  min-height: 80px;
  padding-top: 15px;
}

.form-group--textarea .form-label {
  top: 15px;
}

/* ── Budget Slider ── */
.form-group--slider {
  padding-bottom: 4px;
}

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

.slider-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  flex: 1;
  min-width: 0;
}

.slider-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-light);
  min-width: 100px;
  text-align: right;
  white-space: nowrap;
  will-change: contents;
  -webkit-font-smoothing: antialiased;
}

.slider-track-wrap {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 10px;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  pointer-events: none;
}

.budget-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 28px;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
  z-index: 5;
  cursor: pointer;
  touch-action: manipulation;
}

/* Style the thumb in webkit */
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 10px rgba(253, 132, 0, 0.7), 0 2px 4px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--color-accent);
}

/* Style the thumb in firefox */
.budget-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 10px rgba(253, 132, 0, 0.7), 0 2px 4px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.budget-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  background: var(--color-accent);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* ── Service chips / bubbles ── */
.form-group--chips {
  padding-bottom: 8px;
}

.chips-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.chip:hover {
  border-color: rgba(253,132,0,0.5);
  color: var(--color-text-light);
  transform: translateY(-1px);
}

.form-optional {
  font-size: 0.85em;
  font-weight: 400;
  color: rgba(136,136,136,0.7);
  letter-spacing: 0.5px;
  text-transform: none;
}

.chip.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0d0d0d;
}


/* Path CTA Section */
.path-cta-section {
  padding: 120px 0 140px;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.path-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(253, 132, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.path-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.path-cta-label {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
}

.path-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.path-cta-heading span:first-child {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px);
}

.path-cta-accent {
  color: var(--color-accent);
  font-weight: 900;
}

.path-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-muted);
  max-width: 500px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .path-cta-section {
    padding: 80px 0 100px;
  }

  .path-cta-heading {
    gap: 2px;
  }
}