/* =================================================================
   TrueCraft — Homepage Redesign
   Modern creative agency · Orange silhouette hero · Glass cards
   Scoped to body.home-redesign on index.html
   ================================================================= */


:root {
  --hr-bg: #070303;
  --hr-bg-2: #0e0505;
  --hr-bg-3: #160808;
  --hr-ink: #ffffff;
  --hr-muted: rgba(255, 255, 255, 0.62);
  --hr-orange: #ff6a00;
  --hr-orange-rgb: 255, 106, 0;
  --hr-orange-soft: rgba(255, 106, 0, 0.14);
  --hr-red: #cc4400;
  --hr-red-deep: #8b2e00;
  --hr-glass: rgba(22, 10, 10, 0.55);
  --hr-line: rgba(255, 106, 0, 0.14);
  --hr-max: none;
  --hr-gutter: clamp(20px, 3vw, 56px);
  --hr-header-float-y: clamp(12px, 2vw, 20px);
  --hr-header-float-x: clamp(14px, 2.5vw, 28px);
  --hr-header-bar: clamp(56px, 7vw, 68px);
  --hr-header: calc(var(--hr-header-float-y) + var(--hr-header-bar) + 8px);
  --hr-header-max: min(1280px, 100%);
  --hr-header-radius: 999px;
  --hr-nav-ink: #ffffff;
  --hr-nav-muted: rgba(255, 255, 255, 0.9);
  --hr-nav-index: #ffd4a8;
  --hr-header-shadow: 0 1px 2px rgba(0, 0, 0, 0.78), 0 4px 18px rgba(0, 0, 0, 0.42);
  --hr-header-shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.5);
  --hr-font-display: var(--font-display);
  --hr-font-body: var(--font-body);
  --hr-radius: 20px;
  --hr-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── Base overrides ── */
body.home-redesign {
  --bg: var(--hr-bg);
  --ink: var(--hr-ink);
  --ink-2: rgba(255, 255, 255, 0.88);
  --muted: var(--hr-muted);
  --brand-orange: var(--hr-orange);
  --blue-60: var(--hr-orange);
  --blue-70: var(--hr-red);
  --blue-40: #ff9a4d;
  --blue-30: #ffb87a;
  --header-offset: var(--hr-header);
  --font-display: var(--hr-font-display);
  --font-body: var(--hr-font-body);

  font-family: var(--hr-font-body);
  color: var(--hr-muted);
  background: var(--hr-bg);
  background-image: none !important;
  scroll-behavior: auto !important;
  overflow-x: clip;
}

html:has(body.home-redesign) {
  scroll-behavior: auto !important;
  overflow-x: clip;
}

body.home-redesign::before,
body.home-redesign::after {
  display: none !important;
}

body.home-redesign h1,
body.home-redesign h2,
body.home-redesign h3,
body.home-redesign h4 {
  font-family: var(--hr-font-display);
  color: var(--hr-ink);
}

body.home-redesign .container {
  max-width: none;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--hr-gutter);
}

body.home-redesign .loader {
  background: var(--hr-bg) !important;
}

body.home-redesign .loader__text {
  color: var(--hr-muted) !important;
}

body.home-redesign .loader__mark svg,
body.home-redesign .loader__mark .loader__logo {
  filter: none;
}

body.home-redesign .loader__mark .loader__logo {
  display: block;
  width: auto;
  height: clamp(42px, 9vw, 60px);
  max-width: min(360px, 88vw);
  object-fit: contain;
}

body.home-redesign .skip-link:focus {
  background: var(--hr-orange);
  color: #fff;
}

/* ── Header — floating glass pill ── */
body.home-redesign .header,
body.home-redesign .header.is-scrolled,
body.home-redesign.theme-enterprise .header,
body.home-redesign.theme-glow .header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  width: 100%;
  max-width: none;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  pointer-events: none;
}

