:root {
  --bf-black: #050505;
  --bf-charcoal: #111111;
  --bf-panel: #171717;
  --bf-white: #ffffff;
  --bf-muted: #a8a8a8;
  --bf-orange: #e56127;
  --bf-amber: #f59428;
  --bf-copper: #b63f27;
  --bf-gradient: linear-gradient(135deg, #f59428 0%, #e56127 45%, #b63f27 100%);

  --black: var(--bf-black);
  --white: #f7f2ec;
  --cream: #ead8c8;
  --teal: var(--bf-orange);
  --teal-light: var(--bf-amber);
  --green: var(--bf-orange);
  --charcoal: var(--bf-charcoal);
  --mid: var(--bf-panel);
  --muted: var(--bf-muted);
  --border: rgba(255, 255, 255, 0.08);

  /* Two-font system: Bebas Neue (display) + Inter (headings, body, UI). */
  --font-display: "Bebas Neue", sans-serif;
  --font-heading: "Inter", sans-serif;
  --font-serif: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-ui: "Inter", sans-serif;

  /* Fixed #navbar clearance + compact gap below it on inner pages */
  --bf-nav-clearance: 100px;
  --bf-hero-top-gap: 24px;
  --bf-inner-hero-top: calc(var(--bf-nav-clearance) + var(--bf-hero-top-gap));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
}

.cursor,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(241, 109, 2, 0.55);
  border-radius: 50%;
  transition: all 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--teal);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 16px;
}

/* ==========================================================================
   PRELOADER, modern brand loading screen
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 10%, transparent 72%);
  opacity: 0.7;
}

.site-preloader__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229, 97, 39, 0.16) 0%, rgba(245, 148, 40, 0.06) 38%, transparent 68%);
  animation: preloaderBreathe 2.6s ease-in-out infinite;
}

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

.site-preloader__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
}

.site-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(245, 148, 40, 0.15) 60deg,
    var(--bf-amber) 180deg,
    var(--bf-orange) 260deg,
    transparent 330deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  animation: preloaderSpin 1.1s linear infinite;
}

.site-preloader__logo {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.site-preloader__track {
  position: relative;
  width: 180px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.site-preloader__track-fill {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  border-radius: inherit;
  background: var(--bf-gradient);
  animation: preloaderProgress 1.6s ease-in-out infinite;
}

.site-preloader__text {
  color: rgba(247, 242, 236, 0.42);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes preloaderBreathe {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes preloaderProgress {
  0% {
    transform: translateX(-100%) scaleX(0.4);
  }
  50% {
    transform: translateX(0%) scaleX(0.7);
  }
  100% {
    transform: translateX(100%) scaleX(0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__ring,
  .site-preloader__glow,
  .site-preloader__track-fill {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
  }

  .site-preloader__logo {
    animation: none;
  }
}

#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), transparent);
  transition: all 0.4s ease;
}

#navbar.scrolled {
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links > li > a {
  color: rgba(242, 251, 250, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links > li > a:hover,
.nav-links > li > a:focus-visible {
  color: var(--teal);
}

.nav-links > li.active > a {
  color: var(--bf-amber);
}

.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--teal);
  opacity: 0.75;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.nav-links > li.active > a::after,
.nav-links > li > a:hover::after,
.nav-links > li > a:focus-visible::after {
  transform: scaleX(1);
  background: var(--bf-gradient);
}

.nav-links .nav-cta {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--bf-gradient);
  color: var(--bf-black);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
  overflow: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.nav-cta__label {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-cta__label--hover {
  opacity: 0;
  transform: translateY(120%);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: rgba(10, 10, 10, 0.92);
  color: var(--bf-amber);
  border-color: rgba(245, 148, 40, 0.55);
  box-shadow:
    0 10px 26px rgba(229, 97, 39, 0.28),
    inset 0 0 0 1px rgba(245, 148, 40, 0.18);
  transform: translateY(-1px);
}

.nav-links .nav-cta:hover .nav-cta__label--default,
.nav-links .nav-cta:focus-visible .nav-cta__label--default {
  opacity: 0;
  transform: translateY(-120%);
}

.nav-links .nav-cta:hover .nav-cta__label--hover,
.nav-links .nav-cta:focus-visible .nav-cta__label--hover {
  opacity: 1;
  transform: translateY(0);
}

.nav-links .nav-cta::after {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta__label {
    transition: opacity 0.2s ease;
  }

  .nav-cta__label--default,
  .nav-cta__label--hover {
    transform: none;
  }
}

/* ── Nav toggle (hamburger) ── */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(242, 251, 250, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.nav-toggle-icon span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

#navbar.is-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#navbar.is-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}
#navbar.is-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Services mega-dropdown ── */
.nav-has-dropdown {
  position: relative;
}

.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dd-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-has-dropdown:hover .nav-dd-chevron,
.nav-has-dropdown:focus-within .nav-dd-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 760px;
  padding-top: 20px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}

.nav-dropdown-inner,
.nav-dropdown-footer {
  background: rgba(12, 12, 12, 0.98);
}

.nav-dropdown-inner {
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
}

.nav-dropdown-footer {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.nav-dropdown-col {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.nav-dropdown-col:last-child {
  border-right: none;
}

.nav-dropdown-heading {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}

.nav-dropdown-link {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(242, 251, 250, 0.7);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  color: var(--white);
}

.nav-dropdown-link::after {
  display: none;
}

.nav-dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: rgba(241, 109, 2, 0.04);
}

.nav-dropdown-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.nav-dropdown-all:hover,
.nav-dropdown-all:focus-visible {
  color: var(--white);
}

.nav-dropdown-all::after,
.nav-dropdown-cta::after {
  display: none;
}

.nav-dropdown-cta {
  display: inline-flex;
  padding: 8px 18px;
  background: var(--teal);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.nav-dropdown-cta:hover,
.nav-dropdown-cta:focus-visible {
  background: var(--teal-light);
  transform: translateY(-1px);
  color: var(--black);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 140px 48px 80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 109, 2, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 109, 2, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: var(--teal);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  bottom: 0;
  left: -80px;
  width: 400px;
  height: 400px;
  background: var(--green);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

.hero-split {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.76) 50%, rgba(42, 18, 0, 0.88) 100%);
}

.hero-content,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
}

.hero-eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bf-gradient);
  flex-shrink: 0;
}

.hero-eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-h1 {
  margin-bottom: 0;
  overflow: hidden;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  font-weight: bold;
  line-height: 0.88;
  letter-spacing: -1px;
}

.hero-h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}

.hero-h1 .line:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-h1 .line:nth-child(2) {
  animation-delay: 0.65s;
}

