/*
Theme Name: AlvexNew
Theme URI: https://alvexstudio.com
Author: Alvex Studio
Description: Custom WordPress theme for Alvex Studio — full-service digital agency.
Version: 1.0.0
Text Domain: alvexnew
*/

/* ══════════ TOKENS ══════════ */
:root {
  --bg: #F3F2EC;
  --fg: #0C0B09;
  --mid: #131310;
  --accent: #027DF3;
  --accent2: #0255CC;
  --white: #FAFAF5;
  --gray: #7A7A70;
  --border: #DEDBD2;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

@media(max-width:900px) {
  #scroll-line {
    display: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  display: block;
}

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

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

/* ══════════ GRAIN OVERLAY ══════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: .026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ══════════ GRID BG (reusable) ══════════ */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .45;
  pointer-events: none;
}

.grid-bg-fade {
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
}

/* ══════════ TYPE ══════════ */
.bb {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .92;
}

h2,
h3,
h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.d0 {
  font-size: clamp(3.5rem, min(11vw, 16vh), 11rem);
}

.d1 {
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: .93;
}

.d2 {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: .95;
}

.d3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}

.body-lg {
  font-size: clamp(.95rem, 1.2vw, 1.06rem);
  line-height: 1.78;
  color: var(--gray);
}

/* Gradient text */
.grad {
  background: linear-gradient(90deg, #0255CC 0%, #027DF3 50%, #7CC8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* On dark bg */
.grad-light {
  background: linear-gradient(90deg, #78C7FF 0%, #B8E4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════ LAYOUT ══════════ */
.wrap {
  width: min(92%, 1320px);
  margin: 0 auto;
}

.sec {
  padding: clamp(80px, 9vw, 130px) 0;
}

/* ══════════ SHARED CARD STYLE (floating card motif) ══════════ */
.v-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .09), 0 4px 12px rgba(0, 0, 0, .05);
}

.v-card-bar {
  padding: 7px 18px;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

/* ══════════ PROGRESS ══════════ */
#pgbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 600;
  transform-origin: left;
  transform: scaleX(0);
}

/* ══════════ CURSOR ══════════ */
#cur {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9100;
}

#cur-ring {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: .4;
  transition: all .35s var(--ease-out);
}

#cur-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s var(--ease-out);
}

#cur.on #cur-dot {
  width: 48px;
  height: 48px;
  opacity: .1;
}

#cur.on #cur-ring {
  opacity: 0;
}

/* ══════════ LOADER ══════════ */
/* ══════════ LOADER ══════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden;
}

#ld-half-t,
#ld-half-b {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--fg);
  z-index: 1;
}

#ld-half-t {
  top: 0;
}

#ld-half-b {
  bottom: 0;
}

/* Scan-line texture */
#loader::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(243, 242, 236, .018) 0px, rgba(243, 242, 236, .018) 1px, transparent 1px, transparent 3px);
}

/* Full-screen SVG chart */
#ld-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}

#ld-path {
  transition: stroke-dashoffset 0.12s linear;
}

/* Inner UI layer */
#ld-inner {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 52px) clamp(28px, 5vw, 68px);
  pointer-events: none;
}

#ld-top {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
}

#ld-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(.78rem, .95vw, .92rem);
  letter-spacing: .22em;
  color: rgba(243, 242, 236, .22);
  opacity: 0;
}

#ld-wordmark em {
  color: var(--accent);
  font-style: normal;
}

#ld-status {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.58rem, .7vw, .7rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, .45);
  line-height: 1.6;
  opacity: 0;
}

#ld-pct-row {
  display: flex;
  align-items: baseline;
  gap: .04em;
  align-self: flex-end;
  opacity: 0;
}

#ld-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 14vw, 12rem);
  background: linear-gradient(135deg, #027DF3 0%, #7CC8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: .88;
  min-width: .58em;
  text-align: right;
  display: inline-block;
}

.ld-pct-sym {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  color: rgba(243, 242, 236, .14);
  line-height: .88;
}

/* ══════════ NAV ══════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 26px 0;
  transition: padding .4s var(--ease-out), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

#nav.stuck {
  padding: 14px 0;
  background: rgba(243, 242, 236, .93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, .07);
}

#nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, var(--accent) 65%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .7s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

#nav.stuck::after {
  transform: scaleX(1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  transition: border-color .3s;
  cursor: default;
}

.nav-avail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

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

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.foot-logo .logo-img {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  transition: color .2s;
  cursor: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Hide desktop nav links + CTA on mobile */
@media(max-width:860px) {
  .nav-links {
    display: none;
  }

  #nav .nav-cta-desk {
    display: none !important;
  }

  #nav .wrap {
    margin: 0;
    padding: 0 20px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
}

/* ── HAMBURGER BUTTON ── */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 9px;
  flex-shrink: 0;
  z-index: 10;
  position: relative;
  transition: border-color .2s;
}

.nav-ham:hover {
  border-color: var(--fg);
}

.ham-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--fg);
  transition: transform .38s var(--ease-out), opacity .22s;
  transform-origin: center;
}

@media(max-width:860px) {
  .nav-ham {
    display: flex;
  }
}

