body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
}

/* Canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Grain */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

/* Vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* Glows */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 900px;
  height: 700px;
  top: -280px;
  left: -220px;
  background: radial-gradient(
    ellipse,
    rgba(255, 107, 0, 0.14) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: glow-a 14s ease-in-out infinite alternate;
}
.glow-2 {
  width: 600px;
  height: 600px;
  top: -80px;
  right: -120px;
  background: radial-gradient(
    ellipse,
    rgba(255, 107, 0, 0.08) 0%,
    transparent 65%
  );
  filter: blur(80px);
  animation: glow-b 18s ease-in-out infinite alternate;
}
.glow-3 {
  width: 500px;
  height: 400px;
  bottom: 100px;
  left: 38%;
  background: radial-gradient(
    ellipse,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 70%
  );
  filter: blur(90px);
  animation: glow-c 12s ease-in-out infinite alternate;
}
@keyframes glow-a {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(60px, 40px) scale(1.1);
  }
}
@keyframes glow-b {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-40px, 50px) scale(1.08);
  }
}
@keyframes glow-c {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, -30px);
  }
}

/* ── TICKER ─────────────────────────────────────────────── */
.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--w08);
  border-bottom: 1px solid var(--w08);
  background: var(--o06);
  overflow: hidden;

  padding: 0.65rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 28s linear infinite;
  padding-right: 2rem;
}
/* All ticker spans share base style */
.ticker-track span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w50);
}
/* Even children = dot separators (✦) */
.ticker-track span:nth-child(even) {
  color: var(--primary);
  font-size: 0.5rem;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── UTILITIES ─── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 1.1rem;
}
.sec-label::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p);
  box-shadow: 0 0 8px var(--o60);
}
.sec-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--w);
  margin-bottom: 1.1rem;
}
.sec-title em {
  font-style: normal;
  color: var(--p);
}
.sec-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--w50);
}
.pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p);
  box-shadow: 0 0 10px var(--o60);
  animation: pip-p 2s ease-in-out infinite;
}
@keyframes pip-p {
  0%,
  100% {
    box-shadow: 0 0 10px var(--o60);
  }
  50% {
    box-shadow: 0 0 20px var(--o60);
    transform: scale(1.3);
  }
}
.btn-p {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 2.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-p:hover {
  background: transparent;
  border: 1px solid var(--p);
  color: var(--p);
}
.btn-p svg {
  transition: transform 0.2s;
}
.btn-p:hover svg {
  transform: translateX(4px);
}
.btn-g {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;

  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.btn-g:hover {
  color: var(--p);
  border-color: var(--p);
  background: var(--w05);
}
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav);
  position: relative;
  overflow: hidden;
}

/* animated grid bg */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--w03) 1px, transparent 1px),
    linear-gradient(90deg, var(--w03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 90% 80% at 30% 50%,
    black 0%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 80% at 30% 50%,
    black 0%,
    transparent 75%
  );
  animation: gridMove 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 56px 56px;
  }
}

/* left ambient glow */
.hero-glow-left {
  position: absolute;
  left: -10%;
  top: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--o10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── LEFT SIDE ── */
.hero-left {
  padding: 4rem 3.5rem 5rem 3rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* eyebrow tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 1.1rem;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p);
  box-shadow: 0 0 8px var(--o60);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0);
  }
}
@keyframes dot-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 4px var(--s),
      0 0 0 7px var(--o60),
      0 0 32px var(--o60);
  }
  50% {
    box-shadow:
      0 0 0 4px var(--s),
      0 0 0 9px var(--o35),
      0 0 50px var(--o35);
  }
}

/* headline */
.hero-headline {
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}
.hero-headline .word-outline {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 0; /* remove old stroke */
}