.hero-h1-accent {
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.home .hero .hero-bottom {
  border-top: 0;
  padding-top: 0;
  margin-top: 36px;
}

.hero-bottom-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.hero-bottom-copy {
  flex: 0 1 50%;
  width: 50%;
  max-width: 50%;
}

.hero-bottom-copy .hero-desc {
  max-width: none;
}

@media (max-width: 768px) {
  .hero-bottom-copy {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
}

.hero-desc {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(242, 251, 250, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-micro {
  margin-top: 14px;
  margin-bottom: 0;
  color: rgba(242, 251, 250, 0.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.8px;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-actions,
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-buttons {
  justify-content: center;
}

.btn-primary,
.btn-outline,
.btn-secondary,
.btn,
.panel-btn {
  display: inline-block;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--bf-gradient);
  color: var(--bf-black);
  font-family: var(--font-ui);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 12px 40px rgba(229, 97, 39, 0.32);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 13px 28px;
  border: 1px solid var(--border);
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-outline--hero-secondary {
  border-color: rgba(242, 251, 250, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(242, 251, 250, 0.68);
  font-weight: 500;
}

.btn-outline--hero-secondary:hover,
.btn-outline--hero-secondary:focus-visible {
  border-color: rgba(241, 109, 2, 0.45);
  color: rgba(242, 251, 250, 0.92);
  background: rgba(241, 109, 2, 0.08);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 13px 28px;
  border: 1px solid rgba(242, 251, 250, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(242, 251, 250, 0.68);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(241, 109, 2, 0.45);
  color: rgba(242, 251, 250, 0.92);
  background: rgba(241, 109, 2, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.hero-proof-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(8, 8, 8, 0.98) 100%);
}

.hero-proof-bar__row {
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 14px 48px;
  gap: 0;
}

.hero-proof-bar__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  color: rgba(242, 251, 250, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-proof-bar__lead {
  color: rgba(242, 251, 250, 0.38);
  font-weight: 600;
  letter-spacing: 2px;
}

.hero-proof-bar__sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 14px;
  background: rgba(241, 109, 2, 0.28);
}

.hero-proof-bar__stat {
  color: rgba(242, 251, 250, 0.58);
}

.hero-proof-bar__logos {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 32px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof-bar--has-logos .hero-proof-bar__logos {
  display: flex;
}

.hero-proof-bar--has-logos .hero-proof-bar__row {
  padding-bottom: 18px;
}

.hero-proof-bar__logos img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.35);
}

.stats-ticker {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  background: var(--teal);
}

.ticker-track,
.stats-ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item,
.stats-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}

.ticker-sep,
.stats-ticker-dot {
  color: rgba(0, 0, 0, 0.42);
}

section {
  padding: 120px 48px;
}

.section-label {
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dual-world {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 80vh;
  background: var(--border);
}

.dual-panel {
  position: relative;
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 80px 60px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(0, 0, 0, 0.98));
}

.dual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.dual-panel.brands::before {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.14) 0%, transparent 60%);
}

.dual-panel.creators::before {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.14) 0%, transparent 60%);
}

.dual-panel:hover::before {
  opacity: 1;
}

.panel-number {
  position: absolute;
  top: 48px;
  right: 48px;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Bebas Neue", sans-serif;
  font-size: 120px;
  line-height: 1;
  transition: color 0.5s;
}

.dual-panel.brands:hover .panel-number {
  color: rgba(241, 109, 2, 0.1);
}

.dual-panel.creators:hover .panel-number {
  color: rgba(241, 109, 2, 0.1);
}

.panel-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.brands .panel-tag {
  color: var(--teal);
}

.creators .panel-tag {
  color: var(--green);
}

.panel-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.dual-panel h3 {
  margin-bottom: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  line-height: 0.9;
  transition: transform 0.4s ease;
}

.dual-panel:hover h3 {
  transform: translateX(8px);
}

.dual-panel p {
  max-width: 340px;
  margin-bottom: 40px;
  color: rgba(242, 251, 250, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.panel-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  list-style: none;
}

.panel-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(242, 251, 250, 0.64);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.panel-features li::before {
  content: "→";
}

.brands .panel-features li::before {
  color: var(--teal);
}

.creators .panel-features li::before {
  color: var(--green);
}

.panel-btn {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.brands .panel-btn {
  background: var(--teal);
  color: var(--black);
}

.brands .panel-btn:hover,
.brands .panel-btn:focus-visible {
  background: var(--teal-light);
  transform: translateX(6px);
}

.creators .panel-btn {
  background: var(--green);
  color: var(--black);
}

.creators .panel-btn:hover,
.creators .panel-btn:focus-visible {
  background: var(--teal-light);
  transform: translateX(6px);
}

.services-section,
.portfolio-section,
.cta-section {
  background: var(--charcoal);
}

.services-section-intro {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(242, 251, 250, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.services-grid,
.testimonials-grid {
  display: grid;
  gap: 1px;
  margin-top: 64px;
  background: var(--border);
}

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

.services-section .services-grid {
  margin-top: 48px;
}

.why-section {
  border-top: 1px solid var(--border);
  background: var(--mid);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
  margin-top: 56px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-bottom: 22px;
  color: var(--teal);
}

.why-item h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.why-item p {
  margin: 0;
  color: rgba(242, 251, 250, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.service-badge {
  position: absolute;
  top: 22px;
  left: 40px;
  z-index: 1;
  padding: 4px 9px;
  border: 1px solid rgba(241, 109, 2, 0.26);
  border-radius: 2px;
  background: rgba(241, 109, 2, 0.06);
  color: rgba(242, 251, 250, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card--core .service-icon {
  margin-top: 10px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  background: var(--charcoal);
  transition: background 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bf-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  color: var(--bf-amber);
}

.service-card:hover {
  background: rgba(241, 109, 2, 0.06);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  color: var(--teal);
}

.service-num {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-num {
  color: rgba(241, 109, 2, 0.08);
}

.service-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 28px;
  color: rgba(242, 251, 250, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.3s;
}

.service-link:hover,
.service-link:focus-visible {
  gap: 16px;
}

.service-card--spotlight {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px dashed rgba(241, 109, 2, 0.24);
  background: rgba(241, 109, 2, 0.08);
  text-align: left;
}

.service-card--consultation-flagship {
  grid-column: 1 / -1;
  overflow: visible;
  padding: 0;
  border: 1px solid rgba(241, 109, 2, 0.42);
  background: linear-gradient(165deg, rgba(241, 109, 2, 0.16) 0%, rgba(18, 10, 4, 0.92) 48%, rgba(12, 12, 12, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

.service-card--consultation-flagship:hover {
  background: linear-gradient(165deg, rgba(241, 109, 2, 0.2) 0%, rgba(22, 12, 4, 0.94) 48%, rgba(14, 14, 14, 0.99) 100%);
}

.consultation-flagship__inner {
  display: grid;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
  gap: 36px 56px;
  padding: 52px 48px 48px;
}

.consultation-flagship__mark {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.service-card--consultation-flagship .spotlight-value {
  margin-bottom: 0;
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.92;
  opacity: 0.96;
}

.consultation-flagship__body {
  max-width: 640px;
}

.spotlight-eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.spotlight-headline {
  margin: 0 0 16px;
  max-width: 22ch;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.12;
}

.spotlight-headline em {
  color: var(--teal);
  font-style: italic;
}

.service-card--consultation-flagship .spotlight-lead {
  max-width: 52ch;
  margin-bottom: 22px;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.58);
}

.spotlight-bullets {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.spotlight-bullets li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: rgba(242, 251, 250, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.spotlight-bullets li:last-child {
  margin-bottom: 0;
}

.spotlight-bullets li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.spotlight-includes-label {
  margin: 0 0 10px;
  color: rgba(242, 251, 250, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.service-card--consultation-flagship .spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-card--consultation-flagship .spotlight-tags li {
  padding: 7px 12px;
  border: 1px solid rgba(241, 109, 2, 0.28);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(242, 251, 250, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.consultation-flagship__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.consultation-flagship__btn {
  padding: 15px 36px;
  font-size: 12px;
  letter-spacing: 1.8px;
}

.service-card--consultation-flagship .spotlight-sub {
  margin: 0;
  max-width: 40ch;
  color: rgba(242, 251, 250, 0.42);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.5;
  text-transform: uppercase;
}

.process-section,
.testimonials-section,
footer {
  background: var(--black);
}

.process-section-intro {
  max-width: 480px;
  margin-top: 16px;
  color: rgba(242, 251, 250, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
}

.process-section .process-steps {
  margin-top: 48px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 20px;
  left: 20px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.step-dot {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--black);
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
}

.process-step:hover .step-dot {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 0 30px rgba(241, 109, 2, 0.32);
  color: var(--black);
}

.process-step h3,
.process-step h4 {
  margin-bottom: 8px;
  color: rgba(242, 251, 250, 0.94);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-step p {
  color: rgba(242, 251, 250, 0.46);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.portfolio-section {
  overflow: hidden;
  padding: 120px 0;
}

.portfolio-header {
  margin-bottom: 64px;
  padding: 0 48px;
}

.portfolio-section-intro {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(242, 251, 250, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.portfolio-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTrack 40s linear infinite;
}

.portfolio-track:hover {
  animation-play-state: paused;
}

.portfolio-card {
  width: 320px;
  flex-shrink: 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--mid);
  transition: border-color 0.3s, transform 0.3s;
}

.portfolio-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
}

.portfolio-brand {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.portfolio-kicker {
  margin: 0 0 5px;
  color: rgba(242, 251, 250, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-what {
  margin: 0 0 14px;
  color: rgba(242, 251, 250, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.portfolio-results {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(241, 109, 2, 0.4);
  border-radius: 2px;
  background: rgba(241, 109, 2, 0.1);
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(16px, 2.8vw, 19px);
  letter-spacing: 1.4px;
  line-height: 1.35;
}

.portfolio-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.25s ease;
}

.portfolio-case-link::after {
  content: "→";
  font-size: 12px;
}

.portfolio-case-link:hover,
.portfolio-case-link:focus-visible {
  gap: 10px;
  color: var(--teal-light);
}

.portfolio-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  border-radius: 1px;
  background: rgba(241, 109, 2, 0.14);
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.numbers-section {
  padding: 80px 48px;
  background: linear-gradient(135deg, #f16d02 0%, #ff9140 100%);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.number-item {
  padding: 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.number-item:last-child {
  border-right: none;
}

.number-value {
  display: block;
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
}

.number-label {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.clients-section {
  padding: 80px 48px;
  background: var(--mid);
  text-align: center;
}

.clients-label {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.client-item {
  padding: 24px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: rgba(242, 251, 250, 0.2);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  transition: color 0.3s, background 0.3s;
}

.client-item:hover {
  background: rgba(241, 109, 2, 0.06);
  color: var(--teal);
}

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

.testimonial-card {
  padding: 48px 40px;
  background: var(--black);
  transition: background 0.3s;
}

.testimonial-card:hover {
  background: rgba(241, 109, 2, 0.05);
}

.quote-mark {
  display: block;
  margin-bottom: 20px;
  color: var(--teal);
  opacity: 0.35;
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.7;
}

.testimonial-card p {
  margin-bottom: 32px;
  color: rgba(242, 251, 250, 0.66);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.testimonial-role {
  margin-top: 4px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 1px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 160px 48px;
  text-align: center;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.02);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22vw;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.cta-section .section-label {
  justify-content: center;
}

.cta-section .section-label::before {
  display: none;
}

.cta-section h2 {
  position: relative;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 600;
}

.cta-section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-section p {
  position: relative;
  max-width: 480px;
  margin: 0 auto 48px;
  color: rgba(242, 251, 250, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.portfolio-marquee {
  overflow: hidden;
}

/* Homepage (.home), spacing, alignment, rhythm */
.home .hero {
  padding: 128px 48px 76px;
}

.home .hero-content {
  max-width: 1200px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}

.home .hero-bottom {
  max-width: 1200px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 769px) {
  .home .hero-bottom-main {
    align-items: flex-start;
  }
}

.home .hero-proof-bar__row {
  max-width: 1200px;
}

.home section:not(.portfolio-section):not(.cta-section):not(.hero):not(.dual-section):not(.services-section) {
  padding-top: 104px;
  padding-bottom: 104px;
}

.home .services-section-intro {
  margin-top: 14px;
  max-width: 52ch;
}

.home .process-section-intro {
  margin-top: 14px;
}

.home .portfolio-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
  padding-left: 48px;
  padding-right: 48px;
}

.home .numbers-section .numbers-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.home .clients-section .clients-grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.home .clients-section .clients-grid--badges {
  max-width: none;
  width: 100%;
}

.home .dual-world {
  min-height: min(82vh, 880px);
}

.home .dual-section {
  padding: 0;
  margin: 0;
}

.home .dual-section .dual-world {
  width: 100%;
  max-width: none;
}

.home .dual-panel {
  padding: clamp(48px, 6vw, 64px) clamp(32px, 4vw, 48px);
}

@media (min-width: 1025px) {
  .services-grid:not(.services-grid--nine) > .service-card:nth-last-child(2) {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 48px 56px;
  }

  .services-grid:not(.services-grid--nine) > .service-card:nth-last-child(2) .service-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .services-grid:not(.services-grid--nine) > .service-card:nth-last-child(2) h3 {
    margin-bottom: 10px;
  }

  .services-grid:not(.services-grid--nine) > .service-card:nth-last-child(2) p {
    margin-bottom: 20px;
    max-width: 48ch;
  }
}

@media (max-width: 1200px) {
  .site-footer__panel {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .home .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 24px;
  }
}

footer,
.site-footer {
  background: var(--black);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer__glow {
  position: absolute;
  inset: 0 0 auto;
  height: min(68vh, 640px);
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(229, 97, 39, 0.14), transparent 68%),
    radial-gradient(ellipse 35% 28% at 92% 8%, rgba(245, 148, 40, 0.08), transparent 70%),
    radial-gradient(ellipse 28% 22% at 8% 12%, rgba(182, 63, 39, 0.05), transparent 70%);
}

.site-footer__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 78%);
}

.site-footer__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 148, 40, 0.45), rgba(229, 97, 39, 0.28), transparent);
}

.site-footer__mark {
  position: absolute;
  right: clamp(-12px, 2vw, 48px);
  bottom: clamp(72px, 10vw, 140px);
  color: rgba(247, 242, 236, 0.028);
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  user-select: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 48px) clamp(28px, 4vw, 40px);
}

.site-footer__cta {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border: 1px solid rgba(229, 97, 39, 0.16);
  border-radius: 2px;
  background:
    radial-gradient(ellipse 85% 75% at 50% 0%, rgba(229, 97, 39, 0.12) 0%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006)),
    rgba(17, 17, 17, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 90px rgba(0, 0, 0, 0.32);
}

.site-footer__cta-watermark {
  position: absolute;
  top: 50%;
  right: clamp(12px, 4vw, 48px);
  color: rgba(229, 97, 39, 0.07);
  font-family: var(--font-display);
  font-size: clamp(96px, 16vw, 200px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.site-footer__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.site-footer__cta-label {
  margin-bottom: 16px;
}

.site-footer__cta-title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(247, 242, 236, 0.96);
}

.site-footer__cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer__cta-text {
  max-width: 48ch;
  margin-bottom: 24px;
  color: rgba(247, 242, 236, 0.54);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__inner:not(:has(.site-footer__cta)) .site-footer__panel {
  margin-top: 0;
}

.site-footer__panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 5vw, 56px);
  margin-bottom: clamp(40px, 5vw, 56px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.022), transparent 58%),
    rgba(12, 12, 12, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.site-footer__logo img {
  width: min(188px, 62vw);
  height: auto;
}

.site-footer__tagline {
  max-width: 34ch;
  margin-bottom: 24px;
  color: rgba(247, 242, 236, 0.5);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.58);
  text-decoration: none;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.site-footer__social-link svg {
  width: 17px;
  height: 17px;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  border-color: rgba(245, 148, 40, 0.45);
  background: rgba(229, 97, 39, 0.12);
  color: var(--bf-amber);
  transform: translateY(-2px);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-content: start;
}

.site-footer__nav-label {
  margin-bottom: 18px;
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-list li + li {
  margin-top: 4px;
}

.site-footer__link {
  display: inline-block;
  padding: 5px 0;
  color: rgba(247, 242, 236, 0.46);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: rgba(247, 242, 236, 0.94);
  transform: translateX(3px);
}

.site-footer__link--emphasis {
  color: rgba(247, 242, 236, 0.72);
  font-weight: 500;
}

.site-footer__services-band {
  margin-bottom: clamp(40px, 5vw, 56px);
  padding: clamp(24px, 3.5vw, 32px) clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  background: rgba(8, 8, 8, 0.45);
}

.site-footer__services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.site-footer__services-label {
  margin-bottom: 0;
}

.site-footer__services-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(247, 242, 236, 0.46);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-footer__services-all-icon {
  color: var(--bf-amber);
  transition: transform 0.2s ease;
}

.site-footer__services-all:hover,
.site-footer__services-all:focus-visible {
  color: rgba(247, 242, 236, 0.9);
}

.site-footer__services-all:hover .site-footer__services-all-icon,
.site-footer__services-all:focus-visible .site-footer__services-all-icon {
  transform: translateX(2px);
}

.site-footer__services-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__service-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__service-chip:hover,
.site-footer__service-chip:focus-visible {
  border-color: rgba(229, 97, 39, 0.38);
  background: rgba(229, 97, 39, 0.1);
  color: rgba(247, 242, 236, 0.92);
  transform: translateY(-1px);
}

.site-footer__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__copyright {
  margin: 0;
  color: rgba(247, 242, 236, 0.34);
  font-size: 12px;
}

.site-footer__copyright span {
  color: rgba(245, 148, 40, 0.82);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
}

.site-footer__legal-link {
  color: rgba(247, 242, 236, 0.44);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal-sep {
  color: rgba(247, 242, 236, 0.18);
  font-size: 12px;
  line-height: 1;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: var(--bf-amber);
}

.site-footer__wing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 6px 0;
  color: rgba(247, 242, 236, 0.38);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__wing-label {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__wing-url {
  color: rgba(247, 242, 236, 0.68);
  font-weight: 600;
}

.site-footer__wing-icon {
  color: var(--bf-amber);
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-footer__wing:hover,
.site-footer__wing:focus-visible {
  color: rgba(247, 242, 236, 0.88);
  transform: translateY(-1px);
}

.site-footer__wing:hover .site-footer__wing-icon,
.site-footer__wing:focus-visible .site-footer__wing-icon {
  transform: translate(1px, -1px);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

@keyframes gridShift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(80px);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(241, 109, 2, 0.35);
  border-radius: 2px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}
@media (max-width: 1024px) {
  #navbar,
  #navbar.scrolled {
    padding-left: 36px;
    padding-right: 36px;
  }

  .page-section {
    padding: 80px 36px;
  }

  .page-section--tight {
    padding-top: 40px;
  }

  .hero {
    padding: 120px 36px 72px;
  }

  .home .hero {
    padding: 144px 36px 72px;
  }

  .hero-proof-bar__row {
    padding-left: 36px;
    padding-right: 36px;
  }

  .hero-bottom-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .dual-panel {
    padding: 64px 40px;
  }

  .home .dual-panel {
    padding: 40px 28px;
  }

  .dual-panel h3 {
    font-size: 60px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__cta-watermark {
    display: none;
  }

  .site-footer__cta {
    padding: clamp(28px, 4vw, 36px);
  }

  .site-footer__panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__wing {
    justify-self: start;
  }

  .site-footer__mark {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .process-steps::before {
    display: none;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item:nth-child(2n) {
    border-right: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .home .portfolio-header {
    padding-left: 36px;
    padding-right: 36px;
  }

  .consultation-flagship__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 36px 40px;
    text-align: center;
  }

  .consultation-flagship__mark {
    padding-top: 0;
  }

  .consultation-flagship__body {
    max-width: none;
    margin: 0 auto;
  }

  .spotlight-headline {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .service-card--consultation-flagship .spotlight-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .spotlight-bullets {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 42ch;
  }

  .spotlight-includes-label {
    text-align: center;
  }

  .service-card--consultation-flagship .spotlight-tags {
    justify-content: center;
  }

  .consultation-flagship__cta {
    align-items: center;
    width: 100%;
  }

  .consultation-flagship__btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .service-card--consultation-flagship .spotlight-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #navbar {
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 24px;
  }

  .nav-logo img {
    width: 148px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  #navbar.is-open .nav-links {
    display: flex;
  }

  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 0;
    pointer-events: none;
  }

  #navbar.is-open .nav-has-dropdown .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
  }

  #navbar.is-open .nav-dropdown-inner {
    grid-template-columns: 1fr;
  }

  #navbar.is-open .nav-dropdown-col {
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  #navbar.is-open .nav-dropdown-col:last-child {
    border-bottom: none;
  }

  #navbar.is-open .nav-dropdown-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

  .nav-has-dropdown .nav-dd-chevron {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 24px 56px;
  }

  .home .hero {
    padding: 134px 24px 56px;
  }

  .hero-proof-bar__row {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-proof-bar__text {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .hero-proof-bar__sep {
    margin: 0 10px;
    height: 10px;
  }

  .hero-eyebrow,
  .section-label {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 2.4px;
  }

  .hero-eyebrow::before,
  .section-label::before {
    width: 24px;
  }

  .hero-h1 {
    font-size: clamp(56px, 18vw, 96px);
    line-height: 0.92;
  }

  .hero-desc {
    max-width: none;
    font-size: 15px;
  }

  .hero-actions,
  .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 80px 24px;
  }

  .home section:not(.portfolio-section):not(.cta-section):not(.dual-section):not(.services-section) {
    padding: 80px 24px;
  }

  .dual-world,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__cta-actions {
    width: 100%;
  }

  .site-footer__cta-actions .btn-primary,
  .site-footer__cta-actions .btn-outline {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .site-footer__panel {
    padding: 20px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .site-footer__wing-label {
    display: none;
  }

  .home .dual-world {
    min-height: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .dual-panel {
    min-height: auto;
    padding: 40px 24px;
  }

  .home .dual-panel {
    padding: 40px 24px;
  }

  .dual-panel h3 {
    font-size: 56px;
  }

  .service-card,
  .testimonial-card {
    padding: 36px 24px;
  }

  .service-badge {
    left: 24px;
    top: 18px;
  }

  .consultation-flagship__inner {
    padding: 40px 24px 36px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    padding: 0;
  }

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

  .number-item {
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .number-item:last-child {
    border-bottom: none;
  }

  .number-value {
    font-size: 62px;
  }

  .number-label {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    letter-spacing: 1.2px;
    line-height: 1.4;
  }

  .hero-bottom-main {
    gap: 24px;
  }

  .portfolio-card {
    width: 280px;
    padding: 28px 24px;
  }

  .home .portfolio-header {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 48px;
  }

  .client-item {
    width: 50%;
    padding: 18px 16px;
    font-size: 18px;
  }

  .cta-section {
    padding: 120px 24px;
  }

  .site-footer__logo img {
    width: 180px;
  }

  .site-footer__bar {
    gap: 12px;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}


.site-page {
  cursor: auto;
}

.site-page .page-shell {
  padding-top: var(--bf-nav-clearance);
}

.page-hero {
  padding: 48px 48px 24px;
  background: radial-gradient(circle at top right, rgba(241, 109, 2, 0.12), transparent 32%), linear-gradient(180deg, #101010, #000000 70%);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.page-title {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.02;
}

.page-title em {
  color: var(--teal);
  font-style: italic;
}

.page-intro {
  max-width: 720px;
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.page-section {
  padding: 80px 48px;
}

.page-section--tight {
  padding-top: 40px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-card:hover,
.page-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(241, 109, 2, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.page-card:focus-within {
  outline: 1px solid rgba(241, 109, 2, 0.45);
  outline-offset: 3px;
}

.page-card h3,
.page-card h4 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
}

.page-card p,
.page-column p,
.page-section > p,
.page-section li,
.page-intro-list li {
  color: rgba(247, 242, 236, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.page-section > p {
  max-width: 800px;
}

.page-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.page-column h2 {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
}

.page-column h2 em {
  color: var(--teal);
  font-style: italic;
}

.page-meta-list,
.page-links,
.contact-list,
.page-intro-list,
.faq-list,
.policy-list,
.sitemap-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.page-links a,
.sitemap-list a {
  color: var(--teal);
  text-decoration: none;
}

.page-links a:hover,
.sitemap-list a:hover {
  color: var(--teal-light);
}

.contact-list strong,
.faq-list strong,
.policy-list strong,
.sitemap-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 700;
}

.service-stack {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.service-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.service-row:last-child {
  border-bottom: 1px solid var(--border);
}

.service-row__number {
  color: rgba(241, 109, 2, 0.8);
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.service-row h3 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
}

.service-row p {
  color: rgba(247, 242, 236, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.service-row a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.service-row a:hover {
  color: var(--teal-light);
}

.sitemap-list {
  margin-top: 24px;
}

.sitemap-list li {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.sitemap-list li:last-child {
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .page-section,
  .page-hero {
    padding-left: 36px;
    padding-right: 36px;
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-columns,
  .service-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-page .page-shell {
    padding-top: var(--bf-nav-clearance);
  }

  .page-hero,
  .page-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-section--tight {
    padding-top: 28px;
  }

  .page-hero {
    padding-top: 32px;
  }

  .page-intro {
    font-size: 16px;
  }

  .page-grid,
  .page-grid--two {
    grid-template-columns: 1fr;
  }

  .page-card {
    padding: 24px;
  }

  .service-row {
    gap: 12px;
  }

  .service-row__number {
    font-size: 36px;
  }

  .service-row h3 {
    font-size: 26px;
  }
}

.page-about .page-hero {
  padding-bottom: 56px;
}

.about-hero-grid,
.about-story,
.about-collage,
.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.about-hero-copy .page-title,
.about-story-copy h2,
.about-culture-copy h2,
.about-cta-copy h2 {
  max-width: 18ch;
}

.about-hero-copy .page-intro {
  margin-bottom: 28px;
}

.about-eyebrow-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.about-pill {
  padding: 8px 12px;
  border: 1px solid rgba(241, 109, 2, 0.24);
  background: rgba(241, 109, 2, 0.08);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--charcoal);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--hero {
  min-height: 560px;
}

.image-frame--story,
.image-frame--culture,
.image-frame--wide {
  min-height: 420px;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-caption {
  margin-top: 12px;
  color: rgba(247, 242, 236, 0.56);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.page-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  background: var(--border);
}

.page-stat,
.page-stat-card {
  padding: 28px 24px;
  background: var(--charcoal);
}

.page-stat strong,
.page-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.page-stat span,
.page-stat-card span {
  color: rgba(247, 242, 236, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

/* Thank You page */
.page-thank-you .page-hero {
  padding-bottom: 32px;
}

.page-thank-you-main {
  max-width: 900px;
  margin: 0 auto;
}

.thankyou-hero-inner {
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: flex-start;
}

.thankyou-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 196, 0.5);
  background: rgba(0, 212, 196, 0.08);
  color: rgba(0, 212, 196, 0.9);
  font-size: 22px;
  font-weight: 700;
}

.thankyou-next .thankyou-steps-grid {
  margin-top: 24px;
}

.thankyou-step-card {
  display: grid;
  gap: 8px;
}

.thankyou-step-num {
  margin: 0;
  color: rgba(241, 109, 2, 0.9);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.16em;
}

.thankyou-trust .page-stat-grid {
  margin-top: 24px;
}

.thankyou-backup .page-card h3 {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .page-thank-you-main {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Insights / Editorial hub */
.page-insights .page-hero {
  padding-bottom: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  background:
    radial-gradient(circle at 12% 12%, rgba(241, 109, 2, 0.12), rgba(241, 109, 2, 0) 48%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(12, 12, 12, 0.96));
  border: 1px solid var(--border);
  border-radius: 2px;
}

.page-insights-main {
  max-width: 1200px;
  margin: 0 auto;
}

.insights-hero {
  display: grid;
  gap: 16px;
}

.insights-hero .page-title {
  max-width: 16ch;
}

.insights-hero .page-intro {
  max-width: 60ch;
}

.insights-hero-tags {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insights-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 236, 0.16);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
}

.insights-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-featured-card__body {
  padding: 26px 28px 28px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.insights-featured-card__body h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}

.insights-featured-card__body p {
  margin: 0;
}

.insights-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(241, 109, 2, 0.45);
  background: rgba(241, 109, 2, 0.08);
  color: rgba(247, 242, 236, 0.88);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-meta,
.insights-read-time {
  color: rgba(247, 242, 236, 0.6);
  font-size: 13px;
}

.insights-featured-card__cta {
  margin-top: 4px;
}

.insights-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.insights-filter__label {
  color: rgba(247, 242, 236, 0.68);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.insights-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insights-filter__chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 242, 236, 0.22);
  background: transparent;
  color: rgba(247, 242, 236, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}

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

.insights-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.insights-card__media {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 236, 0.1);
}

.insights-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.insights-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insights-card__title {
  margin: 0;
  font-size: 20px;
  transition: color 0.2s ease;
}

.insights-card__excerpt {
  margin: 0;
  color: rgba(247, 242, 236, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

.insights-subscribe-form {
  max-width: 560px;
  margin-top: 20px;
}

.insights-subscribe-form__fields {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 10px;
}

.insights-subscribe-form input[type="email"] {
  padding: 12px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.insights-subscribe-note {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(247, 242, 236, 0.6);
}

.insights-card:hover .insights-card__media img,
.insights-card:focus-within .insights-card__media img {
  transform: scale(1.03);
}

.insights-card:hover .insights-card__title,
.insights-card:focus-within .insights-card__title {
  color: rgba(241, 109, 2, 0.92);
}

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

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .insights-featured-card__body {
    padding: 20px 22px 24px;
  }

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

  .insights-subscribe-form__fields {
    grid-template-columns: 1fr;
  }
}

.about-story-copy,
.about-culture-copy,
.about-cta-copy {
  max-width: 640px;
}

.about-story-copy p,
.about-culture-copy p,
.about-cta-copy p {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.about-story-copy p + p,
.about-culture-copy p + p {
  margin-top: 16px;
}

.about-note-card {
  padding: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(241, 109, 2, 0.08), rgba(16, 16, 16, 0.95));
}

.about-note-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
}

.about-note-card p {
  color: rgba(247, 242, 236, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.about-collage {
  align-items: stretch;
}

.about-collage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-collage-grid .image-frame:first-child {
  grid-column: span 2;
  min-height: 320px;
}

.about-collage-grid .image-frame:nth-child(2),
.about-collage-grid .image-frame:nth-child(3) {
  min-height: 220px;
}

.about-cta {
  padding: 36px;
  border: 1px solid rgba(241, 109, 2, 0.2);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(16, 16, 16, 0.96));
}

.about-cta-copy .btn-primary {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .about-story,
  .about-collage,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .page-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-frame--hero {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .page-stat-grid,
  .about-collage-grid {
    grid-template-columns: 1fr;
  }

  .about-collage-grid .image-frame:first-child {
    grid-column: auto;
  }

  .page-stat strong,
  .page-stat-card strong {
    font-size: 34px;
  }

  .about-cta {
    padding: 28px 24px;
  }
}

.page-services .page-hero {
  padding-bottom: 56px;
}

.services-hero-grid,
.services-proof,
.services-framework,
.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.services-hero-map {
  display: grid;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
}

.services-hero-map__item {
  display: grid;
  gap: 6px;
}

.services-hero-map__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.services-hero-map__num {
  color: rgba(241, 109, 2, 0.9);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
}

.services-hero-map__title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

.services-hero-map__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.services-hero-map__list li {
  font-size: 13px;
}

.services-hero-map__list .inline-service-link {
  font-weight: 500;
}

.services-hero-copy .page-title,
.services-framework-copy h2,
.services-proof-copy h2,
.services-cta-copy h2 {
  max-width: 13ch;
}

.services-hero-copy .page-intro {
  margin-bottom: 28px;
}

.services-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.services-badge {
  padding: 8px 12px;
  border: 1px solid rgba(241, 109, 2, 0.24);
  background: rgba(241, 109, 2, 0.08);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.services-section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.services-section-head p,
.services-framework-copy p,
.services-proof-copy p,
.services-cta-copy p,
.service-feature__body p,
.services-mini-card p {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.service-feature-list {
  display: grid;
  gap: 24px;
}

.service-feature {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
}

.service-feature__number {
  color: rgba(241, 109, 2, 0.9);
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.service-feature__body h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
}

.service-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.service-feature__meta span {
  padding: 7px 10px;
  border: 1px solid rgba(241, 109, 2, 0.2);
  background: rgba(241, 109, 2, 0.06);
  color: rgba(247, 242, 236, 0.86);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.service-feature__link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.service-feature__link:hover {
  color: var(--teal-light);
}

.service-feature__visual {
  display: grid;
  gap: 10px;
}

.service-feature__visual .image-frame {
  min-height: 100%;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.services-mini-card {
  padding: 24px;
  background: var(--charcoal);
}

.services-mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.services-mini-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.services-proof-list,
.services-framework-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.services-proof-list li,
.services-framework-list li {
  padding: 18px 18px 18px 22px;
  border-left: 2px solid rgba(241, 109, 2, 0.3);
  background: rgba(241, 109, 2, 0.06);
  color: rgba(247, 242, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

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

.services-image-grid .image-frame:first-child {
  grid-column: span 2;
  min-height: 300px;
}

.services-image-grid .image-frame:nth-child(2),
.services-image-grid .image-frame:nth-child(3) {
  min-height: 220px;
}

.services-cta {
  padding: 36px;
  border: 1px solid rgba(241, 109, 2, 0.2);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(16, 16, 16, 0.96));
}

.services-cta-copy .btn-primary {
  margin-top: 28px;
}

@media (max-width: 1200px) {
  .service-feature {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .service-feature__visual {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .services-hero-grid,
  .services-proof,
  .services-framework,
  .services-cta {
    grid-template-columns: 1fr;
  }

  .services-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-mini-grid,
  .services-image-grid,
  .service-feature {
    grid-template-columns: 1fr;
  }

  .services-image-grid .image-frame:first-child {
    grid-column: auto;
  }

  .service-feature {
    padding: 24px;
  }

  .service-feature__number {
    font-size: 38px;
  }

  .service-feature__body h3 {
    font-size: 28px;
  }

  .services-cta {
    padding: 28px 24px;
  }
}

/* Services hub (services.php), category stacks + standalone flagship */
.page-services-hub .services-hub-section .services-section-intro {
  margin-bottom: 4px;
}

.services-hub-group {
  margin-top: 56px;
}

.services-hub-group:first-of-type {
  margin-top: 36px;
}

.services-hub-group-head {
  max-width: 760px;
}

.services-hub-group-title {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.2;
}

.services-hub-group-lead {
  margin: 0;
  color: rgba(242, 251, 250, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.services-hub-section .services-hub-group .services-grid {
  margin-top: 24px;
}

.services-flagship-section .services-section-intro {
  margin-bottom: 8px;
}

.services-flagship-section .service-card--consultation-flagship {
  margin-top: 12px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.page-services-hub .services-together-section .process-section-intro {
  max-width: 560px;
}

.service-badge.service-badge--core-service {
  font-size: 8px;
  letter-spacing: 1.3px;
}

.services-together-section--pillars {
  background: var(--black);
}

.services-together-lead {
  margin-top: 20px;
  max-width: 720px;
  color: rgba(247, 242, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.services-together-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--border);
}

.services-together-pillar {
  padding: 28px 28px 32px;
  background: var(--charcoal);
  transition: background 0.35s ease;
}

.services-together-pillar:hover {
  background: rgba(241, 109, 2, 0.06);
}

.services-together-pillar__title {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-together-pillar__text {
  margin: 0;
  color: rgba(242, 251, 250, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.consultation-flagship__cta--dual .consultation-flagship__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.consultation-flagship__btn-secondary {
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-grid--hub-values {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px 28px;
}

.services-hub-why .why-item--no-icon {
  padding-top: 4px;
  border-top: 1px solid rgba(241, 109, 2, 0.22);
}

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

  .consultation-flagship__cta--dual .consultation-flagship__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .consultation-flagship__btn-secondary {
    text-align: center;
  }
}

.inline-service-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 196, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.inline-service-link:hover,
.inline-service-link:focus-visible {
  color: var(--teal-light);
  text-decoration-color: rgba(0, 212, 196, 0.65);
}

.page-services-hub .services-hub-section .service-card--hub {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.4s ease;
}

.page-services-hub .services-hub-section .service-card--hub:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.page-services-hub .services-hub-section .service-card--hub:focus-within {
  outline: 1px solid rgba(241, 109, 2, 0.45);
  outline-offset: 3px;
}

.page-services-hub .service-faq-section .page-card > p {
  margin: 12px 0 0;
}

/* Services hub, system-driven layout (services.php redesign) */
.services-system .svc-sys {
  --svc-sys-pad-x: clamp(20px, 4vw, 48px);
  --svc-sys-section-y: clamp(80px, 11vw, 120px);
  --svc-sys-max: 1200px;
  --svc-cat-brand: rgba(0, 212, 196, 0.85);
  --svc-cat-content: rgba(241, 109, 2, 0.88);
  --svc-cat-performance: rgba(255, 186, 92, 0.9);
  --svc-cat-system: rgba(130, 165, 255, 0.82);
}

.services-system .svc-sys-section {
  padding: var(--svc-sys-section-y) var(--svc-sys-pad-x);
  background: var(--black);
}

.services-system .svc-sys-section--alt {
  background: linear-gradient(180deg, #0b0b0b 0%, #060606 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.services-system .svc-sys-section__head {
  max-width: var(--svc-sys-max);
  margin: 0 auto;
}

.services-system .svc-sys-section__head--row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 40px;
  align-items: end;
}

.services-system .svc-sys-section__label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.services-system .svc-sys-section__title {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.services-system .svc-sys-section__title em {
  color: var(--teal);
  font-style: italic;
  font-weight: 400;
}

.services-system .svc-sys-section__title--lg {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
}

.services-system .svc-sys-section__lead {
  margin: 0;
  max-width: 52ch;
  color: rgba(242, 251, 250, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.services-system .svc-sys-section__lead--one-line {
  max-width: 28ch;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgba(242, 251, 250, 0.45);
}

.services-system .svc-sys-section__lead--narrow {
  max-width: 32ch;
  margin-left: auto;
  text-align: right;
  font-size: 14px;
  line-height: 1.45;
}

.services-system .svc-sys-section__lead--tight {
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.5;
}

/* Hero */
.services-system .svc-sys-hero {
  position: relative;
  padding: 32px var(--svc-sys-pad-x) clamp(56px, 8vw, 88px);
  overflow: hidden;
}

.services-system .svc-sys-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(241, 109, 2, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 212, 196, 0.06), transparent 50%),
    linear-gradient(165deg, #070707 0%, #000 45%, #050505 100%);
  pointer-events: none;
}

.services-system .svc-sys-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}

.services-system .svc-sys-hero__eyebrow {
  margin: 0 0 14px;
  color: rgba(0, 212, 196, 0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.services-system .svc-sys-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
}

.services-system .svc-sys-hero__title-accent {
  display: block;
  color: var(--teal);
  font-style: italic;
}

.services-system .svc-sys-hero__lead {
  margin: 0 0 32px;
  max-width: 36ch;
  color: rgba(247, 242, 236, 0.66);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.services-system .svc-sys-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.services-system .svc-sys-hero__cta-primary {
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 2px;
}

.services-system .svc-sys-hero__cta-secondary {
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 2px;
}

.services-system .svc-sys-hero__preview {
  padding: 28px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(8, 8, 8, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.services-system .svc-sys-hero__preview-label {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
}

.services-system .svc-sys-flow-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
}

.services-system .svc-sys-flow-preview__arrow {
  color: rgba(241, 109, 2, 0.55);
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

.services-system .svc-sys-flow-preview__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(242, 251, 250, 0.88);
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.services-system .svc-sys-flow-preview__node:hover,
.services-system .svc-sys-flow-preview__node:focus-visible {
  border-color: rgba(241, 109, 2, 0.45);
  background: rgba(241, 109, 2, 0.08);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.services-system .svc-sys-flow-preview__node--accent {
  border-color: rgba(0, 212, 196, 0.35);
  color: var(--teal-light);
}

.services-system .svc-sys-flow-preview__node--accent:hover,
.services-system .svc-sys-flow-preview__node--accent:focus-visible {
  border-color: rgba(0, 212, 196, 0.55);
  background: rgba(0, 212, 196, 0.08);
  color: var(--teal-light);
}

.services-system .svc-sys-hero__preview-note {
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(242, 251, 250, 0.38);
  font-weight: 300;
}

/* System pillars */
.services-system .svc-sys-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--svc-sys-max);
  margin: clamp(36px, 5vw, 52px) auto 0;
  background: rgba(255, 255, 255, 0.06);
}

.services-system .svc-sys-pillar-card {
  padding: 28px 24px 30px;
  background: var(--charcoal);
  border-top: 3px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.services-system .svc-sys-pillar-card:nth-child(1) {
  border-top-color: rgba(0, 212, 196, 0.35);
}

.services-system .svc-sys-pillar-card:nth-child(2) {
  border-top-color: rgba(241, 109, 2, 0.4);
}

.services-system .svc-sys-pillar-card:nth-child(3) {
  border-top-color: rgba(255, 186, 92, 0.4);
}

.services-system .svc-sys-pillar-card:nth-child(4) {
  border-top-color: rgba(130, 165, 255, 0.4);
}

.services-system .svc-sys-pillar-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.services-system .svc-sys-pillar-card__title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
}

.services-system .svc-sys-pillar-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.5);
  font-weight: 300;
}

/* Service cards */
.services-system .svc-sys-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  max-width: var(--svc-sys-max);
  margin: clamp(40px, 5vw, 56px) auto 0;
}

.services-system .svc-sys-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  border-left-width: 3px;
  border-left-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(168deg, rgba(24, 24, 24, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 16px 48px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.4s ease;
}

.services-system .svc-sys-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.services-system .svc-sys-card--brand {
  border-left-color: var(--svc-cat-brand);
  background: linear-gradient(168deg, rgba(0, 212, 196, 0.07), rgba(8, 10, 12, 0.98));
}

.services-system .svc-sys-card--content {
  border-left-color: var(--svc-cat-content);
  background: linear-gradient(168deg, rgba(241, 109, 2, 0.07), rgba(10, 8, 6, 0.98));
}

.services-system .svc-sys-card--performance {
  border-left-color: var(--svc-cat-performance);
  background: linear-gradient(168deg, rgba(255, 186, 92, 0.06), rgba(12, 10, 8, 0.98));
}

.services-system .svc-sys-card--system {
  border-left-color: var(--svc-cat-system);
  background: linear-gradient(168deg, rgba(130, 165, 255, 0.07), rgba(8, 9, 14, 0.98));
}

.services-system .svc-sys-card--brand::after,
.services-system .svc-sys-card--content::after,
.services-system .svc-sys-card--performance::after,
.services-system .svc-sys-card--system::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 6px 0 100%;
  pointer-events: none;
  opacity: 0.12;
}

.services-system .svc-sys-card--brand::after {
  background: radial-gradient(circle at top right, rgba(0, 212, 196, 0.5), transparent 70%);
}

.services-system .svc-sys-card--content::after {
  background: radial-gradient(circle at top right, rgba(241, 109, 2, 0.45), transparent 70%);
}

.services-system .svc-sys-card--performance::after {
  background: radial-gradient(circle at top right, rgba(255, 186, 92, 0.45), transparent 70%);
}

.services-system .svc-sys-card--system::after {
  background: radial-gradient(circle at top right, rgba(130, 165, 255, 0.45), transparent 70%);
}

.services-system .svc-sys-card:hover,
.services-system .svc-sys-card:focus-within {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 64px rgba(0, 0, 0, 0.52);
}

.services-system .svc-sys-card--brand:hover,
.services-system .svc-sys-card--brand:focus-within {
  border-color: rgba(0, 212, 196, 0.22);
}

.services-system .svc-sys-card--content:hover,
.services-system .svc-sys-card--content:focus-within {
  border-color: rgba(241, 109, 2, 0.25);
}

.services-system .svc-sys-card--performance:hover,
.services-system .svc-sys-card--performance:focus-within {
  border-color: rgba(255, 186, 92, 0.28);
}

.services-system .svc-sys-card--system:hover,
.services-system .svc-sys-card--system:focus-within {
  border-color: rgba(130, 165, 255, 0.28);
}

.services-system .svc-sys-card:hover::before,
.services-system .svc-sys-card:focus-within::before {
  opacity: 1;
}

.services-system .svc-sys-card--core {
  box-shadow:
    0 0 0 1px rgba(0, 212, 196, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 16px 48px rgba(0, 0, 0, 0.38);
}

.services-system .svc-sys-card--core:hover,
.services-system .svc-sys-card--core:focus-within {
  box-shadow:
    0 0 0 1px rgba(0, 212, 196, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 64px rgba(0, 0, 0, 0.52);
}

.services-system .svc-sys-card__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  padding: 6px 11px;
  margin-bottom: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.62);
  background: rgba(0, 0, 0, 0.25);
}

.services-system .svc-sys-card--brand .svc-sys-card__tag {
  border-color: rgba(0, 212, 196, 0.25);
  color: rgba(180, 245, 236, 0.85);
}

.services-system .svc-sys-card--content .svc-sys-card__tag {
  border-color: rgba(241, 109, 2, 0.28);
  color: rgba(255, 210, 180, 0.88);
}

.services-system .svc-sys-card--performance .svc-sys-card__tag {
  border-color: rgba(255, 186, 92, 0.3);
  color: rgba(255, 224, 186, 0.9);
}

.services-system .svc-sys-card--system .svc-sys-card__tag {
  border-color: rgba(130, 165, 255, 0.28);
  color: rgba(200, 210, 255, 0.9);
}

.services-system .svc-sys-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 4px 8px;
  border: 1px solid rgba(241, 109, 2, 0.35);
  border-radius: 2px;
  background: rgba(241, 109, 2, 0.08);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.75);
}

.services-system .svc-sys-card__num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.services-system .svc-sys-card--core .svc-sys-card__num {
  right: 88px;
}

.services-system .svc-sys-card__icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--teal);
  filter: drop-shadow(0 2px 12px rgba(0, 212, 196, 0.15));
}

.services-system .svc-sys-card--brand .svc-sys-card__icon {
  color: rgba(100, 230, 215, 0.95);
  filter: drop-shadow(0 2px 14px rgba(0, 212, 196, 0.2));
}

.services-system .svc-sys-card--content .svc-sys-card__icon {
  color: rgba(255, 160, 100, 0.95);
  filter: drop-shadow(0 2px 14px rgba(241, 109, 2, 0.18));
}

.services-system .svc-sys-card--performance .svc-sys-card__icon {
  color: rgba(255, 206, 140, 0.98);
  filter: drop-shadow(0 2px 14px rgba(255, 186, 92, 0.2));
}

.services-system .svc-sys-card--system .svc-sys-card__icon {
  color: rgba(170, 195, 255, 0.95);
  filter: drop-shadow(0 2px 14px rgba(130, 165, 255, 0.2));
}

.services-system .svc-sys-card__name {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.01em;
}

.services-system .svc-sys-card__outcome {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(242, 251, 250, 0.48);
  font-weight: 300;
}

.services-system .svc-sys-card__cta {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 196, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.services-system .svc-sys-card__cta:hover,
.services-system .svc-sys-card__cta:focus-visible {
  color: var(--teal-light);
  border-color: rgba(0, 212, 196, 0.6);
}

/* Connect flow */
.services-system .svc-sys-connect-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: clamp(36px, 5vw, 48px) auto 0;
}

.services-system .svc-sys-connect-flow__step {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
}

.services-system .svc-sys-connect-flow__chev {
  width: 28px;
  height: 2px;
  margin: 0 4px;
  background: linear-gradient(90deg, rgba(241, 109, 2, 0.5), rgba(241, 109, 2, 0.1));
  position: relative;
}

.services-system .svc-sys-connect-flow__chev::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(241, 109, 2, 0.55);
}

.services-system .svc-sys-connect-flow__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(6, 6, 6, 0.98));
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.services-system .svc-sys-connect-flow__card:hover,
.services-system .svc-sys-connect-flow__card:focus-visible {
  border-color: rgba(0, 212, 196, 0.35);
  background: rgba(0, 212, 196, 0.06);
  transform: translateY(-4px);
  outline: none;
}

.services-system .svc-sys-connect-flow__label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.services-system .svc-sys-connect-flow__blurb {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.42);
}

/* Consultation offer */
.services-system .svc-sys-offer {
  padding-top: clamp(64px, 9vw, 96px);
  padding-bottom: clamp(64px, 9vw, 96px);
}

.services-system .svc-sys-offer-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 40px 44px;
  border: 1px solid rgba(241, 109, 2, 0.28);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(8, 8, 8, 0.96));
  overflow: hidden;
}

.services-system .svc-sys-offer-card__mark {
  position: absolute;
  top: -8px;
  right: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 14vw, 120px);
  line-height: 1;
  color: rgba(241, 109, 2, 0.08);
  pointer-events: none;
}

.services-system .svc-sys-offer-card__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
}

.services-system .svc-sys-offer-card__title {
  margin: 0 0 14px;
  max-width: 520px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.services-system .svc-sys-offer-card__lead {
  margin: 0 0 22px;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.55);
  font-weight: 300;
}

.services-system .svc-sys-offer-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.services-system .svc-sys-offer-card__tags li {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
}

.services-system .svc-sys-offer-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.services-system .svc-sys-offer-card__actions .btn-primary {
  padding: 15px 26px;
  font-size: 11px;
  letter-spacing: 2px;
}

.services-system .svc-sys-offer-card__actions .btn-secondary {
  padding: 15px 26px;
  font-size: 11px;
  letter-spacing: 2px;
}

/* Why grid */
.services-system .svc-sys-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--svc-sys-max);
  margin: clamp(36px, 5vw, 48px) auto 0;
  background: rgba(255, 255, 255, 0.06);
}

.services-system .svc-sys-why-card {
  padding: 32px 28px;
  background: var(--charcoal);
}

.services-system .svc-sys-why-card__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.services-system .svc-sys-why-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.48);
  font-weight: 300;
}

/* FAQ accordion */
.services-system .svc-sys-accordion {
  max-width: 720px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-system .svc-sys-accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-system .svc-sys-accordion__summary {
  min-height: 52px;
  padding: 18px 40px 18px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  position: relative;
}

.services-system .svc-sys-accordion__summary::-webkit-details-marker {
  display: none;
}

.services-system .svc-sys-accordion__summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(241, 109, 2, 0.85);
  transition: transform 0.25s ease;
}

.services-system .svc-sys-accordion__item[open] .svc-sys-accordion__summary::after {
  content: "–";
  transform: translateY(-50%) rotate(0deg);
}

.services-system .svc-sys-accordion__body {
  padding: 0 4px 22px;
}

.services-system .svc-sys-accordion__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(242, 251, 250, 0.48);
  font-weight: 300;
}

/* Final CTA */
.services-system .svc-sys-final-cta.cta-section {
  background: linear-gradient(180deg, #080808, #000);
  border-top: 1px solid rgba(241, 109, 2, 0.15);
}

.services-system .svc-sys-final-cta .svc-sys-final-cta__eyebrow {
  position: relative;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
}

.services-system .svc-sys-final-cta h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.services-system .svc-sys-final-cta .svc-sys-final-cta__sub {
  max-width: 42ch;
}

@media (max-width: 1024px) {
  .services-system .svc-sys-section__head--row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-system .svc-sys-section__lead--narrow {
    margin-left: 0;
    text-align: left;
    max-width: none;
  }

  .services-system .svc-sys-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-system .svc-sys-hero__inner {
    grid-template-columns: 1fr;
  }

  .services-system .svc-sys-hero__preview {
    max-width: 520px;
  }

  .services-system .svc-sys-connect-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .services-system .svc-sys-connect-flow__step {
    flex-direction: column;
    width: 100%;
  }

  .services-system .svc-sys-connect-flow__card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .services-system .svc-sys-connect-flow__chev {
    width: 2px;
    height: 20px;
    margin: 10px auto;
    background: linear-gradient(180deg, rgba(241, 109, 2, 0.5), rgba(241, 109, 2, 0.1));
  }

  .services-system .svc-sys-connect-flow__chev::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
    border: 5px solid transparent;
    border-top-color: rgba(241, 109, 2, 0.55);
    border-left-color: transparent;
  }
}

@media (max-width: 640px) {
  .services-system .svc-sys {
    --svc-sys-section-y: clamp(56px, 14vw, 80px);
  }

  .services-system .svc-sys-hero {
    padding-bottom: clamp(44px, 10vw, 64px);
  }

  .services-system .svc-sys-pillar-grid {
    grid-template-columns: 1fr;
  }

  .services-system .svc-sys-why-grid {
    grid-template-columns: 1fr;
  }

  .services-system .svc-sys-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-system .svc-sys-card {
    padding: 24px 22px 22px 24px;
  }

  .services-system .svc-sys-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-system .svc-sys-hero__cta-primary,
  .services-system .svc-sys-hero__cta-secondary {
    text-align: center;
    justify-content: center;
  }

  .services-system .svc-sys-offer-card {
    padding: 32px 24px 36px;
  }

  .services-system .svc-sys-final-cta.cta-section {
    padding: clamp(72px, 18vw, 120px) 20px;
  }

  .services-system .svc-sys-final-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-system .svc-sys-final-cta .cta-buttons .btn-primary,
  .services-system .svc-sys-final-cta .cta-buttons .btn-outline {
    width: 100%;
    text-align: center;
  }

  .services-system .svc-sys-section__title--lg {
    font-size: clamp(26px, 8vw, 36px);
  }
}

/* 360° Marketing Consultation landing, premium accents, includes tags outside flagship card */
.page-consultation-360 .consultation-360-hero .work-hero-copy {
  position: relative;
  padding-top: 12px;
}

.page-consultation-360 .consultation-360-hero .work-hero-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  border-radius: 1px;
  background: linear-gradient(90deg, rgba(241, 109, 2, 0.95), rgba(241, 109, 2, 0.12));
}

.consultation-360-includes .spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto 36px;
  padding: 0;
  list-style: none;
}

.consultation-360-includes .spotlight-tags li {
  padding: 7px 12px;
  border: 1px solid rgba(241, 109, 2, 0.28);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(242, 251, 250, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.why-grid--consultation {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .why-grid--consultation {
    grid-template-columns: 1fr;
  }
}

.consultation-360-hero__support {
  margin-top: 24px;
  max-width: 42ch;
  color: rgba(242, 251, 250, 0.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.55;
  text-transform: uppercase;
}

.consultation-why-bullets-section__list {
  max-width: 720px;
  margin-top: 4px;
}

.consultation-360-trust-line {
  margin: 44px auto 0;
  max-width: 54ch;
  text-align: center;
  color: rgba(247, 242, 236, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.consultation-360-breadcrumb-wrap {
  padding-top: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-consultation-360 .service-breadcrumb {
  padding-bottom: 12px;
}

.consultation-360-trust-row {
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.94);
}

.consultation-360-trust-row__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 48px 18px;
}

.consultation-360-trust-row__item {
  padding: 6px 14px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  border-radius: 2px;
  background: rgba(241, 109, 2, 0.06);
  color: rgba(247, 242, 236, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.3;
  text-transform: uppercase;
}

.consultation-360-trust-row__sep {
  width: 1px;
  height: 18px;
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 700px) {
  .consultation-360-trust-row__inner {
    flex-direction: column;
    padding: 16px 24px 18px;
  }

  .consultation-360-trust-row__sep {
    display: none;
  }
}

.page-consultation-360 .consultation-360-cta .btn-primary {
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(241, 109, 2, 0.18);
}

.page-consultation-360 .consultation-360-cta .btn-outline {
  border-width: 1.5px;
  border-color: rgba(241, 109, 2, 0.35);
}

.page-consultation-360 .consultation-360-cta .btn-outline:hover,
.page-consultation-360 .consultation-360-cta .btn-outline:focus-visible {
  border-color: rgba(241, 109, 2, 0.55);
}

/* ,  360° Consultation, premium landing (v2) ,  */
.page-consultation-360-landing.page-consultation-360 .page-consultation-360-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.c360-landing {
  background: var(--bg, #0a0a0a);
}

.c360-breadcrumb {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.c360-breadcrumb .service-breadcrumb {
  padding-bottom: 14px;
}

/* Hero: landing-first, high visual distinction */
.c360-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.c360-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(241, 109, 2, 0.18), transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(0, 212, 196, 0.09), transparent 48%),
    linear-gradient(165deg, #0f0f0f 0%, #060606 45%, #0a0a0a 100%);
}

.c360-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 100% 44px;
  opacity: 0.4;
  mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 100%);
}

.c360-hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.c360-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.c360-hero__orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -12%;
  right: -8%;
  background: rgba(241, 109, 2, 0.35);
}

.c360-hero__orb--2 {
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: -5%;
  background: rgba(0, 212, 196, 0.12);
}

.c360-hero__orb--3 {
  width: 120px;
  height: 120px;
  top: 42%;
  left: 35%;
  background: rgba(241, 109, 2, 0.2);
  filter: blur(40px);
  opacity: 0.4;
}

.c360-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 48px 52px;
}

.c360-hero__copy {
  position: relative;
  padding-left: 22px;
}

.c360-hero__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(241, 109, 2, 0.95), rgba(241, 109, 2, 0.12));
}

.c360-hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.c360-hero__badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 2px;
  border: 1px solid rgba(241, 109, 2, 0.45);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.18), rgba(241, 109, 2, 0.04));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.92);
}

.c360-hero__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.5);
}

.c360-hero__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  max-width: 12ch;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.45);
}

.c360-hero__lead {
  margin: 14px 0 0;
  max-width: 34ch;
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.66);
}

.c360-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 22px;
}

.c360-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 220px);
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(241, 109, 2, 0.22);
}

.c360-hero__cta-primary:hover,
.c360-hero__cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 rgba(0, 0, 0, 0.3),
    0 18px 48px rgba(241, 109, 2, 0.3);
}

.c360-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(247, 242, 236, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c360-hero__cta-secondary:hover {
  border-color: rgba(241, 109, 2, 0.4);
  background: rgba(241, 109, 2, 0.08);
}

.c360-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.c360-hero__chips li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(247, 242, 236, 0.72);
}

.c360-hero__trust {
  margin: 18px 0 0;
  max-width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.38);
  line-height: 1.45;
}

.c360-hero__aside {
  position: relative;
  padding: 12px;
}

.c360-hero__visual-ring {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.35), rgba(0, 212, 196, 0.12), transparent 60%);
  opacity: 0.65;
  filter: blur(0.5px);
  transform: rotate(-1deg) scale(1.02);
  pointer-events: none;
}

.c360-hero__visual {
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(241, 109, 2, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.c360-hero__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transform: scale(1.02);
}

.c360-hero__panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 2px;
  border: 1px solid rgba(241, 109, 2, 0.4);
  background: linear-gradient(165deg, rgba(10, 10, 10, 0.94), rgba(10, 10, 10, 0.82));
  backdrop-filter: blur(12px);
}

.c360-hero__panel-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.9);
  margin-bottom: 2px;
}

.c360-hero__panel-stat {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
}

.c360-hero__panel-sub {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.55);
}

/* Sections */
.c360-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 48px;
}

.c360-section--alt {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.5) 0%, rgba(10, 10, 10, 0.92) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.c360-section__head {
  margin-bottom: 28px;
}

.c360-section__head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px 32px;
  align-items: start;
}

.c360-section__head--split .c360-section__intro--narrow {
  justify-self: end;
  text-align: right;
  max-width: 28ch;
}

@media (max-width: 700px) {
  .c360-section__head--split .c360-section__intro--narrow {
    justify-self: start;
    text-align: left;
  }
}

.c360-section__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.88);
}

.c360-section__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
  max-width: 22ch;
}

.c360-section__intro {
  margin: 12px 0 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.62);
}

.c360-section__intro--narrow {
  margin-top: 0;
  max-width: 36ch;
}

.c360-section__intro--tight {
  margin-top: 8px;
  max-width: 40ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.55);
}

/* Value grid */
.c360-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.c360-value-card {
  padding: 18px 18px 20px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.c360-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 109, 2, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.c360-value-card__title {
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.95);
}

.c360-value-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.58);
}

/* Override global .page-card h3 heading style on C360 cards */
.page-consultation-360-landing .c360-value-card.page-card > h3.c360-value-card__title {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(247, 242, 236, 0.96);
}

.page-consultation-360-landing .c360-who-card.page-card > h3.c360-who-card__title {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(247, 242, 236, 0.96);
}

.page-consultation-360-landing .c360-value-card.page-card > p,
.page-consultation-360-landing .c360-who-card.page-card > p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.58);
}

.page-consultation-360-landing .c360-value-card.page-card,
.page-consultation-360-landing .c360-who-card.page-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  padding: 20px 20px 22px;
}

/* Who */
.c360-who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.c360-who-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.c360-who-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.58);
}

.c360-who-note {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.52);
}

.c360-who-note strong {
  color: rgba(247, 242, 236, 0.82);
}

/* Accordion */
.c360-accordion {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.c360-accordion__item {
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.c360-accordion__item[open] {
  border-color: rgba(241, 109, 2, 0.28);
  background: rgba(241, 109, 2, 0.04);
}

.c360-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.92);
  position: relative;
  padding-right: 40px;
}

.c360-accordion__summary:focus-visible {
  outline: 2px solid rgba(241, 109, 2, 0.45);
  outline-offset: 2px;
}

.c360-accordion__summary::-webkit-details-marker {
  display: none;
}

.c360-accordion__summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
  color: rgba(241, 109, 2, 0.85);
  transition: transform 0.2s ease;
}

.c360-accordion__item[open] .c360-accordion__summary::after {
  content: "–";
}

.c360-accordion__body {
  padding: 0 18px 14px;
}

.c360-accordion__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247, 242, 236, 0.55);
}

.c360-included-cta {
  margin: 24px auto 0;
  max-width: 720px;
  width: 100%;
}

.c360-included-cta__btn {
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Steps */
.c360-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.c360-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.c360-step__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.75);
  letter-spacing: 0.06em;
}

.c360-step__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.92);
}

.c360-step__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(247, 242, 236, 0.52);
}

/* Intake, light, premium */
.c360-intake__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px 40px;
  align-items: start;
}

.c360-intake .c360-section__title {
  max-width: 14ch;
  margin-top: 0;
}

.page-consultation-360-landing .c360-intake__intro .c360-section__label {
  margin-bottom: 8px;
}

.c360-intake__lead {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.58);
  max-width: 32ch;
}

.c360-intake__microline {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
  line-height: 1.5;
}

.c360-intake__microsep {
  margin: 0 0.35em;
  opacity: 0.5;
}

.c360-intake__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 212, 196, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 196, 0.3);
}

.c360-intake__link:hover {
  color: var(--teal-light);
  border-bottom-color: rgba(0, 212, 196, 0.5);
}

.c360-intake__surface {
  padding: 22px 24px 24px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.c360-intake__surface--success {
  border-color: rgba(0, 212, 196, 0.28);
  background: rgba(0, 212, 196, 0.05);
}

.c360-intake__fieldset {
  margin-top: 0;
}

.c360-intake__fieldset + .c360-intake__fieldset {
  margin-top: 8px;
}

.c360-intake-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 0 10px;
  margin: 0 0 2px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.38);
  border-bottom: none;
}

.c360-intake-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: rgba(241, 109, 2, 0.2);
  color: rgba(241, 109, 2, 0.95);
  font-size: 11px;
  font-weight: 800;
}

.c360-intake-optional {
  font-weight: 400;
  color: rgba(247, 242, 236, 0.45);
  font-size: 12px;
}

.page-consultation-360-landing .c360-intake-form .contact-field {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: transparent;
  gap: 6px;
}

.page-consultation-360-landing .c360-intake-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 0;
}

.page-consultation-360-landing .c360-intake-form .contact-form-errors {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 2px;
}

.page-consultation-360-landing .c360-intake-form .contact-field label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 236, 0.55);
}

.page-consultation-360-landing .c360-intake-form input[type="text"],
.page-consultation-360-landing .c360-intake-form input[type="email"],
.page-consultation-360-landing .c360-intake-form select,
.page-consultation-360-landing .c360-intake-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  font-size: 15px;
}

