:root {
  --ink: #14161b;
  --ink-soft: #5a616d;
  --paper: #ffffff;
  --mist: #f6f7f8;
  --yellow: #ffc001;
  --yellow-soft: #fdf6c9;
  --teal: #14161b; /* retired: green removed — brand uses yellow + ink */
  --line: #e7e9ed;
  --radius: 18px;
  --container: 1440px;
  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
}

.btn.btn-yellow.svc-form-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  outline: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- brand tile ---------- */
.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  transform: skewX(-10deg);
  border-radius: 8px;
  padding: 2px 10px;
}
.tile > span {
  transform: skewX(10deg);
  font-family: var(--display);
  font-weight: 800;
  color: var(--ink);
}
.hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hl::before {
  content: "";
  position: absolute;
  left: -0.12em;
  right: -0.12em;
  top: 0.08em;
  bottom: 0.02em;
  background: var(--yellow);
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
  border-radius: 0.14em;
  z-index: -1;
  transition: transform 0.7s cubic-bezier(0.22, 0.8, 0.24, 1) 0.2s;
}
.in-view .hl::before {
  transform: skewX(-10deg) scaleX(1);
}
/* solid highlight — reliable on any background (used on dark sections) */
.hl-solid {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.02em 0.22em;
  border-radius: 0.14em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  white-space: nowrap;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow:
    0 1px 0 var(--line),
    0 8px 30px rgba(20, 22, 27, 0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
}
.logo .tile {
  font-size: 20px;
  padding: 3px 11px;
  border-radius: 9px;
}
.logo .word {
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.logo .word i {
  font-style: normal;
  color: var(--ink);
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.nav-links a::after {
  display: none;
}
.nav-links a:hover::after {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  line-height: 1;
}
.btn:active {
  transform: scale(0.97);
}
.btn-solid {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.btn-solid:hover {
  box-shadow: 0 8px 24px rgba(240, 210, 2, 0.45);
  transform: translateY(-1px);
}
.btn-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.btn-yellow:hover {
  box-shadow: 0 8px 24px rgba(240, 210, 2, 0.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: black;
  color: white;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 24px 24px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav.open .mobile-menu {
  display: block;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 420px at 85% 8%,
      rgba(240, 210, 2, 0.16),
      transparent 65%
    ),
    radial-gradient(
      500px 340px at 8% 90%,
      rgba(20, 22, 27, 0.05),
      transparent 65%
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 2px 10px rgba(20, 22, 27, 0.05);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  opacity: 0.5;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 26px 0 22px;
}
h1 .dim {
  color: #9ca1ab;
}
.hero p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* hero mockup */
.mockwrap {
  position: relative;
}
.mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 22, 27, 0.14);
  overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.mock-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7dae0;
  display: block;
}
.mock-bar i:first-child {
  background: var(--yellow);
}
.mock-url {
  margin-left: 10px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--ink-soft);
  padding: 4px 10px;
}
.mock-shot-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--mist);
}
.mock-shot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #fff;
  transition: opacity 0.22s;
}
.mock-shot-img.fading {
  opacity: 0;
}
.mock-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 22, 27, 0.18);
  transition: background 0.2s;
}
.mock-nav:hover {
  background: var(--yellow);
}
.mock-prev {
  left: 10px;
}
.mock-next {
  right: 10px;
}
.mock-shot-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
}
.mock-shot-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition:
    background 0.2s,
    transform 0.2s;
}
.mock-shot-dots span.active {
  background: var(--yellow);
  transform: scale(1.3);
}
.mock-hero {
  background: linear-gradient(120deg, #17181d 0%, #23252d 60%, #3a3416 100%);
  color: #fff;
  padding: 26px 24px;
  position: relative;
}
.mock-hero .k {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 600;
}
.mock-hero .t {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  margin: 8px 0 12px;
}
.mock-hero .b {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 600;
  font-size: 11.5px;
  border-radius: 999px;
  padding: 7px 14px;
}
.mock-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 24px 24px;
}
.mp {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.mp .ph {
  height: 64px;
  background: linear-gradient(135deg, var(--mist), #eceef1);
}
.mp:nth-child(2) .ph {
  background: linear-gradient(135deg, #fdf6c9, #f6e896);
}
.mp:nth-child(3) .ph {
  background: linear-gradient(135deg, #eef0f2, #dce0e6);
}
.mp .pt {
  font-size: 10.5px;
  font-weight: 600;
  padding: 8px 9px 2px;
}
.mp .pp {
  font-size: 10.5px;
  color: var(--ink-soft);
  padding: 0 9px 9px;
}
.chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 22, 27, 0.14);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floaty 6s ease-in-out infinite;
}
.chip .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-soft);
  transform: skewX(-8deg);
}
.chip .ic svg {
  transform: skewX(8deg);
}
.chip b {
  font-family: var(--display);
  font-size: 16px;
  display: block;
  line-height: 1.1;
}
.chip small {
  font-size: 11.5px;
  color: var(--ink-soft);
}
.chip-a {
  top: -26px;
  left: -34px;
  animation-delay: 0.8s;
}
.chip-b {
  bottom: -24px;
  right: -20px;
  animation-delay: 1.6s;
}
.chip-b .ic {
  background: var(--yellow-soft);
}

/* ---------- marquee ---------- */
.marquee-sec {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  padding: 26px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  width: max-content;
  animation: scrollx 30s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}