.hero-headline .word-accent {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* decorative separator */
.hero-sep {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.4s forwards;
}
.hero-sep-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--p), transparent);
}
.hero-sep-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--p);
  box-shadow: 0 0 8px var(--o60);
}
.hero-sep-text {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--w38);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* description */
.hero-desc {
  font-size: 1rem;
  color: var(--w50);
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero-desc strong {
  color: var(--w70);
  font-weight: 600;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}

/* Inline row: buttons on left, scroll cue on right */
.hero-btns-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}
.hero-btns-row .hero-btns {
  margin-bottom: 0;
  opacity: 1;
  animation: none;
}
.hero-scroll-cue--inline {
  position: static !important;
  flex-shrink: 0;
}
.btn-primary {
  display: inline-flex; /* ← was inline-block */
  align-items: center; /* ← vertically centers text + arrow */
  padding: 0.95rem 2.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
  /* remove justify-self: end — it only works in grid, not flex */
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary) !important;
}
.btn-primary svg {
  transition: transform 0.2s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.btn-ghost:hover {
  border-color: 1px var(--p);
  color: var(--p);
}

/* tech stack badges */
.hero-stack {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

/* Scroll cue aligned to same level as hero-stack row on the left */
.hero-scroll-cue--stack-align {
  position: absolute !important;
  bottom: 5rem;
  right: 3rem;
  left: auto;
  top: auto;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.hero-stack-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--w38);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 0.2rem;
}
.stack-badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--w50);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--w08);
  border-radius: 4px;
  background: var(--w03);
  letter-spacing: 0.06em;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.stack-badge:hover {
  color: var(--p);
  border-color: var(--o20);
  background: var(--o06);
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
  z-index: 1;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--p), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  animation: scanline 2s ease-in-out infinite;
}
@keyframes scanline {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.hero-scroll span {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--w38);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── RIGHT SIDE ── */
.hero-right {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 1rem 3rem 1rem 1rem;
}

/* vertical divider */
.hero-divider {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--w08) 30%,
    var(--w08) 70%,
    transparent
  );
}

/* main image container */
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 520px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.4s forwards;
}

/* corner decorations */
.hero-img-wrap::before,
.hero-img-wrap::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 10;
}
.hero-img-wrap::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--p);
  border-left: 2px solid var(--p);
}
.hero-img-wrap::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--p);
  border-right: 2px solid var(--p);
}

.corner-tr,
.corner-bl {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 10;
}
.corner-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--o35);
  border-right: 2px solid var(--o35);
}
.corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--o35);
  border-left: 2px solid var(--o35);
}

/* image itself */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  filter: brightness(0.55) saturate(0.8);
  transition: filter 0.4s;
}
.hero-img-wrap:hover .hero-img {
  filter: brightness(0.65) saturate(0.9);
}

/* image overlay gradients */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background:
    linear-gradient(to top, rgba(5, 5, 5, 0.85) 0%, transparent 50%),
    linear-gradient(to right, rgba(5, 5, 5, 0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.hero-img-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 100%,
    var(--o20) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 3;
}

/* scan line effect on image */
.hero-img-scan {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}
.hero-img-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 0, 0.3),
    transparent
  );
  top: -2px;
  animation: imgScan 5s ease-in-out infinite 1s;
}
@keyframes imgScan {
  0% {
    top: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* image label */
.hero-img-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}
.hero-img-label-tag {
  font-family: var(--mono);
  font-size: 0.56rem;
  color: var(--p);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-img-label-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

/* ── FLOATING STAT CARDS ── */
.stat-card {
  position: absolute;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid var(--w08);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 6;
  opacity: 0;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--o20);
}

.stat-card-1 {
  top: -1.2rem;
  right: -1.5rem;
  animation:
    floatIn 0.8s var(--ease) 0.7s forwards,
    float1 4s ease-in-out 1.5s infinite;
  min-width: 130px;
}
.stat-card-2 {
  top: 38%;
  left: -2rem;
  animation:
    floatIn 0.8s var(--ease) 0.9s forwards,
    float2 4.5s ease-in-out 1.7s infinite;
  min-width: 140px;
}
.stat-card-3 {
  bottom: 1rem;
  right: -1.5rem;
  animation:
    floatIn 0.8s var(--ease) 1.1s forwards,
    float3 5s ease-in-out 1.9s infinite;
  min-width: 140px;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.stat-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.stat-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--o10);
  border: 1px solid var(--o20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--p);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-card-badge {
  font-family: var(--mono);
  font-size: 0.5rem;
  color: var(--p);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--o06);
  border: 1px solid var(--o12);
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
}