.page-consultation-360-landing .c360-intake-form textarea {
  min-height: 76px;
  resize: vertical;
}

.page-consultation-360-landing .c360-intake-form input:focus,
.page-consultation-360-landing .c360-intake-form select:focus,
.page-consultation-360-landing .c360-intake-form textarea:focus {
  border-color: rgba(241, 109, 2, 0.45);
  outline: none;
  box-shadow: 0 0 0 1px rgba(241, 109, 2, 0.15);
}

.c360-intake-actions {
  margin-top: 4px;
}

.c360-intake-submit {
  width: 100%;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(241, 109, 2, 0.18);
}

.c360-intake-submit:hover {
  transform: translateY(-1px);
}

.c360-intake-foot {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(247, 242, 236, 0.45);
}

.c360-intake__success-title {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

/* Final CTA */
.c360-final-cta__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.85);
}

.c360-final-cta .c360-final-cta__title,
.c360-final-cta h2#c360-h2-cta {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.c360-final-cta__sub {
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.68);
}

.page-consultation-360-landing .c360-final-cta .btn-primary {
  min-width: min(100%, 260px);
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.35),
    0 14px 44px rgba(241, 109, 2, 0.2);
}

.page-consultation-360-landing .c360-final-cta .btn-outline {
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-consultation-360-landing .c360-final-cta.cta-section {
  padding: 100px 48px 88px;
}

.page-consultation-360-landing .c360-final-cta.cta-section h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.page-consultation-360-landing .c360-final-cta .c360-final-cta__sub {
  margin-bottom: 28px;
}

.page-consultation-360-landing .c360-final-cta .cta-buttons {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 14px;
}

@media (max-width: 1024px) {
  .c360-hero__inner {
    grid-template-columns: 1fr;
    padding: 24px 36px 44px;
  }

  .c360-hero__aside {
    max-width: 480px;
    margin: 0 auto;
  }

  .c360-hero__copy {
    padding-top: 4px;
  }

  .c360-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c360-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c360-section {
    padding: 52px 36px;
  }

  .c360-breadcrumb {
    padding-left: 36px;
    padding-right: 36px;
  }

  .c360-intake__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .c360-hero__inner {
    padding: 20px 20px 40px;
  }

  .c360-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .c360-hero__cta-primary,
  .c360-hero__cta-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .c360-hero__chips {
    gap: 6px;
  }

  .c360-hero__chips li {
    font-size: 11px;
    padding: 5px 10px;
  }

  .c360-section__head--split {
    grid-template-columns: 1fr;
  }

  .c360-value-grid {
    grid-template-columns: 1fr;
  }

  .c360-who-grid {
    grid-template-columns: 1fr;
  }

  .c360-step-list {
    grid-template-columns: 1fr;
  }

  .c360-section {
    padding: 44px 20px;
  }

  .c360-breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c360-intake__surface {
    padding: 18px 18px 20px;
  }

  .page-consultation-360-landing .c360-final-cta.cta-section {
    padding: 72px 20px 64px;
  }

  .page-consultation-360-landing .c360-intake-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.page-clients .page-hero {
  padding-bottom: 56px;
}

.clients-hero-grid,
.clients-proof-grid,
.clients-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 36px;
  align-items: center;
}

.clients-hero-copy .page-title,
.clients-proof-copy h2,
.clients-cta-card h2 {
  max-width: 13ch;
}

.clients-hero-copy .page-intro,
.clients-proof-copy p,
.clients-story .page-section-heading p,
.clients-sectors .page-section-heading p,
.clients-moments .page-section-heading p,
.clients-approach .page-section-heading p,
.clients-cta-card p,
.clients-sector-card p,
.clients-moment-copy p,
.clients-proof-quote p,
.clients-hero-note strong {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.clients-hero-figure,
.clients-story-media,
.clients-moment-card figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.clients-hero-figure img,
.clients-story-media img,
.clients-moment-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients-hero-figure {
  min-height: 560px;
}

.clients-hero-note {
  max-width: 280px;
  margin: -54px 0 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(241, 109, 2, 0.24);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(0, 0, 0, 0.98));
  position: relative;
  z-index: 1;
}

.clients-hero-note span,
.clients-moment-copy span,
.clients-roster-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.clients-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.clients-roster-card {
  display: grid;
  gap: 26px;
  padding: 32px;
  border: 1px solid rgba(241, 109, 2, 0.18);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(0, 0, 0, 0.98));
}

.clients-roster-head {
  display: grid;
  gap: 10px;
}

.clients-roster-head strong,
.clients-sector-card h3,
.clients-moment-copy h3,
.clients-cta-card h2,
.clients-proof-copy h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.clients-roster-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.clients-roster-list span,
.clients-sector-card li {
  padding: 10px 12px;
  border: 1px solid rgba(241, 109, 2, 0.18);
  background: rgba(241, 109, 2, 0.06);
  color: rgba(247, 242, 236, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.clients-story-media {
  min-height: 420px;
}

.clients-sector-grid,
.clients-moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.clients-sector-card,
.clients-moment-card,
.clients-proof-quote,
.page-clients .page-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
}

.clients-sector-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.clients-sector-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.clients-moment-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.clients-moment-card figure {
  min-height: 360px;
  border: 0;
}

.clients-moment-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.page-clients .page-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
}

.page-clients .page-card p {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.clients-proof-stack {
  display: grid;
  gap: 18px;
}

.clients-proof-quote {
  padding: 26px;
}

.clients-proof-quote footer {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.clients-proof-quote strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.clients-proof-quote span {
  color: rgba(247, 242, 236, 0.62);
  font-size: 14px;
}

.clients-cta-card {
  padding: 34px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(16, 16, 16, 0.96));
}

@media (max-width: 1024px) {
  .clients-hero-grid,
  .clients-proof-grid,
  .clients-cta-card,
  .clients-story-grid,
  .clients-moment-card {
    grid-template-columns: 1fr;
  }

  .clients-sector-grid,
  .clients-moment-grid {
    grid-template-columns: 1fr;
  }

  .clients-hero-figure {
    min-height: 440px;
  }

  .clients-moment-card figure {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .clients-roster-card,
  .clients-sector-card,
  .clients-proof-quote,
  .clients-cta-card,
  .clients-moment-copy {
    padding: 24px;
  }

  .clients-roster-head strong,
  .clients-sector-card h3,
  .clients-moment-copy h3,
  .clients-cta-card h2,
  .clients-proof-copy h2 {
    font-size: 28px;
  }

  .clients-hero-note {
    max-width: none;
    margin: 16px 0 0;
  }

  .clients-hero-figure {
    min-height: 340px;
  }
}

.page-work .page-hero {
  padding-bottom: 56px;
}

.page-work .page-hero .page-title {
  font-size: clamp(38px, 4.8vw, 72px);
}

.work-hero-grid,
.work-system-grid,
.work-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 36px;
  align-items: center;
}

.work-hero-copy .page-title,
.work-system-copy h2,
.work-cta-card h2 {
  max-width: 13ch;
}

.work-hero-copy .page-intro,
.work-system-copy p,
.work-featured .page-section-heading p,
.work-grid-section .page-section-heading p,
.work-formats .page-section-heading p,
.work-principles .page-section-heading p,
.work-cta-card p,
.work-feature-copy p,
.work-format-copy p,
.work-project-card p,
.page-work .page-card p,
.work-hero-note strong {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.work-hero-figure,
.work-feature-media,
.work-format-card figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.work-hero-figure img,
.work-feature-media img,
.work-format-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-hero-figure {
  min-height: 560px;
}

.work-hero-note {
  max-width: 300px;
  margin: -56px 0 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(241, 109, 2, 0.24);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(0, 0, 0, 0.98));
  position: relative;
  z-index: 1;
}

.work-hero-note span,
.work-feature-copy span,
.work-project-top span,
.work-format-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.work-feature-list,
.work-card-grid,
.work-format-grid,
.work-system-list,
.work-system-stack {
  display: grid;
  gap: 24px;
}

.work-feature-card,
.work-format-card,
.work-project-card,
.page-work .page-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
}

.work-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.work-feature-media {
  min-height: 360px;
  border: 0;
}

.work-feature-copy,
.work-format-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.work-feature-copy h3,
.work-system-copy h2,
.work-cta-card h2,
.work-format-copy h3 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.work-feature-copy h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.work-feature-copy ul,
.work-system-list {
  list-style: none;
}

.work-feature-copy li,
.work-system-list li {
  padding: 16px 16px 16px 20px;
  border-left: 2px solid rgba(241, 109, 2, 0.3);
  background: rgba(241, 109, 2, 0.06);
  color: rgba(247, 242, 236, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.work-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-project-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.work-project-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.work-project-top strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.work-project-card h3,
.page-work .page-card h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.12;
}

.work-project-card a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.work-project-card a:hover {
  color: var(--teal-light);
}

.work-format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-format-card {
  overflow: hidden;
}

.work-format-card figure {
  min-height: 320px;
  border: 0;
}

.work-system-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
}

.work-system-stack .image-frame {
  min-height: 180px;
}

.page-work .page-card {
  padding: 28px;
}

.work-cta-card {
  padding: 34px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(16, 16, 16, 0.96));
}

@media (max-width: 1200px) {
  .work-format-grid,
  .work-item-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .work-hero-grid,
  .work-system-grid,
  .work-cta-card,
  .work-feature-card,
  .work-system-visual {
    grid-template-columns: 1fr;
  }

  .work-card-grid {
    grid-template-columns: 1fr;
  }

  .work-hero-figure {
    min-height: 440px;
  }
}

@media (max-width: 768px) {
  .work-feature-copy,
  .work-format-copy,
  .work-project-card,
  .page-work .page-card,
  .work-cta-card {
    padding: 24px;
  }

  .work-feature-copy h3,
  .work-system-copy h2,
  .work-cta-card h2,
  .work-format-copy h3,
  .work-project-card h3,
  .page-work .page-card h3 {
    font-size: 28px;
  }

  .work-project-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-hero-note {
    max-width: none;
    margin: 16px 0 0;
  }

  .work-hero-figure,
  .work-feature-media,
  .work-format-card figure {
    min-height: 300px;
  }
}

.page-work-premium .work-case-studies-grid {
  margin-top: 28px;
}

.page-work-premium .work-case-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-work-premium .work-case-card:hover,
.page-work-premium .work-case-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.page-work-premium .work-case-card__media {
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.page-work-premium .work-case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-work-premium .work-case-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-work-premium .work-case-card__meta {
  margin-bottom: 4px;
}

.page-work-premium .work-case-card__tag {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.page-work-premium .work-case-card__tag-link:hover,
.page-work-premium .work-case-card__tag-link:focus-visible {
  color: var(--teal-light);
}

.page-work-premium .work-case-card__client {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.2;
}

.page-work-premium .work-case-card__headline {
  font-weight: 500;
  color: rgba(247, 242, 236, 0.88);
  margin: 0 0 12px;
}

.page-work-premium .work-case-card__results {
  margin: 0 0 8px;
}

.page-work-premium .work-case-card__metric {
  display: inline-block;
  color: rgba(241, 109, 2, 0.95);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-work-premium .work-case-card__outcomes {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(247, 242, 236, 0.64);
  font-size: 14px;
  line-height: 1.55;
}

.page-work-premium .work-case-card__soon {
  margin: 16px 0 0;
  font-size: 13px;
  font-style: italic;
  color: rgba(247, 242, 236, 0.52);
}

.page-work-premium .work-testimonial-section {
  padding: 64px 48px;
}

.page-work-premium .work-testimonial-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-work-premium .work-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 12px;
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.65), rgba(6, 6, 6, 0.4));
}

.page-work-premium .work-trust-row__item {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.72);
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.25);
}

.page-work-premium .work-trust-section .page-section-heading p {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .page-work-premium .work-trust-row {
    grid-template-columns: 1fr;
    padding: 16px 0 20px;
  }
}

/* Work page, spacing, alignment, hierarchy (page-work-premium) */
.page-work-premium .work-hero-copy .page-title {
  max-width: min(100%, 28rem);
  line-height: 1.05;
}

.page-work-premium .work-hero-copy .page-intro {
  margin-top: 4px;
}

.page-work-premium .work-hero-copy .service-hero-proof-line {
  margin-top: 18px;
}

.page-work-premium .page-section-heading--stack p + p {
  margin-top: 1rem;
}

.page-work-premium #featured-cases .page-section-heading h2 {
  margin-bottom: 10px;
}

.page-work-premium #featured-cases .page-section-heading p {
  margin: 0;
  max-width: 62ch;
  color: rgba(247, 242, 236, 0.68);
  line-height: 1.75;
}

.page-work-premium .work-case-card__body {
  gap: 0;
}

.page-work-premium .work-case-card__cta {
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
}

.page-work-premium .work-results-snapshot {
  margin-top: 32px;
}

.page-work-premium .work-trust-section .page-section-heading {
  max-width: 72ch;
}

.page-work-premium .work-page-cta.cta-section {
  padding: 120px 48px;
}

@media (max-width: 768px) {
  .page-work-premium .work-page-cta.cta-section {
    padding: 88px 24px;
  }
}

.page-work-premium .work-case-detail {
  margin-top: 10px;
}

.page-work-premium .work-case-detail summary {
  margin-top: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.6);
}

.page-work-premium .work-case-detail[open] summary {
  color: rgba(247, 242, 236, 0.9);
}

.page-work-premium .testimonials-grid--single {
  max-width: 720px;
  margin: 24px auto 0;
  grid-template-columns: 1fr;
}

.page-work-premium .work-testimonial-section h2.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 auto 8px;
  justify-content: center;
}

@media (max-width: 900px) {
  .page-work-premium .work-testimonial-section {
    padding: 48px 24px;
  }
}

.page-contact .page-hero {
  padding-bottom: 56px;
}

.contact-hero-grid,
.contact-layout-grid,
.contact-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 36px;
  align-items: center;
}

.page-contact-corporate .contact-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.page-contact-corporate .contact-hero-media {
  display: none;
}

.contact-hero-copy .page-title,
.contact-form-card h2,
.contact-cta-card h2 {
  max-width: 13ch;
}

.contact-hero-copy .page-intro,
.contact-form-card p,
.contact-checklist .page-section-heading p,
.contact-process .page-section-heading p,
.contact-faqs .page-section-heading p,
.contact-cta-card p,
.contact-channel-card p,
.contact-inquiry-list p,
.contact-process-card p,
.page-contact .page-card p,
.contact-hero-note strong,
.contact-field span {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.contact-hero-figure,
.contact-side-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.contact-hero-figure img,
.contact-side-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-figure {
  min-height: 560px;
}

.contact-hero-note {
  max-width: 300px;
  margin: -56px 0 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(241, 109, 2, 0.24);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(0, 0, 0, 0.98));
  position: relative;
  z-index: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-hero-note span,
.contact-channel-card span,
.contact-process-card strong,
.contact-field label {
  display: inline-flex;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-channel-grid,
.contact-checklist-grid,
.contact-process-grid,
.contact-faq-grid {
  display: grid;
  gap: 24px;
}

.contact-channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-channel-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-card,
.contact-form-card,
.contact-side-card,
.contact-checklist-card,
.contact-process-card,
.page-contact .page-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
}

.contact-channel-card,
.contact-checklist-card,
.contact-process-card,
.page-contact .page-card {
  padding: 28px;
}

.contact-channel-card {
  display: grid;
  gap: 12px;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 109, 2, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.contact-channel-card__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.contact-channel-card__action {
  margin: 0;
}

.contact-channel-card a,
.contact-channel-card strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.contact-channel-card a:hover {
  color: var(--teal);
}

.contact-form-card,
.contact-side-card {
  padding: 32px;
}

.contact-side-stack {
  display: grid;
  gap: 20px;
}

.contact-form-card h2,
.contact-cta-card h2,
.contact-process-card h3,
.page-contact .page-card h3,
.contact-inquiry-list h3 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.contact-form-mockup,
.contact-inquiry-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(241, 109, 2, 0.18);
  background: rgba(241, 109, 2, 0.05);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 14px 16px;
  border-radius: 2px;
  min-height: 48px;
  box-sizing: border-box;
}

.contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-field select {
  cursor: pointer;
}

.contact-field__req {
  color: rgba(241, 109, 2, 0.95);
  font-weight: 700;
  margin-left: 2px;
}

.contact-form-actions {
  margin-top: 8px;
}

.contact-form-footnote {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.55);
  font-family: "Inter", sans-serif;
}

.contact-form__fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.contact-form .contact-form__fieldset + .contact-form__fieldset {
  margin-top: 4px;
}

.page-contact-corporate .service-breadcrumb {
  padding-top: 12px;
  padding-bottom: 4px;
}

.contact-checklist-card .inline-service-link {
  font-weight: 600;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: rgba(241, 109, 2, 0.55);
  box-shadow: 0 0 0 3px rgba(241, 109, 2, 0.16);
}

.contact-side-visual {
  min-height: 360px;
}

.contact-checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-checklist-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-grid--connect {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-channel-card--placeholder strong {
  color: rgba(247, 242, 236, 0.55);
  font-size: 20px;
  font-weight: 600;
}

.contact-channel-card--placeholder p {
  color: rgba(247, 242, 236, 0.62);
}

.contact-checklist-card p {
  color: rgba(247, 242, 236, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.contact-process-grid,
.contact-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-process-card {
  display: grid;
  gap: 14px;
}

.contact-process-card strong {
  margin-bottom: 4px;
}

.contact-cta-card {
  padding: 34px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(16, 16, 16, 0.96));
}

@media (max-width: 1200px) {
  .contact-channel-grid:not(.contact-channel-grid--connect),
  .contact-process-grid,
  .contact-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .contact-hero-grid,
  .contact-layout-grid,
  .contact-cta-card {
    grid-template-columns: 1fr;
  }

  .contact-channel-grid:not(.contact-channel-grid--connect),
  .contact-checklist-grid,
  .contact-process-grid,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-checklist-grid.contact-checklist-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-channel-grid.contact-channel-grid--connect {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .contact-hero-figure {
    min-height: 440px;
  }
}

@media (max-width: 768px) {
  .contact-form-card,
  .contact-side-card,
  .contact-channel-card,
  .contact-checklist-card,
  .contact-process-card,
  .page-contact .page-card,
  .contact-cta-card {
    padding: 24px;
  }

  .contact-form-card h2,
  .contact-cta-card h2,
  .contact-process-card h3,
  .page-contact .page-card h3,
  .contact-inquiry-list h3 {
    font-size: 28px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-checklist-grid.contact-checklist-grid--six {
    grid-template-columns: 1fr;
  }

  .contact-channel-card a,
  .contact-channel-card strong {
    font-size: 20px;
  }

  .contact-hero-note {
    max-width: none;
    margin: 16px 0 0;
  }

  .contact-hero-figure,
  .contact-side-visual {
    min-height: 300px;
  }
}

.page-about-premium .about-premium-frame {
  position: relative;
}

.page-about-premium .about-premium-note {
  max-width: 300px;
  margin: -56px 0 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(241, 109, 2, 0.24);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(0, 0, 0, 0.98));
  position: relative;
  z-index: 1;
}

.page-about-premium .about-premium-note span,
.page-about-premium .about-model-card span,
.page-about-premium .about-timeline-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.page-about-premium .about-capability-list,
.page-about-premium .about-model-grid,
.page-about-premium .about-principles-grid,
.page-about-premium .about-timeline-list {
  display: grid;
  gap: 18px;
}

.page-about-premium .about-capability-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.page-about-premium .about-capability-list span,
.page-about-premium .about-model-card,
.page-about-premium .about-principle-card,
.page-about-premium .about-timeline-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
}

.page-about-premium .about-capability-list span {
  padding: 16px 18px;
  color: rgba(247, 242, 236, 0.86);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.page-about-premium .about-premium-stack {
  align-content: start;
}

.page-about-premium .page-card p,
.page-about-premium .about-model-card p,
.page-about-premium .about-principle-card p,
.page-about-premium .about-timeline-card p,
.page-about-premium .about-timeline-copy p,
.page-about-premium .about-premium-note strong {
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.page-about-premium .about-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-about-premium .about-model-card,
.page-about-premium .about-principle-card,
.page-about-premium .about-timeline-card {
  padding: 30px;
}

.page-about-premium .about-model-card h3,
.page-about-premium .about-principle-card h3,
.page-about-premium .about-timeline-copy h2,
.page-about-premium .about-timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.page-about-premium .about-model-card h3,
.page-about-premium .about-principle-card h3,
.page-about-premium .about-timeline-card h3 {
  margin-bottom: 12px;
}

.page-about-premium .about-principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-about-premium .about-principle-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(241, 109, 2, 0.9);
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.page-about-premium .about-timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.page-about-premium .about-timeline-list {
  gap: 16px;
}

.page-about-premium .about-timeline-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.page-about-premium .about-timeline-card span {
  margin-bottom: 0;
  justify-content: center;
  padding-top: 4px;
}

@media (max-width: 1200px) {
  .page-about-premium .about-principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .page-about-premium .about-model-grid,
  .page-about-premium .about-capability-list,
  .page-about-premium .about-timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about-premium .about-model-card,
  .page-about-premium .about-principle-card,
  .page-about-premium .about-timeline-card {
    padding: 24px;
  }

  .page-about-premium .about-model-card h3,
  .page-about-premium .about-principle-card h3,
  .page-about-premium .about-timeline-copy h2,
  .page-about-premium .about-timeline-card h3 {
    font-size: 28px;
  }

  .page-about-premium .about-premium-note {
    max-width: none;
    margin: 16px 0 0;
  }

  .page-about-premium .about-timeline-card {
    grid-template-columns: 1fr;
  }
}

.page-about-premium .about-how-support-foot {
  max-width: 52ch;
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(247, 242, 236, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.page-about-premium .about-help-section .about-help-supporting {
  max-width: 62ch;
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(247, 242, 236, 0.78);
  line-height: 1.65;
}

.page-about-premium .about-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  padding: 18px 48px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.65), rgba(6, 6, 6, 0.4));
}

.page-about-premium .about-trust-row__item {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.72);
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.25);
}

.page-about-premium .about-help-outcome-card .about-help-outcome-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  font-family: inherit;
}

.page-about-premium .about-help-outcome-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about-premium .about-help-outcome-link:hover,
.page-about-premium .about-help-outcome-link:focus-visible {
  color: var(--teal);
  outline: none;
}

@media (max-width: 720px) {
  .page-about-premium .about-trust-row {
    grid-template-columns: 1fr;
    padding: 16px 24px 20px;
  }
}

.page-about-premium .about-culture-note {
  font-size: 0.9rem;
  color: rgba(247, 242, 236, 0.62);
  font-style: italic;
}

.page-contact-corporate .contact-corporate-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-contact-corporate .contact-corporate-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(241, 109, 2, 0.18);
  background: rgba(241, 109, 2, 0.05);
  color: rgba(247, 242, 236, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.page-contact-corporate .contact-form-card--corporate,
.page-contact-corporate .contact-side-card--corporate,
.page-contact-corporate .contact-cta-card--corporate {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.99), rgba(0, 0, 0, 0.98));
}

.page-contact-corporate .contact-form-card--corporate h2 {
  max-width: none;
}

.page-contact-corporate .contact-cta-card--corporate h2 {
  max-width: none;
}

.page-contact-corporate .contact-layout--corporate .contact-layout-grid {
  align-items: stretch;
}

.page-contact-corporate .contact-form-card--corporate {
  border-color: rgba(241, 109, 2, 0.16);
}

.page-contact-corporate .contact-field {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.page-contact-corporate .contact-field label {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1px;
}

.page-contact-corporate .contact-field span {
  font-size: 15px;
  line-height: 1.75;
}

.page-contact-corporate .contact-channel-card a,
.page-contact-corporate .contact-channel-card strong {
  font-size: 22px;
}

.page-contact-corporate .contact-side-card--corporate,
.page-contact-corporate .contact-form-card--corporate,
.page-contact-corporate .contact-cta-card--corporate,
.page-contact-corporate .contact-channel-card,
.page-contact-corporate .contact-process-card,
.page-contact-corporate .page-card {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.page-contact-corporate .contact-assurance .page-card h3,
.page-contact-corporate .contact-faqs .page-card h3 {
  font-size: 28px;
}

.page-contact-corporate .contact-process-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(0, 0, 0, 0.98));
}

.page-contact-corporate .contact-process-card strong {
  color: rgba(241, 109, 2, 0.92);
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.page-contact-corporate .contact-hero-note {
  border-color: rgba(241, 109, 2, 0.18);
}

@media (max-width: 768px) {
  .page-contact-corporate .contact-corporate-badges {
    gap: 10px;
  }

  .page-contact-corporate .contact-channel-card a,
  .page-contact-corporate .contact-channel-card strong {
    font-size: 19px;
  }

  .page-contact-corporate .contact-assurance .page-card h3,
  .page-contact-corporate .contact-faqs .page-card h3 {
    font-size: 24px;
  }
}

/* Service detail: Influencer Marketing */
.page-service-detail .page-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 32px 40px;
  align-items: end;
  margin-bottom: 40px;
}

.page-service-detail .page-section-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.page-service-detail .page-section-heading h2 em {
  color: var(--teal);
  font-style: italic;
}