.marquee span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: #a6abb5;
  padding: 0 44px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee span b {
  color: var(--ink);
  font-weight: 700;
}
@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- sections ---------- */
section {
  padding: 88px 0;
}
section.alt {
  background: var(--mist);
}
.sec-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.18;
}
h2 .dim {
  color: #9ca1ab;
}
.sec-head p {
  color: var(--ink-soft);
  margin-top: 16px;
  font-size: 17px;
}
.kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  display: block;
}
.dark .kicker {
  color: var(--yellow);
} /* dark sections: yellow label (ink would be invisible) */

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -30px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 22, 27, 0.08);
}
.stat b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  display: block;
}
.stat b em {
  font-style: normal;
  color: var(--ink);
}
.stat span {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* work cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.wcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.wcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(20, 22, 27, 0.1);
}
.wcover {
  height: 230px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
}
.wcover::after {
  content: attr(data-mark);
  position: absolute;
  right: -8px;
  top: -26px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: -0.05em;
}
.wc-1 {
  background: linear-gradient(135deg, #1e2a4a, #3e5386);
}
.wc-2 {
  background: linear-gradient(135deg, #b8875b, #e7c9a9);
}
.wc-3 {
  background: linear-gradient(135deg, #3a3416, #6b5f17);
}
.wtag {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 12px;
  margin-right: 8px;
}
.wbody {
  padding: 22px 24px 26px;
}
.wbody h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 6px;
}
.wbody p {
  color: var(--ink-soft);
  font-size: 14.5px;
}
.center-cta {
  text-align: center;
  margin-top: 48px;
}

/* feature rows */
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.frow.rev .fcopy {
  order: 2;
}
.frow.rev .fvis {
  order: 1;
}
.fcopy h2 {
  margin-bottom: 18px;
}
.fcopy > p {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-bottom: 26px;
  max-width: 480px;
}
.acc {
  border-top: 1px solid var(--line);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-head {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 2px;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.acc-head .plus {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: var(--yellow-soft);
  position: relative;
  transform: skewX(-8deg);
  transition: background 0.25s;
}
.acc-head .plus::before,
.acc-head .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(8deg);
}
.acc-head .plus::before {
  width: 12px;
  height: 2px;
}
.acc-head .plus::after {
  width: 2px;
  height: 12px;
  transition: transform 0.25s;
}
.acc-item.open .plus {
  background: var(--yellow);
}
.acc-item.open .plus::after {
  transform: translate(-50%, -50%) skewX(8deg) scaleY(0);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-body p {
  color: var(--ink-soft);
  font-size: 15px;
  padding: 0 40px 20px 2px;
}
.fcta {
  margin-top: 30px;
}

/* visuals */
.viscard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(20, 22, 27, 0.1);
  padding: 28px;
  position: relative;
}
.alt .viscard {
  background: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.variant {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.variant.win {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240, 210, 2, 0.22);
}
.variant .vt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.variant.win .vt b {
  color: var(--ink);
}
.bar {
  height: 9px;
  border-radius: 99px;
  background: var(--mist);
  margin: 9px 0;
  position: relative;
  overflow: hidden;
}
.bar i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 99px;
  background: #c9cdd4;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.variant.win .bar i {
  background: var(--yellow);
}
.variant .cv {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  margin-top: 12px;
}
.variant .cv small {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-weight: 500;
  display: block;
}
.uplift {
  position: absolute;
  top: -18px;
  right: 26px;
  background: var(--yellow);
  transform: skewX(-10deg);
  border-radius: 10px;
  padding: 8px 16px;
  font-family: var(--display);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(240, 210, 2, 0.4);
}
.uplift span {
  display: inline-block;
  transform: skewX(10deg);
}

.gaugewrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.gauge {
  position: relative;
  width: 190px;
  height: 190px;
  flex: none;
}
.gauge svg {
  transform: rotate(-90deg);
}
.gauge .track {
  fill: none;
  stroke: var(--mist);
  stroke-width: 14;
}
.gauge .val {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.gauge .num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge .num b {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.gauge .num span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.glist {
  list-style: none;
}
.glist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.glist li b {
  color: var(--ink);
  font-weight: 600;
}
.dotok {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
}

/* dark AI section */
.dark {
  background: var(--ink);
  color: #fff;
}
.dark h2 .dim {
  color: #6b7079;
}
.dark .fcopy > p {
  color: #b9bdc6;
}
.dark .acc,
.dark .acc-item {
  border-color: #2a2d35;
}
.dark .acc-head {
  color: #fff;
}
.dark .acc-head .plus::before,
.dark .acc-head .plus::after {
  background: var(--ink);
}
.dark .acc-body p {
  color: #b9bdc6;
}
.chatcard {
  background: #1c1f26;
  border: 1px solid #2a2d35;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}
.msg {
  max-width: 85%;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.msg.user {
  background: #2a2d35;
  color: #e8eaee;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.msg.ai {
  background: var(--yellow-soft);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.msg.ai b {
  color: var(--ink);
}
.aiprods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.aip {
  background: #22252d;
  border: 1px solid #2a2d35;
  border-radius: 12px;
  padding: 10px;
}
.aip .ph {
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, #30333d, #3b3f4a);
  margin-bottom: 8px;
}
.aip:nth-child(2) .ph {
  background: linear-gradient(135deg, #4a4212, #6b5f17);
}
.aip b {
  font-size: 11px;
  color: #e8eaee;
  display: block;
}
.aip span {
  font-size: 11px;
  color: #8b9099;
}

/* process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 22, 27, 0.08);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  background: var(--yellow);
  transform: skewX(-10deg);
  border-radius: 8px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* testimonials — brand colors (yellow + ink), no teal */
.tslider {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.tslide blockquote {
  max-width: 900px;
  margin: 0 auto;
} /* keep quote readable while slider spans full width */
#testimonials .kicker {
  color: var(--yellow);
}
.quotemark {
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: rgba(240, 210, 2, 0.16);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.tstage {
  position: relative;
  min-height: 280px;
  z-index: 1;
}
.tslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s,
    transform 0.6s;
  pointer-events: none;
}
.tslide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.tstars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(240, 210, 2, 0.35);
}
.tslide blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #fff;
}
.tslide blockquote mark {
  background: linear-gradient(transparent 55%, rgba(240, 210, 2, 0.55) 55%);
  color: inherit;
  padding: 0 2px;
}
.tslide cite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  font-style: normal;
  color: #b9bdc6;
  font-size: 14.5px;
  text-align: left;
}
.tavatar {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-8deg);
}
.tavatar span {
  transform: skewX(8deg);
}
.twho b {
  color: #fff;
  display: block;
  font-size: 15.5px;
  margin-bottom: 2px;
}
.twho small {
  color: #8b9099;
  font-size: 13px;
}
.tdots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 40px;
}
.tdots button {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: none;
  background: #3a3e47;
  cursor: pointer;
  transition:
    width 0.3s,
    background 0.3s;
  padding: 0;
}
.tdots button:hover {
  background: #5a5f6b;
}
.tdots button.active {
  width: 28px;
  background: var(--yellow);
}

/* testimonials — split layout (featured + mini list) */
.tsplit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: stretch;
}
.tfeatured {
  position: relative;
  min-height: 420px;
}
.tfeatured-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #23252d 0%, #14161b 70%);
}
.tfeatured-quotemark {
  position: absolute;
  top: 10px;
  left: 26px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 160px;
  line-height: 1;
  color: rgba(240, 210, 2, 0.14);
  pointer-events: none;
  user-select: none;
}
.tfeatured-card {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: -40px;
  bottom: 24px;
  background: linear-gradient(
    120deg,
    rgba(255, 192, 1, 0.32),
    rgba(20, 22, 27, 0.94) 60%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px 28px;
  backdrop-filter: blur(10px);
}
.tfeatured-card blockquote::before,
.tmini blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}
.tmini blockquote::before {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.tfeatured-card blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
}
.tfeatured-card .tavatar {
  border-radius: 50%;
  transform: none;
}
.tfeatured-card .tavatar span {
  transform: none;
}
.tside {
  display: flex;
  flex-direction: column;
}
.tside h2 {
  margin-top: 10px;
}
.tmini-list {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex: 1;
}
.tmini {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.tmini:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.tmini-body {
  min-width: 0;
}
.tmini blockquote {
  font-size: 14.5px;
  color: #c7cad1;
  line-height: 1.6;
  margin-bottom: 18px;
}
.tmini .twho {
  display: flex;
  flex-direction: column;
}
.tmini .tavatar {
  width: 44px;
  height: 44px;
  font-size: 13px;
  border-radius: 50%;
  transform: none;
}
.tmini .tavatar span {
  transform: none;
}
.tmini .twho b {
  font-size: 14.5px;
  margin-bottom: 0;
}
.tmini .twho small {
  display: block;
  color: #8b9099;
  font-size: 12.5px;
}
.tmini cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
}
.tside-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}
.tside-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #3a3e47;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.tside-nav button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
@media (max-width: 900px) {
  .tsplit {
    grid-template-columns: 1fr;
  }
  .tfeatured {
    min-height: 320px;
  }
  .tfeatured-card {
    right: 24px;
  }
  .tmini-list {
    flex-direction: column;
  }
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}
.cta-band::before {
  content: "p2";
  position: absolute;
  right: -40px;
  bottom: -90px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 340px;
  line-height: 1;
  color: rgba(20, 22, 27, 0.06);
  transform: skewX(-10deg);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-inner h2 {
  max-width: 640px;
}
.cta-inner .btn-solid {
  border-color: var(--ink);
}

/* newsletter */
.news {
  background: var(--ink);
  border-radius: 26px;
  color: #fff;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.news h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.news p {
  color: #b9bdc6;
  font-size: 15.5px;
}
.news form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.news input {
  flex: 1;
  min-width: 200px;
  background: #1c1f26;
  border: 1px solid #2a2d35;
  color: #fff;
  border-radius: 999px;
  padding: 15px 22px;
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.news input:focus {
  border-color: var(--yellow);
}
.news small {
  display: block;
  margin-top: 14px;
  color: #8b9099;
}

/* footer */
#newsletter {
  padding-bottom: 64px;
} /* newsletter + footer are both white — trim the merged white gap */
footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 64px 0 34px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 64px;
}
.fgrid h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}
.fgrid ul {
  list-style: none;
}
.fgrid li {
  margin-bottom: 11px;
}
.fgrid a {
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color 0.2s;
}
.fgrid a:hover {
  color: var(--ink);
}
.fbrand p {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 280px;
  margin-top: 16px;
}
.fbot {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 13.5px;
}
.fbot a {
  border-bottom: 1px solid transparent;
}
.fbot a:hover {
  border-color: var(--ink-soft);
}

