﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --bg: #eeeeee;
  --text: #090909;
  --accent: #4928fd;
  --chat-border: #d9dfec;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

main.page {
  min-height: 100vh;
  padding: 16px 52px 72px;
  position: relative;
  overflow: visible;
}

.site-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 238, 238, 0.96);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.34s ease, visibility 0.34s ease;
}

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

.site-loader-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-loader-inner img {
  width: clamp(160px, 16vw, 250px);
  height: auto;
  object-fit: contain;
}

.site-loader-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ea17a6;
  box-shadow: 0 0 0 0 rgba(234, 23, 166, 0.35);
  animation: hw-loader-pulse 1.05s ease-in-out infinite;
}

@keyframes hw-loader-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 23, 166, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(234, 23, 166, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 23, 166, 0);
    transform: scale(1);
  }
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  animation: drop-in 0.55s ease both;
  position: sticky;
  top: 10px;
  z-index: 420;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: rgba(238, 238, 238, 0.65);
  backdrop-filter: blur(5px);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.topbar.is-sticky-scrolled {
  background: rgba(238, 238, 238, 0.93);
  border-color: rgba(20, 20, 20, 0.08);
  box-shadow: 0 14px 28px rgba(16, 18, 32, 0.08);
}

body.admin-bar .topbar {
  top: 42px;
}

.brand {
  text-decoration: none;
  display: block;
  width: clamp(120px, 10vw, 170px);
  line-height: 0;
  justify-self: start;
  position: relative;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.5vw, 60px);
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
}

.menu > li {
  position: relative;
}