.page-service-detail .page-section-heading p {
  margin: 0;
  color: rgba(247, 242, 236, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.page-service-detail .page-section-heading p a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-service-detail .page-section-heading p a:hover,
.page-service-detail .page-section-heading p a:focus-visible {
  color: rgba(241, 109, 2, 0.95);
}

.page-service-detail .service-faq-section .page-card p a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-service-detail .service-faq-section .page-card p a:hover,
.page-service-detail .service-faq-section .page-card p a:focus-visible {
  color: rgba(241, 109, 2, 0.95);
}

.page-service-detail .service-why-lead a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-service-detail .service-why-lead a:hover,
.page-service-detail .service-why-lead a:focus-visible {
  color: rgba(241, 109, 2, 0.95);
}

.page-service-detail .image-caption a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-service-detail .image-caption a:hover,
.page-service-detail .image-caption a:focus-visible {
  color: rgba(241, 109, 2, 0.95);
}

.page-service-detail .section-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-service-detail .service-what-you-get .page-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(247, 242, 236, 0.94);
}

.page-service-detail .page-stat-card {
  display: block;
  padding: 28px 24px;
  background: var(--charcoal);
}

.page-service-detail .page-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.page-service-detail .page-stat-card span {
  color: rgba(247, 242, 236, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.page-service-detail .service-proof-section .page-section-heading h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.page-service-detail .service-proof-mini {
  margin-top: 28px;
  max-width: 440px;
  padding: 20px 22px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  background: linear-gradient(145deg, rgba(241, 109, 2, 0.1), rgba(0, 0, 0, 0.55));
}

.page-service-detail .service-proof-mini__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.page-service-detail .service-proof-mini__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(247, 242, 236, 0.94);
}

.page-service-detail .service-proof-mini__metrics {
  margin: 0;
  color: rgba(247, 242, 236, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.page-service-detail .service-proof-mini__sep {
  margin: 0 8px;
  color: rgba(241, 109, 2, 0.55);
}

.page-service-detail .service-faq-section .page-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-service-detail .service-influencer-cta-row {
  margin-top: 28px;
}

.page-service-detail .page-section-heading--stack {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.page-service-detail .service-campaign-types-section .page-section-heading--stack {
  margin-bottom: 32px;
}

.page-service-detail .service-campaign-types-intro {
  margin: 14px 0 0;
  max-width: 720px;
  color: rgba(247, 242, 236, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.page-service-detail .service-hero-proof-line {
  margin: 0 0 20px;
  max-width: 640px;
  color: rgba(247, 242, 236, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.page-service-detail .service-hero-proof-line__dot {
  margin: 0 6px;
  color: rgba(241, 109, 2, 0.55);
  font-weight: 400;
}

.page-service-detail .service-hero-figure .service-hero-stat-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  max-width: 280px;
  margin-left: auto;
  padding: 18px 20px;
  border: 1px solid rgba(241, 109, 2, 0.28);
  background: linear-gradient(145deg, rgba(16, 16, 16, 0.95), rgba(0, 0, 0, 0.92));
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.page-service-detail .service-hero-stat-overlay__main {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(247, 242, 236, 0.88);
}

.page-service-detail .service-hero-stat-overlay__label {
  color: rgba(247, 242, 236, 0.68);
  font-weight: 500;
}

.page-service-detail .service-hero-stat-overlay__value {
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  vertical-align: baseline;
}

.page-service-detail .service-hero-stat-overlay__sub {
  margin: 0;
  color: rgba(247, 242, 236, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.45;
  text-transform: uppercase;
}

.page-service-detail .service-hero-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-service-detail .service-hero-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(247, 242, 236, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.page-service-detail .service-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.page-service-detail .service-why-section .page-section-heading--stack {
  margin-bottom: 28px;
}

.page-service-detail .service-why-columns {
  align-items: start;
}

.page-service-detail .service-why-lead {
  margin: 0;
  max-width: 520px;
  color: rgba(247, 242, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.82;
}

.page-service-detail .service-why-section .service-why-list {
  margin: 0;
  max-width: none;
}

.page-service-detail .service-network-section .page-section-heading h2 {
  font-size: clamp(28px, 3.2vw, 48px);
}

.page-service-detail .service-network-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 40px;
  border: 1px solid var(--border);
  background: var(--border);
}

.page-service-detail .service-network-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(0, 0, 0, 0.96));
  text-align: center;
}

.page-service-detail .service-network-proof__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1;
  color: var(--teal);
  letter-spacing: 0.06em;
}

.page-service-detail .service-network-proof__label {
  max-width: 160px;
  color: rgba(247, 242, 236, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-service-detail .service-network-proof__label--full {
  max-width: 200px;
  color: rgba(247, 242, 236, 0.82);
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: none;
}

@media (max-width: 640px) {
  .page-service-detail .service-network-proof {
    grid-template-columns: 1fr;
  }

  .page-service-detail .service-network-proof__item {
    min-height: auto;
    padding: 16px 14px;
  }
}

.page-service-detail .service-approach-section .service-approach-kicker {
  margin: 0 0 14px;
  max-width: 560px;
  color: rgba(247, 242, 236, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.page-service-detail .service-approach-section .section-title {
  margin-top: 0;
}

.page-service-detail .service-approach-section .process-steps {
  margin-top: 52px;
  column-gap: 0;
}

.page-service-detail .service-approach-section .process-steps::before {
  top: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(241, 109, 2, 0.22) 15%, rgba(241, 109, 2, 0.22) 85%, transparent 100%);
}

.page-service-detail .service-approach-section .process-step {
  padding: 0 18px 0 22px;
}

.page-service-detail .service-approach-section .process-step:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.page-service-detail .service-approach-section .process-step:first-child {
  padding-left: 0;
}

.page-service-detail .service-approach-section .step-dot {
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.page-service-detail .service-approach-section .process-step h3,
.page-service-detail .service-approach-section .process-step h4 {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .page-service-detail .service-approach-section .process-steps {
    column-gap: 24px;
  }

  .page-service-detail .service-approach-section .process-step:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }

  .page-service-detail .service-approach-section .process-step:first-child {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .page-service-detail .service-approach-section .process-steps {
    margin-top: 40px;
    row-gap: 0;
  }

  .page-service-detail .service-approach-section .process-step:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    margin-top: 22px;
  }

  .page-service-detail .service-approach-section .step-dot {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

.page-service-detail .service-what-you-get .page-card p {
  margin: 12px 0 0;
  color: rgba(247, 242, 236, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.page-service-detail .service-proof-note {
  margin: 24px 0 0;
  max-width: 720px;
  color: rgba(247, 242, 236, 0.45);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-service-detail .service-hero-proof-line {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .page-service-detail .service-hero-stat-overlay__value {
    font-size: 24px;
  }

  .page-service-detail .service-hero-figure .service-hero-stat-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    padding: 14px 16px;
  }
}

@media (max-width: 900px) {
  .page-service-detail .page-section-heading {
    grid-template-columns: 1fr;
  }
}

/* Reusable service page blocks (.service-page) */
.service-breadcrumb {
  padding: 8px 48px 0;
}

.service-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.service-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.service-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: rgba(247, 242, 236, 0.28);
  font-weight: 400;
  pointer-events: none;
}

.service-breadcrumb__item a {
  color: rgba(247, 242, 236, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-breadcrumb__item a:hover,
.service-breadcrumb__item a:focus-visible {
  color: var(--teal);
}

.service-breadcrumb__current {
  color: rgba(247, 242, 236, 0.88);
}

.service-cta-bar {
  position: sticky;
  top: 88px;
  z-index: 90;
  display: flex;
  justify-content: center;
  padding: 12px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(0, 0, 0, 0.96));
  backdrop-filter: blur(14px);
}

.service-cta-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  width: 100%;
  max-width: 960px;
}

.service-related {
  border-top: 1px solid var(--border);
}

.service-related__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  color: rgba(247, 242, 236, 0.96);
}

.service-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

@media (min-width: 1100px) {
  .service-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-related__card {
  display: grid;
  gap: 10px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(0, 0, 0, 0.98));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-related__card:hover,
.service-related__card:focus-visible {
  border-color: rgba(241, 109, 2, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  outline: none;
}

.service-related__card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(247, 242, 236, 0.96);
}

.service-related__card-text {
  margin: 0;
  color: rgba(247, 242, 236, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .service-breadcrumb {
    padding: 8px 24px 0;
  }

  .service-cta-bar {
    top: 72px;
    padding: 10px 24px;
  }

  .service-related__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ABOUT PAGE. REDESIGN
   ============================================= */

/* Cursor: disable custom cursor on about page */
.page-about {
  cursor: auto;
}

/* Hero, reuse .hero base, add about-specific sizing */
.page-about .hero {
  padding: 32px 48px 76px;
}

/* Hero headline, gradient accent on BEYOND, outline on FOLKS */
.page-about .hero-h1 .line:nth-child(2) {
  color: inherit;
}

.page-about .hero-h1 .line:nth-child(2) .hero-h1-accent {
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-about .hero-h1 .line:nth-child(3) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 251, 250, 0.32);
}

/* Constrain hero content width to match home */
.about-hero-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about-hero-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about-hero-bottom-main {
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-hero-desc {
  max-width: 56ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
}

.about-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-hero-chip {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.68);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-aeo-block {
  border-top: 1px solid var(--border);
}

.about-aeo-block__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
}

.about-aeo-block__lead {
  max-width: 72ch;
  margin: 0;
}

.about-aeo-block__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-section-intro {
  max-width: 58ch;
  margin: 0 0 48px;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

/* ─── ORIGIN STORY ─── */
.about-story-section {
  padding: 120px 48px;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.about-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story-body {
  margin: 28px 0 0;
}

.about-story-body p {
  color: rgba(247, 242, 236, 0.62);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.75;
}

.about-story-body p + p {
  margin-top: 16px;
}

.about-story-media {
  position: relative;
  margin: 0;
}

.about-story-media__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 5;
}

.about-story-media__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-media__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 40px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.about-story-media__badge-value {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
}

.about-story-media__badge-text {
  color: rgba(247, 242, 236, 0.7);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ─── HOW WE WORK ─── */
.about-process-section {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.about-process-intro {
  max-width: 62ch;
}

.about-process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-process-actions {
  margin-top: 48px;
}

/* ─── WHAT WE BELIEVE ─── */
.about-believe-section {
  border-top: 1px solid var(--border);
}

.about-believe-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-about .about-principle-card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-about .about-principle-card:hover {
  border-color: rgba(229, 97, 39, 0.22);
  background: rgba(229, 97, 39, 0.04);
}

.page-about .why-item h3 {
  font-size: 18px;
  line-height: 1.35;
}

.page-about .why-item p {
  color: rgba(247, 242, 236, 0.58);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

/* ─── DISCIPLINES ─── */
.about-disciplines-section {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.about-disciplines-head {
  max-width: 1200px;
  margin: 0 auto;
}

.about-disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-discipline-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(229, 97, 39, 0.06) 0%, transparent 55%),
    rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.about-discipline-card:hover {
  border-color: rgba(229, 97, 39, 0.24);
}

.about-discipline-card__num {
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-discipline-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(247, 242, 236, 0.94);
}

.about-discipline-card p {
  margin: 0;
  flex: 1;
  color: rgba(247, 242, 236, 0.56);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
}

.about-discipline-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.about-discipline-card__skills li {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(247, 242, 236, 0.55);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── EDITORIAL PULL ─── */
.about-pull-section {
  padding: 104px 48px;
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.about-pull-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-pull-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-pull-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 0.7;
  color: var(--teal);
  opacity: 0.5;
}

.about-pull-quote p {
  margin: 0;
  max-width: 60ch;
  color: rgba(242, 251, 250, 0.85);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.about-pull-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-pull-quote footer strong {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-pull-quote footer span {
  color: rgba(242, 251, 250, 0.4);
  font-family: var(--font-body);
  font-size: 12px;
}

.about-pull-aside {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.about-pull-aside__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
}

.about-pull-aside__item:last-child {
  border-bottom: none;
}

.about-pull-aside__value {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1;
}

.about-pull-aside__label {
  color: rgba(242, 251, 250, 0.5);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
}

/* ─── SELECTED WORK ─── */
.about-work-section {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.about-work-head {
  max-width: 1200px;
  margin: 0 auto;
}

.about-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-work-card {
  min-width: 0;
}

.about-work-actions {
  display: flex;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* ─── CULTURE ─── */
.about-culture-section {
  padding: 120px 48px;
  background: var(--mid);
  border-top: 1px solid var(--border);
}

.about-culture-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-culture-copy .section-title {
  margin-bottom: 0;
}

.about-culture-copy p {
  margin-top: 24px;
  color: rgba(247, 242, 236, 0.62);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.75;
}

.about-culture-copy p + p {
  margin-top: 14px;
}

.about-culture-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 8px 0 28px;
  color: rgba(247, 242, 236, 0.28);
  font-size: 14px;
}

.about-culture-media {
  position: relative;
  margin: 0;
}

.about-culture-media__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 3;
}

.about-culture-media__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-culture-media__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 40px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.about-culture-media__badge-value {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
}

.about-culture-media__badge-text {
  color: rgba(247, 242, 236, 0.7);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-about .btn-primary,
.page-about .btn-outline {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ─── RESPONSIVE: tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  .about-story-inner,
  .about-culture-inner,
  .about-pull-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-believe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-aeo-block__cards,
  .about-disciplines-grid,
  .about-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }

  .about-process-steps::before {
    display: none;
  }

  .about-work-grid .about-work-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

/* ─── RESPONSIVE: mobile (≤768px) ─── */
@media (max-width: 768px) {
  .page-about .hero {
    padding: 28px 24px 56px;
  }

  .page-about .hero-h1 {
    font-size: clamp(56px, 16vw, 88px);
    line-height: 0.92;
  }

  .about-story-section,
  .about-process-section,
  .about-disciplines-section,
  .about-pull-section,
  .about-work-section,
  .about-culture-section {
    padding: 80px 24px;
  }

  .about-believe-grid,
  .about-aeo-block__cards,
  .about-disciplines-grid,
  .about-work-grid,
  .about-process-steps {
    grid-template-columns: 1fr;
  }

  .about-work-grid .about-work-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .about-pull-mark {
    font-size: 64px;
  }

  .about-pull-aside {
    flex-direction: row;
  }

  .about-pull-aside__item {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .about-pull-aside__item:last-child {
    border-right: none;
  }

  .about-hero-chips {
    gap: 8px;
  }

  .about-hero-bottom-main {
    flex-direction: column;
    align-items: stretch;
  }

  .about-process-actions {
    margin-top: 36px;
  }
}

/* =============================================
   WORK PAGE. REDESIGN
   ============================================= */

/* Page Work, polished listing */
.page-work {
  cursor: auto;
}

.page-work .hero {
  min-height: min(78vh, 760px);
  padding: 30px 48px 64px;
}

.page-work .hero-h1 .line:nth-child(2) {
  color: inherit;
}

.page-work .hero-h1 .line:nth-child(3) {
  color: inherit;
  -webkit-text-stroke: 0;
}

.page-work .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.work-hero-content,
.work-hero-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.page-work .work-hero-desc {
  max-width: 54ch;
}

.page-work .work-aeo-block {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(229, 97, 39, 0.05) 0%, transparent 55%),
    var(--black);
}

.page-work .work-projects-section {
  padding: clamp(72px, 9vw, 112px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(229, 97, 39, 0.05) 0%, transparent 55%),
    var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-projects-shell {
  max-width: 1360px;
  margin: 0 auto;
}

.work-projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.work-projects-head__copy {
  max-width: 720px;
}

.work-projects-intro {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.58);
}

.work-projects-count {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.55);
  white-space: nowrap;
}

.work-projects-count [data-work-count] {
  color: var(--bf-amber);
  margin-right: 4px;
}

.work-toolbar {
  display: grid;
  gap: 16px;
  margin: 0 0 clamp(28px, 4vw, 36px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.work-search {
  position: relative;
  display: block;
  max-width: 420px;
}

.work-search__icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: rgba(247, 242, 236, 0.4);
  pointer-events: none;
}

.work-search__input {
  width: 100%;
  max-width: none;
  padding: 13px 16px 13px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #f7f2ec;
  font-family: var(--font-ui);
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.work-search__input:focus {
  outline: none;
  border-color: rgba(229, 97, 39, 0.45);
  background: rgba(229, 97, 39, 0.05);
}

.work-search__input::placeholder {
  color: rgba(247, 242, 236, 0.38);
}

.page-work .work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
  margin: 0;
}

.page-work .work-filter-chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-work .work-filter-chip:hover,
.page-work .work-filter-chip:focus-visible {
  border-color: rgba(229, 97, 39, 0.45);
  color: #fff;
  outline: none;
}

.page-work .work-filter-chip.is-active {
  border-color: rgba(229, 97, 39, 0.55);
  background: rgba(229, 97, 39, 0.12);
  color: #fff;
}

.work-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-portfolio-wrap {
  display: flex;
  min-height: 100%;
}

.work-portfolio-wrap.is-hidden {
  display: none;
}

.work-portfolio-wrap .home-portfolio-card {
  width: 100%;
}

/* Listing cards on /work */
.page-work .home-portfolio-card--listing {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 24%),
    rgba(10, 10, 10, 0.96);
}

.page-work .home-portfolio-card--listing:hover {
  border-color: rgba(229, 97, 39, 0.38);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.page-work .home-portfolio-card--listing .home-portfolio-card__visual {
  aspect-ratio: 16 / 10;
}

.page-work .home-portfolio-card--listing .home-portfolio-card__summary {
  -webkit-line-clamp: 2;
}

.page-work .home-portfolio-card--listing .home-portfolio-card__services {
  margin-top: 2px;
}

.page-work .home-portfolio-card--listing .home-portfolio-card__outcomes {
  margin-top: 2px;
  gap: 7px;
}

.page-work .home-portfolio-card--listing .home-portfolio-card__outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(247, 242, 236, 0.68);
}

.page-work .home-portfolio-card--listing .home-portfolio-card__outcome-mark {
  display: block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--bf-amber);
  box-shadow: 0 0 0 3px rgba(229, 97, 39, 0.14);
}

.page-work .home-portfolio-card--listing .home-portfolio-card__cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.work-grid-empty {
  margin-top: 28px;
  padding: 28px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  color: rgba(247, 242, 236, 0.48);
}

.work-influencer-crosslink {
  padding: 0 clamp(24px, 5vw, 80px) clamp(56px, 7vw, 80px);
  background: var(--charcoal);
}

.work-influencer-crosslink .work-projects-shell {
  max-width: 1360px;
}

.work-influencer-crosslink__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 40% 120% at 100% 50%, rgba(229, 97, 39, 0.08) 0%, transparent 55%),
    rgba(0, 0, 0, 0.28);
}

.work-influencer-crosslink__copy {
  max-width: 62ch;
}

.work-influencer-crosslink__title {
  margin: 8px 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.94);
}

.work-influencer-crosslink__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.58);
}

.work-influencer-crosslink__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(229, 97, 39, 0.4);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(229, 97, 39, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-influencer-crosslink__cta:hover,
.work-influencer-crosslink__cta:focus-visible {
  background: rgba(229, 97, 39, 0.22);
  border-color: rgba(229, 97, 39, 0.65);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 1024px) {
  .work-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-influencer-crosslink__panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .page-work .hero {
    min-height: auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 48px;
  }

  .work-projects-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-toolbar {
    padding: 14px;
  }
}

@media (max-width: 640px) {
  .work-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CASE STUDIES SECTION ─── */
.work-cases-section {
  padding: 120px 48px;
  background: var(--charcoal);
}

.work-cases-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.work-cases-intro {
  max-width: 52ch;
  margin-top: 14px;
  color: rgba(242, 251, 250, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.work-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── CASE CARD ─── */
.work-case-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  transition: background 0.3s ease;
  position: relative;
}

.work-case-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.work-case-card:hover {
  background: rgba(241, 109, 2, 0.04);
}

.work-case-card:hover::after {
  transform: scaleX(1);
}

.work-case-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.work-case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.work-case-card:hover .work-case-card__media img {
  transform: scale(1.04);
}

.work-case-card__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(241, 109, 2, 0.32);
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.work-case-card__num {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: 1;
}

.work-case-card__body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-case-card__metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--teal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 1px;
}

.work-case-card__metric-sub {
  color: rgba(242, 251, 250, 0.42);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
}

.work-case-card__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.work-case-card__headline {
  margin: 0 0 20px;
  color: rgba(242, 251, 250, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}

/* ─── EXPAND / DETAILS ─── */
.work-case-expand {
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
}

.work-case-expand__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  list-style: none;
  cursor: pointer;
  color: rgba(242, 251, 250, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.25s;
  user-select: none;
}

.work-case-expand__toggle::-webkit-details-marker {
  display: none;
}

.work-case-expand__toggle:hover {
  color: var(--teal);
}

.work-case-expand__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.work-case-expand__icon::before,
.work-case-expand__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s;
}

.work-case-expand__icon::before {
  width: 6px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.work-case-expand__icon::after {
  width: 1px;
  height: 6px;
  transform: translate(-50%, -50%);
}

.work-case-expand[open] .work-case-expand__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.work-case-expand[open] .work-case-expand__toggle {
  color: var(--teal);
}

.work-case-expand__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 16px;
}

.work-case-expand__kicker {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.work-case-expand__col p:not(.work-case-expand__kicker) {
  margin: 0;
  color: rgba(242, 251, 250, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.work-case-expand__col--result p:not(.work-case-expand__kicker) {
  color: rgba(242, 251, 250, 0.76);
  font-weight: 400;
}

.work-case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.work-case-card__link:hover {
  gap: 12px;
}

/* ─── NUMBERS (work override) ─── */
.work-numbers-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PROCESS (4 steps) ─── */
.work-process-section {
  background: var(--black);
}

.work-process-steps {
  grid-template-columns: repeat(4, 1fr);
}

/* ─── PRINCIPLES (4 items, 4 cols) ─── */
.work-principles-section {
  border-top: 1px solid var(--border);
}

.work-principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ─── RESPONSIVE: tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  .page-work .hero {
    padding: 30px 36px 72px;
  }

  .work-cases-section {
    padding: 80px 36px;
  }

  .work-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .work-process-steps::before {
    display: none;
  }

  .work-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ─── RESPONSIVE: mobile (≤768px) ─── */
@media (max-width: 768px) {
  .page-work .hero {
    min-height: auto;
    padding: 28px 24px 56px;
  }

  .work-cases-section {
    padding: 80px 24px;
  }

  .work-cases-header {
    margin-bottom: 48px;
  }

  .work-case-grid {
    grid-template-columns: 1fr;
  }

  .work-case-card__body {
    padding: 22px 24px 28px;
  }

  .work-process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-principles-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── WORK PAGE V2. Growth systems (formats, matrix, filters) ─── */
.work-hero--split {
  min-height: auto;
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.work-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) 0;
}

.page-work .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.work-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.work-hero-chips li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.68);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-hero-desc {
  max-width: 56ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.work-project-board {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(241, 109, 2, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.02);
}

.work-project-board__label {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.45);
}

.work-project-board__label span {
  color: rgba(247, 242, 236, 0.28);
}

.work-project-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.work-project-board__node {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.28);
}

.work-project-board__node--core {
  grid-column: span 2;
  border-color: rgba(241, 109, 2, 0.28);
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.12), rgba(0, 0, 0, 0.2));
}

.work-project-board__node--wide {
  grid-column: span 3;
}

.work-project-board__node span {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.72);
}

.work-formats-section {
  padding: 104px 48px;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.work-projects-shell {
  max-width: 1360px;
  margin: 0 auto;
}

.work-portfolio-wrap {
  display: flex;
  min-height: 100%;
}

.work-portfolio-wrap.is-hidden {
  display: none;
}

.work-portfolio-wrap .home-portfolio-card {
  width: 100%;
}

.work-mode-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
}

.work-mode-banner__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.9);
}

.work-mode-banner__text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.55);
}

.page-work--case-study .work-mode-banner {
  border-color: rgba(241, 109, 2, 0.22);
}

.work-section-block {
  margin-top: 56px;
}

.work-section-block:first-of-type {
  margin-top: 0;
}

.work-section-block.is-empty {
  display: none;
}

.work-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.work-item-wrap {
  display: flex;
  min-height: 100%;
}

.work-item-wrap.is-hidden {
  display: none;
}

.work-item-card,
.work-format-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  background: var(--charcoal);
  transition: background 0.3s ease;
}

.work-item-card:hover,
.work-format-card:hover {
  background: rgba(241, 109, 2, 0.04);
}

.work-item-card__visual,
.work-format-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.work-item-card__visual--has-image .work-format-visual__tag {
  z-index: 2;
}

.work-item-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item-card__client-logo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  max-width: 88px;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.work-item-card__body,
.work-format-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 28px;
}

.work-item-card__meta,
.work-format-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.work-item-card__category,
.work-format-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.work-item-card__badge {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-item-card__badge--format {
  color: rgba(242, 251, 250, 0.45);
}

.work-item-card__badge--case {
  border-color: rgba(241, 109, 2, 0.35);
  color: rgba(241, 109, 2, 0.88);
}

.work-item-card__client {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.72);
}

.work-item-card__client span {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(242, 251, 250, 0.45);
}

.work-item-card__title,
.work-format-card__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

.work-item-card__summary,
.work-format-card__summary {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.58);
}

.work-item-card__services,
.work-format-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.work-item-card__services a,
.work-format-card__services a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 251, 250, 0.62);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.work-item-card__services a:hover,
.work-format-card__services a:hover {
  border-color: rgba(241, 109, 2, 0.4);
  color: var(--white);
}

.work-item-expand,
.work-format-expand {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-item-expand__toggle,
.work-format-expand__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 0;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.work-item-expand__toggle::-webkit-details-marker,
.work-format-expand__toggle::-webkit-details-marker {
  display: none;
}

.work-item-expand__icon,
.work-format-expand__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.work-item-expand__icon::before,
.work-item-expand__icon::after,
.work-format-expand__icon::before,
.work-format-expand__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.work-item-expand__icon::before,
.work-format-expand__icon::before {
  width: 10px;
  height: 1px;
}

.work-item-expand__icon::after,
.work-format-expand__icon::after {
  width: 1px;
  height: 10px;
  transition: opacity 0.2s ease;
}

.work-item-expand[open] .work-item-expand__icon::after,
.work-format-expand[open] .work-format-expand__icon::after {
  opacity: 0;
}

.work-item-expand__body,
.work-format-expand__body {
  display: grid;
  gap: 14px;
  padding: 16px 0 4px;
}

.work-item-expand__kicker,
.work-format-expand__kicker {
  margin: 0 0 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.8);
}

.work-item-expand__col p:not(.work-item-expand__kicker),
.work-format-expand__col p:not(.work-format-expand__kicker) {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.58);
}

.work-item-expand__list,
.work-format-expand__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(242, 251, 250, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.work-item-expand__col--outcomes strong {
  color: rgba(242, 251, 250, 0.78);
  font-weight: 600;
}

.work-item-card__cta,
.work-format-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}

.work-formats-section {
  padding: 104px 48px;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.work-formats-head {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.work-formats-intro {
  max-width: 58ch;
  margin-top: 14px;
  color: rgba(242, 251, 250, 0.55);
  font-size: 16px;
  line-height: 1.75;
}

.work-formats-note {
  margin-top: 12px;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(241, 109, 2, 0.72);
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.work-filter-chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
  color: rgba(242, 251, 250, 0.62);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.work-filter-chip:hover,
.work-filter-chip:focus-visible {
  border-color: rgba(241, 109, 2, 0.45);
  color: var(--white);
  outline: none;
}

.work-filter-chip.is-active {
  border-color: rgba(241, 109, 2, 0.55);
  background: rgba(241, 109, 2, 0.1);
  color: var(--white);
}

.work-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}

.work-format-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--charcoal);
  transition: background 0.3s ease;
}

.work-format-card:hover {
  background: rgba(241, 109, 2, 0.04);
}

.work-format-card.is-hidden {
  display: none;
}

.work-format-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.work-format-visual {
  background:
    linear-gradient(160deg, rgba(241, 109, 2, 0.08), transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04), transparent 45%),
    #0d0d0d;
}

.work-format-visual__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(241, 109, 2, 0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.78);
}

.work-format-visual--brand-board::after,
.work-format-visual--website-flow::after,
.work-format-visual--keyword-cluster::after,
.work-format-visual--funnel-flow::after,
.work-format-visual--social-calendar::after,
.work-format-visual--landing-form::after,
.work-format-visual--journey-flow::after,
.work-format-visual--reporting-dashboard::after {
  content: "";
  position: absolute;
  inset: 18% 12% 16%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.work-format-visual--brand-board::before {
  content: "";
  position: absolute;
  inset: 28% 22% 26% 18%;
  background:
    linear-gradient(90deg, rgba(241, 109, 2, 0.5) 0 28%, transparent 28% 52%, rgba(255, 255, 255, 0.15) 52% 72%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 3px;
}

.work-format-visual--website-flow::before {
  content: "";
  position: absolute;
  inset: 24% 16% 22%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 18%, transparent 18% 36%, rgba(255, 255, 255, 0.06) 36% 54%, transparent 54% 72%, rgba(241, 109, 2, 0.25) 72%);
  border-radius: 3px;
}

.work-format-visual--keyword-cluster::before {
  content: "";
  position: absolute;
  width: 38%;
  height: 28%;
  top: 30%;
  left: 18%;
  border-radius: 50%;
  border: 1px solid rgba(241, 109, 2, 0.45);
  box-shadow:
    62px 18px 0 -4px rgba(255, 255, 255, 0.12),
    28px 48px 0 -6px rgba(241, 109, 2, 0.2);
}

.work-format-visual--funnel-flow::before {
  content: "";
  position: absolute;
  inset: 22% 28% 20%;
  clip-path: polygon(8% 0, 92% 0, 72% 100%, 28% 100%);
  background: linear-gradient(180deg, rgba(241, 109, 2, 0.35), rgba(255, 255, 255, 0.06));
}

.work-format-visual--social-calendar::before {
  content: "";
  position: absolute;
  inset: 24% 14% 20%;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 33.33%);
}

.work-format-visual--landing-form::before {
  content: "";
  position: absolute;
  inset: 26% 20% 24%;
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 12%, transparent 12% 28%, rgba(255, 255, 255, 0.06) 28% 40%, transparent 40% 58%, rgba(241, 109, 2, 0.35) 58% 72%, transparent 72%);
}

.work-format-visual--journey-flow::before {
  content: "";
  position: absolute;
  inset: 30% 12% 28%;
  background:
    radial-gradient(circle at 12% 50%, rgba(241, 109, 2, 0.5) 0 6px, transparent 6px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0 6px, transparent 6px),
    radial-gradient(circle at 88% 50%, rgba(241, 109, 2, 0.35) 0 6px, transparent 6px),
    linear-gradient(90deg, rgba(241, 109, 2, 0.35), rgba(255, 255, 255, 0.15)) center / 76% 2px no-repeat;
}

.work-format-visual--reporting-dashboard::before {
  content: "";
  position: absolute;
  inset: 24% 14% 20%;
  background:
    linear-gradient(90deg, rgba(241, 109, 2, 0.7) 0 18%, transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0 42%, transparent 42%),
    linear-gradient(90deg, rgba(241, 109, 2, 0.45) 0 65%, transparent 65%),
    linear-gradient(180deg, transparent 62%, rgba(255, 255, 255, 0.06) 62% 100%);
  background-size: 14% 48%, 14% 72%, 14% 36%, 100% 100%;
  background-position: 8% 100%, 32% 100%, 56% 100%, 0 0;
  background-repeat: no-repeat;
}

.work-format-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 28px;
}

.work-format-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.work-format-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.work-format-badge {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
}

.work-format-card__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

.work-format-card__summary {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.58);
}

.work-format-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.work-format-card__services a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 251, 250, 0.62);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.work-format-card__services a:hover {
  border-color: rgba(241, 109, 2, 0.4);
  color: var(--white);
}

.work-format-expand {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-format-expand__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 0;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.work-format-expand__toggle::-webkit-details-marker {
  display: none;
}

.work-format-expand__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.work-format-expand__icon::before,
.work-format-expand__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.work-format-expand__icon::before {
  width: 10px;
  height: 1px;
}

.work-format-expand__icon::after {
  width: 1px;
  height: 10px;
  transition: opacity 0.2s ease;
}

.work-format-expand[open] .work-format-expand__icon::after {
  opacity: 0;
}

.work-format-expand__body {
  display: grid;
  gap: 14px;
  padding: 16px 0 4px;
}

.work-format-expand__kicker {
  margin: 0 0 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.8);
}

.work-format-expand__col p:not(.work-format-expand__kicker) {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.58);
}

.work-format-expand__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(242, 251, 250, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.work-format-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}

.work-grid-empty {
  max-width: 1200px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 14px;
  color: rgba(242, 251, 250, 0.5);
}

.work-approach-section {
  padding: 104px 48px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.work-approach-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.work-approach-step {
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.work-approach-step__num {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(241, 109, 2, 0.85);
}

.work-approach-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.work-approach-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.55);
}

.work-matrix-section {
  padding: 104px 48px;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.work-matrix-head {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.work-matrix-intro {
  max-width: 56ch;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
}

.work-matrix-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}

.work-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.work-matrix-table th,
.work-matrix-table td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.work-matrix-table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.85);
  background: rgba(0, 0, 0, 0.25);
}

.work-matrix-table tbody th {
  text-align: left;
  font-weight: 500;
  color: rgba(242, 251, 250, 0.82);
  background: rgba(0, 0, 0, 0.18);
}

.work-matrix-table tbody th a {
  color: inherit;
  text-decoration: none;
}

.work-matrix-table tbody th a:hover {
  color: var(--teal);
}

.work-matrix-dot {
  color: var(--teal);
  font-size: 14px;
}

.work-matrix-dot--muted {
  color: rgba(255, 255, 255, 0.15);
}

.work-matrix-cards {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.work-matrix-card {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.work-matrix-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
}

.work-matrix-card h3 a {
  color: var(--white);
  text-decoration: none;
}

.work-matrix-card__phases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.work-matrix-card__phases li {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.35);
}

.work-matrix-card__phases li.is-active {
  border-color: rgba(241, 109, 2, 0.4);
  color: rgba(241, 109, 2, 0.9);
}

.work-usecases-section {
  padding: 104px 48px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.work-usecases-head {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.work-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}

.work-usecase-card {
  padding: 28px 24px;
  background: var(--black);
  transition: background 0.25s ease;
}

.work-usecase-card:hover {
  background: rgba(241, 109, 2, 0.04);
}

.work-usecase-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.work-usecase-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.55);
}

.work-proof-section {
  padding: 56px 48px;
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.work-proof-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.work-proof-note h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
}

.work-proof-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.5);
}

.work-mid-cta {
  padding: 88px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.work-mid-cta__inner {
  max-width: 760px;
}

.work-mid-cta__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 16px;
}

.work-mid-cta__inner > p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.58);
  max-width: 58ch;
}

.work-mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.work-mid-cta__links {
  margin: 20px 0 0;
  font-size: 14px;
  color: rgba(242, 251, 250, 0.45);
}

.work-mid-cta__links a {
  color: var(--teal);
  text-decoration: none;
}

.work-faq-section {
  padding: 104px 48px;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.work-faq-head {
  max-width: 1200px;
  margin: 0 auto 32px;
}

.work-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.work-faq-item {
  padding: 0;
  background: var(--charcoal);
}

.work-faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  list-style: none;
}

.work-faq-item summary::-webkit-details-marker {
  display: none;
}

.work-faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.58);
}

@media (max-width: 1100px) {
  .work-approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-usecases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .work-hero-split {
    grid-template-columns: 1fr;
  }

  .work-hero-split__visual {
    max-width: 480px;
  }

  .work-format-grid,
  .work-item-grid {
    grid-template-columns: 1fr;
  }

  .work-matrix-table-wrap {
    display: none;
  }

  .work-matrix-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .work-formats-section,
  .work-projects-section,
  .work-approach-section,
  .work-matrix-section,
  .work-usecases-section,
  .work-proof-section,
  .work-mid-cta,
  .work-faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .work-approach-steps {
    grid-template-columns: 1fr;
  }

  .work-usecases-grid,
  .work-matrix-cards {
    grid-template-columns: 1fr;
  }

  .work-format-card__body {
    padding: 20px 22px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE. REDESIGN
   Body class: .page-services
═══════════════════════════════════════════════════════════════ */

/* ─── Base ─── */
.page-services {
  cursor: auto;
}

/* ─── Hero ─── */
.page-services .hero {
  min-height: 92vh;
}

/* Flow strip inside hero-bottom */
.services-hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-hero-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.services-hero-flow__sep {
  color: rgba(242, 251, 250, 0.3);
  font-family: var(--font-ui);
  font-size: 13px;
}

.services-hero-flow__node {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.services-hero-flow__node:hover {
  color: var(--white);
  border-color: rgba(242, 251, 250, 0.4);
}

.services-hero-flow__node--accent {
  color: var(--teal);
  border-color: rgba(241, 109, 2, 0.5);
}

.services-hero-flow__node--accent:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

/* ─── System pillars ─── */
.services-pillars-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.services-pillars-head {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
}

.services-pillar {
  background: var(--black);
  padding: 48px 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.services-pillar:hover {
  background: #0a0a0a;
}

.services-pillar__num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--teal);
  display: block;
}

.services-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.services-pillar__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.46);
  margin: 0;
}

/* ─── Services catalog ─── */
.page-services-catalog {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

/* ─── Growth loop (process-section) ─── */
.services-process-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.services-process-steps {
  grid-template-columns: repeat(4, 1fr) !important;
}

.services-process-steps::before {
  left: 28px;
  right: 28px;
}

/* ─── Why section ─── */
.services-why-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

/* Override why-grid: 4 cols for 4 cards */
.services-why-section .why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Icon-less why items: orange top accent line instead */
.services-why-item {
  border-top: 2px solid var(--teal);
  padding-top: 28px;
}

/* ─── FAQ section ─── */
.services-faq-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 80px;
  align-items: start;
}

.services-faq-section .section-label {
  grid-column: 1;
  grid-row: 1;
}

.services-faq-section .section-title {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-bottom: 0;
}

.services-faq-list {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  border-top: 1px solid var(--border);
}

.services-faq-item {
  border-bottom: 1px solid var(--border);
}

.services-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  gap: 24px;
  transition: color 0.2s;
}

.services-faq-q::-webkit-details-marker {
  display: none;
}

.services-faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.services-faq-item[open] .services-faq-q::after {
  transform: rotate(45deg);
}

.services-faq-item[open] .services-faq-q {
  color: var(--teal);
}

.services-faq-a {
  padding: 0 0 22px;
}

.services-faq-a p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
}

/* ─── RESPONSIVE: tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  .services-pillars-section,
  .services-process-section,
  .services-why-section {
    padding: 80px 36px;
  }

  .services-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 24px;
  }

  .services-process-steps::before {
    display: none;
  }

  .services-why-section .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-faq-section {
    padding: 80px 36px;
    grid-template-columns: 1fr;
  }

  .services-faq-section .section-label,
  .services-faq-section .section-title,
  .services-faq-list {
    grid-column: 1;
    grid-row: auto;
  }

  .services-faq-section .section-title {
    margin-bottom: 48px;
  }
}

/* ─── RESPONSIVE: mobile (≤768px) ─── */
@media (max-width: 768px) {
  .services-hero-flow {
    gap: 8px;
  }

  .services-pillars-section,
  .services-process-section,
  .services-why-section,
  .services-faq-section {
    padding: 80px 24px;
  }

  .services-pillars-head {
    margin-bottom: 40px;
  }

  .services-pillars-grid {
    grid-template-columns: 1fr;
  }

  .services-pillar {
    padding: 32px 24px 36px;
  }

  .services-process-steps {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .services-why-section .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Services page refinements (360° hub) ─── */
.page-services .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-hero-bottom-main {
  align-items: flex-start;
  flex-wrap: wrap;
}

.services-hero-desc {
  max-width: 58ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
}

.services-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.services-hero-chip {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.68);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.services-aeo-block {
  border-top: 1px solid var(--border);
}

.page-services-catalog .services-section-intro {
  max-width: 68ch;
  color: rgba(247, 242, 236, 0.62);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.page-services .services-grid--hub {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-services .services-grid--hub .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 36px 32px 32px;
}

.page-services .services-grid--hub .service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.page-services .services-grid--hub .service-card p {
  flex: 1;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.services-pillars-lead {
  margin-top: 20px;
  max-width: 68ch;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.page-services .services-pillar__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.page-services .services-pillar__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.55);
}

.services-360-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(229, 97, 39, 0.1) 0%, transparent 55%),
    var(--black);
}

.services-360-card {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(6, 6, 6, 0.98));
}

.services-360-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border: 1px solid rgba(229, 97, 39, 0.24);
  border-radius: 4px;
  background: rgba(229, 97, 39, 0.06);
}

.services-360-card__value {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-360-card__title {
  margin-bottom: 16px;
}

.services-360-card__lead {
  max-width: 62ch;
  margin: 0 0 24px;
  color: rgba(247, 242, 236, 0.62);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.services-360-card__bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.services-360-card__bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

.services-360-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bf-gradient);
}

.services-360-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.services-360-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.services-360-card__links a {
  color: rgba(247, 242, 236, 0.48);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.services-360-card__links a:hover,
.services-360-card__links a:focus-visible {
  color: var(--bf-amber);
}

.services-process-intro,
.services-leverage-intro {
  max-width: 58ch;
  margin-top: 16px;
  margin-bottom: 48px;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.services-leverage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-services .services-why-item h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.page-services .services-why-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.55);
}

.page-services .services-faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.6);
}

.page-services .btn-primary,
.page-services .btn-outline {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .page-services .services-grid--hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-leverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-360-section {
    padding: 80px 36px;
  }
}

@media (max-width: 768px) {
  .page-services .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .page-services .hero-h1 {
    font-size: clamp(56px, 16vw, 88px);
    line-height: 0.92;
  }

  .services-hero-bottom-main {
    flex-direction: column;
    align-items: stretch;
  }

  .page-services-catalog,
  .services-360-section {
    padding: 80px 24px;
  }

  .page-services .services-grid--hub {
    grid-template-columns: 1fr;
  }

  .services-360-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .services-360-card__mark {
    min-height: 100px;
  }

  .services-360-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE. REDESIGN
   Body class: .page-contact
═══════════════════════════════════════════════════════════════ */

.page-contact {
  cursor: auto;
}

/* ─── Hero ─── */
.page-contact .hero {
  min-height: 88vh;
}

/* ─── Entry points (3-col) ─── */
.contact-entry-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.contact-entry-head {
  max-width: 560px;
  margin-bottom: 64px;
}

.contact-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--border);
  gap: 1px;
}

.contact-entry-card {
  background: var(--black);
  padding: 48px 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}

.contact-entry-card:hover {
  background: #0a0a0a;
}

.contact-entry-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  display: block;
}

.contact-entry-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
}

.contact-entry-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.46);
  margin: 0;
  flex: 1;
}

.contact-entry-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.contact-entry-link:hover {
  opacity: 0.75;
}

/* ─── Form section ─── */
.contact-form-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-form-lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.52);
  max-width: 52ch;
  margin: 16px 0 40px;
}

/* Notice boxes */
.contact-notice {
  padding: 18px 22px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.contact-notice--success {
  border: 1px solid rgba(241, 109, 2, 0.35);
  background: rgba(241, 109, 2, 0.07);
}

.contact-notice--error {
  border: 1px solid rgba(241, 109, 2, 0.5);
  background: rgba(241, 109, 2, 0.1);
}

.contact-notice p,
.contact-notice li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 251, 250, 0.85);
  margin: 0;
}

.contact-notice h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--white);
}

.contact-notice ul {
  margin: 0;
  padding-left: 18px;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
}

.contact-field__req {
  color: var(--teal);
}

.contact-field__hint {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(242, 251, 250, 0.3);
  margin-top: 2px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(242,251,250,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-field select option {
  background: #111;
  color: var(--white);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(242, 251, 250, 0.22);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.contact-form-footnote {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(242, 251, 250, 0.28);
  margin: 0;
}

/* ─── Sidebar ─── */
.contact-form-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.contact-assurance-card,
.contact-reach-card {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-assurance-card .section-label,
.contact-reach-card .section-label {
  margin-bottom: 24px;
}

.contact-assurance-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-assurance-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-assurance-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--teal);
  flex-shrink: 0;
  width: 36px;
}

.contact-assurance-item h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 6px;
}

.contact-assurance-item p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.46);
  margin: 0;
}

.contact-reach-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.contact-reach-item:last-child {
  border-bottom: none;
}

.contact-reach-item--muted .contact-reach-value {
  opacity: 0.35;
}

.contact-reach-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.38);
  flex-shrink: 0;
}

.contact-reach-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  text-align: right;
  transition: color 0.2s;
}

a.contact-reach-value:hover {
  color: var(--teal);
}

/* ─── Help topics ─── */
.contact-help-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.contact-help-section .section-label,
.contact-help-section .section-title {
  max-width: 560px;
}

.contact-help-section .section-title {
  margin-bottom: 56px;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--border);
  gap: 1px;
}

.contact-help-card {
  background: var(--black);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}

.contact-help-card:hover {
  background: #0a0a0a;
}

.contact-help-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.contact-help-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.5);
  margin: 0;
}

.contact-inline-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(241, 109, 2, 0.3);
  transition: border-color 0.2s;
}

.contact-inline-link:hover {
  border-color: var(--teal);
}

/* ─── FAQ section ─── */
.contact-faq-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 80px;
  align-items: start;
}

.contact-faq-section .section-label {
  grid-column: 1;
  grid-row: 1;
}