/* ===== scroll progress bar ===== */
.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--yellow), #c9a800);
  z-index: 200;
  box-shadow: 0 0 12px rgba(240, 210, 2, 0.5);
  will-change: width;
}

/* ===== reveal engine ===== */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.9, 0.24, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.9s ease,
    clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
}
/* distinct per-section entrance signatures */
.reveal.clipup {
  clip-path: inset(0 0 100% 0);
  transform: none;
}
.reveal.clipup.in-view {
  clip-path: inset(0 0 0 0);
}
.reveal.wiper {
  clip-path: inset(0 100% 0 0);
  transform: none;
}
.reveal.wiper.in-view {
  clip-path: inset(0 0 0 0);
}
.reveal.skewin {
  transform: skewY(4deg) translateY(60px);
}
.reveal.expand {
  transform: scaleX(0.72);
  opacity: 0;
}
.reveal.from-left {
  transform: translateX(-70px);
}
.reveal.from-right {
  transform: translateX(70px);
}
.reveal.zoom {
  transform: scale(0.82);
}
.reveal.blur {
  filter: blur(16px);
}
.reveal.rot {
  transform: perspective(1200px) rotateX(24deg) translateY(60px);
  transform-origin: 50% 100%;
}
.reveal.flip {
  transform: perspective(1200px) rotateY(-28deg) translateX(40px);
  transform-origin: left;
}
/* in-view reset MUST come after the variants above so it wins (equal specificity → source order) */
.reveal.in-view {
  opacity: 1;
  transform: none;
  filter: none;
}
.d1 {
  transition-delay: 0.09s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.27s;
}
.d4 {
  transition-delay: 0.36s;
}
.d5 {
  transition-delay: 0.45s;
}

/* ===== split-text headings ===== */
.split {
  display: inline;
}
.split .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0 0.01em;
}
.split .w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(115%) rotate(6deg);
  transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.in-view .split .w > i {
  transform: none;
}

/* ===== 3D tilt ===== */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 0.9, 0.24, 1);
}
.tilt .lift {
  transform: translateZ(40px);
}

/* ===== magnetic ===== */
.mag {
  will-change: transform;
}