body.home-redesign .header::before,
body.home-redesign .header::after,
body.home-redesign .header.is-scrolled::before,
body.home-redesign .header.is-scrolled::after,
body.home-redesign.theme-enterprise .header::before,
body.home-redesign.theme-enterprise .header::after,
body.home-redesign.theme-enterprise .header.is-scrolled::before,
body.home-redesign.theme-enterprise .header.is-scrolled::after,
body.home-redesign.theme-glow .header::before,
body.home-redesign.theme-glow .header::after,
body.home-redesign.theme-glow .header.is-scrolled::before,
body.home-redesign.theme-glow .header.is-scrolled::after {
  all: unset !important;
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

body.home-redesign .header__inner {
  position: relative;
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  max-width: var(--hr-header-max) !important;
  width: calc(100% - (var(--hr-header-float-x) * 2)) !important;
  margin:
    var(--hr-header-float-y)
    var(--hr-header-float-x)
    0;
  padding: clamp(0.4rem, 0.85vw, 0.6rem) clamp(1rem, 2vw, 1.5rem);
  gap: clamp(0.75rem, 2vw, 1.75rem);
  min-height: var(--hr-header-bar);
  box-sizing: border-box;
  border-radius: var(--hr-header-radius);
  background: rgba(14, 14, 16, 0.72) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
  transition:
    background 0.35s var(--hr-ease),
    border-color 0.35s var(--hr-ease),
    box-shadow 0.35s var(--hr-ease),
    min-height 0.35s var(--hr-ease);
}

body.home-redesign .header__inner::before {
  display: none;
}

body.home-redesign .header.is-scrolled .header__inner {
  min-height: clamp(50px, 6.2vw, 60px);
  padding-block: clamp(0.35rem, 0.7vw, 0.5rem);
  background: rgba(14, 14, 16, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

body.home-redesign .header.is-on-light .header__inner,
body.home-redesign.rk-services-page .header .header__inner {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body.home-redesign .header.is-on-light.is-scrolled .header__inner,
body.home-redesign.rk-services-page .header.is-scrolled .header__inner {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

body.home-redesign .header.is-on-light,
body.home-redesign.rk-services-page .header {
  --hr-nav-ink: #0a0a0a;
  --hr-nav-muted: rgba(10, 10, 10, 0.78);
  --hr-nav-index: var(--hr-orange);
  --hr-header-shadow: none;
  --hr-header-shadow-soft: none;
}

body.home-redesign .header__start {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

body.home-redesign .header__center {
  justify-self: center;
}

body.home-redesign .glow-brand-mark {
  display: none !important;
}

body.home-redesign .glow-header-brand {
  display: flex !important;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

/* Brand logo */
body.home-redesign .hr-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.35s var(--hr-ease);
}

body.home-redesign .hr-logo__img {
  display: block;
  width: auto;
  height: clamp(28px, 3.6vw, 40px);
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
}

body.home-redesign .hr-logo__img--light {
  display: none;
}

body.home-redesign .header.is-on-light .hr-logo__img--dark,
body.home-redesign.rk-services-page .header .hr-logo__img--dark {
  display: none;
}

body.home-redesign .header.is-on-light .hr-logo__img--light,
body.home-redesign.rk-services-page .header .hr-logo__img--light {
  display: block;
}

body.home-redesign .hr-logo:hover,
body.home-redesign .hr-logo:focus-visible {
  transform: translateY(-1px);
}

body.home-redesign .header.is-scrolled .hr-logo__img {
  height: clamp(26px, 3vw, 34px);
  max-width: min(210px, 54vw);
}

body.home-redesign .header__center .brand {
  display: none !important;
}

body.home-redesign .glow-desktop-nav {
  display: flex !important;
  align-items: center;
  gap: clamp(0.25rem, 0.7vw, 0.5rem);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.home-redesign .glow-desktop-nav a {
  position: relative;
  font-family: var(--hr-font-display);
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hr-nav-muted) !important;
  text-decoration: none;
  text-shadow: none;
  padding: 0.42rem clamp(0.65rem, 0.95vw, 0.85rem);
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

body.home-redesign .header.is-on-light .glow-desktop-nav a {
  text-shadow: none;
}

body.home-redesign .glow-desktop-nav a span {
  color: var(--hr-nav-index);
  margin-right: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-shadow: none;
}

body.home-redesign .header.is-on-light .glow-desktop-nav a span {
  color: var(--hr-orange);
  text-shadow: none;
}

body.home-redesign .glow-desktop-nav a::after {
  display: none;
}

body.home-redesign .glow-desktop-nav a:hover,
body.home-redesign .glow-desktop-nav a:focus-visible {
  color: var(--hr-nav-ink) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.home-redesign .header.is-on-light .glow-desktop-nav a:hover,
body.home-redesign .header.is-on-light .glow-desktop-nav a:focus-visible {
  color: var(--hr-nav-ink) !important;
  background: rgba(0, 0, 0, 0.05);
}

body.home-redesign .header__end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
}

body.home-redesign .hr-header-utils {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: clamp(10px, 1.2vw, 14px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

body.home-redesign .header.is-on-light .hr-header-utils {
  border-right-color: rgba(10, 10, 10, 0.14);
}

body.home-redesign .hr-header-utils button,
body.home-redesign .hr-header-utils a,
body.home-redesign .hr-header-utils__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--hr-nav-ink);
  cursor: pointer;
  text-decoration: none;
  filter: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

body.home-redesign .header.is-on-light .hr-header-utils button,
body.home-redesign .header.is-on-light .hr-header-utils a,
body.home-redesign .header.is-on-light .hr-header-utils__link {
  color: var(--hr-nav-muted);
  border-color: rgba(10, 10, 10, 0.16);
  filter: none;
}

body.home-redesign .hr-header-utils button:hover,
body.home-redesign .hr-header-utils a:hover,
body.home-redesign .hr-header-utils__link:hover {
  color: var(--hr-nav-ink);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

body.home-redesign .header.is-on-light .hr-header-utils button:hover,
body.home-redesign .header.is-on-light .hr-header-utils a:hover,
body.home-redesign .header.is-on-light .hr-header-utils__link:hover {
  color: var(--hr-nav-ink);
  background: rgba(10, 10, 10, 0.06);
  border-color: rgba(10, 10, 10, 0.24);
}

body.home-redesign .hr-header-utils svg {
  width: 18px;
  height: 18px;
}

body.home-redesign .header .nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  font-family: var(--hr-font-display);
  font-size: clamp(0.65rem, 0.75vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, var(--hr-red) 0%, var(--hr-orange) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(204, 68, 0, 0.32) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

body.home-redesign .header .nav-cta .arrow {
  display: inline-block;
  transition: transform 0.25s var(--hr-ease);
}

body.home-redesign .header .nav-cta:hover,
body.home-redesign .header .nav-cta:focus-visible {
  background: linear-gradient(135deg, #cc4400 0%, #ff6a00 100%) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow:
    0 8px 28px rgba(204, 68, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  transform: translateY(-1px);
}

body.home-redesign .header .nav-cta:hover .arrow,
body.home-redesign .header .nav-cta:focus-visible .arrow {
  transform: translateX(3px);
}

body.home-redesign .header .hamburger,
body.home-redesign .header__menu-btn,
body.home-redesign.theme-glow .header .hamburger,
body.home-redesign.theme-glow .header .header__menu-btn {
  display: none !important;
}

body.home-redesign .header .hamburger,
body.home-redesign .header__menu-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none !important;
}

body.home-redesign .header.is-on-light .glow-desktop-nav {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.home-redesign .header.is-on-light .glow-desktop-nav a {
  color: var(--hr-nav-muted) !important;
}

body.home-redesign .header.is-on-light .glow-desktop-nav a:hover,
body.home-redesign .header.is-on-light .glow-desktop-nav a:focus-visible {
  color: var(--hr-nav-ink) !important;
  background: transparent;
  box-shadow: none;
}

body.home-redesign .header.is-on-light .nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--hr-red) 0%, var(--hr-orange) 100%) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 20px rgba(204, 68, 0, 0.28) !important;
}

body.home-redesign .header.is-on-light .nav-cta:hover,
body.home-redesign .header.is-on-light .nav-cta:focus-visible {
  background: linear-gradient(135deg, #cc4400 0%, #ff6a00 100%) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

body.home-redesign .header.is-on-light .hamburger,
body.home-redesign .header.is-on-light .header__menu-btn,
body.home-redesign.rk-services-page .header .hamburger,
body.home-redesign.rk-services-page .header .header__menu-btn {
  background: rgba(10, 10, 10, 0.04) !important;
  border-color: rgba(10, 10, 10, 0.14) !important;
  box-shadow: none !important;
}

body.home-redesign .header.is-on-light .hamburger span,
body.home-redesign .header.is-on-light .hamburger::before,
body.home-redesign .header.is-on-light .hamburger::after,
body.home-redesign.rk-services-page .header .hamburger span,
body.home-redesign.rk-services-page .header .hamburger::before,
body.home-redesign.rk-services-page .header .hamburger::after {
  background: #0a0a0a !important;
}

@media (max-width: 1024px) {
  body.home-redesign.theme-glow .header__center .brand {
    display: none !important;
  }
  body.home-redesign .glow-desktop-nav,
  body.home-redesign .hr-header-utils {
    display: none !important;
  }

  body.home-redesign .glow-header-brand {
    display: flex !important;
  }

  body.home-redesign .header__center .brand {
    display: none !important;
  }

  body.home-redesign .glow-brand-mark {
    display: none !important;
  }

  body.home-redesign .header .hamburger,
  body.home-redesign .header__menu-btn,
  body.home-redesign.theme-glow .header .hamburger,
  body.home-redesign.theme-glow .header__menu-btn,
  body.home-redesign.theme-enterprise .header .hamburger,
  body.home-redesign.theme-enterprise .header__menu-btn {
    display: inline-flex !important;
    flex-shrink: 0;
    margin-left: clamp(0.35rem, 1.5vw, 0.65rem);
  }

  body.home-redesign .header__start {
    gap: 0;
    min-width: 0;
  }

  body.home-redesign .header__end .nav-cta {
    display: inline-flex !important;
    min-height: 38px;
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
  }

  body.home-redesign .header__inner {
    grid-template-columns: auto 1fr auto;
    gap: clamp(0.5rem, 1.5vw, 0.85rem);
    width: calc(100% - (var(--hr-header-float-x) * 2)) !important;
    margin-inline: var(--hr-header-float-x) !important;
    padding-inline: clamp(0.85rem, 2.5vw, 1.15rem) !important;
  }

  body.home-redesign .hr-logo__img {
    height: clamp(24px, 4.2vw, 30px);
    max-width: min(172px, 58vw);
  }
}

@media (max-width: 480px) {
  body.home-redesign {
    --hr-header-float-x: clamp(10px, 3vw, 16px);
    --hr-header-float-y: clamp(10px, 2.5vw, 14px);
    --hr-header-bar: clamp(52px, 12vw, 58px);
  }

  body.home-redesign .header__end .nav-cta {
    display: none !important;
  }
}

@media (max-width: 768px) {
  body.home-redesign .header .header__inner {
    max-width: var(--hr-header-max) !important;
    width: calc(100% - (var(--hr-header-float-x) * 2)) !important;
    margin:
      var(--hr-header-float-y)
      var(--hr-header-float-x)
      0 !important;
  }
}

@media (max-width: 640px) {
  body.home-redesign .header .header__inner {
    min-height: var(--hr-header-bar) !important;
    padding-block: clamp(0.35rem, 0.9vw, 0.48rem) !important;
  }

  body.home-redesign .hr-logo__img {
    height: clamp(22px, 4.8vw, 28px);
    max-width: min(156px, 64vw);
  }
}

body.home-redesign .mobile-menu {
  background: rgba(14, 5, 5, 0.98) !important;
  border-color: var(--hr-line) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

body.home-redesign .mobile-menu a,
body.home-redesign .mobile-menu__subtoggle {
  color: #fff !important;
  font-family: var(--hr-font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

body.home-redesign .mobile-menu a:hover,
body.home-redesign .mobile-menu__subtoggle:hover {
  color: var(--hr-orange) !important;
}

body.home-redesign .mobile-menu__cta {
  background: linear-gradient(135deg, var(--hr-red), var(--hr-orange)) !important;
  box-shadow: 0 8px 24px rgba(204, 68, 0, 0.35) !important;
}

/* ── Hero ── */
body.home-redesign .hero--glow {
  --hero-font-display: var(--font-display);
  --hero-font-body: var(--font-body);
  --hero-center: clamp(280px, 36vw, 480px);
  --hero-title-right: clamp(3.25rem, 7.2vw, 7.5rem);
  --hero-title-left: clamp(1.35rem, 2.1vw, 2.5rem);
  --hero-text-soft: rgba(255, 255, 255, 0.94);
  --hero-text-muted: rgba(255, 255, 255, 0.78);
  --hero-text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
  --hero-text-shadow-strong: 0 3px 24px rgba(0, 0, 0, 0.42);

  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-top: var(--hr-header);
  padding-bottom: clamp(12px, 2.5vh, 28px);
  margin-bottom: 0;
  overflow: hidden;
  background-color: #070303;
  color: #fff;
  isolation: isolate;
}

body.home-redesign .hero-glow__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
  animation: hero-backdrop-breathe 28s ease-in-out infinite;
}

body.home-redesign .hero-glow__backdrop picture,
body.home-redesign .hero-glow__backdrop img {
  display: block;
  width: 100%;
  height: 100%;
}

body.home-redesign .hero-glow__backdrop img {
  object-fit: cover;
  object-position: 54% 48%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

body.home-redesign .hero--glow::after {
  display: none;
}

body.home-redesign .hero--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.04) 22%, transparent 42%),
    linear-gradient(270deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.06) 26%, transparent 48%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0) 38%,
      rgba(7, 3, 3, 0.55) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* ── Redesign Keyframes & Animations ── */
@keyframes hero-float-y1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

@keyframes hero-float-y2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-0.4deg);
  }
}

@keyframes glow-drift-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(6%, -5%) scale(1.1);
    opacity: 1;
  }
}

@keyframes glow-drift-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-7%, 6%) scale(1.15);
    opacity: 0.95;
  }
}

@keyframes hero-backdrop-breathe {
  0%, 100% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes hero-scanner {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes hero-streak-vert {
  0% { transform: translateY(-100%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes hero-streak-horiz {
  0% { transform: translateX(-100%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes hero-text-reveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-breathing-accent {
  0%, 100% { filter: hue-rotate(0deg) drop-shadow(0 4px 18px rgba(255, 106, 0, 0.3)); }
  50% { filter: hue-rotate(10deg) drop-shadow(0 6px 24px rgba(255, 106, 0, 0.6)); }
}

@keyframes hero-btn-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ── Blueprint Cyber-Grid Layout ── */
body.home-redesign .hero-glow__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body.home-redesign .grid-line {
  position: absolute;
  background: rgba(255, 106, 0, 0.05);
  overflow: hidden;
}

body.home-redesign .grid-streak {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(255, 106, 0, 0.8), transparent);
  animation: hero-streak-vert 8s linear infinite;
}

body.home-redesign .grid-streak--horiz {
  height: 100%;
  width: 200px;
  background: linear-gradient(to right, transparent, rgba(255, 106, 0, 0.8), transparent);
  animation: hero-streak-horiz 10s linear infinite;
  animation-delay: 2s;
}

body.home-redesign .grid-line--vert-1 .grid-streak {
  animation-delay: 1s;
}

body.home-redesign .grid-line--vert-2 .grid-streak {
  animation-delay: 4s;
}

body.home-redesign .hero-glow__scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.6), rgba(255, 255, 255, 0.8), rgba(255, 106, 0, 0.6), transparent);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.8), 0 0 40px rgba(255, 106, 0, 0.4);
  z-index: 2;
  pointer-events: none;
  animation: hero-scanner 12s linear infinite;
}

@media (min-width: 901px) {
  body.home-redesign .grid-line--vert-1 {
    left: calc(33.33% - 10px);
    top: 0;
    bottom: 0;
    width: 1px;
  }
  body.home-redesign .grid-line--vert-2 {
    left: calc(66.66% + 10px);
    top: 0;
    bottom: 0;
    width: 1px;
  }
  body.home-redesign .grid-line--horiz-1 {
    top: 52%;
    left: 0;
    right: 0;
    height: 1px;
  }
}

@media (max-width: 900px) {
  body.home-redesign .grid-line--vert-1 {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
  }
  body.home-redesign .grid-line--vert-2 {
    display: none;
  }
  body.home-redesign .grid-line--horiz-1 {
    top: 48%;
    left: 0;
    right: 0;
    height: 1px;
  }
}

/* ── Animated Ambient Glow Meshes ── */
body.home-redesign .hero-glow__ambient-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.65;
}

body.home-redesign .glow-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform, opacity;
}

body.home-redesign .glow-mesh--orange {
  background: radial-gradient(circle, rgba(255, 106, 0, 0.2) 0%, rgba(255, 106, 0, 0) 70%);
  width: clamp(380px, 45vw, 680px);
  height: clamp(380px, 45vw, 680px);
  top: 15%;
  left: 36%;
  animation: glow-drift-1 16s ease-in-out infinite;
}

body.home-redesign .glow-mesh--red {
  background: radial-gradient(circle, rgba(204, 68, 0, 0.28) 0%, rgba(204, 68, 0, 0) 70%);
  width: clamp(420px, 52vw, 780px);
  height: clamp(420px, 52vw, 780px);
  bottom: 8%;
  right: 18%;
  animation: glow-drift-2 20s ease-in-out infinite alternate;
}

body.home-redesign .glow-mesh--indigo {
  background: radial-gradient(circle, rgba(0, 92, 191, 0.15) 0%, rgba(0, 92, 191, 0) 70%);
  width: clamp(320px, 38vw, 580px);
  height: clamp(320px, 38vw, 580px);
  top: -8%;
  right: 48%;
  animation: glow-drift-1 24s ease-in-out infinite alternate-reverse;
}

body.home-redesign .hero-glow__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-content: center;
}

body.home-redesign .hero-glow__text-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  justify-content: center;
  min-width: 0;
}

body.home-redesign .hero-glow__cards-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  max-width: 440px;
  margin-left: auto;
  min-width: 0;
}

body.home-redesign .hero-glow__main-title {
  margin: 0;
  font-family: var(--hero-font-display);
  font-size: clamp(4.5rem, 10vw, 11rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: var(--hero-text-shadow-strong);
}

body.home-redesign .hero-glow__sub-title {
  margin: 0;
  font-family: var(--hero-font-display);
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  max-width: 26ch;
}

body.home-redesign .hero-glow__desc {
  margin: 0;
  font-family: var(--hero-font-body);
  font-size: clamp(0.875rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 44ch;
  opacity: 0;
  animation: hero-text-reveal 1s var(--hr-ease) forwards;
  animation-delay: 0.6s;
}

/* Removed old left headline classes */

body.home-redesign .hero-glow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 0.72rem 1.65rem;
  font-family: var(--hero-font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #121212;
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 999px;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: hero-text-reveal 1s var(--hr-ease) forwards;
  animation-delay: 0.7s;
  overflow: hidden;
  position: relative;
}

body.home-redesign .hero-glow__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  animation: hero-btn-sweep 6s linear infinite;
  animation-delay: 2s;
  pointer-events: none;
}

body.home-redesign .hero-glow__btn-arrow {
  transition: transform 0.3s var(--hr-ease);
}

body.home-redesign .hero-glow__btn:hover {
  background: #1a1a1a;
  border-color: rgba(255, 106, 0, 0.45);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 20px rgba(255, 106, 0, 0.2);
}

body.home-redesign .hero-glow__btn:hover .hero-glow__btn-arrow {
  transform: translateX(4px);
}

body.home-redesign .hero-glow__cards-container {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(10px, 1.2vw, 14px);
  width: 100%;
  max-width: 320px;
}

/* Removed old right headline classes */
body.home-redesign .hero-glow__line {
  display: block;
  opacity: 0;
  animation: hero-text-reveal 1s var(--hr-ease) forwards;
}

body.home-redesign .hero-glow__main-title .hero-glow__line:nth-child(1) { animation-delay: 0.1s; }
body.home-redesign .hero-glow__main-title .hero-glow__line:nth-child(2) { animation-delay: 0.25s; }
body.home-redesign .hero-glow__main-title .hero-glow__line:nth-child(3) { animation-delay: 0.4s; }

body.home-redesign .hero-glow__sub-title .hero-glow__line:nth-child(1) { animation-delay: 0.2s; }
body.home-redesign .hero-glow__sub-title .hero-glow__line:nth-child(2) { animation-delay: 0.35s; }

body.home-redesign .hero-glow__line--1 {
  font-size: 0.62em;
  letter-spacing: 0.04em;
}

body.home-redesign .hero-glow__line--2 {
  font-size: 1.12em;
  margin-top: -0.02em;
  letter-spacing: -0.03em;
}

body.home-redesign .hero-glow__line--3 {
  font-size: 0.78em;
  margin-top: 0.04em;
  letter-spacing: 0.02em;
}

body.home-redesign.theme-glow .hero--glow .weight-outline {
  font-weight: 300 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: clamp(1px, 0.07em, 1.5px) rgba(255, 255, 255, 0.95) !important;
  paint-order: stroke fill;
  text-shadow: none !important;
  filter: none;
  opacity: 1;
  transition: -webkit-text-stroke-color 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
  cursor: default;
}

body.home-redesign.theme-glow .hero--glow .weight-outline:hover {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke-color: transparent !important;
  text-shadow: 
    0 0 20px rgba(255, 106, 0, 0.55),
    0 0 40px rgba(255, 106, 0, 0.25);
}

body.home-redesign.theme-glow .hero--glow .weight-outline.weight-muted {
  -webkit-text-stroke: clamp(0.75px, 0.06em, 1.5px) rgba(255, 255, 255, 0.72) !important;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
  opacity: 1;
}

body.home-redesign.theme-glow .hero--glow .weight-solid {
  font-weight: 900 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  margin-left: 0.02em;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(255, 106, 0, 0.18);
  transition: text-shadow 0.4s ease;
  cursor: default;
}

body.home-redesign.theme-glow .hero--glow .weight-solid:hover {
  text-shadow:
    0 2px 24px rgba(255, 255, 255, 0.6),
    0 0 42px rgba(255, 106, 0, 0.35);
}

body.home-redesign.theme-glow .hero--glow .weight-bold {
  font-weight: 700 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  background: none !important;
  text-shadow: none !important;
  filter: none !important;
}

body.home-redesign.theme-glow .hero--glow .weight-accent {
  font-weight: 800 !important;
  background: linear-gradient(180deg, #ffffff 0%, #ffd4a8 26%, #ff9a4d 62%, #ff6a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  -webkit-text-stroke: 0 !important;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.3));
  text-shadow: none !important;
  transition: filter 0.4s ease, transform 0.4s ease;
  display: inline-block;
  cursor: default;
  animation: hero-breathing-accent 6s ease-in-out infinite;
}

body.home-redesign.theme-glow .hero--glow .weight-accent:hover {
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.55));
  transform: translateY(-1px) scale(1.02);
}

body.home-redesign .hero-glow__right-desc {
  margin: 0;
  font-family: var(--hero-font-body);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
  max-width: 36ch;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  opacity: 0;
  animation: hero-text-reveal 1s var(--hr-ease) forwards;
  animation-delay: 0.6s;
}

body.home-redesign .hero-glow__right-foot {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hide extra hero elements not in sample */
body.home-redesign .hero-glow__tags,
body.home-redesign .hero-glow__cta-row {
  display: none !important;
}

/* Stat cards */
body.home-redesign .glow-card--white {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 1.25rem 1.15rem 1.15rem;
  color: #161616;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 1);
  transition: transform 0.4s var(--hr-ease), box-shadow 0.4s ease;
}

body.home-redesign .glow-card--white:hover {
  transform: translateY(-4px);
}

body.home-redesign .glow-card__icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #161616;
}

body.home-redesign .glow-card__icon-wrap svg {
  width: 22px;
  height: 22px;
}

body.home-redesign .glow-card__value {
  font-family: var(--hero-font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.15rem;
}

body.home-redesign .glow-card--white .glow-card__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #454545;
}

body.home-redesign .glow-card--orange {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12) 0%, rgba(255, 106, 0, 0.02) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1.25rem 1.15rem 1.15rem;
  color: #fff;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(255, 106, 0, 0.15);
  transition: transform 0.4s var(--hr-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

body.home-redesign .glow-card--orange:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(255, 106, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

body.home-redesign .glow-card--orange .glow-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

body.home-redesign .glow-card__tagline {
  margin: 0;
  font-family: var(--hero-font-body);
  font-size: 0.625rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  max-width: 11ch;
}

body.home-redesign .glow-card--orange .glow-card__badge {
  display: none;
}

body.home-redesign .glow-card__badge-icon {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.85;
}

body.home-redesign .glow-card--orange .glow-card__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Partner card */
body.home-redesign .glow-card--burgundy {
  width: 100%;
  margin-top: 0;
  padding: 1.35rem 1.3rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(204, 68, 0, 0.45) 0%, rgba(204, 68, 0, 0.15) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -1px 2px rgba(204, 68, 0, 0.2);
  transition: transform 0.4s var(--hr-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

body.home-redesign .glow-card__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

body.home-redesign .glow-card__title {
  margin: 0;
  font-family: var(--hero-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.015em;
  max-width: 14ch;
}

body.home-redesign .glow-card__play-btn,
body.home-redesign .glow-card__arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

body.home-redesign .glow-card__play-btn svg {
  margin-left: 2px;
}

body.home-redesign .glow-card__play-btn:hover,
body.home-redesign .glow-card__arrow-btn:hover {
  transform: scale(1.08);
  background: #1a1a1a;
}

body.home-redesign .glow-card__quote {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.6875rem;
  line-height: 1.62;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
}

body.home-redesign .glow-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 0.35rem;
}

body.home-redesign .glow-card__avatars {
  display: flex;
}

body.home-redesign .glow-card__avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--hr-red);
  margin-left: -8px;
  object-fit: cover;
  background: #fff;
}

body.home-redesign .glow-card__avatars img:first-child {
  margin-left: 0;
}

body.home-redesign .glow-card-float-wrap-1 {
  display: block;
  width: 100%;
  will-change: transform;
  animation: hero-float-y1 10s ease-in-out infinite;
}

body.home-redesign .glow-card-float-wrap-2 {
  display: block;
  width: 100%;
  will-change: transform;
  animation: hero-float-y2 12s ease-in-out infinite 0.5s;
}

body.home-redesign .glow-card-float-wrap-3 {
  display: block;
  width: 100%;
  will-change: transform;
  animation: hero-float-y1 14s ease-in-out infinite 1s;
}

body.home-redesign .glow-card--white {
  transition: transform 0.4s var(--hr-ease), box-shadow 0.4s ease;
}

body.home-redesign .glow-card--white:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

body.home-redesign .glow-card--burgundy {
  transition: transform 0.4s var(--hr-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 769px) {
  body.home-redesign .glow-card--burgundy:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 106, 0, 0.38);
    box-shadow: 
      0 32px 64px rgba(0, 0, 0, 0.55),
      0 0 24px rgba(255, 106, 0, 0.2),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 768px) {
  body.home-redesign .glow-card--burgundy:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 106, 0, 0.38);
    box-shadow: 
      0 32px 64px rgba(0, 0, 0, 0.55),
      0 0 24px rgba(255, 106, 0, 0.2),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-redesign .glow-card-float-wrap-1,
  body.home-redesign .glow-card-float-wrap-2,
  body.home-redesign .glow-card-float-wrap-3,
  body.home-redesign .glow-mesh--orange,
  body.home-redesign .glow-mesh--red,
  body.home-redesign .glow-mesh--indigo,
  body.home-redesign .hero-glow__backdrop,
  body.home-redesign .hero-glow__scanner,
  body.home-redesign .grid-streak,
  body.home-redesign .grid-streak--horiz,
  body.home-redesign .hero-glow__title-line,
  body.home-redesign .hero-glow__left-desc,
  body.home-redesign .hero-glow__btn,
  body.home-redesign .hero-glow__btn::before,
  body.home-redesign .hero-glow__line,
  body.home-redesign .hero-glow__right-desc,
  body.home-redesign.theme-glow .hero--glow .weight-accent {
    animation: none !important;
    opacity: 1 !important;
  }
}

body.home-redesign .glow-card__footer .glow-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  color: #fff;
  text-transform: none;
}

/* Watermark */
body.home-redesign .hero-glow__watermark-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  text-align: center;
}