.contact-faq-section .section-title {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.contact-faq-list {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  border-top: 1px solid var(--border);
}

/* ─── Contact page refresh ─── */
.contact-hero--split {
  min-height: auto;
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.contact-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) 0;
}

.page-contact .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.contact-hero-chips li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.68);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-desc {
  max-width: 56ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.contact-growth-visual {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
}

.contact-growth-visual__label {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

.contact-growth-visual__label span {
  color: rgba(247, 242, 236, 0.28);
}

.contact-growth-visual__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-growth-visual__node {
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(229, 97, 39, 0.04);
  text-align: center;
}

.contact-growth-visual__node span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.78);
}

.contact-growth-visual__node--core {
  grid-column: span 3;
  background: rgba(229, 97, 39, 0.1);
  border-color: rgba(245, 148, 40, 0.22);
}

.contact-reach-panel {
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
}

.contact-reach-panel__label {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

.contact-reach-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-reach-panel__item {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-reach-panel__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-reach-panel__key {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.38);
}

.contact-reach-panel__item a,
.contact-reach-panel__value {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 242, 236, 0.82);
}

.contact-reach-panel__item a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-reach-panel__item a:hover {
  color: var(--bf-amber);
}

.contact-reach-panel__social {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-reach-panel__social-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-reach-panel__social-list a {
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
}

.contact-reach-panel__social-list a:hover {
  color: var(--bf-amber);
}

.contact-aside-stack {
  display: grid;
  gap: 20px;
}

.contact-aside-note {
  padding: clamp(20px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-aside-note h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.9);
}

.contact-aside-note p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.55);
}

.contact-aside-note__link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}

.contact-aside-note__link:hover {
  color: var(--bf-amber);
}

.contact-aeo-block {
  border-top: 1px solid var(--border);
}

.contact-routing-card {
  position: relative;
}

.contact-routing-card__marker {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--bf-gradient);
}

.contact-routing-card:hover {
  background: rgba(18, 18, 18, 0.98);
}

.contact-routing-card .contact-entry-link {
  color: var(--bf-amber);
}

.contact-details-section {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.contact-details-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.contact-details-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--black);
  min-height: 100%;
}

.contact-details-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.92);
}

.contact-details-card p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.62);
}

.contact-details-card a {
  color: rgba(247, 242, 236, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details-card a:hover {
  color: var(--bf-amber);
}

.contact-details-card__sub {
  font-size: 13px !important;
  color: var(--teal) !important;
}

.contact-details-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-support-panel {
  background: var(--black);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 32px);
}

.contact-support-panel__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.contact-support-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 24px);
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--black);
}

.contact-support-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}

.contact-support-links a:hover {
  color: var(--bf-amber);
}

.page-contact .contact-intake-form .contact-field input,
.page-contact .contact-intake-form .contact-field textarea,
.page-contact .contact-intake-form .contact-field select {
  min-height: 52px;
  font-size: 15px;
}

.page-contact .contact-intake-form .contact-field textarea {
  min-height: 140px;
}

.contact-response-section {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.contact-response-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 56px);
}

.contact-response-steps::before {
  display: none;
}

.page-contact .contact-response-section .process-step {
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  min-height: 100%;
}

.contact-services-section {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
}

.contact-services-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.contact-services-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 28px);
  background: var(--charcoal);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-services-card:hover {
  background: rgba(22, 22, 22, 0.98);
  transform: translateY(-2px);
}

.contact-services-card__marker {
  width: 24px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--bf-gradient);
}

.contact-services-card h3 {
  flex: 1;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(247, 242, 236, 0.92);
}

.contact-services-card__link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-influencer-note {
  padding: clamp(40px, 5vw, 56px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
}

.contact-influencer-note__inner {
  max-width: 720px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-influencer-note__inner h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: rgba(247, 242, 236, 0.88);
}

.contact-influencer-note__inner p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.5);
}

.contact-influencer-note__link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.58);
  text-decoration: none;
}

.contact-influencer-note__link:hover {
  color: var(--bf-amber);
}

.page-contact .contact-faq-section .services-faq-a p {
  font-size: 15px;
  line-height: 1.75;
}

.page-contact .contact-faq-section .services-faq-a a {
  color: var(--bf-amber);
}

/* ─── RESPONSIVE: tablet (<=1024px) ─── */
@media (max-width: 1024px) {
  .contact-hero-split {
    grid-template-columns: 1fr;
  }

  .contact-entry-section,
  .contact-form-section,
  .contact-help-section,
  .contact-faq-section,
  .contact-details-section,
  .contact-response-section,
  .contact-services-section,
  .contact-influencer-note {
    padding: 80px 36px;
  }

  .contact-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-response-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-entry-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-form-aside {
    position: static;
  }

  .contact-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-faq-section {
    grid-template-columns: 1fr;
  }

  .contact-faq-section .section-label,
  .contact-faq-section .section-title,
  .contact-faq-list {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-faq-section .section-title {
    margin-bottom: 48px;
  }
}

/* ─── RESPONSIVE: mobile (<=768px) ─── */
@media (max-width: 768px) {
  .contact-hero-split {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-entry-section,
  .contact-form-section,
  .contact-help-section,
  .contact-faq-section,
  .contact-details-section,
  .contact-response-section,
  .contact-services-section,
  .contact-influencer-note {
    padding: 80px 24px;
  }

  .contact-entry-card {
    padding: 32px 24px 36px;
  }

  .contact-details-grid,
  .contact-services-grid {
    grid-template-columns: 1fr;
  }

  .contact-response-steps {
    grid-template-columns: 1fr !important;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-assurance-card,
  .contact-reach-card,
  .contact-support-panel {
    padding: 24px;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ═══════════════════════════════════════════════════════════════
   360° CONSULTATION PAGE. REDESIGN
   Body class: .page-c360
═══════════════════════════════════════════════════════════════ */

.page-c360 {
  cursor: auto;
}

/* ─── Hero ─── */
.page-c360 .hero {
  min-height: 90vh;
}

.c360-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.c360-hero-chips li {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.c360-hero-trust {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(242, 251, 250, 0.3);
  margin: 20px 0 0;
  letter-spacing: 0.04em;
}

/* ─── Outcomes ─── */
.c360-outcomes-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.c360-outcomes-head {
  max-width: 560px;
  margin-bottom: 64px;
}

.c360-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
}

.c360-outcome-card {
  background: var(--black);
  padding: 48px 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.c360-outcome-card:hover {
  background: #0a0a0a;
}

.c360-outcome-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--teal);
  display: block;
}

.c360-outcome-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.c360-outcome-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.46);
  margin: 0;
}

/* ─── Who it's for ─── */
.c360-who-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.c360-who-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.c360-who-item {
  border-top: 2px solid var(--teal);
  padding-top: 28px;
}

.c360-who-note {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.4);
  max-width: 640px;
}

.c360-who-note strong {
  color: rgba(242, 251, 250, 0.7);
  font-weight: 600;
}

/* ─── What's included ─── */
.c360-included-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 80px;
  align-items: start;
  background: var(--charcoal);
}

.c360-included-section .section-label {
  grid-column: 1;
  grid-row: 1;
}

.c360-included-section .section-title {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.c360-included-list {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  border-top: 1px solid var(--border);
}

.c360-included-cta {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  padding-top: 40px;
}

/* ─── How it works ─── */
.c360-process-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.c360-process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px;
}

.c360-process-steps::before {
  display: none;
}

.page-c360 .c360-process-section .process-step {
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  min-height: 100%;
}

.page-c360 .c360-process-section .process-step h3 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 18px);
}

.page-c360 .c360-process-section .process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

/* ─── Booking form ─── */
.c360-form-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.c360-form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.c360-form-lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.52);
  max-width: 52ch;
  margin: 16px 0 8px;
}

.c360-form-micro {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(242, 251, 250, 0.3);
  margin: 0 0 36px;
}

.c360-fieldset-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.c360-fieldset-label:first-of-type {
  margin-top: 0;
}

.c360-optional {
  font-weight: 400;
  color: rgba(242, 251, 250, 0.3);
  font-size: 10px;
}

.c360-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.c360-form-foot {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(242, 251, 250, 0.28);
  margin: 0;
}

/* ─── Form aside / summary ─── */
.c360-form-aside {
  position: sticky;
  top: 100px;
}

.c360-form-summary {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c360-form-summary .section-label {
  margin-bottom: 24px;
}

.c360-summary-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.c360-summary-item:last-of-type {
  border-bottom: none;
}

.c360-summary-num {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--teal);
  flex-shrink: 0;
  width: 32px;
}

.c360-summary-item h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 5px;
}

.c360-summary-item p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(242, 251, 250, 0.42);
  margin: 0;
}

.c360-summary-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.c360-summary-trust span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: rgba(242, 251, 250, 0.35);
  letter-spacing: 0.06em;
  padding-left: 14px;
  position: relative;
}

.c360-summary-trust span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
}

/* ─── FAQ ─── */
.c360-faq-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 80px;
  align-items: start;
}

.c360-faq-section .section-label {
  grid-column: 1;
  grid-row: 1;
}

.c360-faq-section .section-title {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.c360-faq-list {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  border-top: 1px solid var(--border);
}

/* ─── Hero split layout + growth visual ─── */
.c360-hero--split {
  min-height: auto;
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.c360-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) 0;
}

.page-c360 .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.c360-hero-desc {
  max-width: 56ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.c360-growth-visual {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.c360-growth-visual__label {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

.c360-growth-visual__label span {
  color: rgba(247, 242, 236, 0.28);
  font-weight: 500;
}

.c360-growth-visual__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.c360-growth-visual__node {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(229, 97, 39, 0.04);
  text-align: center;
}

.c360-growth-visual__node span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 236, 0.78);
}

.c360-growth-visual__node--core {
  grid-column: span 3;
  background: rgba(229, 97, 39, 0.1);
  border-color: rgba(245, 148, 40, 0.22);
}

.c360-growth-visual__node--wide {
  grid-column: span 3;
}

.c360-aeo-block {
  border-top: 1px solid var(--border);
}

.c360-who-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.c360-who-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px;
  background: var(--border);
}

.c360-who-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--black);
  border-top: none !important;
  min-height: 100%;
}

.c360-who-card__marker {
  width: 28px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--bf-gradient);
}

.c360-who-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.35;
  margin-bottom: 10px;
}

.c360-who-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.58);
}

.c360-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.c360-checkbox-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.c360-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.c360-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.c360-checkbox:hover {
  border-color: rgba(245, 148, 40, 0.25);
  background: rgba(229, 97, 39, 0.06);
}

.c360-checkbox input {
  margin-top: 3px;
  accent-color: var(--fox-orange);
}

.c360-checkbox span {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 242, 236, 0.72);
}

.c360-support-panel {
  background: var(--black);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 32px);
}

.c360-support-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c360-support-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.68);
}

.c360-support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bf-gradient);
  transform: translateY(-50%);
}

.c360-support-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.48);
  font-style: italic;
}

.c360-discuss-section {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.c360-discuss-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.c360-discuss-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.c360-discuss-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 28px);
  background: var(--black);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.c360-discuss-card:hover {
  background: rgba(18, 18, 18, 0.98);
  transform: translateY(-2px);
}

.c360-discuss-card__marker {
  width: 24px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--bf-gradient);
}

.c360-discuss-card h3 {
  flex: 1;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(247, 242, 236, 0.92);
}

.c360-discuss-card__link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.page-c360 .c360-intake-form .contact-field input,
.page-c360 .c360-intake-form .contact-field textarea,
.page-c360 .c360-intake-form .contact-field select {
  min-height: 52px;
  font-size: 15px;
}

.page-c360 .c360-intake-form .contact-field textarea {
  min-height: 120px;
}

.page-c360 .c360-faq-section .services-faq-a p {
  font-size: 15px;
  line-height: 1.75;
}

.page-c360 .c360-faq-section .services-faq-a a {
  color: var(--bf-amber);
}

.thankyou-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 8px;
}

.thankyou-hero-link {
  margin-left: 4px;
}

/* ─── RESPONSIVE: tablet (<=1024px) ─── */
@media (max-width: 1024px) {
  .c360-hero-split {
    grid-template-columns: 1fr;
  }

  .c360-hero-split__visual {
    max-width: 520px;
  }

  .c360-outcomes-section,
  .c360-who-section,
  .c360-included-section,
  .c360-process-section,
  .c360-form-section,
  .c360-faq-section,
  .c360-discuss-section {
    padding: 80px 36px;
  }

  .c360-discuss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c360-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .c360-who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .c360-included-section {
    grid-template-columns: 1fr;
  }

  .c360-included-section .section-label,
  .c360-included-section .section-title,
  .c360-included-list,
  .c360-included-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .c360-included-section .section-title {
    margin-bottom: 48px;
  }

  .c360-included-cta {
    padding-top: 32px;
  }

  .c360-process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 24px;
  }

  .c360-process-steps::before {
    display: none;
  }

  .c360-form-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .c360-form-aside {
    position: static;
  }

  .c360-faq-section {
    grid-template-columns: 1fr;
  }

  .c360-faq-section .section-label,
  .c360-faq-section .section-title,
  .c360-faq-list {
    grid-column: 1;
    grid-row: auto;
  }

  .c360-faq-section .section-title {
    margin-bottom: 48px;
  }
}

/* ─── RESPONSIVE: mobile (<=768px) ─── */
@media (max-width: 768px) {
  .c360-outcomes-section,
  .c360-who-section,
  .c360-included-section,
  .c360-process-section,
  .c360-form-section,
  .c360-faq-section,
  .c360-discuss-section {
    padding: 80px 24px;
  }

  .c360-hero-split {
    padding-left: 24px;
    padding-right: 24px;
  }

  .c360-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .c360-outcome-card {
    padding: 32px 24px 36px;
  }

  .c360-who-grid,
  .c360-who-grid--six {
    grid-template-columns: 1fr !important;
  }

  .c360-discuss-grid {
    grid-template-columns: 1fr;
  }

  .c360-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .c360-process-steps {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .c360-form-summary {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES. SHARED
   Body class: .page-svc-detail
═══════════════════════════════════════════════════════════════ */

.page-svc-detail {
  cursor: auto;
}

/* ─── Hero ─── */
.page-svc-detail .hero {
  min-height: 88vh;
}

/* ─── Stats strip (reuses .case-stats-strip) ─── */
.svc-stats-strip {
  /* inherits case-stats-strip layout */
}

/* ─── What we do (2-col editorial) ─── */
.svc-what-section {
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 6vw, 80px);
  align-items: start;
  background: var(--black);
}

.svc-what-section .case-narrative-head {
  position: sticky;
  top: 100px;
}

.svc-what-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
  max-width: 48ch;
  margin-top: 16px;
  margin-bottom: 0;
}

.svc-what-copy {
  min-width: 0;
}

.svc-what-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.svc-visual {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.06), transparent 55%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.svc-visual__label {
  margin: 0 0 14px;
  color: rgba(247, 242, 236, 0.42);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.svc-visual__placeholder-note {
  color: rgba(247, 242, 236, 0.28);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.svc-visual__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.svc-visual__arrow {
  flex-shrink: 0;
  color: rgba(245, 148, 40, 0.55);
  font-size: 14px;
}

.svc-visual__panel--flow {
  flex: 1 1 88px;
  min-width: 72px;
}

.svc-intro-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-intro-bullets li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(247, 242, 236, 0.68);
}

.svc-intro-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--bf-gradient);
  transform: translateY(-50%);
}

/* ─── What you get (4-col, reuses c360-outcomes-grid) ─── */
.svc-outcomes-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.svc-outcomes-head {
  max-width: 600px;
  margin-bottom: 64px;
}

/* ─── Why it works ─── */
.svc-why-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.svc-why-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  max-width: 64ch;
  margin: 0 0 56px;
}

.svc-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* ─── Process / approach ─── */
.svc-process-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.svc-process-steps {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* ─── Campaign types (3-col, reuses contact-help-grid) ─── */
.svc-types-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.svc-types-head {
  max-width: 560px;
  margin-bottom: 56px;
}

.svc-types-grid {
  /* inherits contact-help-grid layout */
}

/* ─── FAQ (2-col editorial, reuses services-faq-section) ─── */
.svc-faq-section {
  background: var(--black);
}

.svc-faq-list {
  /* inherits services-faq-list layout */
}

/* ─── Related services ─── */
.svc-related-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.svc-related-section .section-title {
  margin-bottom: 56px;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
}

.svc-related-card {
  background: var(--charcoal);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.svc-related-card:hover {
  background: #141414;
}

.svc-related-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.svc-related-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.45);
  margin: 0;
  flex: 1;
}

.svc-related-arrow {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--teal);
  margin-top: 8px;
  transition: transform 0.2s;
}

.svc-related-card:hover .svc-related-arrow {
  transform: translateX(4px);
}

/* ─── RESPONSIVE: tablet (<=1024px) ─── */
@media (max-width: 1024px) {
  .svc-what-section,
  .svc-outcomes-section,
  .svc-why-section,
  .svc-process-section,
  .svc-types-section,
  .svc-related-section {
    padding: 80px 36px;
  }

  .svc-what-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-what-section .case-narrative-head {
    position: static;
  }

  .c360-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .svc-process-steps {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px 24px;
  }

  .svc-process-steps::before {
    display: none;
  }

  .svc-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── RESPONSIVE: mobile (<=768px) ─── */
@media (max-width: 768px) {
  .svc-what-section,
  .svc-outcomes-section,
  .svc-why-section,
  .svc-process-section,
  .svc-types-section,
  .svc-related-section {
    padding: 80px 24px;
  }

  .svc-process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }

  .svc-why-grid {
    grid-template-columns: 1fr !important;
  }

  .svc-related-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Service detail template refinements ─── */
.page-svc-detail .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-hero-bottom-main {
  align-items: flex-start;
  flex-wrap: wrap;
}

.svc-hero-desc {
  max-width: 58ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
}

.svc-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.svc-hero-chip {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.68);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-aeo-block {
  border-top: 1px solid var(--border);
}

.svc-benefit-stat__value {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(247, 242, 236, 0.88);
}

.svc-what-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.svc-what-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.svc-point-list {
  margin: 0;
}

.svc-visual__frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.svc-visual__frame--brand-strategy .svc-visual__panel:nth-child(1),
.svc-visual__frame--branding-identity .svc-visual__panel:nth-child(1) {
  grid-column: span 2;
}

.svc-visual__panel {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(229, 97, 39, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.svc-visual__panel:hover {
  border-color: rgba(245, 148, 40, 0.22);
  background: rgba(229, 97, 39, 0.08);
}

.svc-visual__panel span {
  display: block;
  color: rgba(247, 242, 236, 0.42);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-visual__panel strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.9);
}

.svc-system-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.svc-system-card p {
  flex: 1;
}

.page-svc-detail .why-item h3,
.page-svc-detail .c360-outcome-card h3,
.page-svc-detail .svc-related-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.page-svc-detail .why-item p,
.page-svc-detail .c360-outcome-card p,
.page-svc-detail .svc-why-lead,
.page-svc-detail .svc-what-lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.svc-related-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svc-related-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svc-related-link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 8px;
}

.svc-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 20px 0 8px;
}

.svc-internal-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}

.svc-internal-links a:hover {
  color: var(--fox-orange);
}

.svc-benefits-section,
.svc-deliverables-section,
.svc-best-fit-section {
  padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 80px);
}

.svc-benefits-head,
.svc-deliverables-head,
.svc-best-fit-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.svc-benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.svc-benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px) clamp(22px, 2.5vw, 28px);
  background: var(--charcoal);
  transition: background 0.25s ease;
}

.svc-benefit-card:hover {
  background: rgba(22, 22, 22, 0.98);
}

.svc-benefit-card__marker {
  width: 28px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--bf-gradient);
}

.svc-benefit-card h3 {
  font-size: clamp(17px, 1.6vw, 19px);
  margin-bottom: 10px;
}

.svc-benefit-card p {
  margin: 0;
  flex: 1;
}

.svc-deliverables-list {
  max-width: 900px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  border-top: 1px solid var(--border);
}

.page-svc-detail .svc-deliverables-list li {
  padding: 20px 0 20px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.72);
  border-bottom: 1px solid var(--border);
}

.page-svc-detail .svc-deliverables-list li::before {
  top: 28px;
  width: 7px;
  height: 7px;
  background: var(--bf-gradient);
}

.svc-deliverables-note {
  max-width: 760px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.5);
  font-style: italic;
}

.svc-best-fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.svc-best-fit-card {
  min-height: 0;
  padding: clamp(22px, 2.5vw, 28px);
  background: var(--black);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.svc-best-fit-card__marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--bf-gradient);
}

.svc-best-fit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.72);
}

.page-svc-detail .svc-process-section {
  background: var(--charcoal);
}

.page-svc-detail .svc-process-section .process-step {
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  min-height: 100%;
}

.page-svc-detail .svc-process-section .process-steps {
  gap: 16px;
  margin-top: clamp(40px, 5vw, 56px);
}

.page-svc-detail .svc-process-section .process-steps::before {
  display: none;
}

.page-svc-detail .svc-process-section .step-dot {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  font-size: 17px;
  border-color: rgba(245, 148, 40, 0.25);
  color: var(--bf-amber);
}

.page-svc-detail .svc-process-section .process-step h3 {
  font-size: clamp(17px, 1.5vw, 19px);
  margin-bottom: 10px;
}

.page-svc-detail .svc-process-section .process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.page-svc-detail .svc-faq-section {
  padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 80px);
}

.page-svc-detail .svc-faq-list .services-faq-item {
  margin-bottom: 12px;
}

.page-svc-detail .services-faq-q {
  font-size: clamp(16px, 1.5vw, 18px);
  padding: 22px 0;
}

.page-svc-detail .services-faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
  max-width: 62ch;
}

.page-svc-detail .svc-related-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: var(--black);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-svc-detail .svc-related-card:hover {
  background: rgba(18, 18, 18, 0.98);
  transform: translateY(-2px);
}

.page-svc-detail .svc-related-card p {
  flex: 1;
  margin-bottom: 4px;
}

.page-svc-detail .svc-final-cta {
  margin-bottom: 0;
}

.page-svc-detail .site-footer__cta {
  margin-bottom: clamp(36px, 5vw, 48px);
  padding: clamp(24px, 3.5vw, 32px);
}

.page-svc-detail .site-footer__cta-title {
  font-size: clamp(28px, 3.5vw, 40px);
}

.page-svc-detail .svc-aeo-block .home-answer-block__text--lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  max-width: 72ch;
}

.page-svc-detail .svc-aeo-block .home-answer-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
}

.page-svc-detail .svc-aeo-block .home-answer-card p {
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .svc-what-section {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .svc-what-section .case-narrative-head {
    position: static;
  }

  .svc-benefits-grid,
  .svc-best-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-deliverables-list {
    grid-template-columns: 1fr;
  }

  .page-svc-detail .svc-process-section .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .svc-benefits-grid,
  .svc-best-fit-grid {
    grid-template-columns: 1fr;
  }

  .svc-visual__flow {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-visual__arrow {
    display: none;
  }

  .page-svc-detail .svc-process-section .process-steps {
    grid-template-columns: 1fr !important;
  }
}

.page-svc-detail .btn-primary,
.page-svc-detail .btn-outline {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .svc-related-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-svc-detail .hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .page-svc-detail .hero-h1 {
    font-size: clamp(56px, 16vw, 88px);
    line-height: 0.92;
  }

  .svc-hero-chips {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .svc-hero-bottom-main,
  .svc-what-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-related-grid--3,
  .svc-related-grid--4 {
    grid-template-columns: 1fr;
  }

  .svc-what-section {
    padding: 72px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CASE STUDY PAGE. REDESIGN
   Body class: .page-case
═══════════════════════════════════════════════════════════════ */

.page-case {
  cursor: auto;
}

/* ─── Hero ─── */
.page-case .hero {
  min-height: 88vh;
  padding-top: 35px;
}

/* ─── Stats strip ─── */
.case-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
  border-bottom: 1px solid var(--border);
}

.case-stat {
  background: var(--charcoal);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
}

.case-stat:hover {
  background: #111;
}

.case-stat__value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--teal);
  display: block;
}

.case-stat__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
}

/* ─── Narrative sections (Problem + Strategy) ─── */
.case-narrative-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: start;
}

.case-problem-section {
  background: var(--black);
}

.case-strategy-section {
  background: var(--charcoal);
}

.case-narrative-head {
  position: sticky;
  top: 100px;
}

.case-narrative-head .section-title {
  margin-bottom: 0;
}

.case-point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.case-point-list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.65);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}

.case-point-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 36px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ─── Execution ─── */
.case-execution-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.case-execution-head {
  max-width: 560px;
  margin-bottom: 64px;
}

.case-execution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
}

.case-execution-card {
  background: var(--black);
  padding: 48px 36px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.case-execution-card:hover {
  background: #0a0a0a;
}

.case-execution-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  display: block;
}

.case-execution-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.case-execution-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.46);
  margin: 0;
}

/* ─── Results ─── */
.case-results-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.case-results-head {
  max-width: 560px;
  margin-bottom: 64px;
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--border);
  gap: 1px;
}

.case-result-card {
  background: var(--charcoal);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 3px solid var(--teal);
  transition: background 0.2s;
}

.case-result-card:hover {
  background: #141414;
}

.case-result-metric {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  color: var(--teal);
  display: block;
}

.case-result-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.65);
  margin: 0;
  max-width: 40ch;
}

/* ─── Takeaways ─── */
.case-takeaways-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 80px;
  align-items: start;
}

.case-takeaways-head {
  position: sticky;
  top: 100px;
}

.case-takeaways-head .section-title {
  margin-bottom: 0;
}

.case-takeaways-list {
  border-top: 1px solid var(--border);
}

.case-takeaway-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.case-takeaway-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--teal);
  flex-shrink: 0;
  width: 44px;
}

.case-takeaway-item p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.65);
  margin: 0;
  padding-top: 4px;
}

/* ─── RESPONSIVE: tablet (<=1024px) ─── */
@media (max-width: 1024px) {
  .case-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-narrative-section {
    grid-template-columns: 1fr;
    padding: 80px 36px;
    gap: 48px;
  }

  .case-narrative-head {
    position: static;
  }

  .case-execution-section,
  .case-results-section,
  .case-takeaways-section {
    padding: 80px 36px;
  }

  .case-execution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-takeaways-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-takeaways-head {
    position: static;
  }
}

/* ─── RESPONSIVE: mobile (<=768px) ─── */
@media (max-width: 768px) {
  .case-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-stat {
    padding: 28px 24px;
  }

  .case-narrative-section,
  .case-execution-section,
  .case-results-section,
  .case-takeaways-section {
    padding: 80px 24px;
  }

  .case-execution-grid {
    grid-template-columns: 1fr;
  }

  .case-execution-card {
    padding: 32px 24px 36px;
  }

  .case-results-grid {
    grid-template-columns: 1fr;
  }

  .case-result-card {
    padding: 36px 28px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG / INSIGHTS PAGE. REDESIGN
   Body class: .page-blog
═══════════════════════════════════════════════════════════════ */

.page-blog {
  cursor: auto;
}

.page-blog .hero {
  min-height: 88vh;
}

/* ─── Featured insight ─── */
.blog-featured-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
}

.blog-featured-card__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
}

.blog-featured-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 110px);
  line-height: 1;
  color: rgba(241, 109, 2, 0.14);
  letter-spacing: -0.02em;
  display: block;
}

.blog-featured-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-featured-card__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 20px;
  max-width: 22ch;
}

.blog-featured-card__excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.6);
  max-width: 60ch;
  margin: 0 0 28px;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.blog-card-cta:hover {
  gap: 14px;
  opacity: 0.85;
}

/* ─── Filter bar ─── */
.blog-filter-bar {
  border-bottom: 1px solid var(--border);
  background: var(--black);
  padding: 0 48px;
}

.blog-filter {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}

.blog-filter__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-filter__chip {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 251, 250, 0.18);
  background: transparent;
  color: rgba(242, 251, 250, 0.7);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.blog-filter__chip:hover,
.blog-filter__chip[aria-pressed="true"] {
  border-color: rgba(241, 109, 2, 0.6);
  background: rgba(241, 109, 2, 0.08);
  color: var(--white);
}

/* ─── Insights grid ─── */
.blog-grid-section {
  padding: 0 0 104px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-card {
  background: var(--black);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}

.blog-card:hover {
  background: var(--charcoal);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.blog-card__title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title a {
  color: rgba(241, 109, 2, 0.92);
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
  flex-grow: 1;
}

/* ─── Subscribe ─── */
.blog-subscribe-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.blog-subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
}

.blog-subscribe-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
  max-width: 44ch;
  margin: 16px 0 0;
}

.blog-subscribe-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-subscribe-input {
  padding: 13px 16px;
  border-radius: 2px;
  border: 1px solid rgba(242, 251, 250, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.blog-subscribe-input:focus {
  border-color: rgba(241, 109, 2, 0.5);
}

.blog-subscribe-input::placeholder {
  color: rgba(242, 251, 250, 0.35);
}

.blog-subscribe-note {
  font-size: 12px;
  color: rgba(242, 251, 250, 0.4);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-featured-card__aside {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .blog-featured-num {
    font-size: 56px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-subscribe-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .blog-featured-section,
  .blog-grid-section,
  .blog-subscribe-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-filter-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .blog-card {
    padding: 28px 24px;
  }

  .blog-subscribe-form__row {
    grid-template-columns: 1fr;
  }
}

/* ─── Blog page refresh (hero, toolbar, cards, pillars) ─── */
.blog-hero--split {
  min-height: auto;
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.blog-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) 0;
}

.page-blog .hero-h1 .line em.hero-h1-accent {
  font-style: normal;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.blog-hero-chips li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.68);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-hero-desc {
  max-width: 56ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.blog-editorial-visual {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
}

.blog-editorial-visual__label {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

.blog-editorial-visual__label span {
  color: rgba(247, 242, 236, 0.28);
}

.blog-editorial-visual__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.blog-editorial-visual__node {
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(229, 97, 39, 0.04);
  text-align: center;
}

.blog-editorial-visual__node--core {
  background: rgba(229, 97, 39, 0.1);
  border-color: rgba(229, 97, 39, 0.22);
}

.blog-editorial-visual__node--wide {
  grid-column: span 2;
}

.blog-editorial-visual__node span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.78);
}

.blog-aeo-block {
  border-bottom: 1px solid var(--border);
}

.blog-featured-head,
.blog-grid-head,
.blog-categories-head,
.blog-pillars-head,
.blog-guides-head {
  max-width: 560px;
  margin: 0 0 48px;
  padding: 0 48px;
}

.blog-featured-section {
  padding-top: 104px;
}

.blog-featured-card--v2 {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 48px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--black);
}

.blog-featured-card--v2 .blog-featured-card__body {
  padding: 40px 40px 44px;
}

.blog-featured-card--v2 .blog-featured-card__meta {
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-categories-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

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

.blog-category-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(242, 251, 250, 0.14);
  background: transparent;
  color: rgba(242, 251, 250, 0.72);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.blog-category-chip:hover,
.blog-category-chip.is-active {
  border-color: rgba(241, 109, 2, 0.55);
  background: rgba(241, 109, 2, 0.08);
  color: var(--white);
}

.blog-category-chip--all {
  margin-left: auto;
}

.blog-toolbar-section {
  padding: 0 48px 32px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-toolbar__search {
  flex: 1 1 280px;
}

.blog-toolbar__input,
.blog-toolbar__select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 2px;
  border: 1px solid rgba(242, 251, 250, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.blog-toolbar__input:focus,
.blog-toolbar__select:focus {
  border-color: rgba(241, 109, 2, 0.45);
}

.blog-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.blog-toolbar__sort-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
}

.blog-toolbar__select {
  min-width: 180px;
}

.blog-grid-head {
  padding-top: 72px;
}

.blog-grid-section .blog-grid {
  margin: 0 48px;
  border: 1px solid var(--border);
}

.blog-card--v2 {
  padding: 0;
  gap: 0;
  overflow: hidden;
  border: none;
}

.blog-card__visual {
  min-height: 148px;
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.22), rgba(20, 20, 20, 0.95) 68%);
}

.blog-card__visual--strategy {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.28), rgba(18, 18, 18, 0.96) 70%);
}

.blog-card__visual--brand {
  background: linear-gradient(135deg, rgba(229, 97, 39, 0.24), rgba(30, 18, 12, 0.96) 72%);
}

.blog-card__visual--website {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.18), rgba(12, 24, 28, 0.96) 72%);
}

.blog-card__visual--seo {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.2), rgba(16, 22, 18, 0.96) 72%);
}

.blog-card__visual--funnel {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.26), rgba(24, 14, 24, 0.96) 72%);
}

.blog-card__visual--social {
  background: linear-gradient(135deg, rgba(229, 97, 39, 0.22), rgba(20, 16, 28, 0.96) 72%);
}

.blog-card__visual--analytics {
  background: linear-gradient(135deg, rgba(241, 109, 2, 0.16), rgba(10, 18, 28, 0.96) 72%);
}

.blog-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-card__meta {
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.blog-card__meta-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-card__date {
  font-size: 12px;
  color: rgba(242, 251, 250, 0.42);
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-badge--placeholder {
  border: 1px solid rgba(242, 251, 250, 0.16);
  color: rgba(242, 251, 250, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.blog-card-cta--disabled {
  color: rgba(242, 251, 250, 0.38);
  cursor: default;
}

.blog-grid-empty {
  margin: 24px 48px 0;
  font-size: 14px;
  color: rgba(242, 251, 250, 0.55);
}

.blog-grid-empty:not(.visually-hidden) {
  position: static;
  width: auto;
  height: auto;
  margin: 24px 48px 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.blog-card.is-hidden {
  display: none;
}

.blog-card--highlight {
  outline: 1px solid rgba(241, 109, 2, 0.55);
  outline-offset: -1px;
  background: rgba(241, 109, 2, 0.04);
}

.blog-pillars-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.blog-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.blog-pillar-card {
  background: var(--charcoal);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}

.blog-pillar-card:hover {
  background: #101010;
}

.blog-pillar-card__marker {
  width: 28px;
  height: 2px;
  background: var(--bf-gradient);
  border-radius: 2px;
}

.blog-pillar-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}

.blog-pillar-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
}

.blog-mid-cta {
  padding: 88px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.blog-mid-cta__inner {
  max-width: 760px;
}

.blog-mid-cta__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 16px;
}

.blog-mid-cta__inner p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.58);
  max-width: 58ch;
}

.blog-mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-guides-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.blog-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.blog-guide-card {
  background: var(--black);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}

.blog-guide-card:hover {
  background: var(--charcoal);
}

.blog-guide-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.blog-guide-card h3 a,
.blog-guide-card__link {
  color: var(--white);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.blog-guide-card h3 a:hover,
.blog-guide-card__link:hover {
  color: rgba(241, 109, 2, 0.92);
}

.blog-influencer-note {
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.blog-influencer-note__inner {
  max-width: 720px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
}

.blog-influencer-note__inner h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
}

.blog-influencer-note__inner p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
}

.blog-influencer-note__link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}

.blog-influencer-note__link:hover {
  opacity: 0.8;
}

.blog-faq-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.blog-final-cta .cta-sub {
  max-width: 58ch;
}