/* ===== floating orbs (hero/section ambience) ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.orb-y {
  background: radial-gradient(circle, rgba(240, 210, 2, 0.55), transparent 70%);
}
.orb-t {
  background: radial-gradient(circle, rgba(90, 97, 109, 0.32), transparent 70%);
}

/* ===== WHY CHOOSE US ===== */
#why {
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.9, 0.24, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    340px 200px at var(--mx, 50%) var(--my, 0%),
    rgba(240, 210, 2, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.why:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(20, 22, 27, 0.12);
  border-color: transparent;
}
.why:hover::before {
  opacity: 1;
}
.why .wicon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--yellow);
  transform: skewX(-8deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.why .wicon svg {
  transform: skewX(8deg);
}
.why h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
}
.why p {
  color: var(--ink-soft);
  font-size: 14.5px;
  position: relative;
  z-index: 1;
}
.why .wnum {
  position: absolute;
  right: -6px;
  bottom: -30px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: var(--mist);
  z-index: 0;
  letter-spacing: -0.05em;
}

/* ===== COMPARISON ===== */
.cmp {
  max-width: none;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(20, 22, 27, 0.08);
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: stretch;
}
.cmp-row + .cmp-row {
  border-top: 1px solid var(--line);
}
.cmp-cell {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.cmp-cell.feat {
  font-weight: 600;
  color: var(--ink);
}
.cmp-cell.them {
  color: var(--ink-soft);
  background: var(--mist);
}
.cmp-cell.us {
  background: linear-gradient(
    180deg,
    rgba(240, 210, 2, 0.1),
    rgba(240, 210, 2, 0.04)
  );
  font-weight: 600;
}
.cmp-head .cmp-cell {
  padding: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}
.cmp-head .cmp-cell.us {
  background: var(--yellow);
  color: var(--ink);
}
.cmp-head .cmp-cell.them {
  background: #eef0f2;
  color: var(--ink-soft);
}
.cmp-head .cmp-cell.feat {
  background: var(--ink);
  color: #fff;
}
.cmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mark svg {
  width: 14px;
  height: 14px;
}
.mark.yes {
  background: rgba(240, 210, 2, 0.22);
}
.mark.yes svg {
  stroke: var(--ink);
}
.mark.no {
  background: rgba(220, 80, 80, 0.12);
}
.mark.no svg {
  stroke: #d25050;
}
.cmp-reveal .cmp-row {
  opacity: 0;
  transform: translateX(24px);
}
.cmp-reveal.in-view .cmp-row {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.cmp-reveal.in-view .cmp-row:nth-child(1) {
  transition-delay: 0.05s;
}
.cmp-reveal.in-view .cmp-row:nth-child(2) {
  transition-delay: 0.13s;
}
.cmp-reveal.in-view .cmp-row:nth-child(3) {
  transition-delay: 0.21s;
}
.cmp-reveal.in-view .cmp-row:nth-child(4) {
  transition-delay: 0.29s;
}
.cmp-reveal.in-view .cmp-row:nth-child(5) {
  transition-delay: 0.37s;
}
.cmp-reveal.in-view .cmp-row:nth-child(6) {
  transition-delay: 0.45s;
}
.cmp-reveal.in-view .cmp-row:nth-child(7) {
  transition-delay: 0.53s;
}

/* ===== ALL SERVICES (14) ===== */
#all-services {
  position: relative;
  overflow: hidden;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  perspective: 1800px;
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition:
    transform 0.45s cubic-bezier(0.22, 0.9, 0.24, 1),
    box-shadow 0.45s,
    border-color 0.45s;
  transform-style: preserve-3d;
  will-change: transform;
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  background: radial-gradient(
    420px 240px at var(--mx, 80%) var(--my, 0%),
    rgba(240, 210, 2, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.svc:hover {
  box-shadow: 0 30px 70px rgba(20, 22, 27, 0.13);
  border-color: transparent;
}
.svc:hover::after {
  opacity: 1;
}
.svc.open {
  box-shadow: 0 30px 70px rgba(20, 22, 27, 0.13);
  border-color: transparent;
}
.svc-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.svc-no {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: skewX(-10deg);
  border-radius: 8px;
  padding: 5px 12px;
  flex: none;
  transition: transform 0.3s;
}
.svc:hover .svc-no {
  transform: skewX(-10deg) translateY(-3px) rotate(-3deg);
}
.svc-top h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.svc-desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.svc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.svc-toggle:hover {
  gap: 11px;
}
.svc-toggle .chev {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s,
    background 0.3s;
}
.svc.open .svc-toggle .chev {
  transform: rotate(180deg);
  background: var(--yellow);
}
.svc-toggle .chev svg {
  width: 11px;
  height: 11px;
  stroke: var(--ink);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 0.9, 0.24, 1);
}
.svc-body ul {
  list-style: none;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.svc-body li {
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}
.svc-body li:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}
.svc-body li b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
}
.svc-body li b::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--ink);
  transform: skewX(-10deg);
  margin-right: 9px;
  vertical-align: middle;
}
.svc-body li span {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
  display: block;
  padding-left: 15px;
}

/* 3D flip reveal for cards */
.reveal.card3d {
  opacity: 0;
  transform: perspective(1400px) rotateY(-32deg) translateX(50px) scale(0.92);
  transform-origin: left center;
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.card3d.alt3d {
  transform: perspective(1400px) rotateY(32deg) translateX(-50px) scale(0.92);
  transform-origin: right center;
}
.reveal.card3d.in-view {
  opacity: 1;
  transform: none;
}

/* ===== image-slot polish (so gradient placeholders read as intentional) ===== */
.mp .ph,
.aip .ph {
  position: relative;
}
.mp .ph::after,
.aip .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314161B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='3'/%3E%3Ccircle cx='9' cy='9' r='1.6'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}
.aip .ph::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8EAEE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='3'/%3E%3Ccircle cx='9' cy='9' r='1.6'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}

/* ===================================================================
   "LIVING" GRAPHICS — make every visual feel like a working store
   =================================================================== */
/* shimmer sweep across product image slots (looks like content loading) */
@keyframes shimmer {
  0% {
    transform: translateX(-130%);
  }
  60%,
  100% {
    transform: translateX(230%);
  }
}
.mp .ph,
.aip .ph {
  overflow: hidden;
}
.mp .ph::before,
.aip .ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(-130%);
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 80%
  );
  animation: shimmer 3s ease-in-out infinite;
}
.aip .ph::before {
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 80%
  );
}
.mp:nth-child(2) .ph::before,
.aip:nth-child(2) .ph::before {
  animation-delay: 0.55s;
}
.mp:nth-child(3) .ph::before,
.aip:nth-child(3) .ph::before {
  animation-delay: 1.1s;
}

