/* ==========================================================================
   KWMT — Homepage Stylesheet
   Template: page_templates/template-homepage.php
   ========================================================================== */

/* ─── Shared Homepage Tokens ────────────────────────────────────────────────── */
:root {
  --hp-dark: #060610;
  --hp-dark-2: #0d0d1f;
  --hp-accent: #e63946;
  --hp-accent-2: #7c3aed; /* purple accent for gradients */
  --hp-accent-glow: rgba(230, 57, 70, 0.45);
  --hp-border: rgba(255, 255, 255, 0.08);
  --hp-text-dim: rgba(255, 255, 255, 0.6);
}

/* ─── Eyebrow ────────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hp-accent);
  margin-bottom: 1rem;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Section Headers ────────────────────────────────────────────────────────── */
.hp-section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hp-section-header--center {
  text-align: center;
}
.hp-section-header__headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
}
.hp-section-header__sub {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--colour-text-muted);
  font-size: 1.0625rem;
}
.hp-section-header--center .hp-section-header__sub {
  margin-inline: auto;
}

/* ─── Scroll Reveal ──────────────────────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── On-Load Animations ─────────────────────────────────────────────────────── */
.animate-on-load {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--hp-dark);
  overflow: hidden;
}

/* Animated gradient mesh */
.hp-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite alternate;
  will-change: transform;
}
.hp-hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.25) 0%,
    transparent 70%
  );
  top: -200px;
  left: -150px;
  animation-duration: 14s;
}
.hp-hero__orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.hp-hero__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.12) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 10s;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.05);
  }
  100% {
    transform: translate(-20px, 40px) scale(0.97);
  }
}
.hp-hero__orb--2 {
  animation-name: orbFloat2;
}
@keyframes orbFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 30px) scale(1.08);
  }
  100% {
    transform: translate(30px, -40px) scale(0.95);
  }
}

/* Grid overlay */
.hp-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(6rem, 15vh, 10rem);
  max-width: 800px;
}

.hp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.hp-hero__eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--hp-accent-glow);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}