body.home-redesign .hero-glow__watermark {
  margin: 0;
  font-family: var(--hero-font-display);
  font-size: clamp(5rem, 18vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.16);
  -webkit-text-stroke: 0;
  white-space: nowrap;
  transform: translateY(24%);
}

/* Desktop grid layout */
@media (min-width: 901px) {
  body.home-redesign .hero--glow {
    justify-content: space-between;
    padding-bottom: clamp(20px, 3.5vh, 40px);
  }

  body.home-redesign .hero-glow__stage {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    row-gap: clamp(0.75rem, 1.6vh, 1.5rem);
    padding-top: clamp(4px, 1vh, 14px);
    padding-bottom: clamp(60px, 8vh, 100px);
    min-height: 0;
    flex: 1 1 auto;
    height: auto;
    align-content: end;
  }

  body.home-redesign .hero-glow__text-col {
    grid-column: 1;
    align-self: end;
    max-width: 100%;
    padding-right: clamp(20px, 4vw, 40px);
  }

  body.home-redesign .hero-glow__cards-col {
    grid-column: 2;
    align-self: end;
    max-width: 440px;
    margin-left: auto;
  }
  
  body.home-redesign .hero-glow__line {
    white-space: nowrap;
  }

  body.home-redesign .hero-glow__line--2 {
    padding-right: 0.1em;
  }

  body.home-redesign .hero-glow__line--3 {
    padding-right: 0.22em;
  }
}