/* ── HAMBURGER → X MORPH ── */
.nav-ham.is-open {
  border-color: rgba(243, 242, 236, .25);
}

.nav-ham.is-open .ham-bar {
  background: var(--bg);
}

#nav.stuck .nav-ham.is-open .ham-bar {
  background: var(--fg);
}

#nav.stuck .nav-ham.is-open {
  border-color: rgba(12, 11, 9, .25);
}

.nav-ham.is-open .ham-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-ham.is-open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-ham.is-open .ham-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── FULLSCREEN MOBILE NAV OVERLAY ── */
#mob-nav {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: var(--fg);
  display: flex;
  flex-direction: column;
  padding: clamp(80px, 14vw, 100px) clamp(28px, 7vw, 56px) clamp(32px, 6vw, 48px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s var(--ease-out), visibility .38s;
}

#mob-nav.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}


.mob-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mob-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.mob-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 13vw, 6.5rem);
  letter-spacing: .02em;
  line-height: 1.1;
  color: rgba(243, 242, 236, .14);
  transition: color .22s, transform .28s var(--ease-out);
  cursor: pointer;
  display: block;
  opacity: 0;
}

.mob-nav-link:hover,
.mob-nav-link.active {
  color: var(--bg);
  transform: translateX(10px);
}

.mob-nav-cta {
  margin-top: 36px;
  align-self: flex-start;
  opacity: 0;
  cursor: pointer;
}

.mob-nav-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 242, 236, .1);
  font-size: .72rem;
  color: rgba(243, 242, 236, .28);
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  cursor: none;
  border: none;
  text-decoration: none;
  transition: transform .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-dark {
  background: var(--fg);
  color: var(--bg);
  padding: 11px 22px;
  border-radius: 100px;
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
  z-index: 0;
}

.btn-dark:hover::before {
  transform: scaleX(1);
}

.btn-dark span,
.btn-dark svg {
  position: relative;
  z-index: 1;
}

.btn-dark:hover {
  transform: scale(1.04);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 16px 34px;
  border-radius: 100px;
  font-size: .9rem;
}

.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .14);
  transform: translateX(-106%);
  transition: transform .45s var(--ease-out);
  z-index: 0;
}

.btn-accent:hover::before {
  transform: translateX(0);
}

.btn-accent span,
.btn-accent svg {
  position: relative;
  z-index: 1;
}

.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 55px rgba(2, 125, 243, .4);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 16px 34px;
  border-radius: 100px;
  font-size: .9rem;
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.btn-ghost {
  font-family: 'Inter', sans-serif;
  font-size: .86rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  cursor: none;
}

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

.ico-arr {
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}

.btn:hover .ico-ne {
  transform: translate(2px, -2px);
}

.btn:hover .ico-r {
  transform: translateX(3px);
}

/* ══════════ SPARKLE (shared decorator) ══════════ */
.spark {
  position: absolute;
  z-index: 2;
  opacity: .5;
  animation: spinSpark 6s linear infinite;
  pointer-events: none;
}

@keyframes spinSpark {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: .4;
  }

  50% {
    transform: scale(1.25) rotate(180deg);
    opacity: .9;
  }
}

/* ══════════ FLOATING CARD ══════════ */
.f-card {
  position: absolute;
  width: 148px;
  z-index: 3;
}

.f-card-pad {
  padding: 16px 16px 0;
}

.f-card-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(2, 125, 243, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 9px;
  flex-shrink: 0;
}

/* Constrain the icon size (so admin-pasted SVGs can't render huge)
   WITHOUT clipping — no overflow:hidden, matching the original. */
.f-card-ico svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.f-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

.f-card-sub {
  font-size: .66rem;
  color: var(--gray);
  line-height: 1.3;
  margin-bottom: 11px;
}

/* Hero card positions */
.fc-1 {
  top: 18%;
  left: 5%;
  transform: rotate(-7deg);
  animation: fl1 4.2s ease-in-out infinite;
}

.fc-2 {
  top: 14%;
  right: 4%;
  transform: rotate(6deg);
  animation: fl2 5s ease-in-out infinite .6s;
}

.fc-3 {
  bottom: 22%;
  left: 6%;
  transform: rotate(5deg);
  animation: fl3 4.8s ease-in-out infinite 1s;
}

.fc-4 {
  bottom: 18%;
  right: 5%;
  transform: rotate(-5deg);
  animation: fl4 3.9s ease-in-out infinite .3s;
}

@keyframes fl1 {

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

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

@keyframes fl2 {

  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }

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

@keyframes fl3 {

  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateY(-12px);
  }
}

@keyframes fl4 {

  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }

  50% {
    transform: rotate(-5deg) translateY(-9px);
  }
}

@media(max-width:900px) {

  .f-card,
  .spark,
  .hero-growth {
    display: none !important;
  }
}

/* ══════════ HERO ══════════ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 32px;
  position: relative;
  overflow: clip;
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-l {
  left: -250px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(2, 125, 243, .07) 0%, transparent 70%);
}

.hero-glow-r {
  right: -250px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(2, 85, 204, .07) 0%, transparent 70%);
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.8);
    opacity: .4;
  }
}

.hero-hed {
  margin-bottom: 14px;
}

.hed-line {
  display: block;
  overflow: hidden;
}

.hed-inner {
  display: block;
}

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-sub {
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.scrl {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scrl-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  49% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════ LOGOS STRIP ══════════ */
#logos {
  background: linear-gradient(90deg, var(--fg) 0%, #001A40 50%, var(--fg) 100%);
  overflow: hidden;
}