.stat-card-num {
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}
.stat-card-num .suffix {
  font-size: 1rem;
  color: var(--p);
  font-weight: 400;
}
.stat-card-label {
  font-size: 0.7rem;
  color: var(--w38);
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

/* mini progress bar inside stat card */
.stat-card-bar {
  margin-top: 0.6rem;
  height: 2px;
  background: var(--w08);
  border-radius: 2px;
  overflow: hidden;
}
.stat-card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--p), #ff9f40);
  border-radius: 2px;
  width: 0%;
  transition: width 1.5s var(--ease);
}

/* trend indicator */
.stat-trend {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  color: #4ade80;
  letter-spacing: 0.06em;
}
.stat-trend svg {
  width: 10px;
  height: 10px;
  stroke: #4ade80;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── VERTICAL LABELS on image right edge ── */
.hero-img-vtag {
  position: absolute;
  right: -2.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--mono);
  font-size: 0.52rem;
  color: var(--w22);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 6;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-left {
    order: 1;
  }
  .hero-right {
    order: 2;
    height: 420px;
  }
  .hero-tag {
    align-self: center;
    justify-content: center;
  }
  .hero-headline {
    text-align: center;
  }
  .hero-sep {
    justify-content: center;
  }
  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stack {
    justify-content: center;
  }
  .hero-divider {
    display: none;
  }
  .stat-card-1 {
    top: -1rem;
    right: -0.5rem;
  }
  .stat-card-2 {
    left: -0.5rem;
  }
  .stat-card-3 {
    right: -0.5rem;
  }
  .hero-img-vtag {
    display: none;
  }
  .hero-scroll {
    left: 1.5rem;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 100vh;
    display: flex;

    flex-direction: column;
    align-items: center;
    padding-top: var(--nav);
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    padding: 3.5rem 0rem 1.2rem;
  }
  .hero-right {
    padding: 0 0rem 2rem;
  }
  .stat-card {
    padding: 0.75rem 1rem;
  }
  .stat-card-num {
    font-size: 1.3rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .hero-btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btns .btn-p,
  .cta-btns .btn-g {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── SERVICES STICKY SCROLL ── */
#srv-track {
  height: calc(100vh + 600vh);
  position: relative;
  padding-left: 0px;
}

#srv-view {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

/* ─── LEFT half ─── */
#srv-left {
  flex: 0 0 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--w08);
}
.srv-head {
  flex-shrink: 0;
  padding: 100px 4rem 1.4rem 3rem;
  border-bottom: 1px solid var(--w08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--p);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.stag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p);
  box-shadow: 0 0 8px var(--o60);
}
.srv-head h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(2.8rem, 3.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: left;
  margin: 0 0 1.4rem;
}
.srv-head h2 span {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-track {
  width: 100%;
  height: 2px;
  background: var(--w08);
  border-radius: 2px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--p);
  width: 0%;
  transition: width 0.5s var(--ease);
  border-radius: 2px;
}

.dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--w22);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.dot.on {
  background: var(--p);
  transform: scale(1.45);
}
.dot.done {
  background: var(--o35);
}

.card-area {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.scard {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 4rem 0 3rem;
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
  pointer-events: none;
}
.scard.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scard.exit-up {
  opacity: 0;
  transform: translateY(-55px);
  transition:
    opacity 0.38s var(--ease),
    transform 0.38s var(--ease);
}

.cbox {
  width: 100%;
  max-width: 500px;
  background: var(--s);
  border: 1px solid var(--w08);
  border-left: 3px solid var(--p);
  border-radius: 14px;
  padding: 2.2rem 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}
.cbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o35), transparent);
}