.menu-item-has-dropdown {
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.menu a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.menu-mobile-link {
  display: none;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.menu a:hover::after,
.menu a.is-active::after {
  width: 100%;
}

.menu a.is-active {
  color: var(--accent);
  font-weight: 700;
}

.menu-item-services > .menu-services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 18px;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.menu-services-trigger.is-active {
  color: var(--accent);
  font-weight: 700;
}

.menu-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.2s ease;
}

.menu-item-has-dropdown:hover .menu-caret,
.menu-item-has-dropdown:focus-within .menu-caret {
  transform: translateY(1px) rotate(225deg);
}

.menu-item-has-dropdown:hover > .menu-services-trigger,
.menu-item-has-dropdown:focus-within > .menu-services-trigger {
  border-color: rgba(14, 14, 14, 0.4);
  background: rgba(255, 255, 255, 0.35);
}

.menu-services-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: min(980px, calc(100vw - 40px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050509;
  padding: clamp(20px, 2.2vw, 34px);
  border-radius: 32px;
  box-shadow: 0 30px 62px rgba(5, 7, 15, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 50;
  max-height: min(72vh, 620px);
  overflow: auto;
}

.menu-services-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.menu-item-has-dropdown:hover .menu-services-dropdown,
.menu-item-has-dropdown:focus-within .menu-services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.menu-services-dropdown a::after {
  display: none;
}

.menu-courses-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: min(520px, calc(100vw - 40px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050509;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(5, 7, 15, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 50;
}

.menu-courses-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.menu-item-has-dropdown:hover .menu-courses-dropdown,
.menu-item-has-dropdown:focus-within .menu-courses-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.menu-courses-dropdown a::after {
  display: none;
}

.menu-courses-links {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-services-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr 1fr;
  gap: clamp(24px, 3vw, 54px);
  align-items: start;
}

.mega-services-col {
  min-width: 0;
}

.mega-services-col h3 {
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.menu-services-list {
  list-style: none;
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.menu-services-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 3px 2px;
  font-size: clamp(15px, 1.12vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: normal;
  line-height: 1.16;
}

.menu-service-icon {
  width: 18px;
  height: 18px;
  color: #a494ff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-services-list a:hover .menu-service-icon {
  color: #ffffff;
}

.menu-services-list a:focus-visible .menu-service-icon {
  color: #ffffff;
}

.menu-services-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.menu-services-all {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff !important;
  font-size: clamp(30px, 2.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: color 0.2s ease;
}

.menu-services-all:hover {
  color: #a494ff !important;
}

.menu-services-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(22px, 3vw, 44px);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-services-footer-left {
  justify-content: flex-start;
  margin-top: 14px;
}

.menu-services-all-small {
  font-size: clamp(22px, 1.8vw, 30px);
  text-underline-offset: 4px;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #111111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.58);
  outline-offset: 2px;
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.action-btn {
  border: 1px solid #111111;
  border-radius: 999px;
  padding: 10px 20px;
  color: inherit;
  text-decoration: none;
  font-size: clamp(14px, 1.03vw, 18px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-work {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-enrol {
  background: transparent;
  color: #111111;
}

.action-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.hero {
  margin-top: 108px;
  padding-left: 6px;
  position: relative;
}

.hero-copy {
  position: relative;
  width: min(1560px, 100%);
  max-width: 100%;
  height: clamp(140px, 16vw, 224px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
  transform: translateY(calc(-100% - 24px));
  transition: transform 0.9s cubic-bezier(0.22, 0.73, 0.2, 1);
  will-change: transform;
}

.hero-slide.is-active {
  transform: translateY(0);
  z-index: 3;
}

.hero-slide.is-leaving {
  transform: translateY(calc(100% + 24px));
  z-index: 2;
}

.hero-slide.is-reset {
  transition: none;
  transform: translateY(calc(-100% - 24px));
  z-index: 1;
}

.hero-line {
  font-size: clamp(38px, 5.4vw, 100px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.hero-subline {
  max-width: min(1260px, 92vw);
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.hero-snapshot {
  max-width: min(1100px, 93vw);
  display: grid;
  gap: 8px;
  align-content: start;
}

.snapshot-title {
  font-size: clamp(20px, 1.6vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.snapshot-stat {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.snapshot-metric {
  min-width: 0;
}

.snapshot-value {
  display: block;
  font-size: clamp(36px, 3.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #4928fd;
}

.snapshot-label {
  display: block;
  margin-top: 6px;
  font-size: clamp(14px, 1.04vw, 18px);
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: rgba(14, 14, 14, 0.9);
}

.snapshot-note {
  font-size: clamp(13px, 1.03vw, 17px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(20, 20, 20, 0.82);
}

.video-showcase {
  margin-top: clamp(68px, 10vw, 138px);
  animation: fade-up 0.9s ease 0.4s both;
}

.video-frame {
  width: min(1320px, 92vw);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: #070913;
  box-shadow: 0 28px 60px rgba(16, 16, 24, 0.22);
  position: relative;
  user-select: none;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.brands-marquee {
  margin-top: clamp(34px, 4.6vw, 74px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  padding: clamp(26px, 3.2vw, 54px) 0 clamp(16px, 1.9vw, 30px);
  border: 0;
  background: transparent;
}

.brands-marquee::before {
  content: none;
}

.brands-marquee::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(90deg, var(--bg) 0 3.2%, rgba(238, 238, 238, 0) 10%, rgba(238, 238, 238, 0) 90%, var(--bg) 96.8% 100%);
}

.brands-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: brands-scroll 18s linear infinite;
  padding: 0;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.brands-group {
  display: flex;
  align-items: center;
  gap: clamp(46px, 4.4vw, 88px);
  padding-right: clamp(110px, 11vw, 210px);
}

.brand-item {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: clamp(30px, 2.15vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: rgba(20, 20, 20, 0.27);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
  line-height: 1;
  position: relative;
  transform: none;
}

.brand-label {
  display: inline-block;
  transition: opacity 0.18s ease;
}

.brand-inline-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 1.72em;
  max-width: min(78vw, 620px);
  max-height: 1.92em;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.brand-item.is-active {
  color: rgba(18, 18, 18, 0.72);
  font-weight: 700;
}

.brand-item:hover .brand-label,
.brand-item:focus-visible .brand-label,
.brand-item.is-active .brand-label {
  opacity: 0;
}

.brand-item:hover .brand-inline-logo,
.brand-item:focus-visible .brand-inline-logo,
.brand-item.is-active .brand-inline-logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

.brand-item:hover {
  color: rgba(16, 16, 16, 0.6);
}

.brand-logo-preview {
  display: none !important;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.16s ease, transform 0.16s ease;
  border: 1px solid rgba(18, 18, 18, 0.14);
  background: #f6f6f6;
  box-shadow: 0 18px 34px rgba(16, 20, 32, 0.16);
  padding: 12px 12px 10px;
  min-width: 144px;
}

.brand-logo-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: brand-popup 0.2s cubic-bezier(0.22, 0.8, 0.2, 1);
}

.brand-logo-preview img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.brand-logo-preview span {
  display: block;
  margin-top: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.72);
  text-transform: uppercase;
  text-align: center;
}

.services-hero {
  margin-top: clamp(64px, 9vw, 118px);
  max-width: min(1240px, 96vw);
  position: relative;
}

.services-hero h1 {
  margin-top: 12px;
  font-family: inherit;
  font-size: clamp(38px, 5.4vw, 100px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 600;
  max-width: min(1260px, 92vw);
  animation: fade-up 0.62s ease 0.12s both;
}

.services-subline {
  margin-top: 18px;
  max-width: min(1180px, 92vw);
  font-size: clamp(17px, 1.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.88);
  animation: fade-up 0.62s ease 0.2s both;
}

.services-filter-wrap {
  margin-top: clamp(18px, 2.3vw, 28px);
  max-width: min(1240px, 96vw);
}

.services-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.service-filter-btn {
  appearance: none;
  border: 1px solid rgba(12, 12, 12, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(12, 12, 12, 0.9);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.service-filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 40, 253, 0.4);
}

.service-filter-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.service-filter-btn.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #4928fd 0%, #2f20c8 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(73, 40, 253, 0.27);
}

.services-stack {
  margin-top: clamp(46px, 6.6vw, 96px);
  display: grid;
  gap: clamp(24px, 3.5vw, 52px);
  padding-bottom: 36px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: clamp(22px, 3.4vw, 58px);
  padding: clamp(18px, 2.3vw, 34px);
  border: 1px solid rgba(14, 14, 14, 0.14);
  background: rgba(255, 255, 255, 0.62);
  position: relative;
  overflow: hidden;
}

.service-showcase.is-hidden-filter {
  display: none;
}

.is-hidden-filter {
  display: none !important;
}

.service-showcase::before {
  content: none;
}

.service-showcase.layout-media-right .service-media {
  order: 2;
}

.service-showcase.layout-media-right .service-copy {
  order: 1;
}

.service-media {
  min-height: clamp(300px, 33vw, 500px);
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44), 0 20px 46px rgba(16, 18, 26, 0.15);
  background: linear-gradient(140deg, #101727 0%, #1b2440 42%, #4928fd 100%);
  isolation: isolate;
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%);
}

.service-media::after {
  content: none;
}

.service-featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-featured-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.service-featured-primary {
  opacity: 1;
  transform: scale(1);
}

.service-featured-secondary {
  opacity: 0;
  transform: scale(1.04);
}

.service-hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(0.74) saturate(0.95);
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.service-media.has-hover-video .service-featured-secondary {
  display: none;
}

.service-media:hover .service-featured-secondary,
.service-media:focus-within .service-featured-secondary {
  opacity: 1;
  transform: scale(1);
}

.service-media:hover .service-featured-primary,
.service-media:focus-within .service-featured-primary {
  opacity: 0;
  transform: scale(1.05);
}

.service-media.has-hover-video:hover .service-hover-video,
.service-media.has-hover-video:focus-within .service-hover-video {
  opacity: 1;
  transform: scale(1);
}

.media-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff2ea6;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow: 0 0 0 8px rgba(255, 46, 166, 0.18);
}

.media-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 16px 36px rgba(10, 10, 16, 0.24);
  overflow: hidden;
  animation: card-drift 7.6s ease-in-out infinite;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(73, 40, 253, 0.16), rgba(73, 40, 253, 0));
  pointer-events: none;
}

.media-card.a {
  width: 74%;
  height: 58%;
  left: -8%;
  top: 15%;
  transform: rotate(-14deg);
  border-radius: 24px;
}

.media-card.b {
  width: 46%;
  height: 44%;
  right: 8%;
  top: 12%;
  transform: rotate(-5deg);
  border-radius: 20px;
  animation-delay: 1.2s;
}

.media-card.c {
  width: 60%;
  height: 38%;
  right: -6%;
  bottom: -8%;
  transform: rotate(9deg);
  border-radius: 22px;
  animation-delay: 2.1s;
}

.media-card-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 16, 16, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 16, 16, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.3;
}

.media-logo {
  position: absolute;
  width: clamp(98px, 10vw, 170px);
  right: 14%;
  bottom: 12%;
  z-index: 4;
  border: 8px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 26px rgba(12, 12, 20, 0.2);
  transform: rotate(-7deg);
  animation: logo-drift 7.2s ease-in-out infinite;
}

.media-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.service-copy h2 {
  font-size: clamp(36px, 4.6vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 13ch;
}

.service-copy p {
  margin-top: clamp(14px, 1.8vw, 24px);
  font-size: clamp(18px, 1.65vw, 34px);
  line-height: 1.46;
  letter-spacing: -0.015em;
  color: rgba(12, 12, 12, 0.84);
  max-width: 32ch;
}

.service-price {
  margin-top: clamp(16px, 1.8vw, 24px);
  font-size: clamp(18px, 1.4vw, 25px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #17191f;
}

.service-cta {
  margin-top: clamp(20px, 2.3vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background: #0a0a0d;
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  box-shadow: 0 12px 26px rgba(8, 8, 12, 0.22);
  position: relative;
  overflow: hidden;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 8, 12, 0.28);
}

.home-services-stack {
  margin-top: clamp(26px, 3vw, 42px);
}

.home-services-stack .service-showcase {
  background: rgba(255, 255, 255, 0.56);
}

.section-space {
  margin-top: clamp(44px, 6.2vw, 96px);
}

.section-space-tight {
  margin-top: clamp(26px, 3.2vw, 44px);
}

.page-media-showcase {
  margin-top: clamp(24px, 3.4vw, 46px);
}

.page-media-frame {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 30vw, 520px);
  border: 1px solid rgba(16, 18, 24, 0.16);
  border-radius: clamp(20px, 2.8vw, 34px);
  overflow: hidden;
  background: #0d1323;
  box-shadow: 0 16px 32px rgba(8, 12, 22, 0.15);
}

.page-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.08) 0%, rgba(4, 5, 8, 0.5) 100%);
  pointer-events: none;
  z-index: 4;
  transition: background 0.3s ease;
}

.page-media-image,
.page-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-media-image-primary {
  z-index: 1;
}

.page-media-image-secondary {
  z-index: 2;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.38s ease, transform 0.5s ease;
}

.page-media-video {
  z-index: 3;
  opacity: 0;
  transition: opacity 0.38s ease;
}

.page-media-frame.has-hover-image:hover .page-media-image-secondary,
.page-media-frame.has-hover-image:focus-within .page-media-image-secondary {
  opacity: 1;
  transform: scale(1);
}

.page-media-frame.has-hover-video:hover .page-media-video,
.page-media-frame.has-hover-video:focus-within .page-media-video {
  opacity: 1;
}

.page-media-frame:hover::after,
.page-media-frame:focus-within::after {
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.18) 0%, rgba(4, 5, 8, 0.68) 100%);
}

/* Home page vertical rhythm: consistent large spacing from top to bottom. */
.home main.page .home-stack-section {
  margin-top: 0;
}

.home main.page .home-stack-section:first-of-type {
  margin-top: clamp(84px, 8.5vw, 132px);
}

.home main.page .home-stack-section + .home-stack-section {
  margin-top: clamp(82px, 9.5vw, 156px);
}

.home .site-footer {
  margin-top: clamp(104px, 11vw, 188px);
}

.inner-hero {
  margin-top: clamp(64px, 8.8vw, 122px);
  max-width: min(1300px, 96vw);
}

.inner-hero h1 {
  font-size: clamp(38px, 5.4vw, 100px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 600;
  max-width: min(1320px, 96vw);
}

.inner-subline {
  margin-top: 18px;
  max-width: min(1180px, 94vw);
  font-size: clamp(17px, 1.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.88);
}

.hero-inline-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-head-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.042em;
  font-weight: 700;
}

.text-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #141414;
  font-size: clamp(15px, 1.1vw, 19px);
  font-weight: 700;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.feature-card {
  border: 1px solid rgba(14, 14, 14, 0.12);
  background: rgba(255, 255, 255, 0.52);
  padding: clamp(18px, 2.3vw, 28px);
}

.feature-card h2,
.feature-card h3 {
  font-size: clamp(24px, 2.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.feature-card h3 {
  font-size: clamp(20px, 2vw, 34px);
}

.feature-card p {
  margin-top: 10px;
  color: rgba(14, 14, 14, 0.84);
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.38;
}

.feature-card ul {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 16px;
  font-size: clamp(15px, 1.2vw, 19px);
  color: rgba(14, 14, 14, 0.86);
  line-height: 1.35;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(73, 40, 253, 0.86);
  transform: translateY(-50%);
}

.agency-matrix {
  position: relative;
  overflow: hidden;
  padding: clamp(12px, 1.4vw, 20px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.agency-matrix::before {
  content: none;
}

.agency-matrix::after {
  content: none;
}

.agency-matrix-dot {
  display: none;
}

.agency-matrix-title {
  position: relative;
  z-index: 2;
  font-size: clamp(42px, 4.9vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 600;
  max-width: 12ch;
  padding-left: clamp(4px, 0.6vw, 10px);
}

.agency-matrix-body {
  margin-top: clamp(24px, 2.6vw, 40px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: end;
}

.agency-matrix-copy {
  display: grid;
  gap: clamp(14px, 1.5vw, 20px);
  align-content: end;
  padding: 2px 8px 8px 2px;
}

.agency-matrix-copy p {
  font-size: clamp(19px, 1.4vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: rgba(18, 18, 18, 0.9);
  font-weight: 500;
  max-width: 25ch;
}

.agency-matrix-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.agency-matrix-card {
  border: 1px solid rgba(16, 16, 16, 0.42);
  border-radius: clamp(26px, 2.6vw, 38px);
  padding: clamp(24px, 2.2vw, 34px);
  min-height: clamp(280px, 22vw, 360px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.24) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(14px, 1.25vw, 20px);
}

.agency-matrix-card:hover {
  transform: none;
  border-color: rgba(16, 16, 16, 0.42);
  box-shadow: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.24) 100%);
}

.agency-matrix-card h3 {
  font-size: clamp(30px, 2.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 11ch;
}

.agency-matrix-card p {
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(18, 18, 18, 0.82);
  font-weight: 500;
  max-width: 24ch;
}

.timeline-section {
  max-width: min(1260px, 95vw);
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  margin-top: 16px;
}

.timeline-item {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(16px, 1.8vw, 24px);
}

.timeline-item span {
  display: inline-block;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1b1d24;
  text-transform: uppercase;
}

.timeline-item p {
  margin-top: 8px;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.34;
  color: rgba(12, 12, 12, 0.84);
}

.person-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.person-card {
  border: 1px solid rgba(14, 14, 14, 0.12);
  background: rgba(255, 255, 255, 0.54);
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}

.person-media {
  background: linear-gradient(150deg, #2d2d36 0%, #4928fd 100%);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}

.person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-content h3 {
  font-size: clamp(22px, 2.1vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.person-role {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b33c8;
}

.person-content p {
  margin-top: 8px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
  color: rgba(14, 14, 14, 0.84);
}

.quote-grid {
  margin-top: clamp(14px, 1.8vw, 22px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.quote-card {
  position: relative;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: clamp(18px, 1.7vw, 28px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.42) 100%);
  padding: clamp(20px, 2vw, 30px);
  min-height: clamp(220px, 19vw, 300px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(12, 14, 22, 0.08);
  overflow: hidden;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: clamp(14px, 1.6vw, 20px);
  font-size: clamp(56px, 4.6vw, 88px);
  line-height: 0.86;
  font-weight: 700;
  color: rgba(73, 40, 253, 0.12);
  pointer-events: none;
}

.quote-card p {
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(12, 12, 12, 0.9);
  max-width: 34ch;
}

.quote-card span,
.quote-author {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  font-size: clamp(14px, 1.02vw, 17px);
  font-weight: 700;
  line-height: 1.3;
  color: rgba(16, 16, 16, 0.8);
}

.quote-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 14px;
}

.home-testimonials .section-head-inline {
  align-items: center;
}

.home-testimonials .quote-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.home-testimonials .quote-nav-btn {
  appearance: none;
  border: 1px solid rgba(16, 16, 16, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: #131313;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.home-testimonials .quote-nav-btn:hover {
  background: #ffffff;
  border-color: rgba(16, 16, 16, 0.4);
}

.home-testimonials .quote-nav-btn:focus-visible {
  outline: 2px solid rgba(16, 16, 16, 0.6);
  outline-offset: 2px;
}

.home-testimonials .quote-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.home-testimonials .quote-carousel {
  margin-top: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
}

.home-testimonials .quote-grid {
  --quote-gap: clamp(14px, 2vw, 24px);
  margin-top: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--quote-gap);
  transition: transform 0.45s cubic-bezier(0.22, 0.73, 0.2, 1);
  will-change: transform;
}

.home-testimonials .quote-card {
  flex: 0 0 calc((100% - (var(--quote-gap) * 2)) / 3);
}

.home-service-grid {
  margin-top: clamp(18px, 2.1vw, 28px);
  padding: 0;
  background: transparent;
  border: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 2.1vw, 30px);
  align-items: start;
}

.home-service-card {
  position: relative;
  animation: home-service-float 8.2s ease-in-out infinite;
}

.home-service-card-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.home-service-card-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  animation-delay: 0.45s;
}

.home-service-card-3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  width: 100%;
  justify-self: stretch;
  animation-delay: 0.78s;
}

.home-service-media {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(340px, 33vw, 560px);
  overflow: hidden;
  border-radius: clamp(22px, 2.5vw, 42px);
  background: radial-gradient(110% 130% at 12% 0%, #192a5f 0%, #0f1a40 36%, #09122d 68%, #050914 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 34px rgba(12, 14, 26, 0.2);
  text-decoration: none;
}

.home-service-card-2 .home-service-media {
  height: clamp(340px, 33vw, 560px);
}

.home-service-card-3 .home-service-media {
  height: clamp(290px, 26vw, 430px);
}

.home-service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 20, 0.12) 0%, rgba(6, 9, 20, 0.56) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  transition: opacity 0.34s ease;
}

.home-service-media::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: skewX(-16deg);
  opacity: 0;
  transition: transform 0.58s ease, opacity 0.58s ease;
  z-index: 4;
  pointer-events: none;
}

.home-service-media:hover::after,
.home-service-media:focus-visible::after,
.home-service-media.is-revealed::after {
  transform: translateX(330%) skewX(-16deg);
  opacity: 0.74;
}

.home-service-media:hover::before,
.home-service-media:focus-visible::before,
.home-service-media.is-revealed::before {
  opacity: 0.66;
}

.home-service-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) saturate(0.97);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-service-image-primary {
  opacity: 1;
  transform: scale(1);
}

.home-service-image-secondary {
  opacity: 0;
  transform: scale(1.08);
}

.home-service-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(0.68) saturate(0.94);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.home-service-media.has-hover-video .home-service-image-secondary {
  display: none;
}

.home-service-media:hover .home-service-image-primary,
.home-service-media:focus-visible .home-service-image-primary,
.home-service-media.is-revealed .home-service-image-primary {
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.62) saturate(0.93);
}

.home-service-media:hover .home-service-image-secondary,
.home-service-media:focus-visible .home-service-image-secondary,
.home-service-media.is-revealed .home-service-image-secondary {
  opacity: 1;
  transform: scale(1);
  filter: brightness(0.68) saturate(0.95);
}

.home-service-media.has-hover-video:hover .home-service-video,
.home-service-media.has-hover-video:focus-visible .home-service-video,
.home-service-media.has-hover-video.is-revealed .home-service-video {
  opacity: 1;
  transform: scale(1);
}

.home-service-media.is-logo-fallback {
  background: radial-gradient(120% 145% at 8% 0%, #243992 0%, #19296f 34%, #101c4d 66%, #0a122e 100%);
}

.home-service-media.is-logo-fallback .home-service-image {
  object-fit: cover;
  padding: 0;
  filter: brightness(0.64) contrast(1.04) saturate(0.9);
}

.home-service-media.is-logo-fallback::before {
  opacity: 0.5;
}

.home-service-media.is-logo-fallback:hover::before,
.home-service-media.is-logo-fallback:focus-visible::before,
.home-service-media.is-logo-fallback.is-revealed::before {
  opacity: 0.7;
}

.home-service-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: clamp(14px, 1.5vw, 20px);
  background: linear-gradient(180deg, rgba(11, 12, 16, 0) 20%, rgba(11, 12, 16, 0.8) 88%);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.home-service-media:hover .home-service-overlay,
.home-service-media:focus-visible .home-service-overlay,
.home-service-media.is-revealed .home-service-overlay {
  opacity: 1;
}

.home-service-overlay > * {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.36s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.36s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-service-media:hover .home-service-overlay > *,
.home-service-media:focus-visible .home-service-overlay > *,
.home-service-media.is-revealed .home-service-overlay > * {
  opacity: 1;
  transform: translateY(0);
}

.home-service-media:hover .home-service-overlay h3,
.home-service-media:focus-visible .home-service-overlay h3,
.home-service-media.is-revealed .home-service-overlay h3 {
  transition-delay: 0.02s;
}

.home-service-media:hover .home-service-overlay p,
.home-service-media:focus-visible .home-service-overlay p,
.home-service-media.is-revealed .home-service-overlay p {
  transition-delay: 0.08s;
}

.home-service-media:hover .home-service-overlay .home-service-explore,
.home-service-media:focus-visible .home-service-overlay .home-service-explore,
.home-service-media.is-revealed .home-service-overlay .home-service-explore {
  transition-delay: 0.14s;
}

.home-service-overlay h3 {
  font-size: clamp(26px, 2.6vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.home-service-overlay p {
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
  max-width: 30ch;
}

.home-service-explore {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #0a0a0d;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.quick-service-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.quick-service-card {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.56);
  padding: 12px;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.quick-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(73, 40, 253, 0.28);
  box-shadow: 0 14px 28px rgba(17, 17, 24, 0.12);
}

.quick-service-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(132deg, #121528 0%, #1f2750 52%, #4928fd 100%);
  margin-bottom: 12px;
  isolation: isolate;
  animation: quick-media-drift 7.2s ease-in-out infinite;
}

.quick-service-card:nth-child(2) .quick-service-media {
  animation-delay: 0.4s;
}

.quick-service-card:nth-child(3) .quick-service-media {
  animation-delay: 0.8s;
}

.quick-service-card:nth-child(4) .quick-service-media {
  animation-delay: 1.2s;
}

.quick-service-media::after {
  content: "";
  position: absolute;
  left: -34%;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06));
  transform: skewX(-18deg);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 4;
}

.quick-service-card:hover .quick-service-media::after {
  transform: translateX(360%) skewX(-18deg);
  opacity: 0.72;
}

.quick-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.quick-service-image-primary {
  opacity: 1;
  transform: scale(1);
}

.quick-service-image-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
}

.quick-service-card:hover .quick-service-image-primary {
  opacity: 0;
  transform: scale(1.06);
}

.quick-service-card:hover .quick-service-image-secondary {
  opacity: 1;
  transform: scale(1);
}

.quick-service-card h3 {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.quick-service-card a {
  color: inherit;
  text-decoration: none;
}

.quick-service-card p {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #4a4a59;
}

.portfolio-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.portfolio-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card {
  position: relative;
  border: 1px solid rgba(12, 12, 12, 0.14);
  border-radius: clamp(18px, 2.2vw, 30px);
  background: #111320;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 16px 34px rgba(12, 16, 32, 0.16);
}

.portfolio-card-media {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: clamp(190px, 26vw, 320px);
  background: linear-gradient(145deg, #1b1d26 0%, #4928fd 100%);
  cursor: default;
}

.portfolio-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 16, 0.02) 0%, rgba(7, 9, 16, 0.16) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.32s ease;
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.52s ease;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
}

.portfolio-card-overlay {
  position: absolute;
  left: clamp(14px, 1.8vw, 24px);
  right: clamp(14px, 1.8vw, 24px);
  bottom: clamp(14px, 1.8vw, 24px);
  z-index: 3;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-meta {
  margin: 0;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-card h2,
.portfolio-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.portfolio-card h2 a,
.portfolio-card h3 a {
  color: inherit;
  text-decoration: none;
}

.portfolio-card p {
  margin: 0;
}

.portfolio-overlay-summary {
  font-size: clamp(13px, 0.96vw, 16px);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.84);
  max-width: 40ch;
}

.portfolio-result {
  margin: 0;
  font-size: clamp(14px, 1.02vw, 16px);
  font-weight: 700;
  color: rgba(234, 228, 255, 0.94);
}

.portfolio-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tags span {
  border: 1px solid rgba(73, 40, 253, 0.24);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #3f2eb9;
  background: rgba(73, 40, 253, 0.07);
}

.portfolio-card:hover .portfolio-card-overlay,
.portfolio-card:focus-within .portfolio-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover .portfolio-card-media::before,
.portfolio-card:focus-within .portfolio-card-media::before {
  background: linear-gradient(180deg, rgba(7, 9, 16, 0.34) 0%, rgba(7, 9, 16, 0.84) 100%);
}

.portfolio-card:hover .portfolio-card-media img,
.portfolio-card:focus-within .portfolio-card-media img {
  transform: scale(1.04);
}

.post-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.9vw, 22px);
}

.post-card {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(16px, 1.8vw, 22px);
}

.post-card-media {
  display: block;
  margin-bottom: 10px;
}

.post-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card h2,
.post-card h3 {
  margin-top: 4px;
  font-size: clamp(22px, 2.3vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.post-card a {
  color: inherit;
  text-decoration: none;
}

.post-card p {
  margin-top: 8px;
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(16, 16, 16, 0.84);
  line-height: 1.36;
}

.course-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.course-card {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(18px, 1.8vw, 24px);
}

.course-card h2,
.course-card h3 {
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.course-card h2 a,
.course-card h3 a {
  color: inherit;
  text-decoration: none;
}

.course-card p {
  margin-top: 8px;
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(16, 16, 16, 0.84);
  line-height: 1.36;
}

.course-card ul {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 5px;
}

.course-card li {
  font-size: clamp(14px, 1.02vw, 16px);
  font-weight: 700;
  color: #2a2a35;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.price-card {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(18px, 2vw, 24px);
  display: grid;
  gap: 10px;
}

.price-card h2 {
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.price-value {
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  color: #1c2e96;
}

.price-ideal {
  font-size: clamp(14px, 1.03vw, 16px);
  color: rgba(18, 18, 18, 0.74);
  font-weight: 700;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.price-card li {
  position: relative;
  padding-left: 16px;
  font-size: clamp(14px, 1.04vw, 16px);
  color: rgba(16, 16, 16, 0.84);
  line-height: 1.32;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(73, 40, 253, 0.82);
  transform: translateY(-50%);
}

.price-table-wrap {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.54);
  overflow-x: auto;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.simple-table th,
.simple-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
  font-size: 15px;
}

.simple-table th {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16, 16, 16, 0.68);
}

.simple-table td a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat-pill {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.58);
  padding: 18px 16px;
}

.stat-pill span {
  font-size: clamp(30px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-pill p {
  margin-top: 6px;
  font-size: clamp(14px, 1.05vw, 16px);
  color: rgba(15, 15, 15, 0.82);
  line-height: 1.3;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.contact-intake-hero {
  margin-top: clamp(72px, 9.8vw, 152px);
  max-width: min(1320px, 96vw);
}

.contact-intake-hero h1 {
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 500;
}

.contact-intake-kicker {
  margin-top: clamp(46px, 5vw, 78px);
  max-width: min(1320px, 96vw);
  font-size: clamp(36px, 5vw, 86px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #0d0d0f;
}

.contact-intake-kicker span {
  color: #090909;
}

.contact-intake {
  margin-top: clamp(26px, 3vw, 48px);
}

.contact-intake-form {
  border-top: 1px solid rgba(14, 14, 16, 0.16);
}

.contact-intake-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) minmax(0, 2fr);
  gap: clamp(18px, 2.8vw, 52px);
  align-items: start;
  padding: clamp(24px, 2.8vw, 34px) 0;
  border-bottom: 1px solid rgba(14, 14, 16, 0.16);
}

.contact-intake-label {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0d0d10;
}

.contact-intake-field {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: clamp(24px, 2.35vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0d0d10;
}

.contact-intake-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #0d0d10 50%), linear-gradient(135deg, #0d0d10 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-intake-select option {
  color: #111111;
}

.contact-intake-field::placeholder {
  color: rgba(12, 12, 12, 0.26);
}

.contact-intake-field:focus {
  outline: 0;
}

.contact-intake-area {
  min-height: 132px;
  resize: vertical;
}

.contact-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.contact-need-chip {
  appearance: none;
  border: 1px solid rgba(12, 12, 12, 0.38);
  background: transparent;
  color: #111318;
  border-radius: 999px;
  padding: 10px 30px;
  font-family: inherit;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.contact-need-chip:hover,
.contact-need-chip.is-active {
  background: #0b0b0f;
  color: #ffffff;
  border-color: #0b0b0f;
}

.contact-need-chip:focus-visible {
  outline: 2px solid rgba(73, 40, 253, 0.45);
  outline-offset: 2px;
}

.contact-intake-actions {
  display: flex;
  justify-content: flex-end;
  padding: clamp(34px, 4vw, 56px) 0 0;
}

.contact-submit-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #070709;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 600;
  padding: clamp(16px, 1.5vw, 22px) clamp(30px, 2.6vw, 42px);
  display: inline-flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn::before {
  content: none;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(7, 7, 10, 0.26);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.contact-card {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(18px, 2vw, 26px);
}

.contact-card h2 {
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.contact-card p,
.contact-card li {
  margin-top: 8px;
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(16, 16, 16, 0.86);
  line-height: 1.36;
}

.contact-card ul {
  margin-top: 8px;
  list-style: none;
  display: grid;
  gap: 6px;
}

.contact-card a {
  color: inherit;
}

.lead-form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.lead-form label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.66);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(12, 12, 12, 0.2);
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  color: #101010;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: 2px solid rgba(73, 40, 253, 0.5);
  outline-offset: 1px;
}

.form-alert {
  margin-top: 8px;
  color: #8f1f38;
  font-weight: 700;
}

.form-note {
  margin-top: 14px;
  color: rgba(16, 16, 16, 0.74);
}

.map-embed {
  margin-top: 14px;
  border: 1px solid rgba(12, 12, 12, 0.12);
  min-height: 260px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.course-detail-wrap {
  max-width: min(1260px, 96vw);
}

.course-summary {
  margin-top: 10px;
  max-width: 48ch;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.34;
  color: rgba(10, 10, 10, 0.86);
}

.course-kpis {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-kpis span {
  border: 1px solid rgba(12, 12, 12, 0.16);
  background: rgba(255, 255, 255, 0.58);
  padding: 8px 12px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #23252e;
}

.faq-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(12, 12, 12, 0.14);
  background: rgba(255, 255, 255, 0.56);
  padding: 10px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-item p {
  margin-top: 8px;
  font-size: clamp(15px, 1.04vw, 17px);
  color: rgba(16, 16, 16, 0.84);
  line-height: 1.35;
}

.case-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.case-metrics article {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.58);
  padding: 10px 12px;
}

.case-metrics span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.66);
}

.case-metrics p {
  margin-top: 4px;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  color: #1b1b1f;
}

.cta-band {
  border: 1px solid rgba(12, 12, 12, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(73, 40, 253, 0.08) 100%);
  padding: clamp(26px, 2.9vw, 48px) clamp(24px, 3.4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  align-items: center;
  gap: clamp(20px, 2.4vw, 44px);
}

.cta-band h2 {
  font-size: clamp(30px, 3.3vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: none;
  font-weight: 700;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: nowrap;
}

.cta-band-actions .action-btn {
  min-width: 178px;
  justify-content: center;
}

@media (max-width: 1260px) {
  .cta-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: clamp(24px, 3.2vw, 38px) clamp(20px, 3.2vw, 34px);
  }

  .cta-band h2 {
    max-width: 100%;
  }

  .cta-band-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.pagination-wrap {
  margin-bottom: 24px;
}

.pagination-wrap .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-wrap a,
.pagination-wrap span {
  border: 1px solid rgba(12, 12, 12, 0.16);
  padding: 8px 12px;
  text-decoration: none;
  color: #131313;
}

.pagination-wrap .current {
  background: #141414;
  color: #ffffff;
}

.site-footer {
  margin-top: clamp(70px, 9vw, 128px);
  padding: clamp(30px, 4vw, 56px) clamp(20px, 3.2vw, 52px) 30px;
  background: #050507;
  color: #f4f4f4;
  border-top: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.site-footer a {
  color: #f3f3f3;
  text-decoration: none;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 50px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.footer-links-col ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-links-col a {
  font-size: clamp(26px, 1.72vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: #ffffff;
}

.footer-logo-stage {
  position: relative;
  margin-top: clamp(28px, 4vw, 56px);
  min-height: clamp(90px, 10vw, 160px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-center {
  width: clamp(170px, 15vw, 320px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: center;
}

.footer-copyright {
  font-size: clamp(18px, 1.15vw, 24px);
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.01em;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 16px;
  z-index: 32;
  max-width: min(480px, calc(100vw - 40px));
  border: 1px solid rgba(12, 12, 12, 0.16);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
  display: none;
  gap: 10px;
  align-items: center;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(14, 14, 14, 0.82);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.cookie-btn {
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
}

body.is-lead-popup-open {
  overflow: hidden;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.lead-popup.is-visible {
  display: block;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 15, 0.58);
  backdrop-filter: blur(2px);
}

.lead-popup-dialog {
  position: relative;
  margin: min(7vh, 64px) auto 0;
  width: min(560px, calc(100vw - 36px));
  border: 1px solid rgba(14, 14, 14, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  padding: 26px 22px 22px;
}

.lead-popup-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup h2 {
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  padding-right: 36px;
}

.lead-popup p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(14, 14, 14, 0.78);
}

.lead-popup-status {
  margin-top: 12px;
  font-weight: 700;
  color: #1a7f37;
}

.lead-popup-form {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.lead-popup-form label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(14, 14, 14, 0.82);
}

.lead-popup-form input,
.lead-popup-form select,
.lead-popup-form textarea {
  border: 1px solid rgba(14, 14, 14, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  color: #090909;
}

.lead-popup-submit {
  margin-top: 4px;
  justify-content: center;
}

.lead-popup-cta-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .lead-popup-dialog {
    margin-top: 52px;
    width: calc(100vw - 22px);
    border-radius: 16px;
    padding: 20px 14px 16px;
  }

  .lead-popup-cta-links .action-btn {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
}

.js .scroll-reveal-left {
  opacity: 1;
  transform: translate3d(-42px, 0, 0);
  transition-property: transform;
  transition-duration: 0.72s;
  transition-timing-function: cubic-bezier(0.22, 0.73, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform;
}

.js .scroll-reveal-left.is-visible {
  transform: translate3d(0, 0, 0);
}

/* Alternating service rows: text on right comes from right, text on left comes from left. */
.js .service-showcase.layout-media-left .service-copy .scroll-reveal-left:not(.is-visible) {
  transform: translate3d(-42px, 0, 0);
}

.js .service-showcase.layout-media-right .service-copy .scroll-reveal-left:not(.is-visible) {
  transform: translate3d(42px, 0, 0);
}

.entry-wrap {
  margin-top: 60px;
  max-width: min(1100px, 95vw);
}

.entry-content h1 {
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.entry-body {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
}

.blog-share {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-share span {
  font-size: 14px;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.7);
}

.blog-share-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-share-links a {
  text-decoration: none;
  border: 1px solid rgba(14, 14, 14, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-share-links a:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.blog-related {
  margin-top: clamp(44px, 5.5vw, 74px);
}

.blog-related h2 {
  font-size: clamp(34px, 3vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.blog-related-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.blog-related-card {
  border: 1px solid rgba(14, 14, 14, 0.1);
  background: rgba(255, 255, 255, 0.58);
  padding: 12px;
  display: grid;
  gap: 12px;
}

.blog-related-media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.12);
}

.blog-related-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.blog-related-card:hover .blog-related-media img {
  transform: scale(1.04);
}

.blog-related-copy h3 {
  font-size: clamp(19px, 1.4vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.blog-related-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-related-copy h3 a:hover {
  color: var(--accent);
}

.blog-related-copy p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(12, 12, 12, 0.78);
}

.blog-related-read {
  margin-top: 10px;
  display: inline-flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.blog-related-read:hover {
  color: var(--accent);
}

.service-detail-wrap {
  margin-top: clamp(48px, 6vw, 86px);
  max-width: min(1100px, 95vw);
}

.service-detail-back {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(14, 14, 14, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.service-detail-back:hover {
  color: var(--accent);
}

.service-detail h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5.3vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-detail-price {
  margin-top: 14px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  color: #1b3f73;
}

.service-detail-summary {
  margin-top: 12px;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.35;
  color: rgba(12, 12, 12, 0.86);
  max-width: 46ch;
}

.service-detail-media {
  margin-top: 24px;
  border: 1px solid rgba(14, 14, 14, 0.1);
  overflow: hidden;
  border-radius: 0;
}

.service-detail-media img {
  display: block;
  width: 100%;
  height: auto;
}

.service-detail-body {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 72ch;
}

.pillar-detail-wrap {
  margin-top: clamp(48px, 6vw, 86px);
  max-width: min(1260px, 96vw);
}

.pillar-detail {
  display: grid;
  gap: clamp(24px, 3.4vw, 44px);
}

.pillar-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
}

.pillar-hero-copy h1 {
  margin-top: 12px;
  font-size: clamp(32px, 4.7vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 13ch;
}

.pillar-summary {
  margin-top: 12px;
  font-size: clamp(18px, 1.42vw, 24px);
  line-height: 1.35;
  color: rgba(12, 12, 12, 0.86);
  max-width: 44ch;
}

.pillar-quickfacts {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pillar-quickfacts span {
  border: 1px solid rgba(12, 12, 12, 0.16);
  background: rgba(255, 255, 255, 0.58);
  padding: 8px 12px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #23252e;
}

.pillar-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pillar-hero-media {
  position: relative;
  min-height: clamp(280px, 31vw, 430px);
  border: 1px solid rgba(14, 14, 14, 0.13);
  overflow: hidden;
  background: linear-gradient(140deg, #12182a 0%, #1b2440 42%, #4928fd 100%);
}

.pillar-hero-media img,
.pillar-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillar-hero-video {
  opacity: 0;
  transition: opacity 0.38s ease;
}

.pillar-hero-media:hover .pillar-hero-video,
.pillar-hero-media:focus-within .pillar-hero-video {
  opacity: 1;
}

.pillar-section {
  display: grid;
  gap: clamp(12px, 1.8vw, 20px);
}

.pillar-title {
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.042em;
  font-weight: 700;
  max-width: 22ch;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.pillar-card {
  border: 1px solid rgba(14, 14, 14, 0.14);
  background: rgba(255, 255, 255, 0.54);
  padding: clamp(18px, 2.2vw, 28px);
  min-height: 100%;
}

.pillar-card h3 {
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 700;
}

.pillar-list {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pillar-list li {
  position: relative;
  padding-left: 14px;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.42;
  color: rgba(16, 16, 16, 0.86);
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4928fd;
}

.pillar-intro {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.45;
  color: rgba(16, 16, 16, 0.84);
  max-width: 72ch;
}

.pillar-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
}

.pillar-outcome-card {
  border: 1px solid rgba(14, 14, 14, 0.14);
  background: rgba(255, 255, 255, 0.54);
  padding: clamp(16px, 1.9vw, 24px);
}

.pillar-outcome-card p {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.4;
  color: rgba(16, 16, 16, 0.88);
}

.pillar-section .course-grid .course-card {
  background: rgba(255, 255, 255, 0.56);
}

/* Single service page style refresh (video-inspired layout) */
.service-focus-wrap {
  margin-top: clamp(46px, 6vw, 92px);
  max-width: min(1260px, 96vw);
}

.service-focus-page {
  display: grid;
  gap: clamp(26px, 3.6vw, 52px);
}

.service-focus-back {
  margin-bottom: -4px;
}

.service-focus-hero {
  border: 1px solid rgba(16, 18, 24, 0.14);
  border-radius: clamp(20px, 2.8vw, 34px);
  padding: clamp(24px, 3.2vw, 46px);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 243, 255, 0.86) 100%);
  position: relative;
  overflow: hidden;
}

.service-focus-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 1.05vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(25, 26, 33, 0.74);
}

.service-focus-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff1ca8;
}

.service-focus-hero h1 {
  margin-top: clamp(10px, 1.2vw, 16px);
  font-size: clamp(34px, 5.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.048em;
  font-weight: 500;
  max-width: 13ch;
}

.service-focus-summary {
  margin-top: clamp(14px, 1.7vw, 24px);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.42;
  color: rgba(12, 12, 12, 0.84);
  max-width: 54ch;
}

.service-focus-chips {
  margin-top: clamp(14px, 1.6vw, 22px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-focus-chips span {
  border: 1px solid rgba(12, 12, 12, 0.16);
  background: rgba(255, 255, 255, 0.68);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  color: #22252f;
}

.service-focus-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
}

.service-focus-media {
  position: relative;
  min-height: clamp(320px, 38vw, 560px);
  border: 1px solid rgba(16, 18, 24, 0.18);
  border-radius: clamp(24px, 3vw, 40px);
  overflow: hidden;
  background: #0d1323;
}

.service-focus-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.16) 0%, rgba(4, 5, 8, 0.44) 100%);
  pointer-events: none;
  z-index: 4;
}

.service-focus-image,
.service-focus-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-focus-image-primary {
  z-index: 1;
}

.service-focus-image-secondary {
  z-index: 2;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.36s ease, transform 0.5s ease;
}

.service-focus-video {
  z-index: 3;
  opacity: 0;
  transition: opacity 0.36s ease;
}

.service-focus-media:hover .service-focus-image-secondary,
.service-focus-media:focus-within .service-focus-image-secondary {
  opacity: 1;
  transform: scale(1);
}

.service-focus-media.has-hover-video:hover .service-focus-video,
.service-focus-media.has-hover-video:focus-within .service-focus-video {
  opacity: 1;
}

.service-focus-copy {
  border: 1px solid rgba(16, 18, 24, 0.14);
  border-radius: clamp(24px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(22px, 3vw, 42px);
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-focus-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  max-width: 11ch;
}

.service-focus-copy p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.48;
  color: rgba(16, 16, 16, 0.84);
}

.service-focus-price {
  font-size: clamp(18px, 1.38vw, 24px);
  font-weight: 700;
  color: #17191f;
}

.service-tier-grid {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.service-tier-card {
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 12px 11px;
  display: grid;
  gap: 7px;
}

.service-tier-card h3 {
  margin: 0;
  font-size: clamp(15px, 1.03vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.service-tier-price {
  margin: 0;
  font-size: clamp(14px, 1.02vw, 17px);
  font-weight: 700;
  color: #1d1f24;
}

.service-tier-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.service-tier-card li {
  position: relative;
  margin: 0;
  padding-left: 12px;
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.35;
  color: rgba(20, 20, 20, 0.84);
}

.service-tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #161a22;
}

.service-focus-checks {
  margin: 4px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-focus-checks li {
  position: relative;
  padding-left: 20px;
  font-size: clamp(15px, 1.03vw, 18px);
  line-height: 1.4;
  color: rgba(18, 18, 18, 0.86);
}

.service-focus-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4928fd;
}

.service-focus-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-focus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: clamp(14px, 1.04vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-focus-btn:hover {
  transform: translateY(-2px);
}

.service-focus-btn-dark {
  background: #0a0a0d;
  color: #ffffff;
  border-color: #0a0a0d;
  padding-left: 20px;
  position: relative;
}

.service-focus-btn-outline {
  background: transparent;
  color: #111111;
  border-color: rgba(17, 17, 17, 0.52);
}

.service-focus-btn-outline:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.service-focus-model {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.service-focus-model h2,
.service-focus-content h2,
.service-focus-faq h2,
.service-focus-related h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.043em;
  max-width: 17ch;
}

.service-focus-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
}

.service-focus-model-card {
  border: 1px solid rgba(16, 18, 24, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  padding: clamp(18px, 2vw, 26px);
}

.service-focus-step {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.72);
}

.service-focus-model-card p {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.44;
  color: rgba(16, 16, 16, 0.84);
}

.service-focus-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
}

.service-focus-content-main {
  border: 1px solid rgba(16, 18, 24, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  padding: clamp(20px, 2.4vw, 34px);
}

.service-focus-content .service-detail-body {
  margin-top: 12px;
  max-width: 100%;
  font-size: clamp(16px, 1.1vw, 18px);
}

.service-focus-content-side {
  border: 1px solid rgba(16, 18, 24, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  padding: clamp(18px, 2.2vw, 30px);
  display: grid;
  gap: 14px;
}

.service-focus-content-side h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-focus-outcomes {
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-focus-outcomes li {
  position: relative;
  padding-left: 17px;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.4;
  color: rgba(16, 16, 16, 0.84);
}

.service-focus-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4928fd;
}

.service-focus-faq {
  display: grid;
  gap: 14px;
}

.service-focus-related {
  display: grid;
  gap: 16px;
}

.service-focus-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-focus-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.9vw, 22px);
}

.service-focus-related-card {
  border: 1px solid rgba(16, 18, 24, 0.13);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  display: grid;
}

.service-focus-related-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-focus-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.34s ease;
}

.service-focus-related-card:hover .service-focus-related-media img {
  transform: scale(1.04);
}

.service-focus-related-copy {
  padding: clamp(16px, 1.8vw, 22px);
  display: grid;
  gap: 10px;
}

.service-focus-related-copy h3 {
  margin: 0;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.service-focus-related-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.service-focus-related-copy p {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  color: rgba(20, 20, 20, 0.82);
}

.service-focus-related-price {
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 700;
  color: #17191f;
}

.service-focus-btn-small {
  margin-top: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.service-focus-cta {
  border: 1px solid rgba(16, 18, 24, 0.14);
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 243, 255, 0.86) 100%);
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-focus-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.042em;
  max-width: 14ch;
}

.service-focus-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1080px) {
  .service-focus-split,
  .service-focus-content {
    grid-template-columns: 1fr;
  }

  .service-focus-model-grid,
  .service-focus-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-focus-hero h1 {
    max-width: 100%;
  }

  .service-focus-copy h2,
  .service-focus-model h2,
  .service-focus-content h2,
  .service-focus-faq h2,
  .service-focus-related h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .service-focus-wrap {
    margin-top: 34px;
    max-width: min(100%, calc(100vw - 24px));
  }

  .service-focus-hero,
  .service-focus-copy,
  .service-focus-model-card,
  .service-focus-content-main,
  .service-focus-content-side,
  .service-focus-cta {
    border-radius: 18px;
  }

  .service-focus-summary {
    font-size: clamp(15px, 4vw, 18px);
    max-width: 100%;
  }

  .service-focus-media {
    min-height: clamp(230px, 66vw, 320px);
    border-radius: 18px;
  }

  .service-focus-actions,
  .service-focus-cta-actions {
    width: 100%;
  }

  .service-focus-btn {
    width: 100%;
  }

  .service-focus-model-grid,
  .service-focus-related-grid {
    grid-template-columns: 1fr;
  }

  .service-focus-related-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 2D/3D polish for single service pages */
.single-hw_service .service-focus-page {
  perspective: 1400px;
}

.single-hw_service .service-focus-hero {
  border-radius: clamp(24px, 3.1vw, 38px);
  background:
    radial-gradient(46% 78% at 5% 100%, rgba(73, 40, 253, 0.08) 0%, rgba(73, 40, 253, 0) 72%),
    radial-gradient(44% 74% at 96% 0%, rgba(73, 40, 253, 0.09) 0%, rgba(73, 40, 253, 0) 70%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 247, 252, 0.92) 42%, rgba(241, 240, 255, 0.9) 100%);
  box-shadow:
    0 24px 54px rgba(16, 21, 44, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.single-hw_service .service-focus-kicker::before {
  border-radius: 4px;
  width: 14px;
  height: 8px;
  background: linear-gradient(90deg, #4928fd 0%, #7c67ff 100%);
}

.single-hw_service .service-focus-split {
  gap: clamp(24px, 3.4vw, 48px);
}

.single-hw_service .service-focus-media {
  border-radius: clamp(26px, 3.2vw, 42px);
  border-color: rgba(18, 21, 34, 0.24);
  box-shadow:
    0 30px 66px rgba(13, 17, 30, 0.28),
    0 18px 26px rgba(13, 17, 30, 0.2);
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.3s ease;
}

.single-hw_service .service-focus-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(73, 40, 253, 0.35) 0%, rgba(73, 40, 253, 0.08) 100%);
  filter: blur(20px);
  opacity: 0.22;
  z-index: -1;
  transition: opacity 0.34s ease;
}

.single-hw_service .service-focus-media:hover,
.single-hw_service .service-focus-media:focus-within {
  transform: translateY(-7px) rotateX(1.8deg) rotateY(-2deg);
  box-shadow:
    0 36px 78px rgba(13, 17, 30, 0.32),
    0 22px 34px rgba(13, 17, 30, 0.24);
  border-color: rgba(73, 40, 253, 0.44);
}

.single-hw_service .service-focus-media:hover::before,
.single-hw_service .service-focus-media:focus-within::before {
  opacity: 0.36;
}

.single-hw_service .service-focus-copy {
  border-radius: clamp(26px, 3.1vw, 40px);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94) 0%, rgba(249, 249, 253, 0.86) 100%);
  border-color: rgba(20, 22, 33, 0.18);
  box-shadow:
    0 22px 46px rgba(16, 21, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.single-hw_service .service-focus-copy:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 58px rgba(16, 21, 38, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.single-hw_service .service-focus-checks li::before {
  border-radius: 2px;
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, #4928fd 0%, #6f57ff 100%);
}

.single-hw_service .service-focus-btn-dark {
  box-shadow: 0 16px 30px rgba(9, 10, 18, 0.22);
}

.single-hw_service .service-focus-btn-dark:hover {
  box-shadow: 0 22px 34px rgba(9, 10, 18, 0.28);
}

.single-hw_service .service-focus-model-card,
.single-hw_service .service-focus-content-main,
.single-hw_service .service-focus-content-side {
  border-color: rgba(19, 22, 36, 0.18);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 247, 252, 0.84) 100%);
  box-shadow: 0 16px 34px rgba(13, 18, 32, 0.08);
}

.single-hw_service .service-focus-model-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.single-hw_service .service-focus-model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(13, 18, 32, 0.14);
}

.single-hw_service .service-focus-related-card {
  border-color: rgba(19, 22, 36, 0.2);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(13, 18, 32, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.24s ease;
}

.single-hw_service .service-focus-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 52px rgba(13, 18, 32, 0.16);
  border-color: rgba(73, 40, 253, 0.36);
}

.single-hw_service .service-focus-cta {
  border-radius: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(65% 170% at 0% 100%, rgba(73, 40, 253, 0.1) 0%, rgba(73, 40, 253, 0) 75%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 241, 255, 0.9) 100%);
  box-shadow:
    0 24px 52px rgba(16, 21, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 1080px) {
  .single-hw_service .service-focus-media:hover,
  .single-hw_service .service-focus-media:focus-within,
  .single-hw_service .service-focus-copy:hover,
  .single-hw_service .service-focus-model-card:hover,
  .single-hw_service .service-focus-related-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 760px) {
  .single-hw_service .service-focus-hero,
  .single-hw_service .service-focus-media,
  .single-hw_service .service-focus-copy,
  .single-hw_service .service-focus-model-card,
  .single-hw_service .service-focus-content-main,
  .single-hw_service .service-focus-content-side,
  .single-hw_service .service-focus-related-card,
  .single-hw_service .service-focus-cta {
    box-shadow: 0 12px 24px rgba(13, 18, 32, 0.08);
  }

  .single-hw_service .service-focus-media:hover,
  .single-hw_service .service-focus-media:focus-within,
  .single-hw_service .service-focus-copy:hover,
  .single-hw_service .service-focus-model-card:hover,
  .single-hw_service .service-focus-related-card:hover {
    transform: none;
  }
}

/* Avoid extra front-end top gap when logged-in admin bar is present. */
body.admin-bar main.page {
  padding-top: 0;
}

.wa-widget {
  position: fixed;
  right: 22px;
  bottom: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0;
  animation: fade-up 0.65s ease 0.8s both;
}

.wa-link {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(24, 170, 88, 0.38);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.wa-link:hover {
  transform: translateY(-1px);
}

.wa-link svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

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

@keyframes brand-popup {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(2px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes quick-media-drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.012);
  }
}

@keyframes home-service-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes orb-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-9px) scale(1.04);
  }
}

@keyframes card-drift {
  0%,
  100% {
    transform: translateY(0) rotate(var(--drift-rotate, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(var(--drift-rotate, 0deg));
  }
}

@keyframes logo-drift {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }

  50% {
    transform: translateY(-6px) rotate(-4deg);
  }
}

@media (max-width: 1260px) {
  main.page {
    padding: 14px 26px 0;
  }

  .brand {
    width: clamp(100px, 11vw, 132px);
  }

  .menu {
    gap: clamp(14px, 2vw, 30px);
    font-size: clamp(14px, 1.1vw, 18px);
  }

  .header-actions .action-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .hero {
    margin-top: 70px;
  }

  .hero-copy {
    height: clamp(150px, 18vw, 260px);
  }

  .hero-line {
    font-size: clamp(32px, 5.2vw, 82px);
  }

  .hero-subline {
    font-size: clamp(15px, 1.4vw, 22px);
    max-width: 98%;
  }

  .hero-snapshot {
    max-width: min(980px, 96vw);
    gap: 7px;
  }

  .snapshot-title {
    font-size: clamp(17px, 1.5vw, 24px);
  }

  .snapshot-value {
    font-size: clamp(36px, 3.6vw, 62px);
  }

  .snapshot-label {
    font-size: clamp(13px, 1.1vw, 16px);
  }

  .snapshot-note {
    font-size: clamp(12px, 1vw, 15px);
  }

  .video-showcase {
    margin-top: clamp(56px, 8vw, 108px);
  }

  .video-frame {
    width: min(1120px, 94vw);
  }

  .brands-marquee {
    margin-top: clamp(20px, 3.2vw, 34px);
    padding: 22px 0 12px;
  }

  .brands-track {
    padding: 8px 0;
    animation-duration: 16s;
  }

  .home-service-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    padding: 0;
    gap: 14px;
  }

  .home-service-card-1,
  .home-service-card-2,
  .home-service-card-3 {
    width: 100%;
    justify-self: stretch;
    animation: none;
  }

  .home-service-card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .home-service-card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .home-service-card-3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .home-service-media,
  .home-service-card-2 .home-service-media {
    height: clamp(250px, 27vw, 360px);
  }

  .home-service-card-3 .home-service-media {
    height: clamp(248px, 25vw, 350px);
  }

  .home-service-overlay h3 {
    font-size: clamp(20px, 1.55vw, 28px);
  }

  .home-service-overlay p {
    font-size: clamp(12px, 0.98vw, 15px);
  }

  .services-hero {
    margin-top: clamp(46px, 6vw, 76px);
  }

  .services-hero h1 {
    font-size: clamp(32px, 5.2vw, 82px);
  }

  .services-subline {
    font-size: clamp(15px, 1.4vw, 22px);
    max-width: 98%;
  }

  .services-stack {
    gap: 22px;
  }

  .pillar-detail-wrap {
    max-width: min(1120px, 96vw);
  }

  .pillar-hero {
    grid-template-columns: 1fr;
  }

  .pillar-hero-media {
    min-height: clamp(260px, 48vw, 420px);
  }

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

  .service-showcase {
    gap: 22px;
  }

  .service-filter-btn {
    padding: 9px 16px;
  }

  .service-copy h2 {
    font-size: clamp(28px, 4vw, 56px);
  }

  .service-copy p {
    font-size: clamp(14px, 1.25vw, 21px);
  }

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

  .agency-matrix-title {
    font-size: clamp(38px, 4.8vw, 72px);
    max-width: 12ch;
  }

  .agency-matrix-body {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .agency-matrix-copy {
    max-width: 64ch;
    gap: 10px;
  }

  .agency-matrix-copy p {
    font-size: clamp(16px, 1.22vw, 20px);
  }

  .agency-matrix-cards {
    margin-top: 4px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .agency-matrix-card {
    padding: 20px;
    min-height: clamp(232px, 24vw, 308px);
  }

  .agency-matrix-card h3 {
    font-size: clamp(28px, 2.3vw, 40px);
  }

  .agency-matrix-card p {
    font-size: clamp(15px, 1.1vw, 18px);
  }

  .quote-card {
    min-height: clamp(190px, 23vw, 260px);
    padding: 18px;
  }

  .quote-card p {
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .quote-card::before {
    font-size: clamp(48px, 4vw, 68px);
    top: 6px;
  }

  .home-testimonials .quote-card {
    flex-basis: calc((100% - var(--quote-gap)) / 2);
  }

  .person-grid,
  .quote-grid,
  .course-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .footer-main-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-links-col a {
    font-size: clamp(19px, 1.7vw, 26px);
  }

  .home main.page .home-stack-section:first-of-type {
    margin-top: clamp(66px, 8vw, 98px);
  }

  .home main.page .home-stack-section + .home-stack-section {
    margin-top: clamp(66px, 8.5vw, 120px);
  }

  .home .site-footer {
    margin-top: clamp(82px, 10vw, 146px);
  }
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    row-gap: 8px;
    align-items: center;
  }

  .brand {
    width: clamp(114px, 24vw, 176px);
  }

  .header-actions {
    justify-self: end;
    width: auto;
    margin-left: 0;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .header-actions .action-btn {
    padding: 9px 14px;
    font-size: 13px;
    line-height: 1;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .topbar nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    order: 4;
  }

  .topbar.is-menu-open nav {
    display: block;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: visible;
    font-size: 15px;
    border: 1px solid rgba(14, 14, 14, 0.14);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    padding: 12px;
    max-height: min(68vh, 420px);
    overflow: auto;
  }

  .menu > li {
    width: 100%;
  }

  .menu-item-has-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .menu a,
  .menu-mobile-link {
    display: block;
    width: 100%;
    padding: 9px 8px;
    white-space: normal;
  }

  .menu-services-trigger {
    display: none !important;
  }

  .menu-mobile-link {
    display: block;
  }

  .menu-services-dropdown,
  .menu-courses-dropdown {
    display: none !important;
  }

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

@media (max-width: 890px) {
  main.page {
    padding: 16px 14px 0;
  }

  .topbar {
    gap: 6px;
    row-gap: 6px;
  }

  .brand {
    width: clamp(112px, 34vw, 162px);
  }

  .header-actions {
    gap: 7px;
  }

  .header-actions .action-btn {
    padding: 8px 12px;
    font-size: 12.5px;
    letter-spacing: -0.01em;
  }

  .menu {
    border-radius: 14px;
    padding: 10px;
  }

  .menu a,
  .menu-mobile-link {
    padding: 8px 6px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    margin-top: 36px;
  }

  .hero-copy {
    height: clamp(248px, 66vw, 332px);
  }

  .hero-line {
    font-size: clamp(25px, 8.3vw, 46px);
    max-width: 96%;
  }

  .hero-subline {
    font-size: clamp(12px, 2.6vw, 15px);
    max-width: 96%;
    line-height: 1.36;
  }

  .hero-snapshot {
    max-width: 96%;
    gap: 7px;
  }

  .snapshot-title {
    font-size: clamp(14px, 4.2vw, 18px);
  }

  .snapshot-stat {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .snapshot-value {
    font-size: clamp(28px, 7vw, 38px);
  }

  .snapshot-label {
    font-size: clamp(12px, 2.8vw, 15px);
    line-height: 1.2;
  }

  .snapshot-note {
    font-size: clamp(11px, 2.8vw, 14px);
    line-height: 1.32;
  }

  .video-showcase {
    margin-top: 44px;
  }

  .video-frame {
    width: min(100%, 560px);
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .brands-marquee {
    margin-top: 18px;
    padding: 14px 0 10px;
  }

  .brands-track {
    padding: 6px 0;
    animation-duration: 14s;
  }

  .brands-group {
    gap: 28px;
    padding-right: 60px;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 0;
    gap: 12px;
    background: transparent;
    border: 0;
  }

  .home-service-card {
    animation: none;
  }

  .home-service-card-1,
  .home-service-card-2,
  .home-service-card-3 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    justify-self: stretch;
  }

  .home-service-media,
  .home-service-card-2 .home-service-media {
    height: 232px;
    border-radius: 22px;
  }

  .home-service-card-3 .home-service-media {
    height: 246px;
  }

  .home-service-overlay {
    background: linear-gradient(180deg, rgba(9, 10, 12, 0.14) 18%, rgba(9, 10, 12, 0.76) 78%);
  }

  .home-service-overlay h3 {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .home-service-overlay p {
    font-size: clamp(13px, 3vw, 15px);
    max-width: 100%;
  }

  .cta-band {
    padding: 20px 16px;
    gap: 14px;
  }

  .cta-band-actions {
    width: 100%;
    gap: 10px;
  }

  .cta-band-actions .action-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding: 10px 14px;
  }

  .brand-item {
    font-size: clamp(18px, 4.2vw, 28px);
    letter-spacing: -0.015em;
  }

  .services-hero {
    margin-top: 36px;
  }

  .agency-matrix {
    padding: 14px 0 0;
    border-radius: 0;
  }

  .agency-matrix::before {
    left: -64px;
    bottom: -44px;
    width: 250px;
    height: 250px;
  }

  .agency-matrix::after {
    right: -66px;
    top: 52px;
    width: 190px;
    height: 190px;
  }

  .agency-matrix-dot {
    width: 12px;
    height: 12px;
    left: 12px;
    top: 10px;
    box-shadow: 0 0 0 6px rgba(255, 15, 166, 0.1);
  }

  .agency-matrix-title {
    font-size: clamp(30px, 7.3vw, 46px);
    max-width: 100%;
    padding-left: 2px;
  }

  .agency-matrix-body {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agency-matrix-copy {
    gap: 8px;
  }

  .agency-matrix-copy p {
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.42;
    max-width: 100%;
  }

  .agency-matrix-cards {
    margin-top: 4px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agency-matrix-card {
    border-radius: 16px;
    min-height: 0;
    padding: 18px 16px;
  }

  .agency-matrix-card h3 {
    font-size: clamp(26px, 7.1vw, 36px);
    max-width: 100%;
  }

  .agency-matrix-card p {
    font-size: clamp(14px, 3.9vw, 18px);
    max-width: 100%;
  }

  .quote-card {
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .quote-card p {
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .quote-card::before {
    font-size: clamp(40px, 9vw, 56px);
    right: 12px;
    top: 6px;
  }

  .quote-author {
    font-size: clamp(13px, 3.6vw, 16px);
  }

  .home-testimonials .quote-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    margin-top: 6px;
  }

  .home-testimonials .quote-card {
    flex-basis: 100%;
  }

  .services-hero h1 {
    font-size: clamp(25px, 8.3vw, 46px);
    max-width: 96%;
  }

  .services-subline {
    font-size: clamp(12px, 2.6vw, 15px);
    max-width: 96%;
    line-height: 1.36;
  }

  .services-stack {
    margin-top: 28px;
  }

  .services-filter {
    gap: 8px;
  }

  .service-filter-btn {
    padding: 8px 13px;
    font-size: 12px;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .service-showcase.layout-media-right .service-media,
  .service-showcase.layout-media-right .service-copy {
    order: unset;
  }

  .service-media {
    min-height: 250px;
    border-radius: 18px;
  }

  .media-dot {
    width: 16px;
    height: 16px;
  }

  .media-logo {
    width: 94px;
    border-width: 5px;
  }

  .service-copy h2 {
    font-size: clamp(26px, 8vw, 42px);
    max-width: 100%;
  }

  .service-copy p {
    margin-top: 10px;
    font-size: clamp(14px, 3.4vw, 18px);
    max-width: 100%;
  }

  .service-price {
    margin-top: 12px;
    font-size: clamp(15px, 3.4vw, 18px);
  }

  .service-cta {
    margin-top: 16px;
    font-size: 15px;
    padding: 11px 20px;
  }

  .pillar-title {
    font-size: clamp(24px, 6.2vw, 42px);
  }

  .pillar-grid,
  .pillar-outcomes {
    grid-template-columns: 1fr;
  }

  .pillar-card h3 {
    font-size: clamp(20px, 5.2vw, 30px);
  }

  .pillar-list li,
  .pillar-outcome-card p {
    font-size: clamp(14px, 3.9vw, 18px);
  }

  .wa-widget {
    right: 10px;
    bottom: 10px;
    gap: 0;
  }

  .wa-link {
    width: 52px;
    height: 52px;
  }

  .wa-link svg {
    width: 28px;
    height: 28px;
  }

  .inner-hero {
    margin-top: 34px;
  }

  .inner-hero h1 {
    font-size: clamp(25px, 8.3vw, 46px);
    max-width: 96%;
  }

  .inner-subline {
    font-size: clamp(12px, 2.6vw, 15px);
    max-width: 96%;
    line-height: 1.36;
  }

  .contact-intake-hero {
    margin-top: 40px;
  }

  .contact-intake-hero h1 {
    font-size: clamp(34px, 7.2vw, 52px);
  }

  .contact-intake-kicker {
    margin-top: 24px;
    font-size: clamp(22px, 4.8vw, 34px);
    line-height: 1.15;
  }

  .contact-intake-row {
    grid-template-columns: minmax(170px, 1fr) minmax(0, 1.65fr);
    gap: 14px;
    padding: 18px 0;
  }

  .contact-intake-label {
    font-size: clamp(18px, 3.2vw, 26px);
  }

  .contact-intake-field {
    font-size: clamp(18px, 3vw, 24px);
  }

  .contact-need-chip {
    padding: 8px 18px;
    font-size: clamp(13px, 2vw, 16px);
  }

  .contact-intake-actions {
    padding-top: 24px;
  }

  .contact-submit-btn {
    font-size: clamp(17px, 3.4vw, 24px);
    padding: 12px 24px;
  }

  .feature-grid,
  .timeline-list,
  .person-grid,
  .quote-grid,
  .quick-service-grid,
  .portfolio-grid,
  .portfolio-grid.compact,
  .post-grid,
  .course-grid,
  .price-grid,
  .stats-band,
  .compare-grid,
  .contact-layout,
  .footer-main-grid,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-media {
    min-height: 180px;
  }

  .cta-band h2 {
    font-size: clamp(24px, 7.4vw, 36px);
    max-width: 100%;
  }

  .site-footer {
    padding-bottom: 120px;
  }

  .footer-links-col ul {
    gap: 10px;
  }

  .footer-links-col a {
    font-size: clamp(15px, 4.5vw, 22px);
  }

  .footer-logo-stage {
    margin-top: 22px;
    min-height: 78px;
  }

  .footer-logo-center {
    width: clamp(120px, 42vw, 220px);
  }

  .footer-copyright {
    font-size: clamp(13px, 3.9vw, 17px);
  }

  .home main.page .home-stack-section:first-of-type {
    margin-top: clamp(38px, 9vw, 56px);
  }

  .home main.page .home-stack-section + .home-stack-section {
    margin-top: clamp(58px, 12vw, 92px);
  }

  .home .site-footer {
    margin-top: clamp(56px, 10vw, 92px);
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    margin-left: 0;
    width: 100%;
  }

}

@media (max-width: 1024px) {
  .page-media-frame {
    min-height: clamp(220px, 42vw, 380px);
    border-radius: clamp(16px, 2.4vw, 24px);
  }
}

@media (max-width: 640px) {
  main.page {
    padding: 14px 12px 0;
  }

  .page-media-showcase {
    margin-top: clamp(18px, 5vw, 28px);
  }

  .page-media-frame {
    min-height: clamp(210px, 62vw, 320px);
    border-radius: 18px;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    row-gap: 10px;
    align-items: center;
    padding: 8px 8px;
  }

  .brand {
    width: clamp(136px, 40vw, 190px);
  }

  .header-actions {
    justify-self: end;
    gap: 7px;
    margin-right: 0;
  }

  .header-actions .btn-enrol {
    display: inline-flex;
  }

  .header-actions .action-btn {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 999px;
    border-width: 1px;
    line-height: 1;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: #090909;
    gap: 4px;
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
  }

  .topbar nav {
    margin-top: 10px;
  }

  .contact-intake-hero {
    margin-top: 28px;
  }

  .contact-intake-hero h1 {
    font-size: clamp(40px, 10.6vw, 52px);
    letter-spacing: -0.05em;
  }

  .contact-intake-kicker {
    margin-top: 16px;
    font-size: clamp(20px, 6.2vw, 30px);
    line-height: 1.16;
  }

  .contact-intake-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .contact-intake-label {
    font-size: clamp(18px, 5.8vw, 26px);
  }

  .contact-intake-field {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .contact-chip-group {
    gap: 8px;
  }

  .contact-need-chip {
    padding: 8px 14px;
    font-size: 13px;
  }

  .contact-intake-actions {
    justify-content: flex-start;
    padding-top: 18px;
  }

  .contact-submit-btn {
    font-size: 16px;
    padding: 11px 18px;
  }

  .menu {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 10px;
    max-height: none;
    overflow: visible;
    align-items: center;
  }

  .menu > li {
    width: min(100%, 440px);
  }

  .menu a,
  .menu-mobile-link {
    text-align: center;
    padding: 0;
    font-size: clamp(23px, 5.5vw, 31px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 500;
  }

  .menu a::after,
  .menu-mobile-link::after {
    display: none;
  }

  .topbar.is-menu-open .menu > li:first-child > a,
  .topbar.is-menu-open .menu > li:first-child > .menu-mobile-link {
    border: 1px solid rgba(14, 14, 14, 0.56);
    border-radius: 999px;
    padding: 6px 18px;
  }

  .hero-copy {
    height: clamp(268px, 88vw, 360px);
  }

  .blog-share {
    margin-top: 24px;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .hero-subline {
    max-width: 100%;
  }

  .snapshot-stat {
    gap: 8px;
  }

  .home-service-media,
  .home-service-card-2 .home-service-media,
  .home-service-card-3 .home-service-media {
    height: 210px;
    border-radius: 18px;
  }

  .cta-band-actions .action-btn {
    flex: 1 1 100%;
  }

  .home main.page .home-stack-section:first-of-type {
    margin-top: clamp(34px, 10vw, 48px);
  }

  .home main.page .home-stack-section + .home-stack-section {
    margin-top: clamp(64px, 15vw, 108px);
    padding-top: clamp(10px, 2.6vw, 20px);
  }

  .home .brands-marquee.home-stack-section + .home-stack-section {
    margin-top: clamp(72px, 17vw, 122px);
    padding-top: clamp(12px, 3vw, 22px);
  }

  .home .site-footer {
    margin-top: clamp(50px, 11vw, 80px);
  }
}

@media (max-width: 480px) {
  main.page {
    padding: 12px 8px 0;
  }

  .page-media-frame {
    min-height: clamp(180px, 58vw, 260px);
    border-radius: 14px;
  }

  .topbar {
    gap: 8px;
    padding: 8px 6px;
  }

  .brand {
    width: 132px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .action-btn {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle span {
    width: 22px;
  }

  .menu a,
  .menu-mobile-link {
    font-size: clamp(20px, 6.2vw, 28px);
  }

  .contact-intake-kicker {
    font-size: clamp(17px, 6vw, 24px);
    line-height: 1.2;
  }

  .contact-intake-label {
    font-size: clamp(16px, 6.2vw, 22px);
  }

  .contact-intake-field {
    font-size: clamp(16px, 5.8vw, 20px);
  }

  .contact-intake-row {
    padding: 12px 0;
  }

  .contact-need-chip {
    padding: 7px 12px;
    font-size: 12.5px;
  }

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

  .home main.page .home-stack-section + .home-stack-section {
    margin-top: clamp(56px, 16vw, 94px);
    padding-top: 12px;
  }

  .home .brands-marquee.home-stack-section + .home-stack-section {
    margin-top: clamp(68px, 19vw, 112px);
    padding-top: 14px;
  }
}

@media (max-width: 782px) {
  body.admin-bar main.page {
    padding-top: 0;
  }

  body.admin-bar .topbar {
    top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    transition: none;
  }

  .site-loader-dot {
    animation: none;
  }

  .js .scroll-reveal-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