@media (min-width: 1440px) {
  body.home-redesign .hero-glow__cards-col {
    max-width: 480px;
  }

  body.home-redesign .hero-glow__watermark {
    font-size: clamp(6rem, 17vw, 16rem);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body.home-redesign .hero-glow__cards-col {
    max-width: min(340px, 100%);
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  body.home-redesign .hero-glow__stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Tablet hero — stacked layout */
@media (max-width: 900px) and (min-width: 641px) {
  body.home-redesign .hero--glow {
    min-height: auto;
    padding-bottom: clamp(28px, 5vh, 48px);
  }

  body.home-redesign .hero-glow__stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "cards";
    align-content: end;
    height: auto;
    padding-bottom: clamp(32px, 6vw, 56px);
  }

  body.home-redesign .hero-glow__text-col {
    grid-area: text;
    grid-row: auto;
    grid-column: auto;
    max-width: min(60ch, 100%);
  }

  body.home-redesign .hero-glow__cards-col {
    grid-area: cards;
    grid-column: auto;
    grid-row: auto;
    max-width: min(600px, 100%);
    margin-left: 0;
  }

  body.home-redesign .hero-glow__cards-container {
    max-width: min(420px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-redesign .hero-glow__line {
    white-space: normal;
  }
}

/* Mobile stack */
@media (max-width: 640px) {
  body.home-redesign .hero--glow {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: var(--hr-header);
    padding-bottom: clamp(16px, 4vh, 32px);
  }

  body.home-redesign .hero-glow__backdrop img {
    object-position: 62% 24%;
  }

  body.home-redesign .hero-glow__stage {
    flex: 1;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "cards";
    align-content: end;
    gap: clamp(1.5rem, 6vw, 2.5rem);
    padding-bottom: clamp(56px, 14vw, 80px);
  }

  body.home-redesign .hero-glow__text-col {
    grid-area: text;
    max-width: 100%;
  }

  body.home-redesign .hero-glow__main-title {
    font-size: clamp(2.75rem, 12.5vw, 3.75rem);
  }

  body.home-redesign .hero-glow__cards-col {
    grid-area: cards;
    max-width: none;
    margin-left: 0;
  }

  body.home-redesign .hero-glow__cards-container {
    grid-template-columns: 1fr;
    max-width: none;
  }

  body.home-redesign .hero-glow__line {
    white-space: normal;
  }


  body.home-redesign .glow-card--white,
  body.home-redesign .glow-card--orange {
    min-height: 132px;
    padding: 1.1rem 1rem;
  }

  body.home-redesign .glow-card__value {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
  }

  body.home-redesign .hero-glow__watermark {
    font-size: clamp(3rem, 16vw, 5.5rem);
    color: rgba(255, 255, 255, 0.14);
    transform: translateY(28%);
  }
}

@media (max-width: 420px) {
  body.home-redesign .hero-glow__cards-container {
    grid-template-columns: 1fr;
  }

  body.home-redesign .hero-glow__left-title br {
    display: none;
  }

  body.home-redesign .hero-glow__line {
    white-space: normal;
  }
}

/* =================================================================
   Services Section — Light editorial grid
   ================================================================= */

body.home-redesign .hr-services-light {
  --svc-matte: #fafafa;
  --svc-surface: #ffffff;
  --svc-surface-hover: #f5f5f5;
  --svc-ink: #0c0c0c;
  --svc-muted: rgba(12, 12, 12, 0.52);
  --svc-line: rgba(12, 12, 12, 0.08);
  --svc-line-soft: rgba(12, 12, 12, 0.12);

  background: var(--svc-matte);
  color: var(--svc-ink);
  padding: clamp(72px, 10vh, 120px) 0 clamp(80px, 11vh, 128px);
  position: relative;
  z-index: 1;
  margin: clamp(28px, 4vh, 48px) var(--hr-gutter);
  width: calc(100% - 2 * var(--hr-gutter));
  max-width: calc(100% - 2 * var(--hr-gutter));
  box-sizing: border-box;
  border: 1px solid rgba(12, 12, 12, 0.06);
  border-radius: clamp(20px, 2.8vw, 32px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

body.home-redesign .svc-stage__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.home-redesign .svc-stage__beam {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 106, 0, 0.05) 20%,
    rgba(255, 106, 0, 0.85) 50%,
    rgba(255, 106, 0, 0.05) 80%,
    transparent 100%
  );
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.35);
  opacity: 0;
  will-change: top, opacity;
}

body.home-redesign .svc-stage__counter {
  position: absolute;
  top: clamp(48px, 8vh, 72px);
  right: clamp(12px, 4vw, var(--hr-gutter));
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 12, 12, 0.05);
  user-select: none;
  transition: -webkit-text-stroke-color 0.4s ease;
}

body.home-redesign .hr-services-light.svc-stage--active .svc-stage__counter {
  -webkit-text-stroke-color: rgba(255, 106, 0, 0.16);
}

body.home-redesign .svc-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
}

body.home-redesign .svc-word__mask {
  display: inline-block;
  will-change: transform, opacity;
}

body.home-redesign .svc-word--accent .svc-word__mask {
  color: var(--hr-orange);
}

body.home-redesign .svc-row__panel {
  will-change: transform, opacity, clip-path;
}

body.home-redesign .svc-list--stack {
  transform-origin: center top;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  body.home-redesign .svc-stage__beam,
  body.home-redesign .svc-stage__counter {
    display: none;
  }
}

body.home-redesign .svc-container {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--hr-gutter);
}