.logos-inner {
  display: flex;
  align-items: center;
}

.logos-label {
  flex-shrink: 0;
  padding: 22px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .1em;
  color: rgba(243, 242, 236, .25);
  border-right: 1px solid rgba(243, 242, 236, .07);
  white-space: nowrap;
}

.logos-wrap {
  flex: 1;
  overflow: hidden;
}

.logos-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: logoTick 22s linear infinite;
}

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

@keyframes logoTick {
  from {
    transform: translateX(0);
  }

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

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 22px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem;
  letter-spacing: .1em;
  color: rgba(243, 242, 236, .3);
  transition: color .2s;
}

.logo-item:hover {
  color: rgba(243, 242, 236, .8);
}

/* ══════════ MANIFESTO ══════════ */
#manifesto {
  background: var(--mid);
  padding: clamp(100px, 13vw, 180px) 0;
  position: relative;
  overflow: hidden;
}

#manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(2, 125, 243, .12), transparent);
  pointer-events: none;
}

.mfst {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mfst-tag {
  color: rgba(243, 242, 236, .28);
  margin-bottom: 28px;
}

.mfst-hed {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 8.5rem);
  line-height: .93;
  letter-spacing: .02em;
  color: var(--white);
}

.mfst-sub {
  max-width: 520px;
  margin: 32px auto 0;
  font-size: 1rem;
  color: rgba(243, 242, 236, .38);
  line-height: 1.75;
}

/* Decorative sparkles in manifesto */
.mfst-spark-1 {
  top: 15%;
  left: 8%;
  color: rgba(2, 85, 204, .5);
}

.mfst-spark-2 {
  top: 20%;
  right: 10%;
  color: rgba(2, 125, 243, .4);
}

.mfst-spark-3 {
  bottom: 18%;
  left: 12%;
  color: rgba(0, 160, 255, .35);
}

/* ══════════ SERVICES ══════════ */
#services {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.svc-bg-num {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(12rem, 25vw, 26rem);
  letter-spacing: .01em;
  line-height: 1;
  color: rgba(12, 11, 9, .03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.svc-header .eyebrow {
  margin-bottom: 16px;
}

.svc-header-r {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
}

/* Accordion */
.svc-list {
  border-top: 1px solid var(--border);
}

.svc-row {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.svc-hd {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  cursor: none;
  transition: padding .3s var(--ease-out);
}

.svc-hd:hover {
  padding-left: 10px;
}

.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--accent);
  line-height: 1;
}

.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: .02em;
  line-height: 1;
  transition: color .2s;
}

.svc-row:hover .svc-name,
.svc-row.open .svc-name {
  color: var(--accent);
}

.svc-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  flex-shrink: 0;
  transition: all .35s var(--ease-out);
}

.svc-row:hover .svc-ico,
.svc-row.open .svc-ico {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out);
}

.svc-body-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding-bottom: 28px;
}

.svc-body-inner p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.72;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.svc-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(2, 125, 243, .07);
  color: var(--accent);
  border: 1px solid rgba(2, 125, 243, .14);
}

/* ══════════ PROCESS ══════════ */
#process {
  background: var(--mid);
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(2, 125, 243, .09), transparent);
  pointer-events: none;
}

.proc-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.proc-hd h2 {
  color: var(--white);
}

.proc-hd .eyebrow {
  color: rgba(243, 242, 236, .28);
  margin-bottom: 12px;
}

.proc-hd p {
  max-width: 340px;
  font-size: .93rem;
  color: rgba(243, 242, 236, .38);
  line-height: 1.72;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(243, 242, 236, .07);
  border: 1px solid rgba(243, 242, 236, .07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.proc-step {
  background: var(--mid);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease-out);
}

.proc-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transform: translateY(102%);
  transition: transform .6s var(--ease-out);
}

.proc-step:hover::before {
  transform: translateY(0);
}

.proc-step>* {
  position: relative;
  z-index: 1;
}

.proc-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  letter-spacing: .02em;
  line-height: 1;
  color: rgba(243, 242, 236, .06);
  margin-bottom: 20px;
  transition: color .3s;
}

.proc-step:hover .proc-n {
  color: rgba(255, 255, 255, .15);
}

.proc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
  transition: color .3s;
}

.proc-step:hover .proc-title {
  color: #fff;
}

.proc-desc {
  font-size: .84rem;
  color: rgba(243, 242, 236, .38);
  line-height: 1.65;
  transition: color .3s;
}

.proc-step:hover .proc-desc {
  color: rgba(255, 255, 255, .75);
}

/* ══════════ STATS ══════════ */
#stats {
  background: var(--fg);
  padding: clamp(70px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(2, 125, 243, .15), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(243, 242, 236, .07);
  border: 1px solid rgba(243, 242, 236, .07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-box {
  background: rgba(19, 19, 16, .8);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease-out);
}

.stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transform: translateY(102%);
  transition: transform .5s var(--ease-out);
}