/* CTA button shine sweep */
@keyframes shine {
  0% {
    left: -70%;
  }
  100% {
    left: 170%;
  }
}
.mock-hero .b {
  position: relative;
  overflow: hidden;
}
.mock-hero .b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  transform: skewX(-18deg);
  animation: shine 3.4s ease-in-out infinite;
}

/* live blinking caret in the browser URL bar */
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.mock-url {
  position: relative;
}
.mock-url::after {
  content: "";
  display: inline-block;
  width: 1.5px;
  height: 11px;
  background: var(--ink);
  margin-left: 3px;
  vertical-align: -1px;
  animation: blink 1.1s step-end infinite;
}

/* live "shopping now" badge on the hero storefront */
.live-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 22, 27, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 11px;
  z-index: 3;
}
.live-badge .pulse {
  width: 7px;
  height: 7px;
  background: var(--yellow);
}
.live-badge .pulse::after {
  border-color: var(--yellow);
}
.live-badge b {
  font-variant-numeric: tabular-nums;
}

/* CRO: winner bar breathing + uplift badge pulse */
@keyframes breathe {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}
.variant.win .bar i {
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes upliftpulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(240, 210, 2, 0.4);
  }
  50% {
    box-shadow: 0 12px 36px rgba(240, 210, 2, 0.8);
  }
}
.uplift {
  animation: upliftpulse 2.4s ease-in-out infinite;
}

/* speed gauge: glowing value ring + live needle dot */
@keyframes gaugeGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(240, 210, 2, 0));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(240, 210, 2, 0.65));
  }
}
.gauge .val {
  animation: gaugeGlow 2.8s ease-in-out infinite;
}
.gauge .num b {
  font-variant-numeric: tabular-nums;
}

/* AI chat: looping typing indicator (assistant is "working") */
.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--yellow-soft);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 13px 16px;
  margin-top: 2px;
}
.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.5;
  animation: typedot 1.2s ease-in-out infinite;
}
.typing span:nth-child(2) {
  animation-delay: 0.18s;
}
.typing span:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes typedot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* AI chat: live looping conversation (messages animate in, not static) */
.typing {
  opacity: 0;
} /* hidden until the sequence shows it */
.chatcard.live .msg,
.chatcard.live .aiprods .aip {
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.chatcard.live .msg.user {
  transform: translateX(26px) translateY(6px);
}
.chatcard.live .msg.ai {
  transform: translateX(-26px) translateY(6px);
}
.chatcard.live .aiprods .aip {
  transform: translateY(16px) scale(0.95);
}
.chatcard.live .msg.show,
.chatcard.live .aiprods .aip.show {
  opacity: 1;
  transform: none;
}
.chatcard.live .typing {
  transition: opacity 0.3s ease;
}
.chatcard.live .typing.show {
  opacity: 1;
}

/* live pulse dot on the hero stat chips */
.chip .ic {
  position: relative;
}
.chip-a .ic::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(240, 210, 2, 0.7);
  animation: livepulse 1.8s ease-out infinite;
}
@keyframes livepulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 210, 2, 0.7);
  }
  100% {
    box-shadow: 0 0 0 9px rgba(240, 210, 2, 0);
  }
}

/* ===================================================================
   TOP-1% MOTION LAYER + DISTINCT SECTION LAYOUTS
   =================================================================== */

/* --- animated aurora background --- */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 65vw;
  height: 65vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  filter: blur(90px);
}
.aurora::before {
  background: radial-gradient(circle, rgba(240, 210, 2, 0.38), transparent 62%);
  top: -24%;
  left: -12%;
  animation: auroraA 20s ease-in-out infinite;
}
.aurora::after {
  background: radial-gradient(circle, rgba(90, 97, 109, 0.22), transparent 62%);
  bottom: -28%;
  right: -14%;
  animation: auroraB 26s ease-in-out infinite;
}
.aurora.dim::before {
  background: radial-gradient(circle, rgba(240, 210, 2, 0.16), transparent 62%);
}
.aurora.dim::after {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 62%
  );
}
@keyframes auroraA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(14%, 10%) scale(1.18);
  }
}
@keyframes auroraB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12%, -8%) scale(1.22);
  }
}
.hero-grid {
  position: relative;
  z-index: 1;
}

/* --- services framing: intro flows into first featured row --- */
.svc-intro {
  padding-bottom: 0;
}
.svc-intro .sec-head {
  margin-bottom: 0;
}

/* --- STATS: divider band (distinct from cards) --- */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff, #fbfbfc);
  box-shadow: 0 24px 60px rgba(20, 22, 27, 0.06);
}
.statband .stat {
  background: none;
  border: none;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.statband .stat:last-child {
  border-right: none;
}
.statband .stat::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 26px;
  height: 3px;
  width: 0;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.35s;
}
.statband .stat.in-view::after {
  width: 46px;
}
.statband .stat:hover {
  background: var(--yellow-soft);
  transform: none;
  box-shadow: none;
}
.statband .stat b {
  font-size: 46px;
  position: relative;
}
.statband .stat span {
  display: block;
  margin-top: 10px;
}

/* --- WHY: bento grid (varied cell sizes) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  grid-auto-rows: 1fr;
}
.why-grid .why:nth-child(1),
.why-grid .why:nth-child(4),
.why-grid .why:nth-child(5) {
  grid-column: span 2;
}
.why-grid .why:nth-child(1) .wnum,
.why-grid .why:nth-child(4) .wnum,
.why-grid .why:nth-child(5) .wnum {
  font-size: 150px;
}
.why-grid .why:nth-child(1) h3,
.why-grid .why:nth-child(4) h3,
.why-grid .why:nth-child(5) h3 {
  font-size: 23px;
}

/* --- PROCESS: vertical timeline with draw-line --- */
.timeline {
  position: relative;
  max-width: none;
  margin: 0 auto;
  padding: 8px 0;
}
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.tl-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(var(--yellow), #c9a800);
  border-radius: 2px;
}
.tl-step {
  position: relative;
  width: 50%;
  padding: 18px 48px;
  box-sizing: border-box;
}
.tl-step.left {
  left: 0;
  text-align: right;
}
.tl-step.right {
  left: 50%;
  text-align: left;
}
.tl-node {
  position: absolute;
  top: 22px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-8deg);
  z-index: 2;
  box-shadow: 0 8px 22px rgba(240, 210, 2, 0.4);
}
.tl-node span {
  transform: skewX(8deg);
}
.tl-step.left .tl-node {
  right: -23px;
}
.tl-step.right .tl-node {
  left: -23px;
}
.tl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.9, 0.24, 1),
    box-shadow 0.4s;
}
.tl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(20, 22, 27, 0.1);
}
.tl-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 7px;
}
.tl-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* --- FAQ: sticky two-column --- */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 104px;
}
.faq-aside h2 {
  margin: 10px 0 16px;
}
.faq-aside p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 26px;
  max-width: 340px;
}
.faq-wrap .faq {
  max-width: none;
  margin: 0;
}