.cghost {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--mono);
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.ctop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}
.cicon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--o12);
  border: 1px solid var(--o20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cicon svg {
  width: 21px;
  height: 21px;
  stroke: var(--p);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cnum {
  font-family: var(--mono);
  font-size: 0.56rem;
  color: var(--p);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ctitle {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.cbar {
  width: 0;
  height: 2px;
  background: var(--p);
  margin-bottom: 0.9rem;
  transition: width 0.55s var(--ease) 0.2s;
}
.scard.active .cbar {
  width: 34px;
}

.cdesc {
  font-size: 0.875rem;
  color: var(--w60);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.cpills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}
.cpill {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--w50);
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--w12);
  border-radius: 20px;
  background: var(--w03);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.cpill:hover {
  background: var(--o08);
  color: var(--p);
  border-color: var(--o20);
}

.clink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--p);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.25s;
}
.clink:hover {
  gap: 0.85rem;
}
.clink svg {
  width: 12px;
  height: 12px;
  stroke: var(--p);
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s;
}
.clink:hover svg {
  transform: translateX(4px);
}

.srv-foot {
  flex-shrink: 0;
  padding: 0.9rem 4rem;
  border-top: 1px solid var(--w08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nud-arr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nud-arr span {
  display: block;
  width: 9px;
  height: 1px;
  background: var(--p);
  animation: na 1.3s ease-in-out infinite;
}
.nud-arr span:nth-child(2) {
  animation-delay: 0.13s;
}
.nud-arr span:nth-child(3) {
  animation-delay: 0.26s;
}
/* ── Services Header — matches FAQ style ── */
.srv-head .stag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-main);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.6rem;
}

.srv-head .stag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.srv-head h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1.4rem;
}

.srv-head h2 span {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .srv-head {
    text-align: center;
  }

  .srv-head .stag {
    justify-content: center;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
  }

  .srv-head h2 {
    font-size: clamp(1.65rem, 4.5vw, 2.4rem);
    margin-left: 20px;
  }
}

@media (max-width: 600px) {
  .srv-head {
    text-align: center;
  }

  .srv-head .stag {
    justify-content: center;
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    margin-bottom: 1rem;
  }

  .srv-head h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.9rem);
    text-align: center;
    margin-left: 20px;
  }
}

@media (max-width: 900px) {
  .srv-head {
    min-height: unset !important;
    height: auto !important;
    padding: 5rem var(--site-px) 2rem !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 600px) {
  .srv-head {
    min-height: unset !important;
    height: auto !important;
    padding: 4rem 1.2rem 1.5rem !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 900px) {
  /* Show the eyebrow */
  .srv-head .stag {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 0.8rem !important;
    margin-top: 2.8rem;
  }

  /* Shrink the card box */
  .cbox {
    padding: 1rem 1.2rem 2rem !important;
  }

  .cdesc {
    font-size: 0.78rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.8rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .cpills {
    margin-bottom: 0.8rem !important;
    gap: 0.35rem !important;
  }

  .cpill {
    font-size: 0.52rem !important;
    padding: 0.2rem 0.55rem !important;
  }

  .ctop {
    margin-bottom: 0.6rem !important;
  }

  .cbar {
    margin-bottom: 0.5rem !important;
  }

  .cghost {
    display: none !important;
  }

  .card-area {
    overflow: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
  }

  .scard {
    position: relative !important;
    inset: unset !important;
    padding: 0 1.2rem !important;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .scard:not(.active) {
    display: none !important;
  }
}
/* Additional responsive fixes for cbox cards */
@media (max-width: 768px) {
  #srv-track {
    padding-left: 0;
  }

  .cbox {
    padding: 0.2rem 1.2rem 1.2rem; /* Reduced top padding */
    max-width: 100%; /* Take full width */
    width: 100%;
  }

  .cghost {
    font-size: 4rem; /* Smaller ghost number */
    opacity: 0.15; /* More subtle */
  }

  .ctop {
    margin-bottom: 0.8rem;
  }

  .cicon {
    width: 36px;
    height: 36px;
  }

  .cicon svg {
    width: 16px;
    height: 16px;
  }

  .ctitle {
    font-size: 1.2rem; /* Smaller title */
  }

  .cdesc {
    font-size: 0.8rem; /* Smaller description text */
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .cpills {
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .cpill {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
  }

  .clink {
    font-size: 0.55rem;
  }
}

/* Even smaller screens */
@media (max-width: 480px) {
  .cbox {
    padding: 1.2rem 1rem 15rem; /* Even less padding */
  }

  .cghost {
    font-size: 3rem;
    right: 0.2rem;
  }

  .ctitle {
    font-size: 1.1rem;
  }

  .cpill {
    font-size: 0.5rem;
    padding: 0.15rem 0.5rem;
  }
}

/* Fix for the left section to ensure proper spacing */
#srv-left {
  width: 100%;
}

/* Ensure the card area uses full width properly */
.card-area {
  width: 100%;
}

@keyframes na {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.srv-foot span {
  font-family: var(--mono);
  font-size: 0.56rem;
  color: var(--w38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── RIGHT half ─── */
#srv-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: #040404;
}

.pimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.44) saturate(0.75);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.pimg.active {
  opacity: 1;
  transform: scale(1);
}

.pgrad {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
}
.pglow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 45% at 50% 100%,
    rgba(255, 107, 0, 0.16) 0%,
    transparent 70%
  );
}

.pcnt {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--w50);
  letter-spacing: 0.12em;
}
.pbar {
  width: 68px;
  height: 1px;
  background: var(--w12);
  position: relative;
  overflow: hidden;
}
.pbfill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--p);
  transition: width 0.6s var(--ease);
}