.stat-box:hover::before {
  transform: translateY(0);
}

.stat-box>* {
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: .02em;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  transition: color .3s;
}

.stat-lbl {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, .35);
  transition: color .3s;
}

.stat-box:hover .stat-num {
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.stat-box:hover .stat-lbl {
  color: rgba(255, 255, 255, .7);
}

/* ══════════ WHY ══════════ */
#why {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.why-bg-text {
  position: absolute;
  left: -2%;
  bottom: -5%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(10rem, 22vw, 22rem);
  letter-spacing: .01em;
  line-height: 1;
  color: rgba(12, 11, 9, .03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-l {
  position: sticky;
  top: 110px;
}

.why-l .eyebrow {
  margin-bottom: 16px;
}

.why-l p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 18px;
}

/* Small floating card in why section */
.why-card {
  margin-top: 36px;
  width: 200px;
}

.why-card-pad {
  padding: 16px 16px 0;
}

.why-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.why-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.why-card-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 1;
}

.why-card-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 2px;
}

.why-card-val.grad {
  font-family: 'Bebas Neue', sans-serif;
}

.why-card-sub {
  font-size: .68rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: padding .3s var(--ease-out);
}

.why-r .why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-item:hover {
  padding-left: 10px;
}

.why-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .03em;
  line-height: 1;
  color: rgba(2, 125, 243, .2);
  padding-top: 2px;
  transition: color .2s;
}

.why-item:hover .why-n {
  color: var(--accent);
}

.why-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.why-content p {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ══════════ CTA ══════════ */
#cta-sec {
  background: var(--mid);
  padding: clamp(100px, 13vw, 170px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(2, 125, 243, .14), transparent);
  pointer-events: none;
}

.cta-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  letter-spacing: .02em;
  color: rgba(243, 242, 236, .022);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

#cta-sec .eyebrow {
  color: rgba(243, 242, 236, .28);
  margin-bottom: 18px;
}

#cta-sec h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  letter-spacing: .02em;
  line-height: .93;
  color: var(--white);
  margin-bottom: 24px;
}

#cta-sec p {
  font-size: 1.03rem;
  color: rgba(243, 242, 236, .42);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.72;
}

/* Floating mini cards in CTA */
.cta-fc {
  position: absolute;
  width: 160px;
  z-index: 2;
}

.cta-fc-1 {
  top: 15%;
  left: 6%;
  transform: rotate(-6deg);
  animation: fl1 4.5s ease-in-out infinite;
}

.cta-fc-2 {
  bottom: 15%;
  right: 6%;
  transform: rotate(5deg);
  animation: fl2 5.2s ease-in-out infinite .7s;
}

.cta-fc-pad {
  padding: 14px 14px 0;
}

.cta-fc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 2px;
}

.cta-fc-lbl {
  font-size: .66rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.3;
}

@media(max-width:900px) {
  .cta-fc {
    display: none;
  }
}

/* CTA sparkles */
.cta-spark-1 {
  top: 20%;
  left: 28%;
  color: rgba(2, 85, 204, .4);
}

.cta-spark-2 {
  top: 18%;
  right: 26%;
  color: rgba(2, 125, 243, .35);
}

.cta-spark-3 {
  bottom: 22%;
  right: 30%;
  color: rgba(0, 160, 255, .3);
}

/* ══════════ HANDSHAKE ══════════ */
.shake-wrap {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 52px);
}

#shake-svg {
  width: clamp(200px, 38vw, 380px);
  height: auto;
  overflow: visible;
}

/* ══════════ CONTACT ══════════ */
#contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-l .eyebrow {
  margin-bottom: 16px;
}

.contact-l p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 18px;
  margin-bottom: 36px;
}

.c-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 500;
  font-size: .88rem;
  transition: color .2s;
  cursor: none;
}

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

.c-ico {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background .2s, border-color .2s;
}

.c-link:hover .c-ico {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.c-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 34px;
}

.fg {
  margin-bottom: 14px;
}

.fg label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--fg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 125, 243, .09);
}

.fg textarea {
  height: 108px;
  resize: none;
}

.fg.has-error input,
.fg.has-error textarea,
.fg.has-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.09);
}

.fg-error-msg {
  display: block;
  font-size: .72rem;
  color: #ef4444;
  margin-top: 5px;
  letter-spacing: .01em;
}

.c-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.c-success-inner {
  text-align: center;
  padding: clamp(16px, 3vw, 32px) 0;
}

.c-success-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .08);
  border: 1px solid rgba(22, 163, 74, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.c-success-hed {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.c-success-sub {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 32px;
}

.c-success-btn {
  cursor: pointer;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f-sub {
  width: 100%;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 9px;
  padding: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  cursor: none;
  margin-top: 4px;
  transition: background .3s, transform .3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.f-sub:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ══════════ 404 ══════════ */
.err-sec {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 130px) 0;
}

.err-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  opacity: .6;
  z-index: 0;
}

.err-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.err-num {
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: .85;
  display: block;
  margin-bottom: 8px;
}

.err-hed {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
}

.err-sub {
  color: var(--gray);
  font-size: clamp(.9rem, 1.4vw, 1rem);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 44px;
}

.err-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--fg);
  padding: clamp(52px, 7vw, 88px) 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vw, 68px);
  border-bottom: 1px solid rgba(243, 242, 236, .08);
}