@media (max-width: 1020px) {
  .statband {
    grid-template-columns: repeat(2, 1fr);
  }
  .statband .stat:nth-child(2) {
    border-right: none;
  }
  .statband .stat:nth-child(1),
  .statband .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid .why {
    grid-column: auto !important;
  }
  .why-grid .why .wnum {
    font-size: 120px !important;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-aside {
    position: static;
  }
}
@media (max-width: 760px) {
  .statband {
    grid-template-columns: 1fr;
  }
  .statband .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .statband .stat:last-child {
    border-bottom: none;
  }
  .tl-line {
    left: 22px;
  }
  .tl-step,
  .tl-step.left,
  .tl-step.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 14px 0 14px 56px;
  }
  .tl-step.left .tl-node,
  .tl-step.right .tl-node {
    left: 0;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  .aurora {
    display: none !important;
  }
  .split .w > i {
    transform: none !important;
  }
  .cmp-reveal .cmp-row {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal.card3d {
    opacity: 1 !important;
    transform: none !important;
  }
  .tilt {
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* responsive */
@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .frow {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .frow.rev .fcopy {
    order: 1;
  }
  .frow.rev .fvis {
    order: 2;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .news {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .svc-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .reveal.card3d,
  .reveal.card3d.alt3d {
    transform: translateY(42px);
  }
  .reveal.card3d.in-view {
    transform: none;
  }
}
@media (max-width: 760px) {
  .nav-links,
  .nav .btn-yellow {
    display: none;
  }
  .burger {
    display: block;
  }
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 120px 0 64px;
  }
  .chip-a {
    left: -8px;
  }
  .chip-b {
    right: -4px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .cta-inner {
    justify-content: center;
    text-align: center;
  }
  .gaugewrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .cmp {
    border-radius: 16px;
  }
  .cmp-cell,
  .cmp-head .cmp-cell {
    padding: 14px 12px;
    font-size: 13px;
    gap: 6px;
  }
  .cmp-head .cmp-cell {
    font-size: 13.5px;
  }
}

/* ===================== MULTI-PAGE ADDITIONS ===================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumbs {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.page-hero .crumbs a {
  border-bottom: 1px solid transparent;
}
.page-hero .crumbs a:hover {
  color: var(--ink);
  border-color: var(--ink-soft);
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 22px 0 18px;
  max-width: 820px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 30px;
}

/* service detail */
.svc-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.lead-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
}
.lead-copy > p {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-bottom: 16px;
  max-width: 600px;
}
.deliverables {
  list-style: none;
  margin-top: 26px;
}
.deliverables li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.deliverables li:last-child {
  border-bottom: none;
}
.dcheck {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: rgba(240, 210, 2, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.dcheck svg {
  width: 15px;
  height: 15px;
  stroke: var(--ink);
}
.deliverables b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15.5px;
  display: block;
  margin-bottom: 3px;
}
.deliverables span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.svc-side {
  position: sticky;
  top: 100px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}
.svc-side h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
}
.glance {
  list-style: none;
  margin-bottom: 22px;
}
.glance li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.glance li b {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
}
.side-note {
  color: var(--ink-soft);
  font-size: 12.5px;
  margin-top: 16px;
}

/* related services */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.9, 0.24, 1),
    box-shadow 0.4s;
  display: block;
}
.rel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(20, 22, 27, 0.1);
}
.rel-card .svc-no {
  display: inline-block;
  margin-bottom: 16px;
}
.rel-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 16px;
}
.rel-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.rel-go svg {
  width: 16px;
  height: 16px;
}
.rel-card:hover .rel-go svg {
  transform: translateX(4px);
  transition: transform 0.3s;
}

/* svc-toggle as link arrow */
.svc-toggle .chev svg {
  width: 12px;
  height: 12px;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-grid h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
}
.about-lead {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-bottom: 16px;
  max-width: 520px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(20, 22, 27, 0.1);
}
.team-card .tavatar {
  margin: 0 auto 16px;
}
.team-card b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  display: block;
}
.team-card > span:last-child {
  color: var(--ink-soft);
  font-size: 13.5px;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.cform .field {
  margin-bottom: 16px;
}
.cform label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 7px;
}
.cform input,
.cform textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  color: var(--ink);
}
.cform input:focus,
.cform textarea:focus {
  border-color: var(--yellow);
}
.cform textarea {
  resize: vertical;
}
.cform button {
  margin-top: 6px;
}
.cform small {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
}
.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 38px;
}
.contact-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-card p {
  color: #b9bdc6;
  font-size: 15px;
  margin-bottom: 18px;
}
.contact-line {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--yellow);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.contact-line:hover {
  border-color: var(--yellow);
}
.contact-meta {
  margin: 26px 0;
  border-top: 1px solid #2a2d35;
}
.contact-meta div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #2a2d35;
  font-size: 14px;
  color: #8b9099;
}
.contact-meta b {
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
}
.contact-social {
  display: flex;
  gap: 18px;
}
.contact-social a {
  color: #b9bdc6;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.contact-social a:hover {
  color: var(--yellow);
}