@media (max-width: 1024px) {
  .blog-hero-split {
    grid-template-columns: 1fr;
  }

  .blog-hero-split__visual {
    max-width: 520px;
  }

  .blog-featured-card--v2 {
    grid-template-columns: 1fr;
  }

  .blog-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-category-chip--all {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .blog-hero-split {
    padding-top: 108px;
  }

  .blog-featured-head,
  .blog-grid-head,
  .blog-categories-head,
  .blog-pillars-head,
  .blog-guides-head,
  .blog-toolbar-section,
  .blog-categories-section,
  .blog-pillars-section,
  .blog-mid-cta,
  .blog-guides-section,
  .blog-influencer-note,
  .blog-faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-featured-card--v2,
  .blog-grid-section .blog-grid {
    margin-left: 24px;
    margin-right: 24px;
  }

  .blog-featured-head,
  .blog-grid-head,
  .blog-categories-head,
  .blog-pillars-head,
  .blog-guides-head {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-pillars-grid,
  .blog-guides-grid {
    grid-template-columns: 1fr;
  }

  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-toolbar__sort {
    width: 100%;
  }

  .blog-toolbar__select {
    flex: 1;
  }

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

/* ==========================================================================
   CLIENTS PAGE. REDESIGN
   ========================================================================== */

.page-clients { cursor: auto; }

.page-clients .hero { min-height: 88vh; padding-top: 35px; }

/* ─── Sectors ─── */
.clients-sectors-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
}

.clients-sectors-head {
  max-width: 820px;
  margin: 0 0 64px;
}

.clients-sectors-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.6);
  max-width: 60ch;
  margin: 20px 0 0;
}

.clients-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.clients-sector-card {
  background: var(--black);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}

.clients-sector-card:hover {
  background: var(--charcoal);
}

.clients-sector-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.18);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.clients-sector-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}

.clients-sector-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
  flex-grow: 1;
}

.clients-sector-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.clients-brand-pill {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
  border: 1px solid rgba(242, 251, 250, 0.14);
  padding: 4px 10px;
  border-radius: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.clients-sector-card:hover .clients-brand-pill {
  color: rgba(241, 109, 2, 0.8);
  border-color: rgba(241, 109, 2, 0.25);
}

/* ─── Moments / How We Show Up ─── */
.clients-moments-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.clients-moments-head {
  max-width: 820px;
  margin: 0 0 64px;
}

.clients-moments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.clients-moment-card {
  background: var(--black);
  padding: 52px 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clients-moment-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.12);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.clients-moment-card .section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.clients-moment-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.clients-moment-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
}

/* ─── Why Partnerships Last ─── */
.clients-why-section {
  background: var(--black);
}

.clients-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ─── Client Quotes ─── */
.clients-quotes-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.clients-quotes-head {
  max-width: 820px;
  margin: 0 0 64px;
}

.clients-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.clients-quote {
  background: var(--black);
  padding: 52px 44px 48px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease;
}

.clients-quote:hover {
  background: rgba(241, 109, 2, 0.03);
}

.clients-quote__mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.8;
  color: var(--teal);
  opacity: 0.6;
  display: block;
}

.clients-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.85);
  font-weight: 400;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}

.clients-quote__footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.clients-quote__footer strong {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.clients-quote__footer span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(242, 251, 250, 0.45);
  letter-spacing: 0.04em;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .clients-sectors-grid,
  .clients-moments-grid,
  .clients-quotes-grid {
    grid-template-columns: 1fr;
  }

  .clients-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-sector-card,
  .clients-moment-card,
  .clients-quote {
    padding: 40px 32px 36px;
  }
}

@media (max-width: 768px) {
  .clients-sectors-section,
  .clients-moments-section,
  .clients-quotes-section {
    padding: 72px 24px;
  }

  .clients-sectors-head,
  .clients-moments-head,
  .clients-quotes-head {
    margin-bottom: 40px;
  }

  .clients-why-grid {
    grid-template-columns: 1fr;
  }

  .clients-sector-card,
  .clients-moment-card,
  .clients-quote {
    padding: 36px 24px 32px;
  }

  .clients-sector-num { font-size: 40px; }
  .clients-moment-num { font-size: 56px; }
  .clients-quote__mark { font-size: 56px; }
}

/* ==========================================================================
   FAQS PAGE. REDESIGN
   ========================================================================== */

.page-faqs { cursor: auto; }

.page-faqs .hero { min-height: 88vh; padding-top: 35px; }

/* ─── Category Nav ─── */
.faqs-cat-nav {
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 40;
}

.faqs-cat-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 48px;
}

.faqs-cat-nav-inner::-webkit-scrollbar { display: none; }

.faqs-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faqs-cat-link:first-child { padding-left: 0; }

.faqs-cat-link__num {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(241, 109, 2, 0.55);
}

.faqs-cat-link__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.5);
  transition: color 0.2s ease;
}

.faqs-cat-link:hover {
  border-bottom-color: var(--teal);
}

.faqs-cat-link:hover .faqs-cat-link__label {
  color: var(--white);
}

/* ─── FAQ Sections ─── */
.faqs-section {
  padding: 88px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.faqs-section--alt {
  background: var(--charcoal);
}

.faqs-section-head {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.faqs-section-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.15);
  letter-spacing: 0.02em;
  margin: 0;
  padding-top: 6px;
}

.faqs-section-meta .section-label {
  margin-bottom: 12px;
}

.faqs-section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

/* ─── FAQ Accordion ─── */
.faqs-list {
  max-width: 820px;
  margin: 0 0 0 128px;
}

.faqs-item {
  border-bottom: 1px solid var(--border);
}

.faqs-item:first-child {
  border-top: 1px solid var(--border);
}

.faqs-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color 0.18s ease;
}

.faqs-q::-webkit-details-marker { display: none; }

.faqs-q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: rgba(241, 109, 2, 0.6);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.18s ease;
  line-height: 1;
}

.faqs-item[open] > .faqs-q {
  color: var(--teal);
}

.faqs-item[open] > .faqs-q::after {
  content: '×';
  transform: rotate(0deg);
  color: var(--teal);
}

.faqs-a {
  padding: 0 0 24px;
  max-width: 68ch;
}

.faqs-a p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.6);
  margin: 0;
}

/* ─── Still Have Questions ─── */
.faqs-still-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.faqs-still-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
}

.faqs-still-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 20px;
}

.faqs-still-copy h2 em {
  font-style: italic;
  color: rgba(242, 251, 250, 0.55);
}

.faqs-still-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  max-width: 50ch;
  margin: 0;
}

.faqs-still-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.faqs-still-text-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(242, 251, 250, 0.45);
  text-decoration: none;
  transition: color 0.18s ease;
  margin-top: 4px;
}

.faqs-still-text-link:hover {
  color: var(--white);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .faqs-section-head {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  .faqs-section-num { font-size: 48px; }

  .faqs-list {
    margin-left: 84px;
  }

  .faqs-still-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .faqs-cat-nav-inner {
    padding: 0 24px;
  }

  .faqs-cat-link {
    padding: 14px 16px;
  }

  .faqs-section {
    padding: 64px 24px;
  }

  .faqs-section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 32px;
  }

  .faqs-section-num {
    font-size: 36px;
  }

  .faqs-list {
    margin-left: 0;
  }

  .faqs-q {
    font-size: 14px;
    padding: 20px 0;
  }

  .faqs-still-section {
    padding: 72px 24px;
  }

  .faqs-still-links {
    align-items: stretch;
  }
}

/* ==========================================================================
   TEAM PAGE. REDESIGN
   ========================================================================== */

.page-team { cursor: auto; }

.page-team .hero { min-height: 88vh; padding-top: 35px; }

/* ─── Disciplines Section ─── */
.team-disciplines-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.team-disciplines-head {
  max-width: 820px;
  margin: 0 0 64px;
}

.team-disciplines-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.55);
  max-width: 60ch;
  margin: 20px 0 0;
}

.team-disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.team-disc-card {
  background: var(--black);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}

.team-disc-card:hover {
  background: var(--charcoal);
}

.team-disc-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.team-disc-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.25);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.team-disc-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}

.team-disc-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
  flex-grow: 1;
}

.team-disc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.team-skill-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.4);
  border: 1px solid rgba(242, 251, 250, 0.1);
  padding: 3px 8px;
  border-radius: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.team-disc-card:hover .team-skill-tag {
  color: rgba(241, 109, 2, 0.7);
  border-color: rgba(241, 109, 2, 0.2);
}

/* ─── Principles Section ─── */
.team-principles-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.team-principles-head {
  max-width: 820px;
  margin: 0 0 64px;
}

.team-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.team-principle-card {
  background: var(--black);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
}

.team-principle-card:hover {
  background: rgba(241, 109, 2, 0.03);
}

.team-principle-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.15);
  letter-spacing: 0.04em;
}

.team-principle-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.team-principle-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
}

/* ─── Pull Quote / Editorial ─── */
.team-pull-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.team-pull-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
}

.team-pull-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-pull-mark {
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 0.7;
  color: var(--teal);
  opacity: 0.5;
  display: block;
}

.team-pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.85);
  font-style: italic;
  font-weight: 400;
  margin: 0;
  max-width: 60ch;
}

.team-pull-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team-pull-quote footer strong {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.team-pull-quote footer span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(242, 251, 250, 0.4);
}

.team-pull-stat-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.team-pull-stat {
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-pull-stat:last-child {
  border-bottom: none;
}

.team-pull-stat__value {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.04em;
}

.team-pull-stat__label {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(242, 251, 250, 0.5);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .team-disciplines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-pull-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .team-pull-stat-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-pull-stat {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .team-pull-stat:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .team-disciplines-section,
  .team-principles-section,
  .team-pull-section {
    padding: 72px 24px;
  }

  .team-disciplines-head,
  .team-principles-head {
    margin-bottom: 40px;
  }

  .team-disciplines-grid {
    grid-template-columns: 1fr;
  }

  .team-principles-grid {
    grid-template-columns: 1fr;
  }

  .team-disc-card,
  .team-principle-card {
    padding: 36px 24px 32px;
  }

  .team-pull-mark { font-size: 64px; }

  .team-pull-stat-block {
    grid-template-columns: 1fr;
  }

  .team-pull-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ==========================================================================
   BLOG POST DETAIL PAGE
   ========================================================================== */

.page-blog-post { cursor: auto; }

/* ─── Post Header ─── */
.post-header {
  padding: 120px 48px 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.post-header__inner {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.post-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.post-header__back {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.45);
  text-decoration: none;
  transition: color 0.18s ease;
  margin-right: 8px;
}

.post-header__back:hover { color: var(--white); }

.post-header__read-time {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.4);
}

.post-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 28px;
  max-width: 28ch;
}

.post-header__byline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.post-header__author {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.55);
}

.post-header__sep {
  color: rgba(242, 251, 250, 0.25);
}

.post-header__date {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(242, 251, 250, 0.4);
}

.post-header__rule {
  height: 1px;
  background: var(--border);
}

/* ─── Post Layout (sidebar + body) ─── */
.post-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

/* ─── Sidebar TOC ─── */
.post-sidebar {
  border-right: 1px solid var(--border);
  padding: 56px 32px 56px 0;
  /* Sticky must be on the grid item itself, with align-self: start so it
     doesn't stretch to the full row height (which breaks sticky). */
  position: sticky;
  top: 100px;
  align-self: start;
}

.post-sidebar__inner {
  /* No positioning here, sticky lives on .post-sidebar above. */
}

.post-sidebar__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.35);
  margin: 0 0 20px;
}

.post-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-toc__link {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.4);
  text-decoration: none;
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.post-toc__link:hover {
  color: var(--white);
  border-left-color: var(--teal);
}

/* ─── Post Body Typography ─── */
.post-body {
  padding: 56px 0 80px 56px;
  max-width: 720px;
}

.post-body__intro {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.8);
  font-weight: 400;
  margin: 0 0 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin: 56px 0 20px;
}

.post-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  margin: 32px 0 12px;
}

.post-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 251, 250, 0.65);
  margin: 0 0 20px;
}

.post-body p:last-child { margin-bottom: 0; }

/* ─── Post Pull Quote ─── */
.post-pull {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--teal);
  background: rgba(241, 109, 2, 0.04);
}

.post-pull p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.85);
  font-style: italic;
  margin: 0;
}

/* ─── Post Callout ─── */
.post-callout {
  margin: 40px 0;
  padding: 28px 32px;
  border: 1px solid rgba(241, 109, 2, 0.3);
  background: rgba(241, 109, 2, 0.05);
  border-radius: 2px;
}

.post-callout__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

.post-callout p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.75);
  margin: 0;
}

/* ─── Post List ─── */
.post-list {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.65);
  padding-left: 20px;
  position: relative;
}

.post-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 13px;
  top: 2px;
}

.post-list li strong {
  color: var(--white);
  font-weight: 600;
}

/* ─── Post Components Grid ─── */
.post-components-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
  margin: 32px 0 40px;
}

.post-component {
  background: var(--charcoal);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-component__num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: rgba(241, 109, 2, 0.2);
  letter-spacing: 0.04em;
}

.post-component h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  font-style: normal;
  margin: 0;
}

.post-component p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.55);
  margin: 0;
}

/* ─── Author block ─── */
.post-author-block {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.post-author-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.post-author-block__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-author-block__info strong {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.post-author-block__info span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(242, 251, 250, 0.4);
}

/* ─── Related Articles ─── */
.post-related-section {
  padding: 104px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}

.post-related-head {
  margin-bottom: 48px;
}

.post-related-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 12px 0 0;
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.post-related-card {
  background: var(--black);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .post-sidebar {
    display: none;
  }

  .post-body {
    padding: 48px 0 64px;
    max-width: 100%;
  }

  .post-header {
    padding: 64px 32px 0;
  }

  .post-header__inner {
    max-width: 100%;
  }

  .post-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .post-header {
    padding: 48px 24px 0;
  }

  .post-layout {
    padding: 0 24px;
  }

  .post-body h2 { font-size: 22px; }

  .post-components-grid {
    grid-template-columns: 1fr;
  }

  .post-author-block__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-related-section {
    padding: 72px 24px;
  }
}

/* ─── Blog detail template refresh ─── */
.blog-detail-main {
  background: var(--black);
}

.post-hero-v2 {
  padding: clamp(27px, 3vw, 35px) clamp(24px, 5vw, 48px) clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.post-hero-v2__shell {
  max-width: 860px;
  margin: 0 auto;
}

.post-hero-v2 .service-breadcrumb {
  margin-bottom: 24px;
}

.post-hero-v2__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.post-hero-v2__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.18;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 18px;
  max-width: 24ch;
}

.post-hero-v2__excerpt {
  margin: 0 0 20px;
  max-width: 62ch;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.62);
}

.post-hero-v2__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(242, 251, 250, 0.42);
}

.post-hero-v2__sep {
  color: rgba(242, 251, 250, 0.22);
}

.post-hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.post-hero-v2__banner {
  margin: clamp(28px, 4vw, 40px) 0 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
}

.post-hero-v2__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.blog-card__visual--has-image {
  position: relative;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.blog-card__visual--has-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-featured-card .blog-card__visual--has-image,
.blog-featured-card .blog-card__visual--has-image img {
  min-height: 220px;
}

.post-quick-answer {
  padding: 0 clamp(24px, 5vw, 48px) 40px;
  border-bottom: 1px solid var(--border);
}

.post-quick-answer__shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.02);
}

.post-quick-answer__title {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.9);
}

.post-quick-answer__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.78);
  max-width: 68ch;
}

.post-toc-mobile {
  display: none;
  margin: 0 clamp(24px, 5vw, 48px) 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--charcoal);
}

.post-toc-mobile__summary {
  cursor: pointer;
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 251, 250, 0.72);
}

.post-toc-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 18px 16px;
}

.post-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(32px, 4vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(24px, 5vw, 48px) 80px;
  align-items: start;
}

.post-main {
  min-width: 0;
}

.post-body--v2 {
  padding: 0;
  max-width: 720px;
}

.post-inline-cta {
  margin: 44px 0;
  padding: 28px 28px 30px;
  border: 1px solid rgba(241, 109, 2, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(229, 97, 39, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.post-inline-cta__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--white);
}

.post-inline-cta__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 251, 250, 0.62);
  max-width: 58ch;
}

.post-inline-cta__btn {
  display: inline-flex;
}

.post-body--v2 table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}

.post-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  -webkit-overflow-scrolling: touch;
}

.post-table-wrap table {
  margin: 0;
  min-width: 560px;
}

.post-body--v2 th,
.post-body--v2 td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.post-body--v2 th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.post-body--v2 td {
  color: rgba(242, 251, 250, 0.65);
}

.post-body--v2 blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid rgba(241, 109, 2, 0.55);
  color: rgba(242, 251, 250, 0.72);
  background: rgba(241, 109, 2, 0.04);
}

.post-body--v2 a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-body--v2 figure {
  margin: 32px 0;
}

.post-body--v2 img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.post-body--v2 figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(242, 251, 250, 0.45);
}

.post-editorial-note {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.post-editorial-note h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.post-editorial-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.58);
}

.post-editorial-note__author {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.post-editorial-note__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.post-editorial-note__name {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--white);
}

.post-editorial-note__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.55);
}

.post-article-faq {
  margin-top: 56px;
  padding-top: 8px;
  max-width: 720px;
}

.post-article-faq__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.post-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-aside__block {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--charcoal);
}

.post-aside__heading,
.post-aside__cta-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.post-aside__cta-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.55);
}

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

.post-aside-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.post-aside-service-card {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.post-aside-service-card:first-child {
  padding-top: 0;
  border-top: none;
}

.post-aside-service-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
}

.post-aside-service-card h4 a {
  color: var(--white);
  text-decoration: none;
}

.post-aside-service-card h4 a:hover {
  color: rgba(241, 109, 2, 0.92);
}

.post-aside-service-card p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(242, 251, 250, 0.5);
}

.post-aside-service-card__link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}

.post-aside-guides {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-aside-guides a {
  color: rgba(242, 251, 250, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.post-aside-guides a:hover {
  color: var(--white);
}

.post-toc__link.is-active {
  color: var(--white);
  border-left-color: rgba(241, 109, 2, 0.85);
}

.post-related-section--v2 .post-related-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.post-final-cta .cta-sub {
  max-width: 58ch;
}

.blog-not-found__section h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin: 0 0 12px;
}

.blog-not-found__help {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(242, 251, 250, 0.5);
}

.blog-not-found__help a {
  color: var(--teal);
}

@media (max-width: 1024px) {
  .post-layout-v2 {
    grid-template-columns: 1fr;
  }

  .post-aside {
    position: static;
    order: 2;
  }

  .post-main {
    order: 1;
  }

  .post-aside__toc {
    display: none;
  }

  .post-toc-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .post-hero-v2__title {
    max-width: none;
  }

  .post-body--v2 {
    overflow-x: auto;
  }

  .post-body--v2 table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ==========================================================================
   HOME PAGE. INSIGHTS SECTION (From the Desk)
   ========================================================================== */

.home-insights-section {
  padding: clamp(72px, 9vw, 112px) clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 45% 55% at 0% 0%, rgba(229, 97, 39, 0.07) 0%, transparent 55%),
    var(--charcoal);
}

.home-insights-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.home-insights-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

.home-insights-head__copy {
  max-width: 40rem;
}

.home-insights-intro {
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.home-insights-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(245, 148, 40, 0.4);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(245, 148, 40, 0.1);
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-insights-view-all:hover,
.home-insights-view-all:focus-visible {
  background: rgba(245, 148, 40, 0.2);
  border-color: rgba(245, 148, 40, 0.7);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.home-insights-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.home-insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 40%),
    rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.home-insight-card:hover {
  border-color: rgba(245, 148, 40, 0.35);
  background:
    linear-gradient(180deg, rgba(229, 97, 39, 0.08) 0%, transparent 45%),
    rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

.home-insight-card__visual {
  position: relative;
  height: 140px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(245, 148, 40, 0.24) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(229, 97, 39, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
}

.home-insight-card:nth-child(2) .home-insight-card__visual {
  background:
    radial-gradient(ellipse 65% 75% at 20% 30%, rgba(245, 148, 40, 0.2) 0%, transparent 55%),
    linear-gradient(160deg, #181818 0%, #0a0a0a 100%);
}

.home-insight-card:nth-child(3) .home-insight-card__visual {
  background:
    radial-gradient(ellipse 60% 70% at 70% 70%, rgba(229, 97, 39, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, #161616 0%, #090909 100%);
}

.home-insight-card__visual--has-image {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 148px;
  background: #0a0a0a;
}

.home-insight-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-insight-card:hover .home-insight-card__image,
.home-insight-card:focus-within .home-insight-card__image {
  transform: scale(1.03);
}

.home-insight-card__visual-mark {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 32px;
  height: 3px;
  background: var(--bf-gradient);
}

.home-insight-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.2vw, 26px);
}

.home-insight-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 12px;
}

.home-insight-card__tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 148, 40, 0.95);
}

.home-insight-card__time {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 236, 0.42);
}

.home-insight-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(247, 242, 236, 0.96);
}

.home-insight-card__title a {
  color: inherit;
  text-decoration: none;
}

.home-insight-card__title a:hover,
.home-insight-card__title a:focus-visible {
  color: #fff;
  outline: none;
}

.home-insight-card__excerpt {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-insight-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bf-amber);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.home-insight-card__cta:hover,
.home-insight-card__cta:focus-visible {
  color: #fff;
  gap: 12px;
  outline: none;
}

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

@media (max-width: 768px) {
  .home-insights-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-insight-card:hover {
    transform: none;
  }
}
/* ── Service pull quote ── */
.svc-pull-quote {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black);
  display: flex;
  justify-content: center;
}

.svc-pull-quote blockquote {
  margin: 0;
  max-width: 820px;
  text-align: center;
  position: relative;
}

.svc-pull-quote blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--teal);
  opacity: 0.45;
  margin-bottom: 24px;
}

.svc-pull-quote blockquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: rgba(242, 251, 250, 0.82);
}

@media (max-width: 768px) {
  .svc-pull-quote {
    padding: 64px 24px;
  }
}

/* ==========================================================================
   HOMEPAGE REFINEMENT, typography, new sections, gradient accents
   ========================================================================== */

.hero-h1 {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-desc {
  max-width: 520px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(17, 17, 17, 0.98) 100%);
}

.hero-trust-chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 242, 236, 0.72);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-answer-block {
  padding: 56px 48px 72px;
  border-bottom: 1px solid var(--border);
  background: var(--mid);
}

.home-answer-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 40px 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.home-answer-block__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.home-answer-block__text {
  margin: 0;
  max-width: 56ch;
  color: rgba(247, 242, 236, 0.62);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.home-answer-block__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-answer-card {
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--charcoal);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-answer-card:hover {
  border-image: var(--bf-gradient) 1;
  border-style: solid;
  border-width: 1px;
  transform: translateY(-2px);
}

.home-answer-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.home-answer-card p {
  margin: 0;
  color: rgba(247, 242, 236, 0.52);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

.stats-ticker {
  background: var(--bf-gradient);
}

.home-influencer-crosslink--strip {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(229, 97, 39, 0.08) 0%, rgba(229, 97, 39, 0.02) 28%, transparent 55%),
    rgba(255, 255, 255, 0.015);
}

.home-influencer-crosslink__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px clamp(16px, 3vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 48px);
  min-height: 0;
}

.home-influencer-crosslink__badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border: 1px solid rgba(229, 97, 39, 0.28);
  border-radius: 999px;
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-influencer-crosslink__content {
  min-width: 0;
  line-height: 1.45;
}

.home-influencer-crosslink__title {
  display: inline;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.35vw, 15px);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(247, 242, 236, 0.88);
}

.home-influencer-crosslink__title::after {
  content: ": ";
  font-weight: 400;
  color: rgba(247, 242, 236, 0.28);
}

.home-influencer-crosslink__text {
  display: inline;
  margin: 0;
  color: rgba(247, 242, 236, 0.5);
  font-family: var(--font-body);
  font-size: clamp(12px, 1.25vw, 14px);
  line-height: 1.45;
}

.home-influencer-crosslink__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(247, 242, 236, 0.78);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.home-influencer-crosslink__cta-icon {
  color: var(--bf-amber);
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.home-influencer-crosslink__cta:hover,
.home-influencer-crosslink__cta:focus-visible {
  border-color: rgba(229, 97, 39, 0.42);
  background: rgba(229, 97, 39, 0.1);
  color: rgba(247, 242, 236, 0.95);
}

.home-influencer-crosslink__cta:hover .home-influencer-crosslink__cta-icon,
.home-influencer-crosslink__cta:focus-visible .home-influencer-crosslink__cta-icon {
  transform: translateX(2px);
}

.growth-360-section {
  padding: clamp(80px, 9vw, 104px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--border);
  background: var(--black);
}

.growth-360-section__intro {
  max-width: 68ch;
  margin-top: 16px;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.growth-360-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: 48px auto 0;
  background: var(--border);
}

.growth-360-pillar {
  padding: 32px 28px;
  background: var(--charcoal);
  border-top: 2px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.growth-360-pillar:hover {
  border-top-color: var(--bf-orange);
  background: rgba(229, 97, 39, 0.04);
}

.growth-360-pillar h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.growth-360-pillar p {
  margin: 0;
  color: rgba(247, 242, 236, 0.52);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
}

.growth-360-section__cta {
  margin-top: 40px;
}

.why-section-intro {
  max-width: 62ch;
  margin-top: 14px;
  color: rgba(247, 242, 236, 0.55);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

.services-grid--nine .service-card h3,
.services-grid--ten .service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.portfolio-section--formats {
  padding: 104px 48px;
  overflow: visible;
}

.portfolio-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.portfolio-format-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--mid);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.portfolio-format-card:hover {
  border-color: rgba(229, 97, 39, 0.45);
  transform: translateY(-4px);
}

.portfolio-format-card__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.portfolio-format-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.portfolio-format-card__discuss {
  color: rgba(247, 242, 236, 0.48);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.portfolio-format-card__discuss:hover,
.portfolio-format-card__discuss:focus-visible {
  color: var(--bf-amber);
}

.home-faq-section {
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.home-faq-list {
  max-width: 760px;
}

.nav-dropdown-cta {
  background: var(--bf-gradient);
  color: var(--bf-black);
}

.nav-dropdown-cta:hover,
.nav-dropdown-cta:focus-visible {
  filter: brightness(1.06);
  color: var(--bf-black);
}

@media (max-width: 1024px) {
  .home-answer-block__inner {
    grid-template-columns: 1fr;
  }

  .home-answer-block__cards,
  .growth-360-pillars,
  .portfolio-formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-trust-chips {
    padding: 16px 24px 20px;
    gap: 8px;
  }

  .hero-trust-chip {
    font-size: 10px;
    padding: 7px 12px;
  }

  .home-answer-block,
  .growth-360-section,
  .portfolio-section--formats {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-answer-block__cards,
  .growth-360-pillars,
  .portfolio-formats-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .home-influencer-crosslink__inner {
    padding: 12px 20px;
    gap: 12px 16px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-faq-section.services-faq-section {
    padding: 80px 24px;
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOMEPAGE POLISH PASS, grid fix, readability, premium refinements
   ========================================================================== */

.home .hero {
  padding: clamp(134px, 16.8vw, 154px) clamp(24px, 4vw, 48px) clamp(64px, 8vw, 76px);
}

.home .hero-bottom-main {
  gap: clamp(24px, 4vw, 40px);
}

.home .hero-actions {
  flex-wrap: wrap;
}

.home .hero-actions .btn-primary,
.home .hero-actions .btn-outline {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

ul.services-grid {
  padding: 0;
  list-style: none;
}

.services-section-outro {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 56px);
}

/* Homepage services slider. 3 cards on desktop */
.home .services-section--slider {
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: visible;
}

.home .services-section__shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(48px, 4vw, 56px);
}

.home .services-section__header {
  max-width: 40rem;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.home .services-section--slider .section-title {
  margin: 0;
}

.home .services-section--slider .services-section-intro {
  margin-top: 16px;
  max-width: 52ch;
}

.services-slider {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.services-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.services-slider__viewport:active {
  cursor: grabbing;
}

.services-slider__track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  will-change: transform;
}

.services-slider__card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 32px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(229, 97, 39, 0.08) 0%, transparent 55%),
    rgba(0, 0, 0, 0.28);
  list-style: none;
}

.services-slider__card .service-card__body {
  flex: 1 1 auto;
  position: relative;
}

.services-slider__card .service-num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(229, 97, 39, 0.7);
}

.services-slider__card .service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: rgba(247, 242, 236, 0.72);
  transition: color 0.25s ease;
}

.services-slider__card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.services-slider__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.services-slider__card .service-link {
  margin-top: 24px;
  padding-top: 4px;
}

.services-slider__card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(229, 97, 39, 0.12) 0%, transparent 55%),
    rgba(0, 0, 0, 0.34);
}

.services-slider__card:hover .service-icon {
  color: var(--bf-amber);
}

.services-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.88);
  color: rgba(247, 242, 236, 0.78);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.services-slider__arrow:hover,
.services-slider__arrow:focus-visible {
  border-color: rgba(229, 97, 39, 0.45);
  color: var(--bf-amber);
  background: rgba(229, 97, 39, 0.12);
  outline: none;
}

.services-slider__arrow--prev {
  left: 0;
}

.services-slider__arrow--next {
  right: 0;
}

@media (min-width: 769px) {
  .services-slider__arrow--prev {
    left: -40px;
  }

  .services-slider__arrow--next {
    right: -40px;
  }
}

.home .services-section--slider .services-section-outro {
  margin-top: clamp(36px, 4.5vw, 48px);
}

@media (max-width: 768px) {
  .home .services-section--slider {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .home .services-section__shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-slider__arrow--prev {
    left: 0;
  }

  .services-slider__arrow--next {
    right: 0;
  }

  .services-slider__arrow {
    width: 36px;
    height: 36px;
  }

  .services-slider__card {
    padding: 28px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-slider__track {
    transition: none !important;
  }
}

.services-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(247, 242, 236, 0.82);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.services-more-btn:hover,
.services-more-btn:focus-visible {
  border-color: rgba(229, 97, 39, 0.5);
  background: rgba(229, 97, 39, 0.08);
  color: #f7f2ec;
  transform: translateY(-2px);
}

.services-more-btn__arrow {
  display: inline-block;
  color: var(--bf-amber);
  transition: transform 0.3s ease;
}

.services-more-btn:hover .services-more-btn__arrow,
.services-more-btn:focus-visible .services-more-btn__arrow {
  transform: translateX(4px);
}

ul.services-grid > .service-card {
  list-style: none;
}

.service-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-card__title-link:hover,
.service-card__title-link:focus-visible {
  color: var(--bf-amber);
}

.services-grid--nine,
.services-grid--ten {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1100px) {
  .services-grid--ten {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 1280px;
  }
}

.services-grid--nine .service-card,
.services-grid--ten .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 36px 32px 32px;
}

.services-grid--ten .service-card {
  padding: 28px 22px 24px;
}

.services-grid--nine .service-card__body,
.services-grid--ten .service-card__body {
  flex: 1 1 auto;
  position: relative;
}

.services-grid--nine .service-card .service-icon,
.services-grid--ten .service-card .service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: rgba(247, 242, 236, 0.72);
  transition: color 0.25s ease;
}

.services-grid--nine .service-card h3,
.services-grid--ten .service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.services-grid--ten .service-card h3 {
  font-size: 16px;
}

.services-grid--nine .service-card p,
.services-grid--ten .service-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.services-grid--ten .service-card p {
  font-size: 14px;
  line-height: 1.65;
}

.services-grid--nine .service-card .service-link,
.services-grid--ten .service-card .service-link {
  margin-top: 24px;
  padding-top: 4px;
}

.services-grid--nine .service-card:hover,
.services-grid--ten .service-card:hover {
  background: rgba(255, 255, 255, 0.025);
}

.services-grid--nine .service-card:hover .service-icon,
.services-grid--ten .service-card:hover .service-icon {
  color: var(--bf-amber);
}

.home-answer-block {
  padding: clamp(64px, 8vw, 88px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(229, 97, 39, 0.07) 0%, transparent 55%),
    var(--mid);
}

.home-answer-block__inner {
  gap: 48px 64px;
  align-items: center;
}

.home-answer-block__title {
  font-size: clamp(30px, 3.2vw, 42px);
}

.home-answer-block__text {
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.8;
  color: rgba(247, 242, 236, 0.68);
}

.home-answer-card {
  padding: 28px 24px;
  min-height: 100%;
}

.home-answer-card:hover {
  border-color: rgba(229, 97, 39, 0.38);
  transform: translateY(-2px);
}

.home-answer-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.stats-ticker {
  background: linear-gradient(135deg, rgba(245, 148, 40, 0.92) 0%, rgba(229, 97, 39, 0.96) 48%, rgba(182, 63, 39, 0.92) 100%);
}

.growth-360-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px 56px;
  max-width: 1200px;
  margin: 0 auto 48px;
  align-items: center;
}

.growth-360-visual {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(5, 5, 5, 0.98) 100%);
  overflow: hidden;
}

.growth-360-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
}

.growth-360-visual__nodes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.growth-360-visual__nodes span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(247, 242, 236, 0.72);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.growth-360-visual__nodes span:hover {
  border-color: rgba(229, 97, 39, 0.35);
  background: rgba(229, 97, 39, 0.05);
}

.growth-360-pillar {
  padding: 36px 30px;
  min-height: 100%;
}

.growth-360-pillar h3 {
  font-size: 18px;
}

.growth-360-pillar p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.growth-360-section__cta {
  margin-top: 32px;
}

.why-item p,
.testimonial-card p,
.home-insight-card__excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.58);
}

.portfolio-format-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px;
}

.portfolio-format-card__title {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.portfolio-format-card .portfolio-kicker {
  font-size: 10px;
  margin-bottom: 6px;
}

.portfolio-format-card .portfolio-what {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
  margin-bottom: 16px;
}

.portfolio-format-card__actions {
  margin-top: auto;
  padding-top: 8px;
}

.numbers-section--qualitative {
  padding: clamp(64px, 8vw, 96px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(229, 97, 39, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 100% 40%, rgba(245, 148, 40, 0.06) 0%, transparent 50%),
    var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.numbers-section__shell {
  max-width: 1240px;
  margin: 0 auto;
}

.numbers-section__head {
  max-width: 36rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.numbers-section__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(247, 242, 236, 0.96);
}

.numbers-section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(247, 242, 236, 0.88);
}

.numbers-section--qualitative .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin: 0;
  gap: 14px;
  background: transparent;
}

.numbers-section--qualitative .number-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%),
    rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.numbers-section--qualitative .number-item:hover {
  border-color: rgba(245, 148, 40, 0.35);
  transform: translateY(-3px);
}

.number-item__index {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bf-amber);
}

.numbers-section--qualitative .number-value--text {
  display: block;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #f7f2ec;
}

.numbers-section--qualitative .number-label {
  margin: 10px 0 0;
  color: rgba(245, 148, 40, 0.9);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.number-item__detail {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.58);
}

@media (max-width: 1024px) {
  .numbers-section--qualitative .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .numbers-section--qualitative .number-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .numbers-section--qualitative .number-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .numbers-section--qualitative .number-item:hover {
    transform: none;
  }
}

.clients-section--categories .clients-label {
  margin-bottom: 36px;
  color: rgba(247, 242, 236, 0.45);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.clients-grid--badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  justify-content: stretch;
}