.foot-brand .logo {
  margin-bottom: 14px;
  display: block;
}

.foot-brand>p {
  font-size: .82rem;
  color: rgba(243, 242, 236, .35);
  line-height: 1.72;
  max-width: 230px;
  margin-bottom: 22px;
}

.foot-social {
  display: flex;
  gap: 9px;
}

.foot-social-lnk {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(243, 242, 236, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 242, 236, .3);
  transition: border-color .2s, color .2s;
  cursor: none;
}

.foot-social-lnk:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.foot-col-title {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, .22);
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  font-size: .8rem;
  color: rgba(243, 242, 236, .38);
  margin-bottom: 10px;
  transition: color .2s;
  cursor: none;
}

.foot-col a:hover {
  color: var(--bg);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-size: .71rem;
  color: rgba(243, 242, 236, .2);
}

.foot-bottom-links {
  display: flex;
  gap: 18px;
}

.foot-bottom-links a {
  font-size: .71rem;
  color: rgba(243, 242, 236, .2);
  transition: color .2s;
  cursor: none;
}

.foot-bottom-links a:hover {
  color: rgba(243, 242, 236, .7);
}

@media(max-width:900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

/* ══════════ WORK SECTION ══════════ */
#work {
  background: var(--fg);
}

.work-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 52px;
}

.work-hd .eyebrow {
  color: rgba(243, 242, 236, .35);
}

.work-hd h2 {
  color: var(--bg);
}

.work-hd-r p {
  color: rgba(243, 242, 236, .45);
  line-height: 1.75;
  font-size: clamp(.9rem, 1.1vw, .98rem);
  max-width: 380px;
}

.work-hd-r a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid rgba(2, 125, 243, .3);
  padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
  cursor: none;
}

.work-hd-r a:hover {
  border-color: var(--accent);
  gap: 10px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
  border-radius: 20px;
  overflow: hidden;
}

.work-card {
  background: rgba(243, 242, 236, .025);
  padding: clamp(26px, 3.2vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s;
  cursor: none;
}

.work-card:hover {
  background: rgba(243, 242, 236, .06);
}

.work-card-cat {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-card-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(243, 242, 236, .05);
  line-height: 1;
  margin-bottom: -8px;
}

.work-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: -.02em;
  color: var(--bg);
}

.work-card-desc {
  font-size: .83rem;
  line-height: 1.75;
  color: rgba(243, 242, 236, .42);
  flex: 1;
}

.work-card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.work-stat-v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(90deg, #0255CC, #027DF3 55%, #7CC8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-stat-l {
  font-size: .7rem;
  color: rgba(243, 242, 236, .32);
  max-width: 88px;
  line-height: 1.35;
}

.work-card-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, .38);
  transition: color .2s, gap .2s;
  margin-top: 6px;
}

.work-card-lnk:hover {
  color: var(--accent);
  gap: 10px;
}

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

  .work-hd {
    flex-direction: column;
    gap: 22px;
  }

  .work-hd-r p {
    max-width: none;
  }
}

/* ══════════ BOTTOM CTA (all pages except contact) ══════════ */
#bottom-cta {
  background: var(--fg);
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

#bottom-cta::before {
  content: 'GROW';
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(10rem, 28vw, 24rem);
  color: rgba(243, 242, 236, .03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: .02em;
  pointer-events: none;
  white-space: nowrap;
}

#bottom-cta .eyebrow {
  color: rgba(243, 242, 236, .32);
  margin-bottom: 16px;
}

#bottom-cta h2 {
  color: var(--bg);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  line-height: .95;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

#bottom-cta p {
  color: rgba(243, 242, 236, .42);
  max-width: 460px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

#bottom-cta .btn-accent {
  display: inline-flex;
}

/* ══════════ INNER PAGE HERO ══════════ */
.page-hero {
  padding: clamp(130px, 14vw, 180px) 0 clamp(60px, 7vw, 90px);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.ph-hed-wrap {
  overflow: hidden;
}

.page-hero-hed {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 8.5rem);
  line-height: .92;
  letter-spacing: .02em;
}

.page-hero-sub {
  max-width: 520px;
  color: var(--gray);
  margin-top: 22px;
  font-size: clamp(.92rem, 1.15vw, 1.05rem);
  line-height: 1.75;
}

.page-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}

/* ══════════ SERVICES FULL PAGE ══════════ */
.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.svc-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .3s, transform .3s var(--ease-out);
}

.svc-full-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.svc-full-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(2, 125, 243, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-full-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: .1em;
}

.svc-full-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.svc-full-desc {
  font-size: .85rem;
  line-height: 1.78;
  color: var(--gray);
  flex: 1;
}

.svc-full-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.svc-full-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  background: rgba(2, 125, 243, .07);
  color: var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
}