body.home-redesign .svc-stage__pin {
  position: relative;
  width: 100%;
}

body.home-redesign .svc-stage--overlap .svc-head {
  margin-bottom: clamp(24px, 3vh, 40px);
  background: var(--svc-matte);
  position: relative;
  z-index: 3;
}

/* ── Header — center editorial ── */
body.home-redesign .svc-head {
  text-align: center;
  margin-bottom: clamp(64px, 8vh, 96px);
}

body.home-redesign .svc-head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(760px, 100%);
  margin: 0 auto;
}

body.home-redesign .svc-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 clamp(20px, 3vh, 28px);
  padding: 0.45rem 1rem;
  border: 1px solid var(--svc-line);
  border-radius: 999px;
  background: var(--svc-surface);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.45);
}

body.home-redesign .svc-head__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hr-orange);
  flex-shrink: 0;
}

body.home-redesign .svc-head__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.038em;
  margin: 0;
  color: var(--svc-ink);
}

body.home-redesign .svc-head__line {
  display: block;
}

body.home-redesign .svc-head__title em {
  font-style: normal;
  color: var(--hr-orange);
}

body.home-redesign .svc-head__lead {
  margin: clamp(18px, 2.8vh, 24px) 0 0;
  max-width: 52ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.68;
  color: var(--svc-muted);
}