.hp-hero__headline {
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hp-hero__typed-wrap {
  display: block;
  min-height: 1.2em;
  margin-top: 0.25em;
}
.hp-hero__typed {
  background: linear-gradient(135deg, var(--hp-accent) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-hero__cursor {
  -webkit-text-fill-color: var(--hp-accent);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Ghost button for hero */
.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Glowing primary button */
.hp-btn-glow {
  box-shadow:
    0 0 20px var(--hp-accent-glow),
    0 4px 15px rgba(0, 0, 0, 0.3);
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease,
    background 0.2s ease;
}
.hp-btn-glow:hover {
  box-shadow:
    0 0 35px var(--hp-accent-glow),
    0 8px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Rotating badge */
.hp-hero__badge {
  position: absolute;
  /* move further right so it doesn't overlap the headline */
  right: clamp(3.25rem, 10vw, 10rem);
  bottom: clamp(4rem, 12vh, 8rem);
  width: 180px;
  height: 180px;
  z-index: 50; /* ensure it layers above hero text */
  pointer-events: none; /* decorative only */
}
.hp-hero__badge-ring {
  width: 100%;
  height: 100%;
  animation: badgeSpin 14s linear infinite; /* faster spin */
  transform-origin: 50% 50%;
  overflow: visible;
}
@keyframes badgeSpin {
  to {
    transform: rotate(360deg);
  }
}
.hp-hero__badge-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.65);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Scroll indicator */
.hp-hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.hp-hero__scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hp-hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.hp-hero__scroll-wheel {
  width: 3px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════════════════ */
.hp-marquee {
  overflow: hidden;
  background: var(--hp-dark-2);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  padding-block: 1rem;
}
.hp-marquee__track {
  display: flex;
  width: max-content;
  /* Classic duplicated-track technique: animate by -50% so second half follows seamlessly */
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.hp-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-inline: 1.25rem;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hp-marquee__sep {
  color: var(--hp-accent);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════════════════ */
.hp-services {
  background: var(--colour-white);
}

.hp-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.svc-card {
  position: relative;
  padding: 2.25rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--colour-border);
  background: var(--colour-white);
  cursor: default;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.svc-card[data-href] {
  cursor: pointer;
}
.svc-card:hover {
  border-color: var(--hp-accent);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px var(--hp-accent);
}

/* Gradient hover reveal */
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(230, 57, 70, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.svc-card:hover::before {
  opacity: 1;
}

.svc-card__icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.3s ease;
}
.svc-card:hover .svc-card__icon-wrap {
  background: rgba(230, 57, 70, 0.15);
}
.svc-card__icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--hp-accent);
}
.svc-card__icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--hp-accent);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.svc-card:hover .svc-card__icon-glow {
  opacity: 0.3;
}

.svc-card__body {
  flex: 1;
  z-index: 1;
}
.svc-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--colour-primary);
  transition: color 0.2s;
}
.svc-card:hover .svc-card__title {
  color: var(--hp-accent);
}
.svc-card__text {
  font-size: 0.9375rem;
  color: var(--colour-text-muted);
  line-height: 1.6;
  margin: 0;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hp-accent);
  text-decoration: none;
  z-index: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.2s;
}
.svc-card:hover .svc-card__link {
  opacity: 1;
  transform: translateX(0);
}
.svc-card__link:hover {
  color: var(--colour-accent-hover);
}
.svc-card__link svg {
  transition: transform 0.2s;
}
.svc-card__link:hover svg {
  transform: translateX(3px);
}

/* Corner accent */
.svc-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    225deg,
    rgba(230, 57, 70, 0.12) 0%,
    transparent 60%
  );
  border-radius: 0 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover .svc-card__corner {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════════════════ */
.hp-about {
  background: var(--hp-dark);
  color: #fff;
}

.hp-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.hp-about__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hp-about__body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hp-about__body p {
  margin-bottom: 1rem;
}

/* Image with decorative border */
.hp-about__image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hp-about__image {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hp-about__image-border {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    var(--hp-accent) 0%,
    var(--hp-accent-2) 100%
  );
  z-index: -1;
  opacity: 0.6;
}

/* Placeholder shape when no image set */
.hp-about__image-placeholder {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hp-about__placeholder-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a3e 0%, #2d1b3d 50%, #1a0d0d 100%);
}

/* Stats grid */
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.hp-stat {
  background: var(--hp-dark);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hp-stat__number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--hp-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hp-stat__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════════════════ */
.hp-process {
  background: var(--colour-light);
}
.hp-process .hp-section-header__headline {
  color: var(--colour-primary);
}

.hp-process__steps {
  display: flex;
  gap: 0;
  position: relative;
  counter-reset: none;
  list-style: none;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  flex-direction: column;
}

.process-step {
  position: relative;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* The horizontal connector line */
.process-step__connector {
  position: absolute;
  top: 26px;
  left: calc(52px + 0.75rem);
  right: -0.75rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(230, 57, 70, 0.5) 0%,
    rgba(230, 57, 70, 0.1) 100%
  );
}
.process-step:last-child .process-step__connector {
  display: none;
}

.process-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hp-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.15);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.process-step:hover .process-step__number {
  box-shadow:
    0 0 0 10px rgba(230, 57, 70, 0.12),
    0 0 20px var(--hp-accent-glow);
  transform: scale(1.08);
}

.process-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}
.process-step__desc {
  font-size: 0.9375rem;
  color: var(--colour-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* When process steps are rendered inside the About section we want the numbered
   badges stacked vertically rather than laid out horizontally. These rules
   target that combined layout (.hp-about__process) and keep the original
   desktop horizontal layout elsewhere. */
.hp-about__process .hp-process__steps {
  /* stacked vertical list of steps inside the About section */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.hp-about__process .process-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}
.hp-about__process .process-step__number {
  flex: 0 0 52px; /* keep the circular badge size */
  width: 52px;
  height: 52px;
  margin-top: 4px;
}
.hp-about__process .process-step__connector {
  /* hide the horizontal connector when stacked vertically — we use spacing between rows */
  display: none;
}

/* For very small screens ensure the stacked layout remains readable */
@media (max-width: 768px) {
  .hp-about__process .process-step {
    flex-direction: row;
    gap: 0.75rem;
  }
  .hp-about__process .process-step__number {
    width: 44px;
    height: 44px;
    font-size: 0.8125rem;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════════════════ */
.hp-testimonials {
  background: var(--colour-white);
  overflow: hidden;
}

.hp-testi-track-wrap {
  position: relative;
  overflow: hidden;
}
.hp-testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border: 1px solid var(--colour-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-card__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.testi-card__quote p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--colour-text);
  font-style: italic;
  margin: 0;
}
.testi-card__quote p::before {
  content: "\201C";
}
.testi-card__quote p::after {
  content: "\201D";
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}
.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testi-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-card__avatar--initial {
  background: linear-gradient(
    135deg,
    var(--hp-accent) 0%,
    var(--hp-accent-2) 100%
  );
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--colour-primary);
}
.testi-card__meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--colour-text-muted);
  margin-top: 2px;
}

.hp-testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hp-testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colour-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    width 0.3s ease;
}
.hp-testi-dot.is-active {
  background: var(--hp-accent);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════════════════════ */
.hp-cta {
  position: relative;
  /* make the CTA section white as requested */
  background: #ffffff;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.hp-cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hp-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hp-cta__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.3) 0%,
    transparent 70%
  );
  left: -150px;
  bottom: -150px;
  animation: orbFloat 16s ease-in-out infinite alternate;
}
.hp-cta__orb--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.25) 0%,
    transparent 70%
  );
  right: -100px;
  top: -100px;
  animation: orbFloat2 20s ease-in-out infinite alternate;
}

.hp-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hp-cta__headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--hp-dark);
  margin-bottom: 1.25rem;
}
.hp-cta__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(11, 27, 43, 0.72);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hp-cta .btn--primary {
  background: var(--hp-dark);
  color: #fff;
}
.hp-cta .btn--primary:hover {
  background: #0a1422;
}
.hp-cta .btn--outline-white {
  background: transparent;
  color: var(--hp-dark);
  border-color: var(--hp-dark);
}
.hp-cta .btn--outline-white:hover {
  background: var(--hp-dark);
  color: #fff;
}
.hp-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hp-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .process-step:nth-child(2) .process-step__connector {
    display: none;
  }
  .hp-hero__badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .hp-about__inner {
    grid-template-columns: 1fr;
  }
  .hp-services__grid {
    grid-template-columns: 1fr;
  }
  .hp-process__steps {
    grid-template-columns: 1fr;
  }
  .process-step__connector {
    display: none !important;
  }
  .testi-card {
    flex: 0 0 85vw;
  }
  .hp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-hero__sub {
    max-width: 100%;
  }
}