@media(max-width:1024px) {
  .svc-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .svc-full-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════ WORK FULL PAGE ══════════ */
.wk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.wk-card {
  background: var(--fg);
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: opacity .3s;
}

.wk-card:hover {
  opacity: .88;
}

.wk-card-cat {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.wk-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -.025em;
  color: var(--bg);
}

.wk-card-desc {
  font-size: .86rem;
  line-height: 1.78;
  color: rgba(243, 242, 236, .42);
}

.wk-card-results {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.wk-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wk-result-v {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  background: linear-gradient(90deg, #0255CC, #027DF3 55%, #7CC8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.wk-result-l {
  font-size: .68rem;
  color: rgba(243, 242, 236, .35);
  letter-spacing: .04em;
}

.wk-card-lnk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(243, 242, 236, .4);
  transition: color .2s, gap .2s;
  margin-top: 4px;
}

.wk-card-lnk:hover {
  color: var(--accent);
  gap: 11px;
}

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

/* ══════════ PROCESS FULL PAGE ══════════ */
.proc-full-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
}

.proc-full-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.proc-full-step:first-child {
  border-top: 1px solid var(--border);
}

.proc-full-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}

.proc-full-body {}

.proc-full-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.proc-full-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 640px;
}

.proc-full-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.proc-full-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  background: rgba(2, 125, 243, .07);
  color: var(--accent);
  border-radius: 100px;
  padding: 4px 14px;
}

@media(max-width:640px) {
  .proc-full-step {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
}

/* ══════════ SERVICES BIG LIST ══════════ */
.svc-big-list {
  border-bottom: 1px solid var(--border);
}

.svc-big-item {
  border-top: 1px solid var(--border);
  cursor: none;
  position: relative;
}

.svc-big-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease-out);
}

.svc-big-item.open::before,
.svc-big-item:hover::before {
  transform: scaleY(1);
}

.svc-big-head {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(18px, 2.2vw, 26px) 0;
  padding-left: clamp(18px, 2.5vw, 28px);
  user-select: none;
}

.svc-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .12em;
  color: var(--accent);
}

.svc-big-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5.5vw, 6.5rem);
  color: rgba(12, 11, 9, .22);
  line-height: .95;
  transition: color .3s;
}

.svc-big-item.open .svc-big-name,
.svc-big-item:hover .svc-big-name {
  color: var(--fg);
}

.svc-big-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-big-excerpt {
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--gray);
  text-transform: uppercase;
  transition: opacity .3s;
}

.svc-big-item.open .svc-big-excerpt {
  opacity: 0;
}

.svc-big-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--gray);
  transition: transform .4s var(--ease-out), border-color .3s, color .3s;
  flex-shrink: 0;
}

.svc-big-item.open .svc-big-toggle {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.svc-big-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(0, 1, .35, 1);
}

.svc-big-body-inner {
  padding: 0 0 clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  padding-left: calc(64px + clamp(16px, 2.5vw, 32px) + clamp(18px, 2.5vw, 28px));
}

.svc-big-body p {
  font-size: .87rem;
  line-height: 1.82;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 18px;
}

.svc-big-body-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.svc-big-body-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(2, 125, 243, .07);
  border: 1px solid rgba(2, 125, 243, .18);
  color: var(--accent);
}

@media(max-width:860px) {
  .svc-big-head {
    grid-template-columns: 40px 1fr auto;
  }

  .svc-big-body-inner {
    padding-left: 72px;
  }

  .svc-big-excerpt {
    display: none;
  }
}

@media(max-width:600px) {
  .svc-big-name {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
}

/* Dark page-hero variant — kept for optional use */
.page-hero-dark {
  background: var(--fg);
}

.page-hero-dark .eyebrow {
  color: rgba(243, 242, 236, .32);
}

.page-hero-dark .page-hero-hed {
  color: var(--bg);
}

.page-hero-dark .page-hero-sub {
  color: rgba(243, 242, 236, .42);
}

.page-hero-dark {
  border-bottom-color: rgba(255, 255, 255, .08);
}

/* ══════════ WORK BENTO ══════════ */
.wk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.wk-filter {
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .07em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  cursor: none;
  transition: background .25s, border-color .25s, color .25s;
}

.wk-filter:hover,
.wk-filter.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.wk-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.wk-bento-card {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease-out), box-shadow .4s, opacity .35s;
  display: flex;
  flex-direction: column;
}

.wk-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .1);
}

/* When the card itself is an <a> tag */
a.wk-bento-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.wk-bento-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  padding-top: 16px;
  transition: gap .2s;
}

a.wk-bento-card:hover .wk-bento-lnk {
  gap: 10px;
}

.wk-bento-card.span-8 {
  grid-column: span 8;
}

.wk-bento-card.span-6 {
  grid-column: span 6;
}


/* ── filtered state: uniform image heights, no orphan gaps ── */
/* image heights are natural (auto) — no override needed for filtered state */

/* single result: centre the card in the 12-col row */
.wk-bento.is-single {
  justify-content: center;
}

.wk-bento-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}


.wk-bento-img-bg {
  display: none;
}

.wk-bento-img-el {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}

a.wk-bento-card:hover .wk-bento-img-el,
.wk-bento-card:hover .wk-bento-img-el {
  transform: scale(1.03);
}