.client-item--badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  min-height: 120px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, transparent 45%),
    rgba(0, 0, 0, 0.28);
  color: rgba(247, 242, 236, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.client-item__index {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(245, 148, 40, 0.85);
}

.client-item__label {
  display: block;
  line-height: 1.3;
}

.client-item--badge:hover {
  border-color: rgba(245, 148, 40, 0.4);
  background:
    linear-gradient(165deg, rgba(229, 97, 39, 0.12) 0%, transparent 50%),
    rgba(0, 0, 0, 0.36);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .clients-grid--badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .clients-grid--badges {
    grid-template-columns: 1fr;
  }

  .client-item--badge {
    min-height: 96px;
  }

  .client-item--badge:hover {
    transform: none;
  }
}

.home-faq-section {
  display: block;
  padding: clamp(80px, 9vw, 112px) clamp(24px, 4vw, 48px);
}

.home-faq-section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.home-faq-section__intro {
  margin: 16px 0 0;
  max-width: 56ch;
  color: rgba(247, 242, 236, 0.55);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

.home-faq-list .services-faq-q {
  font-size: 16px;
  line-height: 1.45;
  padding: 24px 0;
}

.home-faq-list .services-faq-a p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 242, 236, 0.62);
}

@media (max-width: 1024px) {
  .services-grid--nine,
  .services-grid--ten {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-360-section__layout {
    grid-template-columns: 1fr;
  }

  .growth-360-visual {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .services-grid--nine,
  .services-grid--ten {
    grid-template-columns: 1fr;
  }

  .services-grid--nine .service-card,
  .services-grid--ten .service-card {
    padding: 32px 24px 28px;
  }

  .hero-trust-chips {
    justify-content: flex-start;
    padding: 16px 24px 20px;
  }
}

/* ==========================================================================
   HOMEPAGE IMPROVEMENT PASS, hero slider, project slider, fonts, visuals
   ========================================================================== */

/* Font roles sitewide */
.nav-links > li > a,
.nav-cta,
.btn-primary,
.btn-outline,
.btn-secondary,
.panel-btn,
.service-link,
.hero-trust-chip {
  font-family: var(--font-ui);
}

.section-title,
.home-answer-block__title,
.clients-section__title,
.portfolio-format-card__title,
.growth-360-pillar h3,
.why-item h3,
.home-insight-card__title,
.services-faq-q {
  font-family: var(--font-heading);
}

.section-title em,
.cta-section h2 em,
.testimonials-section .section-title em,
.home-faq-section .section-title em,
.home-insights-section .section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* Hero text slider */
.hero-text-slider {
  width: 100%;
}

.hero-text-slider__viewport {
  position: relative;
  min-height: clamp(300px, 36vw, 380px);
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.hero-text-slider__viewport.is-swiping {
  cursor: grabbing;
  touch-action: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-slide.is-measuring {
  position: relative;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.is-peek {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slide.is-peek .hero-h1__line-inner,
.hero-slide.is-peek .hero-desc,
.hero-slide.is-dragging .hero-h1__line-inner,
.hero-slide.is-dragging .hero-desc {
  transform: none;
  opacity: 1;
  filter: none;
  transition: none;
}

.hero-slide.is-dragging {
  z-index: 3;
}

.hero-slide.is-entering.is-dir-next {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
}

.hero-slide.is-entering.is-dir-prev {
  opacity: 0;
  transform: translate3d(-28px, 0, 0);
}

.hero-slide.is-leaving.is-dir-next {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
}

.hero-slide.is-leaving.is-dir-prev {
  opacity: 0;
  transform: translate3d(18px, 0, 0);
}

.hero-slide .hero-h1,
.home .hero-text-slider .hero-slide .hero-h1 {
  margin: 0 0 18px;
  overflow: visible;
  max-width: 12em;
  min-height: 2.7em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 10vw, 140px);
  font-weight: bold;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
}

.hero-slide .hero-h1 .hero-h1-accent {
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
}

.hero-h1__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
  margin-bottom: -0.04em;
}

.hero-h1__line-inner {
  display: block;
  transform: translate3d(0, 112%, 0);
  opacity: 0;
  filter: blur(4px);
  transition:
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
  transition-delay: calc(var(--line-index, 0) * 75ms);
  will-change: transform, opacity, filter;
}

.hero-slide.is-dir-next .hero-h1__line-inner {
  transform: translate3d(18px, 112%, 0);
}

.hero-slide.is-dir-prev .hero-h1__line-inner {
  transform: translate3d(-18px, 112%, 0);
}

.hero-slide.is-active .hero-h1__line-inner {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: blur(0);
  transition-delay: calc(0.08s + (var(--line-index, 0) * 85ms));
}

.hero-slide.is-leaving .hero-h1__line-inner {
  opacity: 0;
  filter: blur(3px);
  transition-duration: 0.42s, 0.34s, 0.34s;
  transition-delay: calc(var(--line-index, 0) * 40ms);
}

.hero-slide.is-leaving.is-dir-next .hero-h1__line-inner {
  transform: translate3d(-22px, -48%, 0);
}

.hero-slide.is-leaving.is-dir-prev .hero-h1__line-inner {
  transform: translate3d(22px, -48%, 0);
}

.hero-slide .hero-h1 .line {
  display: inline;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-slide .hero-desc {
  max-width: 38em;
  min-height: 5.25em;
  margin: 0;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.64);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(2px);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  transition-delay: 0s;
}

.hero-slide.is-active .hero-desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition-delay: 0.28s;
}

.hero-slide.is-leaving .hero-desc {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  filter: blur(2px);
  transition-duration: 0.32s;
  transition-delay: 0s;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  flex-shrink: 0;
}

.home .hero-bottom-main--with-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  width: 100%;
}

.home .hero-bottom-main--with-controls .hero-actions {
  flex: 1 1 auto;
}

.home .hero-bottom-main--with-controls .hero-slider-controls {
  margin-left: auto;
}

@media (max-width: 768px) {
  .home .hero-bottom-main--with-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .home .hero-bottom-main--with-controls .hero-slider-controls {
    margin-left: 0;
    justify-content: flex-start;
    order: -1;
    margin-bottom: 4px;
  }
}

.hero-slide-dots {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.hero-slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.55);
  color: rgba(247, 242, 236, 0.62);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  border-color: rgba(229, 97, 39, 0.45);
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
  box-shadow: 0 0 24px rgba(229, 97, 39, 0.12);
}

.hero-slider-arrow:focus-visible {
  outline: 2px solid rgba(229, 97, 39, 0.4);
  outline-offset: 2px;
}

.hero-slider-arrow:active {
  transform: scale(0.96);
}

.hero-slide-dot {
  position: relative;
  overflow: hidden;
  width: 36px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.hero-slide-dot.is-active {
  width: 48px;
  background: rgba(255, 255, 255, 0.18);
  transform: none;
}

.hero-slide-dot__progress {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--bf-gradient);
  pointer-events: none;
  will-change: transform;
}

.hero-slide-dot:focus-visible {
  outline: 2px solid rgba(229, 97, 39, 0.5);
  outline-offset: 3px;
}

.hero-bottom-main--stacked {
  flex-direction: row;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.home .hero-bottom {
  margin-top: 28px;
}

.home .hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  justify-content: flex-start;
}

.home .hero-trust-chip {
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* Project loop slider */
.portfolio-section--slider {
  padding: 104px 0;
  overflow: visible;
}

.project-slider {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.project-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.project-slider__viewport:active {
  cursor: grabbing;
}

.project-slider__track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  will-change: transform;
}

.project-slider__card {
  flex: 0 0 auto;
  min-height: 100%;
}

.project-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.82);
  color: rgba(247, 242, 236, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.project-slider__arrow:hover,
.project-slider__arrow:focus-visible {
  border-color: rgba(229, 97, 39, 0.45);
  color: var(--bf-amber);
  background: rgba(229, 97, 39, 0.08);
}

.project-slider__arrow--prev {
  left: 0;
}

.project-slider__arrow--next {
  right: 0;
}

@media (min-width: 769px) {
  .project-slider__arrow--prev {
    left: -40px;
  }

  .project-slider__arrow--next {
    right: -40px;
  }
}

.btn-primary--compact {
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Trusted brands section */
.clients-section--trusted {
  padding: clamp(72px, 8vw, 96px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(229, 97, 39, 0.07) 0%, transparent 55%),
    var(--mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.clients-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.clients-section__head {
  max-width: 40rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.clients-section__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(247, 242, 236, 0.96);
}

.clients-section__subtext {
  max-width: 58ch;
  margin: 0;
  color: rgba(247, 242, 236, 0.58);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

/* Final CTA, minimal, no inset frame */
.cta-section--premium {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 148px) clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(229, 97, 39, 0.22) 0%, rgba(245, 148, 40, 0.08) 32%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 50% 35%, rgba(245, 148, 40, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 50% 0%, rgba(229, 97, 39, 0.08) 0%, transparent 55%),
    var(--charcoal);
  text-align: center;
}

.cta-section__inner,
.cta-section__glow {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta-section--premium .cta-bg-text {
  top: 48%;
  color: rgba(255, 255, 255, 0.028);
  font-size: clamp(100px, 16vw, 220px);
  letter-spacing: 0.02em;
}

.cta-section--premium .section-label {
  margin-bottom: 18px;
  justify-content: center;
}

.cta-section--premium .section-title {
  position: relative;
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cta-section--premium .section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-section--premium .cta-sub,
.cta-section--premium p.cta-sub,
.cta-section--premium .cta-section__inner > p:not(.section-label) {
  position: relative;
  max-width: 46ch;
  margin: 0 auto 36px;
  color: rgba(247, 242, 236, 0.56);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.75;
}

.cta-section--premium .cta-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
}

@media (max-width: 768px) {
  .cta-section--premium {
    padding-top: 80px;
    padding-bottom: 96px;
  }

  .cta-section--premium .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section--premium .cta-buttons .btn-primary,
  .cta-section--premium .cta-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none !important;
  }

  .hero-slide.is-entering,
  .hero-slide.is-leaving,
  .hero-slide.is-peek,
  .hero-slide.is-dragging {
    transform: none !important;
  }

  .hero-h1__line-inner,
  .hero-slide .hero-desc {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-slide:not(.is-active) .hero-desc,
  .hero-slide:not(.is-active) .hero-h1__line-inner {
    opacity: 0 !important;
  }

  .hero-slide-dot__progress {
    display: none;
  }

  .project-slider__track {
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .hero-text-slider__viewport {
    min-height: clamp(320px, 58vw, 400px);
  }

  .hero-slide .hero-h1 {
    max-width: 7.6em;
    min-height: 2.94em;
    font-size: clamp(56px, 16vw, 88px);
    line-height: 0.92;
    margin-bottom: 16px;
  }

  .hero-slide .hero-desc {
    min-height: 5.5em;
    max-width: none;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-bottom-main--stacked .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bottom-main--stacked .hero-actions .btn-primary,
  .hero-bottom-main--stacked .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .project-slider {
    padding: 0;
  }

  .project-slider__arrow {
    width: 36px;
    height: 36px;
  }

  .project-slider__arrow--prev {
    left: 0;
  }

  .project-slider__arrow--next {
    right: 0;
  }
}

/* Hero → proof bar → ticker transition (reference layout) */
.hero-transition {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.home .hero {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.hero-transition .hero-proof-bar {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(12, 12, 12, 0.99) 100%);
}

.hero-transition .hero-proof-bar__row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 16px 48px;
  justify-content: center;
  box-sizing: border-box;
}

.hero-transition .hero-proof-bar__text {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-transition .hero-proof-bar__text::-webkit-scrollbar {
  display: none;
}

.hero-transition .hero-proof-bar__lead {
  color: rgba(247, 242, 236, 0.42);
  flex-shrink: 0;
}

.hero-transition .hero-proof-bar__stat {
  color: rgba(247, 242, 236, 0.62);
  flex-shrink: 0;
}

.hero-transition .hero-proof-bar__sep {
  margin: 0 18px;
  background: rgba(229, 97, 39, 0.35);
  flex-shrink: 0;
}

.hero-transition__ticker {
  padding: 16px 0;
  background: var(--bf-gradient);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-transition__ticker .ticker-item {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.14em;
  color: var(--bf-black);
}

.hero-transition__ticker .ticker-sep {
  color: rgba(0, 0, 0, 0.35);
}

.hero-transition + .home-answer-block {
  border-top: 0;
}

/* AEO / GEO priority block, placed after hero transition */
.home-answer-block--priority {
  padding: clamp(72px, 9vw, 96px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(229, 97, 39, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(229, 97, 39, 0.05) 0%, transparent 50%),
    var(--mid);
}

.home-answer-block--priority .home-answer-block__title {
  font-size: clamp(32px, 3.5vw, 44px);
}

.home-answer-block--priority .home-answer-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

/* Subtle influencer cross-link, compact strip between services and 360° growth */
.home-influencer-crosslink--strip.reveal {
  transform: translateY(16px);
}

.home-influencer-crosslink--strip.reveal.visible {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .home-influencer-crosslink__badge {
    display: none;
  }

  .home-influencer-crosslink__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 16px;
    gap: 10px 12px;
  }

  .home-influencer-crosslink__cta {
    padding: 7px 11px;
  }

  .home-influencer-crosslink__cta > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* Homepage readability, body copy and muted text */
.home .service-card p,
.home .why-item p,
.home .testimonial-card p,
.home .portfolio-what,
.home .home-insight-card__excerpt,
.home .home-faq-list .services-faq-a p {
  color: rgba(247, 242, 236, 0.62);
  line-height: 1.75;
}

.home .btn-primary,
.home .btn-outline,
.home .cta-buttons .btn-primary,
.home .cta-buttons .btn-outline {
  min-height: 48px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.home .section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.home .section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.home .dual-panel p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }

  .hero-slide.is-active {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-transition .hero-proof-bar__row {
    padding: 14px 16px;
  }

  .hero-transition .hero-proof-bar__text {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    white-space: normal;
    overflow-x: visible;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero-transition .hero-proof-bar__lead {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
  }

  .hero-transition .hero-proof-bar__sep {
    display: none;
  }

  .hero-transition .hero-proof-bar__stat {
    flex-shrink: 1;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 8px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
  }

  .hero-transition__ticker {
    padding: 14px 0;
  }

  .hero-transition__ticker .ticker-item {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

/* ==========================================================================
   AEO BLOCK. What does Beyond Folks do? (redesigned)
   ========================================================================== */

.home-answer-block--priority {
  position: relative;
  overflow: hidden;
}

.home-answer-block__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

.home-answer-block__header {
  max-width: 760px;
}

.home-answer-block__header .section-label {
  margin-bottom: 20px;
}

.home-answer-block--priority .home-answer-block__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-answer-block__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

/* Visual system panel */
.home-answer-visual__frame {
  position: relative;
  min-height: 380px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229, 97, 39, 0.12) 0%, transparent 62%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  overflow: hidden;
}

.home-answer-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 20%, transparent 100%);
  opacity: 0.9;
}

.home-answer-visual__glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 97, 39, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.home-answer-visual__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -58%);
  border: 1px solid rgba(229, 97, 39, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(245, 148, 40, 0.2) 0%, transparent 55%),
    rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 40px rgba(229, 97, 39, 0.12);
}

.home-answer-visual__hub-label {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-answer-visual__hub-sub {
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.48);
}

.home-answer-visual__node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 108px;
  text-align: center;
}

.home-answer-visual__node--1 {
  top: 14%;
  left: 10%;
}

.home-answer-visual__node--2 {
  top: 14%;
  right: 10%;
}

.home-answer-visual__node--3 {
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
}

.home-answer-visual__node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--bf-amber);
}

.home-answer-visual__node-icon svg {
  width: 20px;
  height: 20px;
}

.home-answer-visual__node-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 236, 0.78);
}

.home-answer-visual__frame::before,
.home-answer-visual__frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(229, 97, 39, 0.35), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.home-answer-visual__frame::before {
  top: 38%;
  left: 22%;
  width: 56%;
  height: 1px;
  transform: rotate(-18deg);
}

.home-answer-visual__frame::after {
  top: 38%;
  right: 22%;
  width: 56%;
  height: 1px;
  transform: rotate(18deg);
}

.home-answer-visual__metrics {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
}

.home-answer-visual__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.42);
}

.home-answer-visual__metric-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(247, 242, 236, 0.92);
}

.home-answer-visual__metric-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

/* Copy column */
.home-answer-block__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-answer-block__text--lead {
  margin: 0;
  max-width: none;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.82;
  color: rgba(247, 242, 236, 0.72);
}

.home-answer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-answer-chip {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: rgba(247, 242, 236, 0.62);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.home-answer-chip:hover {
  border-color: rgba(229, 97, 39, 0.28);
  background: rgba(229, 97, 39, 0.06);
  color: rgba(247, 242, 236, 0.88);
}

.home-answer-block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--bf-amber);
  transition: gap 0.25s ease, color 0.25s ease;
}

.home-answer-block__link:hover,
.home-answer-block__link:focus-visible {
  gap: 12px;
  color: #f5a028;
}

/* Pillar cards row */
.home-answer-block__shell > .home-answer-block__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-answer-block--priority .home-answer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%),
    rgba(12, 12, 12, 0.88);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-answer-block--priority .home-answer-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--bf-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-answer-block--priority .home-answer-card:hover {
  border-color: rgba(229, 97, 39, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.home-answer-block--priority .home-answer-card:hover::before {
  opacity: 1;
}

.home-answer-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.home-answer-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
}

.home-answer-card__icon svg {
  width: 22px;
  height: 22px;
}

.home-answer-card__num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(247, 242, 236, 0.28);
}

.home-answer-block--priority .home-answer-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.home-answer-block--priority .home-answer-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(247, 242, 236, 0.58);
}

@media (max-width: 1024px) {
  .home-answer-block__body {
    grid-template-columns: 1fr;
  }

  .home-answer-visual__frame {
    min-height: 340px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .home-answer-block__shell > .home-answer-block__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-answer-block__shell > .home-answer-block__cards .home-answer-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .home-answer-block--priority {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .home-answer-visual__frame {
    min-height: 320px;
    padding: 22px 18px 18px;
  }

  .home-answer-visual__hub {
    width: 96px;
    height: 96px;
  }

  .home-answer-visual__hub-label {
    font-size: 28px;
  }

  .home-answer-visual__node {
    width: 88px;
  }

  .home-answer-visual__node--1 {
    left: 6%;
  }

  .home-answer-visual__node--2 {
    right: 6%;
  }

  .home-answer-block__shell > .home-answer-block__cards {
    grid-template-columns: 1fr;
  }

  .home-answer-block__shell > .home-answer-block__cards .home-answer-card:last-child {
    grid-column: auto;
  }

  .home-answer-chips {
    gap: 6px;
  }

  .home-answer-chip {
    font-size: 10px;
    padding: 8px 12px;
  }
}

/* ==========================================================================
   AEO BLOCK (homepage) ,  "What does Beyond Folks do?" image-forward redesign
   Scoped to .home so shared .home-answer-* rules on other pages are untouched.
   ========================================================================== */

.home .home-answer-block--priority .home-answer-block__shell {
  max-width: 1200px;
  gap: clamp(40px, 5vw, 60px);
}

/* Intro: title/metrics on the left, lead copy + chips + CTA on the right */
.home .home-answer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home .home-answer-intro__lead .section-label {
  margin-bottom: 20px;
}

.home .home-answer-block--priority .home-answer-block__title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.home .home-answer-metrics {
  display: flex;
  gap: clamp(26px, 4vw, 48px);
  margin-top: clamp(24px, 3vw, 34px);
}

.home .home-answer-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home .home-answer-metric__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home .home-answer-metric__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.5);
}

.home .home-answer-intro__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.home .home-answer-intro__aside .home-answer-block__text--lead {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.78;
  color: rgba(247, 242, 236, 0.74);
}

.home .home-answer-intro__aside .home-answer-block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 2px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bf-amber);
  transition: gap 0.25s ease, color 0.25s ease;
}

.home .home-answer-intro__aside .home-answer-block__link:hover,
.home .home-answer-intro__aside .home-answer-block__link:focus-visible {
  gap: 12px;
  color: #f7a838;
}

/* Pillar cards with image placeholders */
.home .home-answer-block--priority .home-answer-block__shell > .home-answer-block__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.home .home-answer-block--priority .home-answer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.9);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home .home-answer-block--priority .home-answer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 2px;
  background: var(--bf-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.home .home-answer-block--priority .home-answer-card:hover {
  border-color: rgba(229, 97, 39, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.home .home-answer-block--priority .home-answer-card:hover::before {
  transform: scaleX(1);
}

/* Image placeholder */
.home .home-answer-card__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse 70% 62% at 50% 32%, rgba(229, 97, 39, 0.14) 0%, transparent 62%),
    linear-gradient(180deg, rgba(32, 32, 32, 0.92) 0%, rgba(10, 10, 10, 0.96) 100%);
  overflow: hidden;
}

.home .home-answer-card__media--photo {
  background: #0a0a0a;
}

.home .home-answer-card__media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.55s ease;
}

.home .home-answer-block--priority .home-answer-card:hover .home-answer-card__media-image {
  transform: scale(1.04);
}

.home .home-answer-card__media--photo::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
}

.home .home-answer-card__media--photo .home-answer-card__num {
  color: rgba(247, 242, 236, 0.72);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.home .home-answer-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 82% 82% at 50% 42%, #000 8%, transparent 82%);
  mask-image: radial-gradient(ellipse 82% 82% at 50% 42%, #000 8%, transparent 82%);
  opacity: 0.85;
  pointer-events: none;
}

.home .home-answer-card__media-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  color: rgba(247, 242, 236, 0.42);
  transition: transform 0.4s ease, color 0.3s ease;
}

.home .home-answer-block--priority .home-answer-card:hover .home-answer-card__media-icon {
  transform: scale(1.08);
  color: var(--bf-amber);
}

.home .home-answer-card__media-tag {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.32);
}

.home .home-answer-block--priority .home-answer-card .home-answer-card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(247, 242, 236, 0.32);
}

/* Card body */
.home .home-answer-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 26px);
}

.home .home-answer-block--priority .home-answer-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
}

.home .home-answer-block--priority .home-answer-card__icon svg {
  width: 22px;
  height: 22px;
}

.home .home-answer-block--priority .home-answer-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(247, 242, 236, 0.96);
}

.home .home-answer-block--priority .home-answer-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(247, 242, 236, 0.6);
}

@media (max-width: 1024px) {
  .home .home-answer-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .home .home-answer-block--priority .home-answer-block__shell > .home-answer-block__cards {
    grid-template-columns: 1fr 1fr;
  }

  .home .home-answer-block--priority .home-answer-block__shell > .home-answer-block__cards .home-answer-card:last-child {
    grid-column: 1 / -1;
  }

  .home .home-answer-block--priority .home-answer-card:last-child .home-answer-card__media {
    aspect-ratio: 24 / 9;
  }
}

@media (max-width: 640px) {
  .home .home-answer-metrics {
    gap: 30px;
  }

  .home .home-answer-block--priority .home-answer-block__shell > .home-answer-block__cards {
    grid-template-columns: 1fr;
  }

  .home .home-answer-block--priority .home-answer-block__shell > .home-answer-block__cards .home-answer-card:last-child {
    grid-column: auto;
  }

  .home .home-answer-card__media,
  .home .home-answer-block--priority .home-answer-card:last-child .home-answer-card__media {
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================================================
   360° GROWTH SECTION, redesigned
   ========================================================================== */

.growth-360-section--premium {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 112px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(229, 97, 39, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(229, 97, 39, 0.05) 0%, transparent 50%),
    var(--black);
}

.growth-360-section__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 64px);
}

.growth-360-section__header {
  max-width: 820px;
}

.growth-360-section__header .section-label {
  margin-bottom: 20px;
}

.growth-360-section--premium .section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.growth-360-section--premium .section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.growth-360-section__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.growth-360-section__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.growth-360-section--premium .growth-360-section__intro {
  margin: 0;
  max-width: none;
  font-size: clamp(16px, 1.65vw, 18px);
  line-height: 1.82;
  color: rgba(247, 242, 236, 0.7);
}

.growth-360-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-360-highlights li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.62);
}

.growth-360-highlights li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bf-gradient);
  box-shadow: 0 0 12px rgba(229, 97, 39, 0.35);
}

.growth-360-section--premium .growth-360-section__cta {
  margin-top: 4px;
}

/* Connected channels chips (copy column) */
.growth-360-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.growth-360-channels__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

.growth-360-channels__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.growth-360-channels__chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: rgba(247, 242, 236, 0.66);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.growth-360-channels__chip:hover {
  border-color: rgba(229, 97, 39, 0.4);
  background: rgba(229, 97, 39, 0.08);
  color: rgba(247, 242, 236, 0.92);
  transform: translateY(-1px);
}

/* Image-forward visual */
.growth-360-visual {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.growth-360-visual__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 72% 60% at 50% 34%, rgba(229, 97, 39, 0.14) 0%, transparent 62%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(8, 8, 8, 0.98) 100%);
  overflow: hidden;
}

.growth-360-visual__media--photo {
  background: #0a0a0a;
}

.growth-360-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.growth-360-visual__media--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
  z-index: 1;
}

.growth-360-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 85% 82% at 50% 42%, #000 10%, transparent 82%);
  mask-image: radial-gradient(ellipse 85% 82% at 50% 42%, #000 10%, transparent 82%);
  opacity: 0.85;
  pointer-events: none;
}

.growth-360-visual__glow {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 97, 39, 0.16) 0%, transparent 68%);
  pointer-events: none;
}

.growth-360-visual__ph {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(247, 242, 236, 0.42);
  transition: transform 0.4s ease, color 0.3s ease;
}

.growth-360-visual:hover .growth-360-visual__ph {
  transform: scale(1.05);
  color: var(--bf-amber);
}

.growth-360-visual__ph svg {
  width: 54px;
  height: 54px;
}

.growth-360-visual__tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.32);
}

/* Floating stat badge overlapping the image */
.growth-360-visual__badge {
  position: absolute;
  left: clamp(-8px, -1.4vw, -20px);
  bottom: clamp(-14px, -1.8vw, -24px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.growth-360-visual__badge-value {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.82;
  letter-spacing: 0.01em;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.growth-360-visual__badge-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(247, 242, 236, 0.82);
}

/* Connected-flow band heading */
.growth-360-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
}

.growth-360-flow__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-360-flow__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bf-amber);
}

.growth-360-flow__lead {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.62);
}

/* Pillar cards */
.growth-360-pillars--cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: 0;
  background: transparent;
}

.growth-360-section--premium .growth-360-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(0, 0, 0, 0.22) 100%),
    rgba(14, 14, 14, 0.92);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-360-section--premium .growth-360-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--bf-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.growth-360-section--premium .growth-360-pillar:hover {
  border-color: rgba(229, 97, 39, 0.28);
  background:
    linear-gradient(180deg, rgba(229, 97, 39, 0.04) 0%, rgba(0, 0, 0, 0.25) 100%),
    rgba(14, 14, 14, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.growth-360-section--premium .growth-360-pillar:hover::before {
  opacity: 1;
}

.growth-360-pillar__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.growth-360-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
}

.growth-360-pillar__icon svg {
  width: 20px;
  height: 20px;
}

.growth-360-pillar__num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(247, 242, 236, 0.26);
}

.growth-360-section--premium .growth-360-pillar h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.growth-360-section--premium .growth-360-pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(247, 242, 236, 0.58);
}

.growth-360-pillar__flow {
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  display: none;
  font-size: 18px;
  color: rgba(229, 97, 39, 0.45);
  transform: translateY(-50%);
  pointer-events: none;
}

@media (min-width: 1100px) {
  .growth-360-pillars--cards .growth-360-pillar:not(:last-child) .growth-360-pillar__flow {
    display: block;
  }
}

@media (max-width: 1024px) {
  .growth-360-section__hero {
    grid-template-columns: 1fr;
  }

  .growth-360-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .growth-360-visual__media {
    aspect-ratio: 16 / 10;
  }

  .growth-360-pillars--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .growth-360-section--premium {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .growth-360-visual__badge {
    left: 12px;
    padding: 13px 18px;
    gap: 12px;
  }

  .growth-360-visual__badge-value {
    font-size: 34px;
  }

  .growth-360-pillars--cards {
    grid-template-columns: 1fr;
  }

  .growth-360-highlights li {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-360-visual:hover .growth-360-visual__ph,
  .growth-360-section--premium .growth-360-pillar:hover {
    transform: none;
  }
}

/* ==========================================================================
   WHY BEYOND FOLKS, homepage editorial split redesign
   Scoped to .home + new classes so shared .why-* rules stay untouched.
   ========================================================================== */

.home .why-section--split {
  padding: clamp(88px, 10vw, 112px) clamp(24px, 4vw, 48px);
}

.home .why-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.home .why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}

/* Aside (heading + image + link) */
.home .why-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  height: 100%;
  min-height: 100%;
}

.home .why-aside .section-label {
  margin-bottom: 20px;
}

.home .why-section--split .section-title {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home .why-aside .why-section-intro {
  margin: 20px 0 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.66);
}

/* Image fills leftover height beside the reasons list */
.home .why-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1 1 auto;
  min-height: 280px;
  margin-top: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 72% 60% at 50% 34%, rgba(229, 97, 39, 0.14) 0%, transparent 62%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(8, 8, 8, 0.98) 100%);
  overflow: hidden;
}

.home .why-media--photo {
  aspect-ratio: auto;
  min-height: 280px;
  background: #0a0a0a;
}

.home .why-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.home .why-media--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.home .why-media__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 97, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 97, 39, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 85% 82% at 50% 42%, #000 10%, transparent 82%);
  mask-image: radial-gradient(ellipse 85% 82% at 50% 42%, #000 10%, transparent 82%);
  opacity: 0.85;
  pointer-events: none;
}

.home .why-media__glow {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 97, 39, 0.16) 0%, transparent 68%);
  pointer-events: none;
}

.home .why-media__ph {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(247, 242, 236, 0.42);
  transition: transform 0.4s ease, color 0.3s ease;
}

.home .why-media:hover .why-media__ph {
  transform: scale(1.05);
  color: var(--bf-amber);
}

.home .why-media__ph svg {
  width: 52px;
  height: 52px;
}

.home .why-media__tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.32);
}

.home .why-media__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(6, 6, 6, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.home .why-media__badge-value {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.82;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home .why-media__badge-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(247, 242, 236, 0.82);
}

.home .why-aside__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(30px, 4vw, 40px);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bf-amber);
  transition: gap 0.25s ease, color 0.25s ease;
}

.home .why-aside__link:hover,
.home .why-aside__link:focus-visible {
  gap: 12px;
  color: #f7a838;
}

/* Reasons list (cards) */
.home .why-reasons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.home .why-reason {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(12, 12, 12, 0.72);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.home .why-reason::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--bf-gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.home .why-reason:hover {
  border-color: rgba(229, 97, 39, 0.3);
  background: rgba(18, 18, 18, 0.85);
  transform: translateX(4px);
}

.home .why-reason:hover::before {
  transform: scaleY(1);
}

.home .why-reason__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(247, 242, 236, 0.22);
}

.home .why-reason__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
  transition: transform 0.3s ease;
}

.home .why-reason:hover .why-reason__icon {
  transform: scale(1.06);
}

.home .why-reason__icon svg {
  width: 22px;
  height: 22px;
}

.home .why-reason__body {
  flex: 1 1 auto;
  min-width: 0;
}

.home .why-reason__body h3 {
  margin: 2px 0 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(247, 242, 236, 0.96);
}

.home .why-reason__body p {
  margin: 0;
  padding-right: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.6);
}

@media (max-width: 1024px) {
  .home .why-layout {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 48px);
  }

  .home .why-media,
  .home .why-media--photo {
    max-width: 560px;
    flex: 0 0 auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .home .why-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .home .why-reasons {
    grid-template-columns: 1fr;
  }

  .home .why-media__badge {
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
  }

  .home .why-media__badge-value {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .why-media:hover .why-media__ph,
  .home .why-reason:hover,
  .home .why-reason:hover .why-reason__icon {
    transform: none;
  }
}

/* ==========================================================================
   FAQ SECTION, homepage redesigned
   ========================================================================== */

.home-faq-section--premium {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 112px) clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 50% 45% at 100% 0%, rgba(229, 97, 39, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(229, 97, 39, 0.04) 0%, transparent 50%),
    var(--charcoal);
}

.home-faq-section__shell {
  max-width: 1240px;
  margin: 0 auto;
}

.home-faq-section--premium .home-faq-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  max-width: none;
  margin-bottom: clamp(24px, 3vw, 32px);
  flex-wrap: wrap;
}

.home-faq-section__head-copy {
  max-width: 40rem;
}

.home-faq-section__head-copy .section-label {
  margin-bottom: 14px;
}

.home-faq-section--premium .section-title {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-faq-section--premium .section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.home-faq-section--premium .home-faq-section__intro {
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.58);
}

.home-faq-section__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(245, 148, 40, 0.4);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(245, 148, 40, 0.1);
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-faq-section__all:hover,
.home-faq-section__all:focus-visible {
  background: rgba(245, 148, 40, 0.2);
  border-color: rgba(245, 148, 40, 0.7);
  transform: translateY(-1px);
  outline: none;
}

.home-faq-section__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.about-faq-section {
  padding: clamp(72px, 8vw, 96px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--border);
}

.home-faq-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(28px, 4vw, 36px);
  padding: 0;
  list-style: none;
}

.home-faq-topic {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.5);
}

.home-faq-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(22px, 2.8vw, 28px) clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(245, 148, 40, 0.75);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 55% 120% at 100% 50%, rgba(229, 97, 39, 0.1) 0%, transparent 55%),
    rgba(0, 0, 0, 0.34);
}

.home-faq-support__copy {
  max-width: 40rem;
  min-width: 0;
}

.home-faq-support .section-label {
  margin-bottom: 10px;
}

.home-faq-support__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(247, 242, 236, 0.96);
}

.home-faq-support__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.58);
}

.home-faq-support__actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.home-faq-support__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.62);
  transition: gap 0.25s ease, color 0.25s ease;
}

.home-faq-support__link:hover,
.home-faq-support__link:focus-visible {
  gap: 12px;
  color: var(--bf-amber);
  outline: none;
}

.home-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.home-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.home-faq-item[open] {
  border-color: rgba(229, 97, 39, 0.3);
  background:
    linear-gradient(90deg, rgba(229, 97, 39, 0.06) 0%, transparent 28%),
    rgba(0, 0, 0, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.home-faq-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(247, 242, 236, 0.88);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.home-faq-item__q::-webkit-details-marker {
  display: none;
}

.home-faq-item[open] .home-faq-item__q {
  color: rgba(247, 242, 236, 0.98);
}

.home-faq-item__num {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(229, 97, 39, 0.65);
}

.home-faq-item__text {
  flex: 1 1 auto;
  min-width: 0;
}

.home-faq-item__toggle {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s ease;
}

.home-faq-item__toggle::before,
.home-faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--bf-amber);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-faq-item__toggle::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.home-faq-item__toggle::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.home-faq-item[open] .home-faq-item__toggle {
  border-color: rgba(245, 148, 40, 0.45);
  background: rgba(245, 148, 40, 0.1);
}

.home-faq-item[open] .home-faq-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.home-faq-item__a {
  padding: 0 22px 22px 58px;
}

.home-faq-item__a p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 242, 236, 0.62);
}