body.home-redesign .svc-head__actions {
  margin-top: clamp(26px, 3.5vh, 34px);
}

body.home-redesign .svc-head__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0 0.4rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--svc-ink);
  background: none;
  border: none;
  border-bottom: 1px solid var(--svc-line-soft);
  transition: color 0.25s ease, gap 0.25s ease, border-color 0.25s ease;
}

body.home-redesign .svc-head__link span {
  color: var(--hr-orange);
  transition: transform 0.25s ease;
}

body.home-redesign .svc-head__link:hover {
  color: var(--hr-orange);
  gap: 0.75rem;
  border-bottom-color: rgba(255, 106, 0, 0.45);
}

body.home-redesign .svc-head__link:hover span {
  transform: translateX(3px);
}

body.home-redesign .svc-head__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  width: min(520px, 88%);
  margin: clamp(36px, 5vh, 48px) auto 0;
}

body.home-redesign .svc-head__divider-line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--svc-line-soft) 15%,
    var(--svc-line-soft) 85%,
    transparent
  );
  transform-origin: center;
}

body.home-redesign .svc-head__divider-mark {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--svc-line);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 12, 12, 0.4);
  background: var(--svc-surface);
}

/* ── Service Stack (full-width cards) ── */
body.home-redesign .svc-overlap-scroller {
  position: relative;
  width: 100%;
  margin-top: clamp(16px, 2vh, 32px);
}