/* Per-project images */
.wk-img-1 {
  background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
}

.wk-img-2 {
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
}

.wk-img-3 {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
}

.wk-img-4 {
  background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
}

.wk-img-5 {
  background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
}

.wk-img-6 {
  background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
}

.wk-bento-body {
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wk-bento-cat {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.wk-bento-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: -.02em;
  margin: 8px 0 10px;
}

.wk-bento-desc {
  font-size: .81rem;
  line-height: 1.72;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wk-bento-card.span-8 .wk-bento-desc,
.wk-bento-card.span-6 .wk-bento-desc,
.wk-bento-card.span-12 .wk-bento-desc {
  -webkit-line-clamp: 3;
}

.wk-bento-stats {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.wk-bento-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wk-b-sv {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
}

.wk-b-sl {
  font-size: .65rem;
  color: var(--gray);
  letter-spacing: .04em;
  line-height: 1.3;
}

@media(max-width:1024px) {
  .wk-bento-card {
    grid-column: span 6 !important;
  }
}

@media(max-width:640px) {
  .wk-bento-card {
    grid-column: span 12 !important;
  }
}

/* ══════════ CONTACT PAGE ══════════ */
.contact-sec {
  padding-top: clamp(96px, 8vw, 116px);
  padding-bottom: clamp(80px, 9vw, 120px);
}

.contact-intro {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.contact-page-hed {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .92;
  letter-spacing: .02em;
  margin: 10px 0 14px;
}

.contact-intro-sub {
  max-width: 500px;
  color: var(--gray);
  font-size: clamp(.88rem, 1.1vw, 1rem);
  line-height: 1.75;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.contact-page-grid>.js-r {
  position: sticky;
  top: 100px;
}

@media(max-width:860px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid>.js-r {
    position: static;
  }
}

/* ══════════ RESPONSIVE ══════════ */
@media(max-width:1024px) {

  .svc-header,
  .why-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-l {
    position: static;
  }

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

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

@media(max-width:640px) {

  .proc-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-accent,
  .btn-ghost,
  .btn-white {
    width: 100%;
    justify-content: center;
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

  .svc-hd {
    grid-template-columns: 56px 1fr auto;
  }

  .svc-body-inner {
    grid-template-columns: 56px 1fr;
  }
}

@media(prefers-reduced-motion:reduce) {

  .f-card,
  .spark,
  .cta-fc {
    animation: none !important;
  }

  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════ WORK CARDS — IMAGE HEADER ══════════ */
.work-card {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.work-card-img {
  width: 100%;
  height: clamp(110px, 12vw, 152px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.work-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.work-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 25%, var(--fg));
}

.work-card-body {
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* ══════════ PROCESS PAGE — TRACKER ══════════ */
.proc-tracker {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: rgba(243, 242, 236, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.proc-tracker-row {
  display: flex;
  align-items: center;
}

.proc-track-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  opacity: .28;
  transition: opacity .35s, background .35s;
  cursor: default;
}

.proc-track-item.active {
  opacity: 1;
  background: rgba(2, 125, 243, .07);
}

.proc-track-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .4;
  transition: opacity .35s;
  flex-shrink: 0;
}

.proc-track-item.active .proc-track-dot {
  opacity: 1;
}

.proc-track-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem;
  letter-spacing: .08em;
  color: var(--accent);
  line-height: 1;
}

.proc-track-label {
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg);
}

.proc-track-sep {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 16px;
}

@media(max-width:640px) {
  .proc-track-label {
    display: none;
  }

  .proc-track-item {
    padding: 8px 10px;
  }
}

/* ══════════ PROCESS PAGE — STEP BLOCKS ══════════ */
.proc-blocks {}

.proc-block {
  padding: clamp(80px, 11vw, 140px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.proc-block:nth-child(even) {
  background: var(--white);
}

.proc-block-bg-n {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14rem, 28vw, 28rem);
  color: rgba(12, 11, 9, .033);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.proc-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.proc-block:nth-child(even) .proc-block-inner {
  direction: rtl;
}

.proc-block:nth-child(even) .proc-block-inner>* {
  direction: ltr;
}

.proc-block-left .eyebrow {
  margin-bottom: 16px;
}

.proc-block-title {
  font-size: clamp(3.5rem, 9vw, 9rem);
  margin-bottom: 20px;
}

.proc-block-desc {
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.82;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 500px;
}

.proc-block-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.proc-block-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(2, 125, 243, .07);
  border: 1px solid rgba(2, 125, 243, .16);
  color: var(--accent);
}

.proc-block-card {
  background: var(--fg);
  border-radius: 22px;
  padding: clamp(28px, 3.5vw, 40px);
}

.proc-block-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: rgba(243, 242, 236, .38);
  margin-bottom: 20px;
}

.proc-block-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.proc-block-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .86rem;
  color: rgba(243, 242, 236, .58);
  line-height: 1.5;
}

.proc-block-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: .45em;
}

.proc-block-card-quote {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 242, 236, .08);
  font-size: .78rem;
  color: rgba(243, 242, 236, .26);
  font-style: italic;
  line-height: 1.65;
}

@media(max-width:900px) {
  .proc-block-inner {
    grid-template-columns: 1fr;
  }

  .proc-block:nth-child(even) .proc-block-inner {
    direction: ltr;
  }

  .proc-block-bg-n {
    font-size: clamp(7rem, 18vw, 16rem);
  }
}

@media(max-width:640px) {
  .proc-block-inner {
    gap: 28px;
  }
}

/* ══════════ HERO GROWTH CHART ══════════ */
.hero-growth {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -44%);
  z-index: 1;
  pointer-events: none;
  width: clamp(280px, 38vw, 500px);
}

.hero-growth-svg {
  width: 100%;
  height: auto;
  display: block;
}

#hero-growth-path {
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(2, 125, 243, .55)) drop-shadow(0 0 20px rgba(2, 125, 243, .2));
}

#hero-growth-dot {
  filter: drop-shadow(0 0 6px rgba(124, 200, 255, .9));
}

@media(max-width:768px) {
  .hero-growth {
    width: 78vw;
    top: 54%;
  }
}

/* ══════════════════════════════════════════════
   COMPREHENSIVE MOBILE / TABLET RESPONSIVE
   Breakpoints: ≤1024 tablet  ≤768 mobile  ≤480 small
══════════════════════════════════════════════ */

/* ── Cursor: reset on touch devices ── */
@media(hover:none), (pointer:coarse) {

  *,
  *::before,
  *::after {
    cursor: auto !important;
  }
}

/* ── TABLET (≤1024px) ── */
@media(max-width:1024px) {

  /* Logos strip: hide label, tighten items */
  .logos-label {
    display: none;
  }

  .logo-item {
    padding: 18px 20px;
  }

  /* Services header */
  .svc-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  /* Why layout */
  .why-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .why-l {
    position: static;
  }

  /* Process full page blocks */
  .proc-block-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .proc-block:nth-child(even) .proc-block-inner {
    direction: ltr;
  }
}

/* ── MOBILE (≤768px) ── */
@media(max-width:768px) {

  /* Base spacing */
  .sec {
    padding: clamp(60px, 8vw, 96px) 0;
  }

  .wrap {
    /* width: min(92%, 100%); */
  }

  /* Hero — remove full-screen forced height, fix edge-to-edge text */
  #hero {
    min-height: auto;
    padding-top: clamp(90px, 22vw, 120px);
    padding-bottom: clamp(52px, 10vw, 80px);
    justify-content: flex-start;
  }

  #hero .wrap {
    padding-left: clamp(16px, 5vw, 24px);
    padding-right: clamp(16px, 5vw, 24px);
  }

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

  .scrl {
    display: none;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process steps (home) */
  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-hd {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  /* Services accordion */
  .svc-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .svc-hd {
    grid-template-columns: 52px 1fr auto;
    gap: 14px;
    padding: 22px 0;
  }

  .svc-body-inner {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  /* Why section */
  .why-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-card {
    display: none;
  }

  /* Work section (home) */
  .work-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .work-hd-r p {
    max-width: none;
  }

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

  /* Services full page */
  .svc-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Work bento */
  .wk-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wk-bento-card,
  .wk-bento-card.span-8,
  .wk-bento-card.span-6 {
    grid-column: span 1 !important;
  }

  .wk-bento-img {
    height: clamp(160px, 42vw, 220px) !important;
  }

  /* Process full page steps */
  .proc-full-step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .proc-full-n {
    font-size: 2.5rem;
  }

  /* Contact page */
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-page-grid>.js-r {
    position: static;
  }

  .contact-page-hed {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .c-form {
    padding: 26px 20px;
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

  /* Contact section (home) */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* CTA sections */
  #cta-sec h2 {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  #bottom-cta .btn-accent {
    width: auto;
  }

  /* Page heroes (inner pages) */
  .page-hero-row {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .page-hero-sub {
    margin-top: 14px;
  }

  /* Footer */
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Manifesto */
  .mfst-sub {
    font-size: .92rem;
  }

  /* Proc tracker: tighten */
  .proc-tracker {
    top: 60px;
  }

  .proc-track-label {
    display: none;
  }

  .proc-track-item {
    padding: 6px 8px;
  }
}

/* ── SMALL MOBILE (≤480px) ── */
@media(max-width:480px) {

  /* Stats → single column */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Process steps (home) → single column */
  .proc-grid {
    grid-template-columns: 1fr;
  }

  /* Services full page */
  .svc-full-grid {
    grid-template-columns: 1fr;
  }

  /* Services big list */
  .svc-big-head {
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    padding-left: 14px;
  }

  .svc-big-name {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }

  .svc-big-body-inner {
    padding-left: 46px;
  }

  .svc-big-excerpt {
    display: none;
  }

  /* Footer */
  .foot-grid {
    grid-template-columns: 1fr;
  }

  /* Work cards (home) number */
  .work-card-n {
    font-size: 2.5rem;
  }

  /* Contact form */
  .c-form {
    padding: 20px 16px;
  }

  /* Buttons */
  .btn-accent,
  .btn-white {
    padding: 13px 22px;
    font-size: .85rem;
  }

  /* Logo strip items */
  .logo-item {
    padding: 16px 14px;
    font-size: .82rem;
  }
}