.home-faq-section--premium .btn-primary--compact {
  min-height: 42px;
  padding: 11px 20px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .home-faq-support {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-faq-item__a {
    padding-left: 22px;
  }
}

@media (max-width: 768px) {
  .home-faq-section--premium {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .home-faq-section--premium .home-faq-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-faq-item__q {
    padding: 18px 16px;
    gap: 12px;
  }

  .home-faq-item__a {
    padding: 0 16px 18px;
  }

  .home-faq-support__actions {
    width: 100%;
  }

  .home-faq-support__actions .btn-primary--compact {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq-item__toggle,
  .home-faq-item__toggle::before,
  .home-faq-item__toggle::after {
    transition: none;
  }
}
/* ==========================================================================
   PROJECT FORMATS, homepage slider redesigned
   ========================================================================== */

.portfolio-section--premium {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 120px) 0 clamp(72px, 8vw, 96px);
  background:
    radial-gradient(ellipse 60% 45% at 100% 20%, rgba(229, 97, 39, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 80%, rgba(229, 97, 39, 0.04) 0%, transparent 50%),
    var(--black);
}

.portfolio-section__shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(48px, 4vw, 56px);
}

.project-slider--premium {
  max-width: none;
  padding: 0;
}

.portfolio-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.portfolio-section__header-copy .section-label {
  margin-bottom: 20px;
}

.portfolio-section--premium .section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.portfolio-section--premium .section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.portfolio-section--premium .portfolio-section-intro {
  max-width: none;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.78;
  color: rgba(247, 242, 236, 0.62);
}

.portfolio-section__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.portfolio-section__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 14px 18px;
  border: 1px solid rgba(229, 97, 39, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
}

.portfolio-section__badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portfolio-section__badge-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.45);
}

.portfolio-section__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 320px;
}

.portfolio-section__tag {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.48);
}

/* Premium slider */
.project-slider--premium {
  padding: 0;
}

.project-slider--premium .project-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.project-slider--premium .project-slider__arrow:hover,
.project-slider--premium .project-slider__arrow:focus-visible {
  border-color: rgba(229, 97, 39, 0.45);
  background: rgba(229, 97, 39, 0.1);
  box-shadow: 0 0 24px rgba(229, 97, 39, 0.12);
}

.project-slider--premium .project-slider__track {
  gap: 18px;
}

/* Premium project cards */
.portfolio-section--premium .portfolio-format-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.92);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-section--premium .portfolio-format-card:hover {
  border-color: rgba(229, 97, 39, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.portfolio-format-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-format-card__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, #000 30%, transparent 100%);
}

.portfolio-format-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 97, 39, 0.28) 0%, transparent 68%);
  filter: blur(6px);
  opacity: 0.7;
}

.portfolio-format-card__num {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 3;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(247, 242, 236, 0.6);
}

.portfolio-format-card__tag {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.72);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.portfolio-format-card__ph {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(247, 242, 236, 0.42);
}

.portfolio-format-card__ph svg {
  width: 46px;
  height: 46px;
}

.portfolio-format-card__ph-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.34);
}

.portfolio-section--premium .portfolio-format-card:hover .portfolio-format-card__glow {
  opacity: 0.95;
}

.portfolio-format-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.portfolio-format-card__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229, 97, 39, 0.28);
  border-radius: 11px;
  background: rgba(229, 97, 39, 0.08);
  color: var(--bf-amber);
}

.portfolio-format-card__icon svg {
  width: 22px;
  height: 22px;
}

/* Type-specific visual gradients */
.portfolio-format-card--brand .portfolio-format-card__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(229, 97, 39, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, rgba(40, 24, 16, 0.9) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.portfolio-format-card--website .portfolio-format-card__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(80, 140, 200, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(16, 24, 36, 0.9) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.portfolio-format-card--seo .portfolio-format-card__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(60, 180, 120, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(14, 28, 22, 0.9) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.portfolio-format-card--performance .portfolio-format-card__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(245, 148, 40, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(36, 24, 12, 0.9) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.portfolio-format-card--social .portfolio-format-card__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(200, 80, 140, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(32, 16, 28, 0.9) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.portfolio-format-card--landing .portfolio-format-card__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(229, 97, 39, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(28, 20, 16, 0.9) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.portfolio-format-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 0;
}

.portfolio-section--premium .portfolio-format-card__title {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.portfolio-format-card__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
}

.portfolio-format-detail {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-format-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.portfolio-format-detail__label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 97, 39, 0.75);
}

.portfolio-format-detail p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.58);
}

.portfolio-section--premium .portfolio-format-card__actions {
  margin-top: auto;
  padding: 20px 22px 22px;
}

.portfolio-section--premium .portfolio-format-card__actions .btn-primary--compact {
  width: 100%;
  justify-content: center;
}

.portfolio-section__hint {
  margin: 28px 0 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.28);
}

.portfolio-section__hint-icon {
  color: rgba(229, 97, 39, 0.45);
}

@media (max-width: 1024px) {
  .portfolio-section__header {
    grid-template-columns: 1fr;
  }

  .portfolio-section__meta {
    align-items: flex-start;
  }

  .portfolio-section__badge {
    align-items: flex-start;
  }

  .portfolio-section__tags {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .portfolio-section--premium {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .project-slider--premium {
    padding: 0;
  }

  .project-slider--premium .project-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .portfolio-section__shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-format-card__visual {
    aspect-ratio: 16 / 8;
  }

  .portfolio-section__hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-section--premium .portfolio-format-card:hover {
    transform: none;
  }
}

/* Homepage portfolio cards */
.home-portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.92);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.home-portfolio-card__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-portfolio-card:hover {
  border-color: rgba(229, 97, 39, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.home-portfolio-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(229, 97, 39, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
}

.home-portfolio-card__visual--has-image .work-format-visual__tag,
.home-portfolio-card__visual--has-image .home-portfolio-card__badge {
  z-index: 2;
}

.home-portfolio-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home-portfolio-card:hover .home-portfolio-card__image {
  transform: scale(1.05);
}

.home-portfolio-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 242, 236, 0.38);
}

.home-portfolio-card__ph-glow {
  position: absolute;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 97, 39, 0.22) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.home-portfolio-card__ph-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.home-portfolio-card__ph svg {
  width: 34px;
  height: 34px;
}

.home-portfolio-card__visual-fade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-portfolio-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(247, 242, 236, 0.7);
}

.home-portfolio-card__badge,
.home-portfolio-card .work-format-visual__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  z-index: 3;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(229, 97, 39, 0.35);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.86);
}

.home-portfolio-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
}

.home-portfolio-card__title {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.home-portfolio-card__summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.58);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-portfolio-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-portfolio-card__services li {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.52);
}

.home-portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bf-amber);
}

.home-portfolio-card__cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.home-portfolio-card:hover .home-portfolio-card__cta {
  color: #fff;
}

.home-portfolio-card:hover .home-portfolio-card__cta-arrow {
  transform: translateX(4px);
}

.portfolio-section--work .project-slider--premium .project-slider__track {
  gap: 20px;
}

/* Homepage featured work, editorial card treatment */
.portfolio-section--work .home-portfolio-card--featured {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 28%),
    rgba(10, 10, 10, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-section--work .home-portfolio-card--featured:hover {
  border-color: rgba(229, 97, 39, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__visual {
  aspect-ratio: 16 / 11;
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__body {
  gap: 12px;
  padding: 24px 24px 26px;
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__title {
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__summary {
  -webkit-line-clamp: 2;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.55);
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__outcomes {
  margin-top: 2px;
  gap: 8px;
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__outcomes li {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(247, 242, 236, 0.7);
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__outcome-mark {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--bf-amber);
  box-shadow: 0 0 0 3px rgba(229, 97, 39, 0.15);
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.portfolio-section-outro {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
}

.work-item-card__primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bf-amber);
  text-decoration: none;
}

.work-item-card__primary-cta:hover {
  color: #fff;
}

/* Work detail page */
/* Work detail page, polished editorial layout */
.page-work-detail {
  cursor: auto;
}

.page-work-detail .work-detail-hero {
  min-height: auto;
  padding: clamp(28px, 3.5vw, 40px) 0 clamp(56px, 7vw, 80px);
  background:
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(229, 97, 39, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 8% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.work-detail-hero__shell,
.work-detail-shell {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.work-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.38);
}

.work-detail-breadcrumb a {
  color: rgba(247, 242, 236, 0.58);
  text-decoration: none;
  transition: color 0.2s ease;
}

.work-detail-breadcrumb a:hover,
.work-detail-breadcrumb a:focus-visible {
  color: var(--bf-amber);
  outline: none;
}

.work-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.work-detail-hero__copy .hero-eyebrow {
  margin-bottom: 14px;
}

.work-detail-hero__title {
  max-width: 13.5em;
  margin: 0;
}

.work-detail-hero__title .line {
  display: block;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.028em;
}

.work-detail-hero__client {
  margin: 16px 0 0;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: rgba(247, 242, 236, 0.78);
}

.work-detail-hero__client strong {
  color: #f59428;
  font-weight: 600;
}

.work-detail-hero__summary {
  max-width: 38rem;
  margin-top: 18px;
  font-size: clamp(16px, 1.55vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.88);
}

.work-detail-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.work-detail-hero__facts li {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.82);
}

.work-detail-hero__facts li + li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(245, 148, 40, 0.7);
  transform: translateY(-50%);
}

.work-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.work-detail-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 18%, rgba(229, 97, 39, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 12% 88%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #171717 0%, #090909 100%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.work-detail-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-detail-visual__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(247, 242, 236, 0.38);
}

.work-detail-visual__glow {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 97, 39, 0.28) 0%, transparent 70%);
  filter: blur(12px);
  animation: workDetailGlow 7s ease-in-out infinite alternate;
}

@keyframes workDetailGlow {
  from { transform: translate(-6%, -4%) scale(0.96); opacity: 0.7; }
  to { transform: translate(8%, 6%) scale(1.08); opacity: 1; }
}

.work-detail-visual__frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.work-detail-visual__placeholder svg {
  width: 36px;
  height: 36px;
}

.work-detail-visual__placeholder span:not(.work-detail-visual__glow):not(.work-detail-visual__frame) {
  position: relative;
  z-index: 1;
  max-width: 70%;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-detail-visual__fade {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(6, 6, 6, 0.62));
  pointer-events: none;
  z-index: 1;
}

.work-detail-visual__logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 96px;
  max-height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.work-detail-section-head {
  margin-bottom: clamp(26px, 3.2vw, 34px);
}

.work-detail-section-head .section-label {
  margin-bottom: 12px;
}

.work-detail-section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(247, 242, 236, 0.96);
}

.work-detail-aeo {
  padding: clamp(20px, 3vw, 28px) 0 clamp(4px, 1.5vw, 12px);
}

.work-detail-aeo__panel {
  padding: clamp(26px, 3.2vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border-left: 3px solid rgba(245, 148, 40, 0.75);
  background:
    radial-gradient(ellipse 48% 120% at 0% 50%, rgba(229, 97, 39, 0.09) 0%, transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.work-detail-aeo__title {
  margin: 8px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.2;
}

.work-detail-aeo__text {
  margin: 0;
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.72);
}

.work-detail-aeo__role {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(247, 242, 236, 0.52);
  font-size: 14px;
  line-height: 1.65;
}

.work-detail-overview,
.work-detail-deliverables,
.work-detail-outcomes,
.work-detail-related,
.work-detail-phases,
.work-detail-gallery {
  padding: clamp(60px, 7.5vw, 96px) 0;
}

.work-detail-overview {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-detail-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.8fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.work-detail-story {
  display: grid;
  gap: 14px;
}

.work-detail-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.work-detail-block:hover {
  border-color: rgba(245, 148, 40, 0.28);
  background: rgba(0, 0, 0, 0.32);
}

.work-detail-block__index {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bf-amber);
  padding-top: 2px;
}

.work-detail-block__label,
.work-detail-panel__label,
.work-detail-sidebar__label {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 148, 40, 0.88);
}

.work-detail-block__text,
.work-detail-sidebar__value {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(247, 242, 236, 0.7);
}

.work-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.work-detail-sidebar__card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.36);
}

.work-detail-snapshot {
  margin: 0;
  display: grid;
  gap: 0;
}

.work-detail-snapshot div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.work-detail-snapshot div:first-child {
  padding-top: 0;
}

.work-detail-snapshot div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.work-detail-snapshot dt {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.4);
}

.work-detail-snapshot dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(247, 242, 236, 0.92);
}

.work-detail-snapshot a {
  color: var(--bf-amber);
  text-decoration: none;
}

.work-detail-snapshot a:hover {
  text-decoration: underline;
}

.work-detail-sidebar__services {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-detail-sidebar__services li + li {
  margin-top: 8px;
}

.work-detail-sidebar__services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: rgba(247, 242, 236, 0.78);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.work-detail-sidebar__services a:hover {
  border-color: rgba(245, 148, 40, 0.35);
  color: #fff;
  background: rgba(245, 148, 40, 0.06);
}

.work-detail-sidebar__url {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border: 1px solid rgba(245, 148, 40, 0.42);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(245, 148, 40, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-detail-sidebar__url:hover {
  background: rgba(245, 148, 40, 0.22);
  border-color: rgba(245, 148, 40, 0.7);
  transform: translateY(-1px);
}

.work-detail-phases {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(229, 97, 39, 0.05) 0%, transparent 55%),
    var(--black);
}

.work-detail-phases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-detail-phase {
  position: relative;
  padding: 24px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  min-height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.work-detail-phase:hover {
  border-color: rgba(245, 148, 40, 0.3);
  transform: translateY(-3px);
}

.work-detail-phase__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bf-amber);
}

.work-detail-phase h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.work-detail-phase p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.56);
}

.work-detail-deliverables {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
}

.work-detail-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-detail-panel {
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.72);
}

.work-detail-panel__list,
.work-detail-outcomes__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-detail-panel__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 236, 0.68);
}

.work-detail-panel__list li + li {
  margin-top: 11px;
}

.work-detail-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bf-amber);
}

.work-detail-outcomes {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(229, 97, 39, 0.08) 0%, transparent 55%),
    var(--black);
}

.work-detail-outcomes__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-detail-outcomes__item {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.work-detail-outcomes__item:hover {
  border-color: rgba(245, 148, 40, 0.28);
  transform: translateY(-2px);
}

.work-detail-outcomes__item::before {
  content: none;
}

.work-detail-outcomes__item--metric {
  background:
    linear-gradient(180deg, rgba(229, 97, 39, 0.1) 0%, transparent 55%),
    rgba(0, 0, 0, 0.28);
}

.work-detail-outcomes__value {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f7f2ec;
}

.work-detail-outcomes__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 148, 40, 0.92);
}

.work-detail-outcomes__context,
.work-detail-outcomes__text {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 242, 236, 0.6);
}

.work-detail-gallery {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-detail-gallery__note {
  margin: -8px 0 22px;
  font-size: 13px;
  color: rgba(247, 242, 236, 0.45);
}

.work-detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-detail-gallery__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.work-detail-gallery__item:hover {
  border-color: rgba(245, 148, 40, 0.28);
  transform: translateY(-2px);
}

.work-detail-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.work-detail-gallery__ph {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 11;
  color: rgba(247, 242, 236, 0.35);
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(229, 97, 39, 0.14) 0%, transparent 60%),
    #111;
}

.work-detail-gallery__ph svg {
  width: 40px;
  height: 40px;
}

.work-detail-gallery__item figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.work-detail-gallery__item figcaption strong {
  font-size: 13px;
  font-weight: 600;
  color: rgba(247, 242, 236, 0.9);
}

.work-detail-gallery__item figcaption span {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(247, 242, 236, 0.48);
}

.work-detail-related {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--charcoal);
}

.work-detail-related__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.work-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-detail-related__item {
  display: flex;
  min-height: 100%;
}

.work-detail-related__item .home-portfolio-card {
  width: 100%;
}

.page-work-detail .work-detail-final-cta {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .work-detail-hero__grid,
  .work-detail-overview__grid,
  .work-detail-related__grid {
    grid-template-columns: 1fr;
  }

  .work-detail-sidebar {
    position: static;
  }

  .work-detail-phases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-detail-deliverables__grid,
  .work-detail-outcomes__list {
    grid-template-columns: 1fr;
  }

  .work-detail-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .work-detail-phases__grid,
  .work-detail-gallery__grid,
  .work-detail-related__grid {
    grid-template-columns: 1fr;
  }

  .work-detail-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .work-detail-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-detail-hero__facts {
    gap: 8px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-detail-visual__glow,
  .work-detail-phase,
  .work-detail-outcomes__item,
  .work-detail-gallery__item,
  .work-detail-sidebar__url {
    animation: none;
    transition: none;
    transform: none;
  }
}

.home-portfolio-card__industry,
.work-item-card__industry {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .home-portfolio-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */

.page-legal {
  cursor: auto;
}

.privacy-hero {
  min-height: auto;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) clamp(48px, 6vw, 72px);
}

.privacy-hero__shell {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.privacy-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.privacy-hero__subtitle {
  margin: 0 0 12px;
  max-width: 58ch;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.privacy-hero__updated {
  margin: 0 0 28px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.82);
}

.privacy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.privacy-summary {
  padding: 0 clamp(24px, 5vw, 80px) 40px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.privacy-summary__shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(241, 109, 2, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.privacy-summary__title {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.85);
}

.privacy-summary__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.62);
}

.privacy-toc-mobile {
  display: none;
  margin: 0 clamp(24px, 5vw, 80px);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(32px, 4vw, 56px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 80px) 104px;
}

.privacy-article {
  min-width: 0;
}

.privacy-article__intro {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.privacy-article__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.58);
}

.privacy-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: 120px;
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.privacy-section__num {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(241, 109, 2, 0.8);
}

.privacy-section__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

.privacy-section__body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242, 251, 250, 0.62);
}

.privacy-section__body p:last-child {
  margin-bottom: 0;
}

.privacy-section__list {
  margin: 0 0 16px;
  padding-left: 20px;
  color: rgba(242, 251, 250, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.privacy-section__list li + li {
  margin-top: 8px;
}

.privacy-section__links {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-section__links a {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}

.privacy-section__links a:hover {
  border-color: rgba(241, 109, 2, 0.4);
  color: var(--white);
}

.privacy-contact-block {
  margin-top: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
}

.privacy-contact-block__name {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
}

.privacy-contact-block__list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.privacy-contact-block__list div {
  display: grid;
  gap: 4px;
}

.privacy-contact-block__list dt {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.78);
}

.privacy-contact-block__list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.privacy-contact-block__list a {
  color: rgba(242, 251, 250, 0.78);
  text-decoration: none;
  word-break: break-word;
}

.privacy-contact-block__list a:hover {
  color: var(--teal);
}

.privacy-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.privacy-related__title {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.85);
}

.privacy-related__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-related__list a {
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
}

.privacy-related__list a:hover {
  color: var(--white);
}

.privacy-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-aside__block {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.privacy-aside__cta h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.privacy-aside__cta p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.55);
}

.privacy-aside__cta .btn-primary {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
    order: -1;
  }

  .privacy-aside__toc {
    display: none;
  }

  .privacy-toc-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .privacy-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-section__head {
    flex-direction: column;
    gap: 8px;
  }

  .privacy-layout {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   404 NOT FOUND PAGE
   ========================================================================== */

.page-not-found {
  cursor: auto;
}

.not-found-main {
  background: var(--black);
}

.not-found-hero {
  position: relative;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) clamp(56px, 7vw, 88px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.not-found-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  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: 48px 48px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
}

.not-found-hero__glow {
  position: absolute;
  top: 10%;
  right: 8%;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 109, 2, 0.18), transparent 68%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .not-found-hero__glow {
    animation: not-found-glow 8s ease-in-out infinite alternate;
  }
}

@keyframes not-found-glow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  to { transform: translate3d(-12px, 10px, 0) scale(1.06); opacity: 1; }
}

.not-found-hero__shell {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.not-found-hero__code {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 148px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: var(--bf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.not-found-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.not-found-hero__subtitle {
  margin: 0 0 24px;
  max-width: 56ch;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.not-found-context {
  margin: 0 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(241, 109, 2, 0.22);
  border-radius: 4px;
  background: rgba(241, 109, 2, 0.05);
}

.not-found-context__label {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 251, 250, 0.68);
}

.not-found-context__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-found-context__links a {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}

.not-found-context__links a:hover,
.not-found-context__links a:focus-visible {
  border-color: rgba(241, 109, 2, 0.45);
  color: var(--white);
  outline: none;
}

.not-found-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.not-found-hero__tertiary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 251, 250, 0.55);
}

.not-found-hero__tertiary:hover,
.not-found-hero__tertiary:focus-visible {
  color: var(--teal);
  outline: none;
}

.not-found-quick {
  padding: 88px clamp(24px, 5vw, 80px);
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

.not-found-quick__head {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.not-found-quick__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}

.not-found-quick-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px;
  background: var(--charcoal);
  text-decoration: none;
  transition: background 0.25s ease;
}

.not-found-quick-card:hover,
.not-found-quick-card:focus-visible {
  background: rgba(241, 109, 2, 0.05);
  outline: none;
}

.not-found-quick-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.not-found-quick-card p {
  margin: 0 0 18px;
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.55);
}

.not-found-quick-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.not-found-suggest {
  padding: 72px clamp(24px, 5vw, 80px) 104px;
  background: var(--black);
}

.not-found-suggest__shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.not-found-suggest__title {
  margin: 0 0 16px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 109, 2, 0.85);
}

.not-found-suggest__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-found-suggest__list a {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(242, 251, 250, 0.72);
}

.not-found-suggest__list a:hover,
.not-found-suggest__list a:focus-visible {
  border-color: rgba(241, 109, 2, 0.4);
  color: var(--white);
  outline: none;
}

@media (max-width: 1024px) {
  .not-found-quick__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .not-found-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .not-found-hero__tertiary {
    text-align: center;
  }

  .not-found-quick__grid {
    grid-template-columns: 1fr;
  }

  .not-found-hero__code {
    font-size: clamp(64px, 22vw, 96px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .not-found-hero__glow {
    animation: none;
  }
}

/* ==========================================================================
   SITE PAGES. UI POLISH PASS (marketing subpages, legal, forms, editorial)
   Aligns spacing, CTAs, FAQs, heroes, and cards with homepage premium rhythm.
   ========================================================================== */

/* --- Shared section rhythm --- */
.page-about .about-believe-section,
.page-about .about-advantage-section,
.page-about .about-different-section,
.page-about .about-outcomes-section,
.page-about .about-culture-section,
.page-services .services-pillars-section,
.page-services .services-360-section,
.page-services .services-process-section,
.page-services .services-why-section,
.page-work .work-approach-section,
.page-work .work-matrix-section,
.page-work .work-usecases-section,
.page-blog .blog-featured-section,
.page-blog .blog-categories-section,
.page-blog .blog-pillars-section,
.page-blog .blog-guides-section,
.page-contact .contact-entry-section,
.page-contact .contact-response-section,
.page-c360 .c360-who-section,
.page-c360 .c360-process-section,
.page-c360 .c360-discuss-section,
.page-svc-detail .svc-benefits-section,
.page-svc-detail .svc-process-section,
.page-svc-detail .svc-deliverables-section,
.page-svc-detail .svc-best-fit-section,
.page-svc-detail .svc-related-section {
  padding: clamp(80px, 9vw, 104px) clamp(24px, 5vw, 80px);
}

.page-about .about-who-section,
.page-work .work-projects-section,
.page-blog .blog-grid-section,
.page-contact .contact-form-section,
.page-c360 .c360-form-section {
  padding: clamp(88px, 10vw, 120px) clamp(24px, 5vw, 80px);
}

/* AEO / answer blocks, consistent shell width */
.page-about .about-aeo-block .home-answer-block__shell,
.page-services .services-aeo-block .home-answer-block__shell,
.page-work .work-aeo-block .home-answer-block__shell,
.page-blog .blog-aeo-block .home-answer-block__shell,
.page-contact .contact-aeo-block .home-answer-block__shell,
.page-c360 .c360-aeo-block .home-answer-block__shell,
.page-svc-detail .svc-aeo-block .home-answer-block__shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 80px);
}

.page-contact .contact-aeo-block.home-answer-block--priority {
  padding-bottom: clamp(40px, 5vw, 56px);
}

.page-contact .contact-aeo-block .home-answer-block__shell {
  padding-bottom: clamp(28px, 3.5vw, 40px);
}

.page-contact .contact-form-section {
  padding-top: clamp(52px, 6.5vw, 68px);
}

@media (max-width: 1024px) {
  .page-contact .contact-form-section {
    padding-top: 48px;
  }
}

@media (max-width: 768px) {
  .page-contact .contact-form-section {
    padding-top: 36px;
  }
}

/* --- Premium CTA on subpages --- */
body:not(.home) .cta-section--premium {
  padding: clamp(88px, 11vw, 128px) clamp(20px, 4vw, 48px);
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(229, 97, 39, 0.2) 0%, rgba(245, 148, 40, 0.07) 32%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 50% 35%, rgba(245, 148, 40, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 50% 0%, rgba(229, 97, 39, 0.07) 0%, transparent 55%),
    var(--black);
  border-top: 1px solid var(--border);
}

body:not(.home) .cta-section--premium .cta-section__inner,
body:not(.home) .cta-section--premium .cta-section__glow {
  max-width: 40rem;
}

/* --- Hero alignment (stacked + split) --- */
.page-about .hero-bottom-main,
.page-services .hero-bottom-main,
.page-work .work-hero-bottom .hero-bottom-main,
.page-contact .contact-hero-bottom .hero-bottom-main,
.page-blog .blog-hero-bottom .hero-bottom-main,
.page-c360 .c360-hero-bottom .hero-bottom-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 28px);
  width: 100%;
}

.page-services .hero {
  padding: 32px clamp(24px, 5vw, 48px) 76px;
}

.page-services .hero-content,
.page-services .hero-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.work-hero-split,
.contact-hero-split,
.blog-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(24px, 5vw, 48px) 72px;
  width: 100%;
}

.c360-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(24px, 5vw, 48px) 72px;
  width: 100%;
}

.work-hero-split__visual,
.contact-hero-split__visual,
.blog-hero-split__visual,
.c360-hero-split__visual {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

/* --- Mid CTAs --- */
.work-mid-cta,
.blog-mid-cta,
.contact-mid-cta,
.svc-mid-cta {
  padding: clamp(72px, 8vw, 96px) clamp(24px, 5vw, 80px);
}

.work-mid-cta__inner,
.blog-mid-cta__inner,
.svc-mid-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

/* --- FAQ sections, work page accordion polish --- */
.work-faq-section {
  padding: clamp(80px, 9vw, 104px) clamp(24px, 5vw, 80px);
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.work-faq-head {
  max-width: 1200px;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.work-faq-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--border);
  display: grid;
  gap: 1px;
}

.work-faq-item {
  background: var(--charcoal);
  transition: background 0.2s ease;
}

.work-faq-item[open] {
  background: rgba(241, 109, 2, 0.03);
}

.work-faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.work-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.58);
  max-width: 68ch;
}

/* Services-style FAQ sections, section shell padding */
.services-faq-section.blog-faq-section,
.services-faq-section.contact-faq-section,
.services-faq-section.c360-faq-section,
.services-faq-section.svc-faq-section {
  padding: clamp(80px, 9vw, 104px) clamp(24px, 5vw, 80px);
}

/* --- About culture grid --- */
.about-culture-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-culture-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 20px 0 28px;
  font-size: 14px;
  color: rgba(247, 242, 236, 0.45);
}

/* --- Services catalog grid --- */
.page-services-catalog .services-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.page-services-catalog {
  padding: clamp(80px, 9vw, 104px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
}

/* --- Work proof note --- */
.work-proof-section {
  padding: clamp(56px, 7vw, 72px) clamp(24px, 5vw, 80px);
}

.work-proof-note {
  padding: clamp(28px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(241, 109, 2, 0.05), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

/* --- Blog listing polish --- */
.blog-toolbar-section {
  padding: 0 clamp(24px, 5vw, 80px) clamp(32px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid-section .blog-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-featured-section .blog-featured-card {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Blog detail editorial --- */
.page-blog-post .post-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3vw, 38px) clamp(24px, 5vw, 80px) clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.page-blog-post .post-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
}

.page-blog-post .post-hero-v2::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 109, 2, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.page-blog-post .post-hero-v2__shell {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.page-blog-post .post-layout-v2 {
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 80px) clamp(80px, 9vw, 104px);
  gap: clamp(32px, 4vw, 48px);
}

.page-blog-post .post-related-section {
  padding: clamp(64px, 8vw, 88px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.page-blog-post .post-quick-answer {
  padding: 0 clamp(24px, 5vw, 80px) clamp(40px, 5vw, 56px);
  margin-bottom: 0;
}

.page-blog-post .post-quick-answer__shell {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 28px);
  border: 1px solid rgba(241, 109, 2, 0.22);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(241, 109, 2, 0.06), transparent 55%),
    rgba(241, 109, 2, 0.04);
}

.page-blog-post .post-quick-answer__title {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.page-blog-post .post-quick-answer__text {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: rgba(242, 251, 250, 0.72);
}

/* --- Contact + C360 forms --- */
.contact-form-layout,
.c360-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-support-panel,
.c360-support-panel {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(229, 97, 39, 0.08) 0%, transparent 55%),
    rgba(12, 12, 12, 0.98);
}

.contact-form-card,
.c360-form-card {
  padding: clamp(28px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(8, 8, 8, 0.65);
}

/* --- Service detail hero --- */
.page-svc-detail .svc-hero {
  padding: 32px clamp(24px, 5vw, 48px) 72px;
}

.page-svc-detail .svc-hero-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* --- Legal pages --- */
.page-legal .privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 80px) clamp(80px, 9vw, 104px);
}

.page-legal .privacy-aside {
  position: sticky;
  top: 100px;
}

.page-legal .privacy-article {
  max-width: 72ch;
}

.page-legal .privacy-section + .privacy-section {
  margin-top: clamp(36px, 4vw, 48px);
  padding-top: clamp(36px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Thank-you page --- */
.page-thank-you .page-shell {
  max-width: none;
  padding: 0;
}

.page-thank-you .thankyou-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.5vw, 40px) clamp(24px, 5vw, 80px) clamp(56px, 7vw, 72px);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.page-thank-you .thankyou-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
  pointer-events: none;
}

.page-thank-you .thankyou-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.page-thank-you .thankyou-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid rgba(241, 109, 2, 0.35);
  background: rgba(241, 109, 2, 0.08);
  color: var(--teal);
  font-size: 28px;
  font-weight: 700;
}

.page-thank-you .page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-thank-you .page-intro {
  max-width: 52ch;
  margin: 0 auto 28px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: rgba(247, 242, 236, 0.62);
}

.page-thank-you .thankyou-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-thank-you .thankyou-next {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 88px) clamp(24px, 5vw, 80px);
}

/* --- 404 cards --- */
.not-found-quick-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.not-found-quick-card:hover,
.not-found-quick-card:focus-visible {
  border-color: rgba(241, 109, 2, 0.35);
  background: rgba(241, 109, 2, 0.04);
  transform: translateY(-2px);
  outline: none;
}

.not-found-quick-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.not-found-quick-card p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 251, 250, 0.52);
}

.not-found-suggest {
  padding: clamp(56px, 7vw, 72px) clamp(24px, 5vw, 80px) clamp(88px, 10vw, 104px);
  border-top: 1px solid var(--border);
}

.not-found-suggest__shell {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

/* --- Responsive polish --- */
@media (max-width: 1024px) {
  .work-hero-split,
  .contact-hero-split,
  .blog-hero-split {
    grid-template-columns: 1fr;
  }

  .c360-hero-split {
    grid-template-columns: 1fr;
  }

  .work-hero-split__visual,
  .contact-hero-split__visual,
  .blog-hero-split__visual,
  .c360-hero-split__visual {
    justify-self: stretch;
    max-width: none;
  }

  .about-culture-inner,
  .about-who-inner,
  .contact-form-layout,
  .c360-form-layout,
  .page-legal .privacy-layout {
    grid-template-columns: 1fr;
  }

  .about-who-panel,
  .contact-support-panel,
  .c360-support-panel,
  .page-legal .privacy-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-about .about-who-actions,
  .about-culture-inner .btn-primary,
  body:not(.home) .cta-section--premium .cta-buttons,
  .page-thank-you .thankyou-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .page-about .about-who-actions .btn-primary,
  .page-about .about-who-actions .btn-outline,
  body:not(.home) .cta-section--premium .cta-buttons .btn-primary,
  body:not(.home) .cta-section--premium .cta-buttons .btn-outline,
  .page-thank-you .thankyou-hero-actions .btn-primary,
  .page-thank-you .thankyou-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .about-aeo-block__cards,
  .services-aeo-block .home-answer-block__cards,
  .work-aeo-block .home-answer-block__cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .not-found-quick-card:hover,
  .not-found-quick-card:focus-visible {
    transform: none;
  }
}

/* ==========================================================================
   INNER PAGE HERO, clear fixed navbar
   Prior gap reduction set top padding below nav height; restore clearance here.
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --bf-nav-clearance: 96px;
    --bf-hero-top-gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --bf-nav-clearance: 88px;
    --bf-hero-top-gap: 16px;
  }
}

.page-about .hero,
.page-work .hero,
.page-services .hero,
.page-svc-detail .svc-hero,
.page-team .hero,
.page-clients .hero,
.page-faqs .hero,
.page-case .hero,
.work-hero-split,
.contact-hero-split,
.blog-hero-split,
.c360-hero-split,
.page-work-detail .work-detail-hero,
.privacy-hero,
.not-found-hero,
.page-thank-you .thankyou-hero,
.page-blog-post .post-hero-v2,
.post-hero-v2 {
  padding-top: var(--bf-inner-hero-top);
}


/* Work portfolio, real case study cards & listing toolbar */
.home-portfolio-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 12px;
  margin: 0;
}

.home-portfolio-card__client,
.home-portfolio-card__year {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.48);
}

.home-portfolio-card__client {
  color: rgba(229, 97, 39, 0.88);
}

.home-portfolio-card__outcomes {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 6px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.home-portfolio-card__outcomes li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.45;
  color: rgba(247, 242, 236, 0.68);
}

.home-portfolio-card__outcome-mark {
  display: none;
}

.portfolio-section--work .home-portfolio-card--featured .home-portfolio-card__outcome-mark {
  display: block;
}

.work-aeo-section {
  display: none;
}

.work-toolbar {
  display: grid;
  gap: 16px;
  margin: 0 0 clamp(28px, 4vw, 36px);
}

.work-search__input {
  width: 100%;
  max-width: 420px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f2ec;
  font-family: var(--font-ui);
  font-size: 14px;
}

.work-search__input::placeholder {
  color: rgba(247, 242, 236, 0.4);
}

/* Cross-domain influencer note (homepage secondary) */
.portfolio-influencer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  width: 100%;
  max-width: none;
  margin-top: clamp(36px, 5vw, 52px);
  padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(245, 148, 40, 0.75);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 42% 120% at 100% 50%, rgba(229, 97, 39, 0.1) 0%, transparent 55%),
    rgba(0, 0, 0, 0.32);
}

.portfolio-influencer-note__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 68ch;
}

.portfolio-influencer-note__copy .section-label {
  margin-bottom: 10px;
}

.portfolio-influencer-note__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(247, 242, 236, 0.96);
}

.portfolio-influencer-note__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(247, 242, 236, 0.62);
}

.portfolio-influencer-note__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 13px 18px;
  border: 1px solid rgba(245, 148, 40, 0.42);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(245, 148, 40, 0.12);
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.portfolio-influencer-note__link:hover,
.portfolio-influencer-note__link:focus-visible {
  background: rgba(245, 148, 40, 0.22);
  border-color: rgba(245, 148, 40, 0.7);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 768px) {
  .portfolio-influencer-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-influencer-note__link {
    width: 100%;
    justify-content: center;
  }
}