body.home-redesign .svc-stack-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
}

body.home-redesign .svc-list--stack {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vh, 56px);
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

@media (min-width: 1025px) {
  body.home-redesign .svc-list--stack {
    display: block;
    height: 100%;
    gap: 0;
  }

  body.home-redesign .svc-list--stack .svc-row {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    will-change: transform;
  }

  body.home-redesign .svc-list--stack .svc-row[data-svc-row="0"] { z-index: 1; }
  body.home-redesign .svc-list--stack .svc-row[data-svc-row="1"] { z-index: 2; }
  body.home-redesign .svc-list--stack .svc-row[data-svc-row="2"] { z-index: 3; }
  body.home-redesign .svc-list--stack .svc-row[data-svc-row="3"] { z-index: 4; }

  body.home-redesign .svc-list--stack .svc-row__panel {
    height: 100%;
    min-height: 0;
    padding: clamp(40px, 5vw, 72px) clamp(40px, 5vw, 80px);
  }
}

body.home-redesign .svc-stage--overlap .svc-list--stack {
  gap: 0;
}

body.home-redesign .svc-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: clamp(520px, 62vh, 780px);
  background: #000000;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

body.home-redesign .svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 106, 0, 0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 1;
  pointer-events: none;
}

body.home-redesign .svc-row:hover::before {
  opacity: 1;
}

body.home-redesign .svc-row:hover {
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

body.home-redesign .svc-row__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  flex: 1 1 auto;
  height: 100%;
  min-height: inherit;
  padding: clamp(56px, 7vw, 112px) clamp(48px, 6vw, 96px);
  background: transparent;
  overflow: hidden;
}

body.home-redesign [data-svc-row="1"] .svc-row__panel,
body.home-redesign [data-svc-row="3"] .svc-row__panel {
  direction: rtl;
}

body.home-redesign [data-svc-row="1"] .svc-row__panel > *,
body.home-redesign [data-svc-row="3"] .svc-row__panel > * {
  direction: ltr;
}

body.home-redesign .svc-row__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 32vh, 420px);
}

body.home-redesign .svc-row__num {
  position: absolute;
  top: clamp(-16px, -2vw, -8px);
  left: clamp(-8px, -1vw, 0);
  right: auto;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.45s ease, transform 0.45s ease;
}

body.home-redesign .svc-row:hover .svc-row__num {
  -webkit-text-stroke-color: rgba(255, 106, 0, 0.16);
  transform: translateY(-6px);
}

body.home-redesign .svc-row__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  border-radius: clamp(12px, 1.5vw, 20px);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1);
}

