.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--color-bg-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    #2d0f42 0%,
    #1D092B 55%,
    #080112 100%
  );
}

.hero__orb-orange {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  bottom: -280px;
  right: -180px;
  background: radial-gradient(circle, rgba(255,80,4,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero__orb-purple {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(189,77,249,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-inline: var(--container-pad);
  padding-block: 120px 80px;
  max-width: 900px;
  width: 100%;
}

.hero__headline {
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  font-weight: var(--weight-black);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: var(--weight-light);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
}

/* ── BRAND CAROUSEL ───────────────────────────────────────── */

.brands {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-10);
  overflow: hidden;
}

.brands__label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.brands__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.brands__track {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  width: max-content;
  animation: marquee 28s linear infinite;
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.28;
  transition: opacity var(--transition-base);
}

.brands__item:hover { opacity: 0.7; }

.brands__item img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

/* ── WHO WE ARE ───────────────────────────────────────────── */

.who {
  padding-block: var(--space-32);
  background: var(--color-bg);
}

.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.who__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

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

.who__visual-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: rgba(8, 1, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: var(--space-3) var(--space-4);
}

.who__visual-badge p:first-child {
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-text);
}

.who__visual-badge p:last-child {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 8px rgba(255,255,255,0.05),
              inset 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 5px 14px;
  margin-bottom: var(--space-5);
}

.kicker--dark {
  color: var(--color-text-light-muted);
  background: rgba(26,10,46,0.07);
  border-color: rgba(26,10,46,0.13);
  box-shadow: inset 0 1px 4px rgba(26,10,46,0.08);
}

.who__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--weight-black);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}

.who__body {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.who__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.who__stat-value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--weight-black);
  letter-spacing: -0.03em;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.who__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── SERVICES ─────────────────────────────────────────────── */

.services {
  background: var(--color-bg-light);
  padding-block: var(--space-32);
  position: relative;
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(189,77,249,0.3),
    rgba(255,80,4,0.3),
    transparent
  );
}

.services::before { top: 0; }
.services::after  { bottom: 0; }

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.services__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--weight-black);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text-light);
}

.services__sub {
  font-size: var(--text-sm);
  color: var(--color-text-light-muted);
  line-height: 1.75;
  max-width: 260px;
  text-align: right;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  overflow: hidden;
}

.svc {
  padding: var(--space-10);
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-bg-light);
  transition: background 200ms ease;
}

.svc:hover { background: var(--color-bg-light-2); }

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

.svc:nth-last-child(-n+2) { border-bottom: none; }

/* single last odd card spans full width */
.svc:last-child:nth-child(odd) {
  grid-column: span 2;
  border-right: none;
}

.svc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.svc__num {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  color: var(--color-text-light-muted);
}

.svc__price {
  font-size: var(--text-xs);
  color: var(--color-text-light-muted);
}

.svc__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: var(--weight-black);
  letter-spacing: -0.02em;
  color: var(--color-text-light);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.svc__body {
  font-size: var(--text-sm);
  color: var(--color-text-light-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--color-accent);
  transition: gap 150ms ease;
}

.svc__link:hover { gap: 10px; }

.svc__link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */

.testimonials {
  background: var(--color-bg-soft);
  padding-block: var(--space-32);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--weight-black);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.testimonials__headline em {
  font-style: normal;
  color: var(--color-accent);
}

/* Marquee track */
.testimonials__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.testimonials__track {
  display: flex;
  gap: var(--space-5);
  width: max-content;
  animation: marquee 35s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.tcard {
  flex-shrink: 0;
  width: 400px;
  border-radius: 20px;
  padding: var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.tcard--orange { background: var(--color-accent); }
.tcard--purple { background: #5b21b6; }
.tcard--dark   { background: #3d0808; }

.tcard__quote {
  font-size: 2.5rem;
  line-height: 0.8;
  font-weight: var(--weight-black);
  color: rgba(255,255,255,0.18);
  font-family: Georgia, serif;
  margin-bottom: -var(--space-2);
}

.tcard__stars {
  display: flex;
  gap: 3px;
}

.tcard__star {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.65);
}

.tcard__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  flex: 1;
}

.tcard__divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tcard__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.tcard__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: #fff;
  line-height: 1.2;
}

.tcard__role {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ── PRICING CTA ──────────────────────────────────────────── */

.cta-band {
  position: relative;
  background: var(--color-accent);
  padding-block: var(--space-24);
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 85% 50%,
    rgba(255,255,255,0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
}

.cta-band__copy {}

.cta-band__headline {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: var(--weight-black);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 540px;
}

.cta-band__headline span {
  font-weight: var(--weight-light);
  opacity: 0.55;
}

.cta-band__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-3);
}

.cta-band__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.btn-white {
  background: #fff;
  color: var(--color-accent);
  font-weight: var(--weight-bold);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn-white-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}

.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ── KEYFRAMES ────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .who__grid { gap: var(--space-12); }

  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services__sub { text-align: left; max-width: 100%; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__headline { max-width: 100%; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .who__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .who__visual { order: -1; aspect-ratio: 16 / 9; }

  .who__stats { grid-template-columns: repeat(3, 1fr); }

  .who__body { max-width: 100%; }

  .services__grid { grid-template-columns: 1fr; }

  .svc:nth-child(even) { border-right: none; }
  .svc:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border-light); }
  .svc:last-child { border-bottom: none; }
  .svc:last-child:nth-child(odd) { grid-column: span 1; }

  .tcard { width: 320px; }

  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band__actions .btn { width: 100%; justify-content: center; }
}

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

  .tcard { width: 280px; }
}