.pbot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 2.2rem 2.2rem 1.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
}
.pbot-num {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--p);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.pbot-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s 0.06s,
    transform 0.4s 0.06s;
}
.pbot.show .pbot-num,
.pbot.show .pbot-title {
  opacity: 1;
  transform: translateY(0);
}

.pdots {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--w22);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.pdot.on {
  background: var(--p);
  transform: scale(1.5);
}
.pdot.done {
  background: var(--o35);
}

/* ── AFTER ── */
.after {
  padding: 6rem 4rem;
  border-top: 1px solid var(--w08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.after h3 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.7rem;
}
.after h3 span {
  color: var(--p);
}
.after p {
  color: var(--w50);
  max-width: 440px;
  line-height: 1.8;
  font-size: 1rem;
}
.after-b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Wrap after section to allow border-top full-width */
section.after {
  max-width: 100%;
  padding: 6rem 4rem;
}

/* ── FOOTER ── */
.foot {
  border-top: 1px solid var(--w08);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot p {
  color: var(--w38);
  font-size: 0.8rem;
}
.foot a {
  color: var(--w38);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.foot a:hover {
  color: var(--p);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  #srv-right {
    display: none;
  }
  #srv-left {
    flex: 0 0 100%;
    width: 100%;
    border-right: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #srv-view {
    align-items: center;
    justify-content: center;
  }
  .srv-head {
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--w08);
  }
  .scard {
    padding: 0 1.5rem;
  }
  .srv-foot {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .after,
  .foot {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero {
    padding: 5rem 1.5rem 4rem;
  }
  .hstats,
  .orb {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 5rem 1.2rem 4rem;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }
  .hbtns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-p,
  .btn-o {
    width: 100%;
    justify-content: center;
  }
  .after,
  .foot {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .after {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Work With Us Section */
.work-section {
  position: relative;
  padding: clamp(5rem, 8vw, 6.25rem) 1.25rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 107, 0, 0.1) 0%,
      rgba(255, 107, 0, 0) 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 50%
    ),
    #070707;
}

.work-section .container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.work-content {
  position: relative;
  text-align: center;
  padding: clamp(2.2rem, 4.5vw, 4rem) clamp(1.1rem, 3vw, 2.5rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 0, 0.26);
  background:
    linear-gradient(
      160deg,
      rgba(255, 107, 0, 0.12) 0%,
      rgba(255, 107, 0, 0.03) 44%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(9, 9, 9, 0.9);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.4),
    0 2px 14px rgba(255, 107, 0, 0.08);
  overflow: hidden;
}

.work-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.6;
}

.work-content h2 {
  position: relative;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.work-content .highlight {
  color: var(--color-primary);
}

.work-content p {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--w80);
}

.work-buttons {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.work-buttons .btn-primary,
.work-buttons .btn-secondary {
  min-width: 194px;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.work-buttons .btn-secondary {
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: var(--w80);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
}

.work-buttons .btn-secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 992px) {
  .work-content h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .work-buttons {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .work-section {
    padding: clamp(3.75rem, 11vw, 4.4rem) 1rem;
  }

  .work-content {
    border-radius: 16px;
    padding: 2rem 1rem;
  }

  .work-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .work-buttons .btn-primary,
  .work-buttons .btn-secondary {
    width: 100%;
    min-width: 0;
  }
}
/* Work With Us Section */
.work-section {
  position: relative;
  padding: clamp(5rem, 8vw, 6.25rem) 1.25rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 107, 0, 0.1) 0%,
      rgba(255, 107, 0, 0) 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 50%
    ),
    #070707;
}

.work-section .container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.work-content {
  position: relative;
  text-align: center;
  padding: clamp(2.2rem, 4.5vw, 4rem) clamp(1.1rem, 3vw, 2.5rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 0, 0.26);
  background:
    linear-gradient(
      160deg,
      rgba(255, 107, 0, 0.12) 0%,
      rgba(255, 107, 0, 0.03) 44%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    rgba(9, 9, 9, 0.9);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.4),
    0 2px 14px rgba(255, 107, 0, 0.08);
  overflow: hidden;
}

.work-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.6;
}

.work-content h2 {
  position: relative;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.work-content .highlight {
  color: var(--color-primary);
}

.work-content p {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--w80);
}

.work-buttons {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.work-buttons .btn-primary,
.work-buttons .btn-secondary {
  min-width: 194px;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.work-buttons .btn-primary:hover,
.work-buttons .btn-secondary:hover {
  transform: translateY(-2px);
}

.work-buttons .btn-secondary {
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: var(--w80);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
}

.work-buttons .btn-secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 992px) {
  .work-content h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .work-buttons {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .work-section {
    padding: clamp(3.75rem, 11vw, 4.4rem) 1rem;
  }

  .work-content {
    border-radius: 16px;
    padding: 2rem 1rem;
  }

  .work-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .work-buttons .btn-primary,
  .work-buttons .btn-secondary {
    width: 100%;
    min-width: 0;
  }
}

/* ─── CTA ─── */
.cta-strip {
  padding: 6rem 0;
  background: var(--s);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 0, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-inner .sec-label {
  justify-content: center;
}
.cta-title {
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 1.4rem;
}
.cta-title span {
  display: block;
  background: linear-gradient(115deg, #ff6b00 0%, rgba(255, 155, 60, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-body {
  font-size: 1.05rem;
  color: var(--color-white);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: row;
}

/* CTA responsive styles */
@media (max-width: 860px) {
  .cta-inner {
    padding: 0 1rem;
  }

  /* Mobile CTA buttons - vertical stack, full width */
  .cta-btns {
    display: flex;
    flex-direction: column !important;
    gap: 1rem;
    width: 100%;
  }

  .btn-p,
  .btn-g {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 380px) {
  .cta-btns {
    flex-direction: column !important;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .btn-p,
  .btn-g {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
}
/* CTA Button Styles */
.btn-p {
  display: inline-flex; /* ← was inline-block */
  align-items: center; /* ← vertically centers text + arrow */
  padding: 0.95rem 2.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
  /* remove justify-self: end — it only works in grid, not flex */
}

.btn-p:hover {
  background: transparent;
  color: var(--color-primary);
}
.btn-p svg {
  transition: transform 0.2s;
}
.btn-p:hover svg {
  transform: translateX(4px);
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s,
    transform 0.2s;
}
.btn-g:hover {
  border-color: #ff6b00;
  color: #ff6b00;
  background: rgba(255, 255, 255, 0.05);
}
/* Section Label with Orange Dot */
.sec-label {
  display: inline-flex;
  text-align: center;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff6b00;
  margin-bottom: 1.1rem;
}
.sec-label::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b00;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0);
  }
}

@media (max-width: 900px) {
  /* Center hero left column */
  .hero-left {
    text-align: center;
    align-items: center;
  }
  .hero-tag {
    justify-content: center;
  }
  .hero-sep {
    justify-content: center;
  }
  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stack {
    justify-content: center;
    margin-bottom: 5rem;
  }

  /* Center CTA section */
  .cta-title,
  .cta-body {
    text-align: center;
  }

  /* Center services head */
  .srv-head {
    text-align: center;
  }
  .srv-head .stag {
    justify-content: center;
  }
  .dots {
    justify-content: center;
    padding-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .hero-left {
    text-align: center;
    align-items: center;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .cta-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
}