/* service page lead-capture form */
.svc-form-band {
  background: var(--ink);
  padding: 72px 0;
}
.svc-form-card {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 52px 64px;
}
.svc-form-head {
  text-align: center;
  margin-bottom: 26px;
}
.svc-form-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
}
.svc-form-head p {
  color: var(--ink-soft);
  font-size: 15px;
  font-style: italic;
}
.svc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.svc-lead-form input,
.svc-lead-form select,
.svc-lead-form textarea {
  width: 100%;
  background: var(--mist);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 14.5px;
  outline: none;
  color: var(--ink);
  transition: border-color 0.2s;
  appearance: none;
}
.svc-lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A616D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
.svc-lead-form textarea {
  resize: vertical;
  margin-bottom: 20px;
}
.svc-lead-form input:focus,
.svc-lead-form select:focus,
.svc-lead-form textarea:focus {
  border-color: var(--yellow);
}
.svc-lead-form input::placeholder,
.svc-lead-form textarea::placeholder {
  color: #8b9099;
}
.svc-form-submit {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  cursor: pointer;
}
.svc-form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 20px;
  color: var(--ink-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.svc-form-divider::before,
.svc-form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.svc-form-alt {
  display: flex;
  justify-content: center;
  gap: 36px;
  text-align: center;
}
.svc-form-alt a {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-form-alt span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.svc-form-alt b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.svc-form-alt a:hover b {
  color: var(--yellow);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .svc-form-card {
    padding: 30px 24px;
  }
  .svc-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .svc-form-alt {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .svc-detail,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-side {
    position: static;
  }
  .rel-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero {
    padding: 120px 0 48px;
  }
}

/* ===================== PRO PAGES + GRAPHICS ===================== */
.page-hero.has-art {
  padding-bottom: 40px;
}
.hero-art-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}
.hero-art .art-svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3.3;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.page-hero .hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.svc-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transform: skewX(-8deg);
}
.svc-ic svg {
  transform: skewX(8deg);
}

/* graphic animations */
.art-svg .cbar {
  transform: scaleY(0);
  animation: cbarUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes cbarUp {
  to {
    transform: scaleY(1);
  }
}
.art-svg .cline {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: cdraw 1.6s ease 0.2s forwards;
}
.art-svg .cgauge,
.art-svg .cdonut {
  animation: cdraw2 1.6s ease 0.3s forwards;
}
@keyframes cdraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes cdraw2 {
  from {
    stroke-dashoffset: var(--from);
  }
}
.art-svg .art-blob {
  animation: auroraA 16s ease-in-out infinite;
}
.art-svg .art-blob2 {
  animation: auroraB 20s ease-in-out infinite;
}
.art-svg .art-chip {
  animation: floaty 6s ease-in-out infinite;
}
.art-svg .art-typing circle {
  animation: typedot 1.2s ease-in-out infinite;
}
.art-svg .art-typing circle:nth-child(2) {
  animation-delay: 0.18s;
}
.art-svg .art-typing circle:nth-child(3) {
  animation-delay: 0.36s;
}

/* outcomes band */
.outcomes-band {
  padding: 56px 0;
  background: var(--ink);
  color: #fff;
}
.outcomes-band .kicker {
  color: var(--yellow);
  text-align: center;
}
.sec-head.sm {
  margin-bottom: 30px;
}
.oc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.oc {
  text-align: center;
  padding: 14px;
}
.oc b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: var(--yellow);
  line-height: 1;
}
.oc span {
  display: block;
  margin-top: 10px;
  color: #b9bdc6;
  font-size: 14.5px;
}

/* service detail extras */
.lead-copy h3.sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin: 28px 0 6px;
}
.svc-side .side-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transform: skewX(-8deg);
}
.svc-side .side-ic svg {
  transform: skewX(8deg);
}
.rel-ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transform: skewX(-8deg);
}
.rel-ic svg {
  transform: skewX(8deg);
}
.rel-card .svc-no {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .hero-art-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-art {
    order: -1;
    max-width: 460px;
  }
  .oc-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .oc {
    padding: 10px;
  }
}