body.home-redesign .svc-row:hover .svc-row__img {
  transform: scale(1.02);
}

body.home-redesign .svc-row__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

body.home-redesign .svc-row:hover .svc-row__img::after,
body.home-redesign .svc-row:focus-within .svc-row__img::after,
body.home-redesign .svc-row.svc-row--lit .svc-row__img::after,
body.home-redesign .svc-row.svc-row--active .svc-row__img::after {
  opacity: 0;
}

body.home-redesign .svc-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
}

body.home-redesign .svc-row:hover .svc-row__img img,
body.home-redesign .svc-row:focus-within .svc-row__img img,
body.home-redesign .svc-row.svc-row--lit .svc-row__img img,
body.home-redesign .svc-row.svc-row--active .svc-row__img img {
  transform: scale(1.05);
}

body.home-redesign .svc-row__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-height: auto;
  padding: 0;
  border-top: none;
  background: transparent;
}

body.home-redesign .svc-row__accent {
  display: block;
  width: clamp(32px, 4vw, 48px);
  height: 2px;
  background: var(--hr-orange);
  margin: 0 0 clamp(28px, 3.5vh, 40px);
  transform-origin: left center;
}

body.home-redesign .svc-row__category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 clamp(20px, 2.5vh, 28px);
  min-height: auto;
  transition: color 0.35s ease;
}

body.home-redesign .svc-row__category::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hr-orange);
  opacity: 0.5;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

body.home-redesign .svc-row:hover .svc-row__category {
  color: rgba(255, 255, 255, 0.58);
}

body.home-redesign .svc-row:hover .svc-row__category::before {
  opacity: 1;
  transform: scale(1.4);
  box-shadow: 0 0 10px var(--hr-orange);
}

body.home-redesign .svc-row__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #f4f4f2;
  margin: 0 0 clamp(24px, 3vh, 36px);
  min-height: auto;
  display: block;
  overflow: visible;
  transition: color 0.35s ease;
}

body.home-redesign .svc-row:hover .svc-row__name {
  color: #ffffff;
}

body.home-redesign .svc-row__desc {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 clamp(40px, 5vh, 56px);
  flex: 0 1 auto;
  max-width: 42ch;
  min-height: auto;
  display: block;
  overflow: visible;
  transition: color 0.35s ease;
}

body.home-redesign .svc-row:hover .svc-row__desc {
  color: rgba(255, 255, 255, 0.72);
}

body.home-redesign .svc-row__cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 20px);
  align-self: flex-start;
  margin-top: 0;
  min-height: auto;
  padding: 0;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  background: none;
  border: none;
  transition: color 0.35s ease, gap 0.35s ease;
}

body.home-redesign .svc-row__cta span {
  position: relative;
}

body.home-redesign .svc-row__cta span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hr-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.home-redesign .svc-row__cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3.5vw, 44px);
  height: clamp(36px, 3.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 1.1em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

body.home-redesign .svc-row:hover .svc-row__cta {
  color: #f4f4f2;
  gap: clamp(18px, 2vw, 24px);
}

body.home-redesign .svc-row:hover .svc-row__cta span::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.home-redesign .svc-row:hover .svc-row__cta i {
  border-color: var(--hr-orange);
  background: var(--hr-orange);
  color: #ffffff;
  transform: translateX(5px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  body.home-redesign .hr-services-light {
    margin-block: clamp(20px, 3vh, 32px);
    padding: clamp(44px, 7vh, 56px) 0 clamp(52px, 8vh, 64px);
    border-radius: clamp(16px, 4vw, 24px);
  }

  body.home-redesign .svc-head__title {
    font-size: clamp(28px, 7.5vw, 40px);
  }

  body.home-redesign .svc-head__lead {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  body.home-redesign .svc-head__divider {
    width: 100%;
  }

  body.home-redesign .svc-stack-viewport {
    position: relative;
    top: auto;
    height: auto !important;
  }

  body.home-redesign .svc-overlap-scroller {
    padding-bottom: 0 !important;
  }

  body.home-redesign .svc-stage__counter {
    font-size: clamp(3rem, 12vw, 5rem);
    top: clamp(36px, 6vh, 52px);
    opacity: 0.65;
  }

  body.home-redesign .svc-list--stack {
    gap: clamp(24px, 4vh, 40px);
  }

  body.home-redesign .svc-list--stack .svc-row {
    position: relative;
    inset: auto;
    height: auto;
    min-height: auto;
  }

  body.home-redesign .svc-row {
    min-height: auto;
    border-radius: clamp(12px, 3vw, 16px);
  }

  body.home-redesign .svc-row__panel {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 5vh, 48px);
    padding: clamp(40px, 6vw, 56px) clamp(28px, 5vw, 40px);
  }

  body.home-redesign [data-svc-row="1"] .svc-row__panel,
  body.home-redesign [data-svc-row="3"] .svc-row__panel {
    direction: ltr;
  }

  body.home-redesign .svc-row__visual {
    order: -1;
    min-height: auto;
  }

  body.home-redesign .svc-row__num {
    top: clamp(12px, 2vw, 20px);
    left: auto;
    right: clamp(16px, 3vw, 24px);
    font-size: clamp(4rem, 18vw, 6rem);
    -webkit-text-stroke-color: rgba(255, 106, 0, 0.1);
  }

  body.home-redesign .svc-row__img {
    aspect-ratio: 16 / 10;
  }

  body.home-redesign .svc-row__img img {
    filter: none;
  }

  body.home-redesign .svc-row:hover .svc-row__img img,
  body.home-redesign .svc-row:focus-within .svc-row__img img,
  body.home-redesign .svc-row.svc-row--lit .svc-row__img img,
  body.home-redesign .svc-row.svc-row--active .svc-row__img img {
    transform: scale(1.05);
  }

  body.home-redesign .svc-row__name {
    font-size: clamp(28px, 7vw, 40px);
  }

  body.home-redesign .svc-row__desc {
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: clamp(32px, 4vh, 40px);
  }

  body.home-redesign .svc-row__cta {
    color: rgba(255, 255, 255, 0.62);
  }

  body.home-redesign .svc-row__cta i {
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 768px) {
  body.home-redesign .svc-container {
    padding-inline: clamp(12px, 3vw, 20px);
  }

  body.home-redesign .svc-stage__counter {
    display: none;
  }
}

/* ── Smooth scroll (Lenis) ── */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-smooth body.home-redesign {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis [data-lenis-prevent] {
  overscroll-behavior: contain;
}