/* ===================== PORTFOLIO (screenshots, clean) ===================== */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pcard {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.9, 0.24, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(20, 22, 27, 0.14);
  border-color: transparent;
}
.pcover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--mist);
}
.pcover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  transition: transform 0.55s ease;
}
.pcard:hover .pcover img {
  transform: scale(1.045);
}
.pcover.noimg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pmono {
  display: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.pcover.noimg .pmono {
  display: block;
}
.pvisit {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px) scale(0.9);
  transition:
    opacity 0.3s,
    transform 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.pvisit svg {
  width: 15px;
  height: 15px;
  color: var(--ink);
}
.pcard:hover .pvisit {
  opacity: 1;
  transform: none;
}
.pbody {
  padding: 16px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pbody h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
}
.pcat {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
  flex: none;
}
.pfilter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.pfilter button {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.pfilter button:hover {
  border-color: var(--ink);
}
.pfilter button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.pcard.hide {
  display: none;
}

/* PORTFOLIO CARDS v2 — full-bleed portrait style (homepage slider) */
.p2filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin: -12px 0 32px;
}
.p2filter-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.p2filter button {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 4px 0;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.p2filter button:hover {
  color: var(--ink);
}
.p2filter button.active {
  color: var(--ink);
  border-bottom-color: var(--yellow);
}
.pcard2 {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--mist);
}
.pcard2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.pcard2:hover .pcard2-img {
  transform: scale(1.05);
}
.pcard2-shade-top,
.pcard2-shade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.pcard2-shade-top {
  top: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
}
.pcard2-shade-bottom {
  bottom: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.pcard2-brand {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.pcard2-tags {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pcard2-tags span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 11px;
}
.pcard2.noimg {
  background: linear-gradient(135deg, #2a2d35, #565a66);
}
.pcard2.hide {
  display: none;
}
.ss-track .pcard2 {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
@media (max-width: 760px) {
  .ss-track .pcard2 {
    flex: 0 0 66%;
  }
  .p2filter {
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}
@media (max-width: 1020px) {
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .pgrid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ===================== SVC PAGE SECTIONS ===================== */
.svc-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.svc-showcase .art-svg {
  width: 100%;
  height: auto;
  display: block;
}
.svc-showcase h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.benefits {
  list-style: none;
  margin-top: 20px;
}
.benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.benefits li b {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
}
.benefits .dcheck {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  background: rgba(240, 210, 2, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.benefits .dcheck svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink);
}
.appr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.appr {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.9, 0.24, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}
.appr:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(20, 22, 27, 0.11);
  border-color: transparent;
}
.appr .aic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--yellow);
  transform: skewX(-8deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.appr .aic svg {
  transform: skewX(8deg);
}
.appr h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18.5px;
  margin-bottom: 8px;
}
.appr p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.svc-faq {
  max-width: 840px;
  margin: 0 auto;
}
.dm-shine {
  animation: shimmer 3s ease-in-out infinite;
  transform-origin: center;
}
@media (max-width: 900px) {
  .svc-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .svc-showcase .hero-art {
    order: -1;
    max-width: 460px;
  }
  .appr-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ===================== REVISION CHROME ===================== */
/* mega menu */
.nav-links .has-mega {
  position: static;
}
.has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mega-caret {
  transition: transform 0.25s;
}
.has-mega:hover .mega-caret {
  transform: rotate(180deg);
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(20, 22, 27, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
  z-index: 99;
}
.has-mega:hover .mega,
.mega:hover {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.9fr;
  gap: 30px;
}
.mega-col h4 {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.mega-col a {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  border: none;
}
.mega-col a .mi {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transform: skewX(-6deg);
  transition: background 0.2s;
  margin-top: 1px;
}
.mega-col a .mi svg {
  transform: skewX(6deg);
}
.mega-col a:hover .mi {
  background: var(--yellow);
}
.mega-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mega-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.mega-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.mega-cta {
  background: var(--ink);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-cta h4 {
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.mega-cta p {
  color: #b9bdc6;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.mega-cta .btn {
  align-self: flex-start;
}
.mega-trust {
  border-top: 1px solid var(--line);
  background: var(--mist);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mt-item {
  display: flex;
  align-items: center;
}
.mt-item img {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .mega {
    display: none;
  }
}
/* ---------- portfolio slider ---------- */

.stores-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ss-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0 12px;
}

.ss-track::-webkit-scrollbar {
  display: none;
}

/* Portfolio card */
.pcard2 {
  position: relative;
  display: block;
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

/* Show the complete website screenshot */
.pcard2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  display: block;
}

/* Keep overlays on top */
.pcard2-shade-top,
.pcard2-shade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.pcard2-shade-top {
  top: 0;
  height: 100px;
}

.pcard2-shade-bottom {
  bottom: 0;
  height: 180px;
}

/* Text */
.pcard2-brand,
.pcard2-tags {
  position: absolute;
  z-index: 2;
}

.pcard2-brand {
  left: 20px;
  bottom: 48px;
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.pcard2-tags {
  left: 20px;
  bottom: 18px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.pcard2-tags span {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
}

/* Slider arrows */
.ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 22, 27, 0.12);
}

.ss-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.ss-prev {
  left: 12px;
}

.ss-next {
  right: 12px;
}

/* Tablet */
@media (max-width: 1100px) {
  .ss-track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

  .pcard2 {
    height: 500px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .ss-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  .pcard2 {
    height: 440px;
  }

  .ss-btn {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .ss-track {
    grid-auto-columns: 100%;
  }

  .pcard2 {
    height: 460px;
  }
}
/* clients wall */
.clients-sec {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  padding: 44px 0;
}
.clients-kicker {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.clients-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 112px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s,
    filter 0.3s;
  filter: grayscale(1);
  opacity: 0.72;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 22, 27, 0.08);
  filter: none;
  opacity: 1;
}
.client-logo .cl-mono {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-8deg);
  flex: none;
}
.client-logo b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (max-width: 760px) {
  .clients-wall {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===================== CASE + ABOUT ===================== */
.case-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.case-shot {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(20, 22, 27, 0.14);
  aspect-ratio: 16/9;
  background: var(--mist);
}
.case-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.case-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 52px;
  align-items: start;
}
.case-block {
  display: flex;
  gap: 18px;
  margin-bottom: 38px;
}
.case-block .cb-ic {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 13px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-8deg);
}
.case-block .cb-ic svg {
  transform: skewX(8deg);
}
.case-block h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 6px 0 10px;
}
.case-block p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.case-sol {
  margin-top: 8px;
}
.case-sol li {
  padding: 11px 0;
  border: none;
}
/* trust badges */
.trust-sec {
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.tbadges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.tbadge {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 12px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.tbadge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 22, 27, 0.08);
}
.tbadge .tb-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.tbadge b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  display: block;
  line-height: 1.1;
}
.tbadge span {
  font-size: 11.5px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tbadges {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* BOTTLENECK / PROBLEM-SOLUTION */
.bottleneck-band {
  background: var(--ink);
  padding: 60px 0 70px;
  overflow: hidden;
  font-family: inherit;
}
.bn-rule {
  display: flex;
  align-items: center;
  border-top: 1px solid #2a2d35;
  padding-top: 18px;
  margin-bottom: 36px;
}
.bn-rule-label {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #8b9099;
}
.bn-rule-label .pulse {
  background: #fff;
}
.bn-rule-label .pulse::after {
  border-color: #fff;
}
.bn-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.bn-head h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}
.bn-cta {
  flex: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.bn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.bn-card {
  background: var(--mist);
  border-radius: 18px;
  padding: 28px 22px;
  min-height: 300px;
  border: 1.5px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.bn-card:hover {
  background: #ffc001;
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.bn-no {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 52px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.bn-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--ink);
}
.bn-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 1020px) {
  .bn-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .bn-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bn-card {
    min-height: 240px;
  }
}
@media (max-width: 480px) {
  .bn-grid {
    grid-template-columns: 1fr;
  }
}

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

/* CULTURE PHOTO COLLAGE */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 44px;
}
.culture-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.culture-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.culture-photo-stack .culture-photo {
  flex: 1;
  min-height: 0;
}
@media (max-width: 760px) {
  .culture-grid {
    grid-template-columns: 1fr 1fr;
  }
  .culture-grid > .culture-photo:last-child {
    grid-column: span 2;
  }
}

/* WHY-US 3-CARD GRID */
.why3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.why3 {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.why3-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why3 h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.why3 p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .why3-grid {
    grid-template-columns: 1fr;
  }
}

/* TEAM PHOTO SPLIT */
.team-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.team-split-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}
.team-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .team-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* PARTNER / ECOSYSTEM GRID */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.partner-tile {
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.partner-tile img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.partner-tile-brand {
  background: var(--ink);
}
@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
