/* ============================================================
   RQ GLOBAL — Design tokens
   ============================================================ */
:root {
  --violet: #6D28D9;
  --purple: #9B1FB5;
  --magenta: #E6007E;
  --pink: #FF3DA6;
  --grad: linear-gradient(100deg, #6D28D9 0%, #A11FB2 45%, #E6007E 100%);
  --grad-soft: linear-gradient(100deg, #7C3AED 0%, #C026A6 50%, #FF3DA6 100%);
  --radius: 22px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

html[data-theme="dark"] {
  --bg: #07050D;
  --bg-2: #0C0817;
  --surface: rgba(255, 255, 255, .035);
  --surface-2: rgba(255, 255, 255, .06);
  --text: #F5F3F9;
  --muted: #A29BB8;
  --border: rgba(255, 255, 255, .09);
  --border-str: rgba(255, 255, 255, .16);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .85);
  --glow: .55;
  --nav-bg: rgba(10, 7, 20, .78);
  --pl-a: #FFFFFF;
  --pl-b: #BFC5D4;
  --pl-c: #AEB5C6;
  --pl-d: #727A8D;
}

html[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-2: #F7F5FB;
  --surface: rgba(255, 255, 255, .75);
  --surface-2: #FFFFFF;
  --text: #0F0B1A;
  --muted: #5F5972;
  --border: rgba(15, 11, 26, .09);
  --border-str: rgba(15, 11, 26, .16);
  --shadow: 0 30px 70px -34px rgba(70, 20, 90, .28);
  --glow: .13;
  --nav-bg: rgba(255, 255, 255, .88);
  --pl-a: #E4E8F0;
  --pl-b: #A9B1C2;
  --pl-c: #949CB0;
  --pl-d: #5B6379;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .5s var(--ease), color .5s var(--ease);
}

body.no-scroll {
  overflow: hidden
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

::selection {
  background: var(--magenta);
  color: #fff
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px
}

::-webkit-scrollbar-track {
  background: var(--bg-2)
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--violet), var(--magenta));
  border-radius: 10px
}

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap {
  width: min(var(--maxw), 92vw);
  margin-inline: auto
}

section {
  position: relative
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem .95rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px var(--magenta)
}

h1,
h2,
h3,
h4 {
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 700
}

.h-xl {
  font-size: clamp(2.9rem, 7.4vw, 6.2rem)
}

.h-lg {
  font-size: clamp(2.2rem, 5vw, 4rem)
}

.h-md {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem)
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em
}

.grad-text {
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

/* when a headline is word-split, the gradient must ride on each word */
.grad-text .word i,
.grad-text.word i {
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  max-width: 56ch
}

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 3.5rem
}

.sec-pad {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s;
  will-change: transform;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .4s var(--ease)
}

.btn:hover svg {
  transform: translateX(4px)
}

.btn-primary {
  background-image: linear-gradient(100deg, #6D28D9 0%, #A11FB2 28%, #E6007E 55%, #A11FB2 80%, #6D28D9 100%);
  background-size: 230% 100%;
  background-position: 0% 0;
  color: #fff;
  box-shadow: 0 12px 34px -12px rgba(230, 0, 126, .75);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background-position .8s var(--ease);
}

.btn-primary:hover {
  box-shadow: 0 20px 46px -12px rgba(230, 0, 126, .9);
  background-position: 100% 0
}

.btn-ghost {
  border: 1px solid var(--border-str);
  color: var(--text);
  background: var(--surface);
  backdrop-filter: blur(10px)
}

.btn-ghost:hover {
  border-color: transparent;
  background: var(--grad);
  color: #fff
}

.btn-lg {
  padding: 1.1rem 2.1rem;
  font-size: 1rem
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

#preloader .pl-logo {
  transform: translateY(6px);
  opacity: 0
}

.pl-bar {
  width: min(240px, 50vw);
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden
}

.pl-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 2px
}

.pl-txt {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted)
}

/* ============================================================
   Ambient background
   ============================================================ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: var(--glow);
  will-change: transform
}

.blob.b1 {
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, #7C3AED, transparent 68%);
  top: -16vw;
  left: -12vw
}

.blob.b2 {
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, #E6007E, transparent 68%);
  top: 24vh;
  right: -14vw
}

.blob.b3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #B01BA8, transparent 68%);
  bottom: -12vw;
  left: 26vw
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

html[data-theme="light"] .grain {
  opacity: .22;
  mix-blend-mode: multiply
}

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 78%);
  opacity: .75;
}

/* ============================================================
   Header
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.1rem 0;
  transition: padding .45s var(--ease), background .45s, border-color .45s, backdrop-filter .45s;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: .6rem 0;
  background: var(--nav-bg);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem
}

.logo svg {
  width: 42px;
  height: 42px;
  flex: none
}

.logo .wordmark {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem
}

.nav-links a {
  position: relative;
  padding: .55rem .95rem;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--text)
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .28rem;
  translate: -50% 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width .4s var(--ease);
}

.nav-links a:hover::after {
  width: 22px
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .7rem
}

/* Theme toggle */
.theme-toggle {
  position: relative;
  width: 66px;
  height: 34px;
  border-radius: 100px;
  flex: none;
  border: 1px solid var(--border-str);
  background: var(--surface);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 4px;
  transition: background .4s, border-color .4s;
}

.theme-toggle .knob {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 4px 14px -2px rgba(230, 0, 126, .7);
  transition: transform .55s var(--ease);
  transform: translateX(0);
}

html[data-theme="dark"] .theme-toggle .knob {
  transform: translateX(32px)
}

.theme-toggle .ic {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  color: var(--muted);
  transition: color .4s;
}

.theme-toggle .ic svg {
  width: 14px;
  height: 14px
}

html[data-theme="light"] .theme-toggle .ic.sun {
  color: #fff
}

html[data-theme="dark"] .theme-toggle .ic.moon {
  color: #fff
}

.theme-toggle .ic.moon {
  margin-left: 6px
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  place-items: center
}

.burger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: .35s var(--ease)
}

.burger span+span {
  margin-top: 5px
}

body.menu-open .burger span:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg)
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0
}

body.menu-open .burger span:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 880;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
  padding: 0 8vw;
  clip-path: circle(0% at calc(100% - 60px) 44px);
  transition: clip-path .8s var(--ease);
}

body.menu-open .mobile-menu {
  clip-path: circle(150% at calc(100% - 60px) 44px)
}

.mobile-menu a {
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  padding: .35rem 0;
  border-bottom: 1px solid var(--border)
}

.mobile-menu a span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: .8rem;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: .1em
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero h1 {
  margin: 1.5rem 0 1.6rem
}

.hero .lead {
  margin-bottom: 2.4rem
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.8rem;
  flex-wrap: wrap
}

.avatars {
  display: flex
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-left: -12px
}

.avatars img:first-child {
  margin-left: 0
}

.hero-proof p {
  font-size: .85rem;
  color: var(--muted)
}

.hero-proof b {
  color: var(--text)
}

.stars {
  color: #FFB020;
  letter-spacing: 2px;
  font-size: .8rem
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1.06
}

.hv-img {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border)
}

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

.hv-1 {
  inset: 0 18% 22% 0;
  z-index: 2
}

.hv-2 {
  width: 52%;
  aspect-ratio: 1/1.15;
  right: 0;
  top: 14%;
  z-index: 3
}

.hv-3 {
  width: 44%;
  aspect-ratio: 1.25/1;
  left: 12%;
  bottom: 0;
  z-index: 4
}

.float-card {
  position: absolute;
  z-index: 6;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: .9rem 1.1rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .float-card {
  background: rgba(20, 14, 34, .7)
}

.float-card .fc-k {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.float-card .fc-l {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .05em
}

.fc-a {
  top: 6%;
  left: -4%
}

.fc-b {
  bottom: 16%;
  right: -2%
}

.hero-orb {
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  left: -10%;
  top: -10%;
  z-index: 0;
  background: conic-gradient(from 180deg, rgba(109, 40, 217, .35), rgba(230, 0, 126, .35), rgba(109, 40, 217, .35));
  filter: blur(70px);
  border-radius: 50%;
  opacity: .55;
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee-sec {
  padding: 2.2rem 0;
  border-block: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden
}

.marquee {
  display: flex;
  gap: 0;
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding-right: 3.2rem;
  flex: none
}

.marquee-track span {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  letter-spacing: -.01em;
}

.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad)
}

/* ============================================================
   About + stats
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 4.5rem;
  align-items: center
}

.about-media {
  position: relative
}

.about-media .main {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.6
}

.about-media .main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-media .sub {
  position: absolute;
  right: -8%;
  bottom: 8%;
  width: 46%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: var(--shadow);
}

.about-media .sub img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.badge-float {
  position: absolute;
  left: -6%;
  top: 8%;
  background: var(--grad);
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 44px -16px rgba(230, 0, 126, .8);
}

.badge-float b {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -.03em;
  line-height: 1
}

.badge-float span {
  font-size: .7rem;
  opacity: .9;
  letter-spacing: .08em;
  text-transform: uppercase
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2rem 0
}

.about-list li {
  display: flex;
  gap: .9rem;
  list-style: none;
  align-items: flex-start
}

.about-list .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.about-list .tick svg {
  width: 13px;
  height: 13px;
  color: #fff
}

.about-list b {
  display: block;
  font-size: 1rem
}

.about-list p {
  color: var(--muted);
  font-size: .92rem
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 5rem
}

.stat {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--grad);
  opacity: .85
}

.stat .n {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.stat .l {
  color: var(--muted);
  font-size: .85rem;
  margin-top: .4rem
}

/* ============================================================
   Process (horizontal pin)
   ============================================================ */
.process {
  overflow: hidden
}

.proc-track {
  display: flex;
  gap: 1.4rem;
  will-change: transform
}

.proc-card {
  flex: none;
  width: min(420px, 78vw);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.proc-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--grad);
  filter: blur(50px);
  opacity: .35;
}

.proc-step {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.proc-card .big {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  margin: .5rem 0 1rem;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.proc-card h3 {
  font-size: 1.35rem;
  margin-bottom: .6rem
}

.proc-card p {
  color: var(--muted);
  font-size: .94rem
}

.proc-meta {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between
}

/* ============================================================
   Work / case studies — sticky showcase
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start
}

.sc-stage {
  position: sticky;
  top: 13vh;
  height: 74vh;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-2)
}

.sc-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path
}

.sc-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform
}

.sc-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(8, 5, 16, .05) 0%, rgba(8, 5, 16, .35) 55%, rgba(8, 5, 16, .8) 100%)
}

html[data-theme="light"] .sc-layer::after {
  background: linear-gradient(190deg, rgba(20, 8, 30, .02) 0%, rgba(20, 8, 30, .22) 55%, rgba(20, 8, 30, .62) 100%)
}

.sc-caption {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  right: 9rem;
  z-index: 4;
  color: #fff;
  pointer-events: none
}

.sc-caption .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0
}

.sc-caption b {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -.03em;
  line-height: 1.2
}

.sc-caption span {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .75
}

.sc-rail {
  position: absolute;
  left: 1.9rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  border-radius: 2px;
  z-index: 4;
  background: rgba(255, 255, 255, .22)
}

.sc-rail i {
  display: block;
  width: 100%;
  height: 33.33%;
  border-radius: 2px;
  background: linear-gradient(180deg, #7C3AED, #FF3DA6);
  box-shadow: 0 0 14px rgba(230, 0, 126, .8)
}

.sc-badge {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 18px 44px -14px rgba(230, 0, 126, .85);
  transition: transform .5s var(--ease)
}

.sc-badge:hover {
  transform: scale(1.08)
}

.sc-badge .ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.sc-badge .ring text {
  font-size: 9.6px;
  letter-spacing: .155em;
  fill: #fff;
  font-weight: 700;
  text-transform: uppercase
}

.sc-badge .arw {
  width: 20px;
  height: 20px;
  transition: transform .5s var(--ease)
}

.sc-badge:hover .arw {
  transform: translate(3px, -3px)
}

.sc-panels {
  display: flex;
  flex-direction: column
}

.sc-panel {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 0
}

.sc-panel+.sc-panel {
  border-top: 1px solid var(--border)
}

.sc-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem
}

.sc-idx {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.sc-cat {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .4rem .8rem;
  border: 1px solid var(--border);
  border-radius: 100px
}

.sc-panel h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: .9rem
}

.sc-panel>p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch
}

.sc-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: .8rem;
  margin: 2rem 0 1.6rem
}

.sc-kpi {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  background: var(--surface);
  backdrop-filter: blur(12px)
}

.sc-kpi b {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.sc-kpi span {
  font-size: .72rem;
  color: var(--muted);
  display: block;
  margin-top: .35rem;
  line-height: 1.35
}

.sc-tags {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem
}

.sc-tags i {
  font-style: normal;
  font-size: .72rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .3rem .7rem;
  border-radius: 100px
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  align-self: flex-start
}

.sc-link svg {
  width: 16px;
  height: 16px;
  transition: transform .45s var(--ease)
}

.sc-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1.5px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease)
}

.sc-link:hover::after {
  transform: scaleX(1);
  transform-origin: left
}

.sc-link:hover svg {
  transform: translateX(5px)
}

.sc-mobile-img {
  display: none;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow)
}

.sc-mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sc-foot {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem
}

/* ============================================================
   Plans (new section)
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch
}

.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-str)
}

.plan.featured {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  position: relative;
  overflow: hidden
}

.plan.featured::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  filter: blur(40px)
}

.plan.featured .p-price,
.plan.featured h3,
.plan.featured li {
  color: #fff
}

.plan.featured .p-desc,
.plan.featured .p-per {
  color: rgba(255, 255, 255, .82)
}

.plan-tag {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700
}

.plan.featured .plan-tag {
  color: rgba(255, 255, 255, .9)
}

.plan h3 {
  font-size: 1.45rem;
  margin: .7rem 0 .4rem
}

.p-desc {
  color: var(--muted);
  font-size: .88rem;
  min-height: 44px
}

.p-price {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -.045em;
  margin: 1.4rem 0 .2rem;
  line-height: 1
}

.plan:not(.featured) .p-price {
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.p-per {
  font-size: .8rem;
  color: var(--muted)
}

.plan ul {
  list-style: none;
  margin: 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1
}

.plan li {
  display: flex;
  gap: .6rem;
  font-size: .9rem;
  align-items: flex-start
}

.plan li svg {
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 4px;
  color: var(--magenta)
}

.plan.featured li svg {
  color: #fff
}

.plan .btn {
  justify-content: center;
  width: 100%
}

.plan.featured .btn {
  background: #fff;
  color: #12091E;
  box-shadow: none
}

.plan.featured .btn::after {
  display: none
}

/* ============================================================
   Testimonials
   ============================================================ */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.tst {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .4s;
}

.tst:hover {
  transform: translateY(-6px);
  border-color: var(--border-str)
}

.tst .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.4rem;
  line-height: .6;
  color: var(--magenta);
  opacity: .5
}

.tst p {
  font-size: 1rem;
  line-height: 1.65
}

.tst .who {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border)
}

.tst .who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover
}

.tst .who b {
  display: block;
  font-size: .92rem
}

.tst .who span {
  font-size: .78rem;
  color: var(--muted)
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: start
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color .3s
}

.faq-q:hover {
  color: var(--magenta)
}

.faq-ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-str);
  display: grid;
  place-items: center;
  flex: none;
  transition: .45s var(--ease)
}

.faq-item.open .faq-ic {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: rotate(135deg)
}

.faq-ic svg {
  width: 14px;
  height: 14px
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease)
}

.faq-a p {
  color: var(--muted);
  font-size: .95rem;
  padding-bottom: 1.5rem;
  max-width: 62ch
}

/* ============================================================
   CTA
   ============================================================ */
.cta-box {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.6rem, 5vw, 5rem);
  background: var(--grad);
  color: #fff;
  text-align: center;
  box-shadow: 0 40px 90px -40px rgba(230, 0, 126, .75);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,.14)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: .6
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  filter: blur(80px);
  top: -30%;
  left: -10%
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem
}

.cta-box h2 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem)
}

.cta-box p {
  max-width: 52ch;
  color: rgba(255, 255, 255, .88)
}

.cta-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: center
}

.cta-box .btn-white {
  background: #fff;
  color: #14081F
}

.cta-box .btn-white:hover {
  transform: translateY(-3px)
}

.cta-box .btn-outline {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff
}

.cta-box .btn-outline:hover {
  background: rgba(255, 255, 255, .14)
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  background: var(--bg-2)
}

.f-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1.2fr;
  gap: 3rem
}

.f-brand p {
  color: var(--muted);
  font-size: .92rem;
  max-width: 34ch;
  margin: 1.2rem 0 1.5rem
}

.socials {
  display: flex;
  gap: .6rem
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: .4s var(--ease);
  color: var(--muted)
}

.socials a:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px)
}

.socials svg {
  width: 17px;
  height: 17px
}

.f-col h4 {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 700
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.f-col a {
  font-size: .92rem;
  color: var(--muted);
  transition: color .3s, padding-left .3s
}

.f-col a:hover {
  color: var(--text);
  padding-left: 5px
}

.f-contact a {
  display: flex;
  gap: .6rem;
  align-items: center;
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: .8rem;
  transition: color .3s
}

.f-contact a:hover {
  color: var(--text)
}

.f-contact svg {
  width: 16px;
  height: 16px;
  color: var(--magenta);
  flex: none
}

.f-bottom {
  margin-top: 3.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--muted);
}

.f-big {
  font-size: clamp(3.5rem, 15vw, 13rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .85;
  text-align: center;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .16;
  margin-top: 2rem;
  user-select: none;
}

/* Reveal defaults */
.rv {
  opacity: 0
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .14em;
  margin-bottom: -.14em
}

.word i {
  display: inline-block;
  font-style: inherit;
  will-change: transform
}

/* Scroll progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--grad);
  z-index: 950;
  box-shadow: 0 0 12px var(--magenta)
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  left: 0;
  top: 0;
  background: radial-gradient(circle, rgba(230, 0, 126, .13), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .6s;
}

/* WhatsApp float */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .7);
  transition: transform .45s var(--ease);
}

.wa:hover {
  transform: scale(1.1) translateY(-3px)
}

.wa svg {
  width: 26px;
  height: 26px
}

/* ============================================================
   Responsive
   ============================================================ */
@media(max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem
  }

  .hero-visual {
    max-width: 520px;
    margin-inline: auto;
    width: 100%
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto
  }

  .tst-grid {
    grid-template-columns: 1fr
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }

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

  .nav-links {
    display: none
  }

  .burger {
    display: grid
  }

  .about-media {
    max-width: 460px;
    margin-inline: auto
  }

  .showcase {
    grid-template-columns: 1fr
  }

  .sc-stage {
    display: none
  }

  .sc-mobile-img {
    display: block
  }

  .sc-panel {
    min-height: 0;
    padding: 2.6rem 0
  }

  .sc-panel:first-child {
    padding-top: 0
  }
}

@media(max-width:720px) {
  .f-grid {
    grid-template-columns: 1fr
  }

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

  .hero {
    padding-top: 7.5rem
  }

  .fc-a {
    left: 0
  }

  .fc-b {
    right: 0
  }

  .cursor-glow {
    display: none
  }

  .badge-float {
    left: 0
  }

  .about-media .sub {
    right: 0
  }

  .nav-right .btn-primary {
    display: none
  }

  .logo svg {
    width: 34px;
    height: 34px
  }

  .logo .wordmark {
    font-size: 1.5rem
  }

  .eyebrow {
    font-size: .64rem;
    letter-spacing: .14em;
    padding: .45rem .8rem
  }

  .stats {
    margin-top: 3.2rem
  }

  .float-card {
    padding: .7rem .9rem
  }

  .float-card .fc-k {
    font-size: 1.2rem
  }

  .float-card .fc-l {
    font-size: .62rem
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  .rv {
    opacity: 1 !important
  }
}

/* ============================================================
   ============================================================
   GLOBAL NAV v2 — dropdown + active states
   ============================================================
   ============================================================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center
}

.nav-links .nav-item>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .9rem;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .3s;
}

.nav-links .nav-item>a:hover,
.nav-links .nav-item>a.active {
  color: var(--text)
}

.nav-links .nav-item>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .3rem;
  translate: -50% 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width .4s var(--ease);
}

.nav-links .nav-item>a:hover::after,
.nav-links .nav-item>a.active::after {
  width: 20px
}

.nav-links .chev {
  width: 13px;
  height: 13px;
  transition: transform .4s var(--ease);
  opacity: .7
}

.has-drop:hover .chev {
  transform: rotate(180deg)
}

.drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  width: min(680px, 90vw);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
  backdrop-filter: blur(24px);
}

html[data-theme="dark"] .drop {
  background: rgba(16, 11, 28, .92)
}

.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.drop::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px
}

.drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem
}

.drop-grid a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 14px;
  transition: background .3s, transform .3s var(--ease);
}

.drop-grid a:hover {
  background: var(--surface);
  transform: translateX(3px)
}

.drop-grid b {
  display: block;
  font-size: .9rem;
  font-weight: 600
}

.drop-grid span {
  display: block;
  font-size: .76rem;
  color: var(--muted);
  margin-top: .1rem
}

.drop-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .8rem;
  padding: .9rem 1rem 0;
  border-top: 1px solid var(--border);
}

.drop-foot span {
  font-size: .82rem;
  color: var(--muted)
}

.drop-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.drop-cta svg {
  width: 14px;
  height: 14px;
  color: var(--magenta);
  transition: transform .4s var(--ease)
}

.drop-cta:hover svg {
  transform: translateX(4px)
}

/* Mobile menu v2 */
.mobile-menu {
  align-items: stretch;
  padding: 0
}

.mm-scroll {
  width: 100%;
  max-height: 100svh;
  overflow-y: auto;
  padding: 6.5rem 8vw 3rem;
  display: flex;
  flex-direction: column;
}

.mm-scroll>a,
.mm-toggle {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  text-align: left;
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  justify-content: flex-start;
}

.mm-scroll span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  vertical-align: super
}

.mm-toggle svg {
  width: 20px;
  height: 20px;
  margin-left: auto;
  transition: transform .4s var(--ease)
}

.mm-group.open .mm-toggle svg {
  transform: rotate(135deg)
}

.mm-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease)
}

.mm-sub a {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  padding: .55rem 0 .55rem 1.1rem;
  border-left: 2px solid var(--border);
  margin-left: .2rem
}

.mm-sub a:hover {
  color: var(--text);
  border-color: var(--magenta)
}

.mm-foot {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.mm-foot a {
  font-size: .95rem;
  color: var(--muted)
}

@media(max-width:1180px) {
  .nav-links {
    display: none
  }

  .burger {
    display: grid
  }
}

@media(max-width:600px) {
  .nav-cta {
    display: none
  }
}

/* ============================================================
   PAGE HERO (all inner pages)
   ============================================================ */
body.inner {
  padding-top: 0
}

.page-hero {
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden
}

.page-hero .wrap {
  position: relative;
  z-index: 2
}

.ph-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem;
  align-items: end
}

.page-id-12 .ph-grid,
.page-id-13 .ph-grid,
.page-id-14 .ph-grid {
  grid-template-columns: 1fr;
}

.ph-grid.single {
  grid-template-columns: 1fr;
  max-width: none
}

.crumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  flex-wrap: wrap
}

.crumbs a {
  transition: color .3s
}

.crumbs a:hover {
  color: var(--magenta)
}

.crumbs i {
  font-style: normal;
  opacity: .5
}

.crumbs b {
  color: var(--text);
  font-weight: 500
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  margin-bottom: 1.3rem
}

.page-hero .lead {
  max-width: 60ch
}

.ph-side {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.ph-meta {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  backdrop-filter: blur(14px)
}

.ph-meta dt {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem
}

.ph-meta dd {
  font-size: .98rem;
  font-weight: 600
}

.ph-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem
}

/* ============================================================
   Generic content blocks
   ============================================================ */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center
}

.split-2.narrow-l {
  grid-template-columns: .85fr 1.15fr
}

.split-2.narrow-r {
  grid-template-columns: 1.15fr .85fr
}

.media-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative
}

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

.media-frame.tall {
  aspect-ratio: 4/5
}

.media-frame.wide {
  aspect-ratio: 16/10
}

.media-frame.square {
  aspect-ratio: 1/1
}

.tick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.8rem 0
}

.tick-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start
}

.tick-list .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
  display: grid;
  place-items: center;
  margin-top: 3px
}

.tick-list .tick svg {
  width: 12px;
  height: 12px;
  color: #fff
}

.tick-list b {
  display: block;
  font-size: .98rem
}

.tick-list p {
  color: var(--muted);
  font-size: .9rem
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.icard {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.9rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s;
}

.icard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--border-str)
}

.icard .ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px -10px rgba(230, 0, 126, .7)
}

.icard .ico svg {
  width: 21px;
  height: 21px
}

.icard h3 {
  font-size: 1.14rem;
  margin-bottom: .5rem
}

.icard p {
  color: var(--muted);
  font-size: .9rem
}

.icard .num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.9rem;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .7
}

/* Numbered steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: st
}

.step {
  position: relative;
  padding-top: 2.4rem;
  border-top: 2px solid var(--border)
}

.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 38%;
  height: 2px;
  background: var(--grad);
}

.step .n {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.step h3 {
  font-size: 1.15rem;
  margin: .5rem 0 .5rem
}

.step p {
  color: var(--muted);
  font-size: .9rem
}

/* Stat strip */
.statstrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem
}

/* Quote block */
.quote-block {
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: "“";
  position: absolute;
  top: -1.4rem;
  left: 1.6rem;
  font-family: var(--font-serif);
  font-size: 9rem;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .35
}

.quote-block p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  position: relative;
  z-index: 2;
  max-width: 60ch
}

.quote-block .who {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.6rem
}

.quote-block .who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover
}

.quote-block .who b {
  display: block;
  font-size: .95rem
}

.quote-block .who span {
  font-size: .8rem;
  color: var(--muted)
}

/* ============================================================
   About page
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

.value {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  background: var(--surface);
  backdrop-filter: blur(14px)
}

.value .k {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.value h3 {
  font-size: 1.15rem;
  margin: .7rem 0 .5rem
}

.value p {
  color: var(--muted);
  font-size: .9rem
}

.timeline {
  position: relative;
  padding-left: 2.2rem
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: .6rem;
  bottom: .6rem;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--magenta), transparent)
}

.tl-item {
  position: relative;
  padding-bottom: 2.4rem
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: .45rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px var(--bg), 0 0 16px rgba(230, 0, 126, .7)
}

.tl-item .yr {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted)
}

.tl-item h3 {
  font-size: 1.2rem;
  margin: .35rem 0 .45rem
}

.tl-item p {
  color: var(--muted);
  font-size: .92rem;
  max-width: 56ch
}

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.member {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease)
}

.member:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.5);
  transition: filter .6s var(--ease), transform 1s var(--ease)
}

.member:hover img {
  filter: grayscale(0);
  transform: scale(1.06)
}

.member .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.3rem 1.2rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 16, .9))
}

.member .info b {
  display: block;
  font-size: 1.02rem
}

.member .info span {
  font-size: .78rem;
  opacity: .8
}

/* ============================================================
   Services listing — alternating rows
   ============================================================ */
.rowlist {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5.5rem)
}

.srow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center
}

.srow:nth-child(even) .srow-media {
  order: 2
}

.srow-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3
}

.srow-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease)
}

.srow:hover .srow-media img {
  transform: scale(1.06)
}

.srow-media .badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: var(--grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 100px
}

.srow-body .kicker {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.srow-body h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin: .6rem 0 .9rem
}

.srow-body p {
  color: var(--muted);
  font-size: .98rem;
  max-width: 52ch
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.3rem 0 1.6rem
}

.chips i {
  font-style: normal;
  font-size: .74rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .32rem .75rem;
  border-radius: 100px;
  background: var(--surface)
}

/* ============================================================
   Case study detail
   ============================================================ */
.cs-hero-img {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/8
}

.cs-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cs-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0
}

.cs-fact {
  border-top: 2px solid var(--border);
  padding-top: 1.1rem;
  position: relative
}

.cs-fact::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 40%;
  height: 2px;
  background: var(--grad)
}

.cs-fact dt {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem
}

.cs-fact dd {
  font-size: 1rem;
  font-weight: 600
}

.cs-body {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start
}

.cs-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem)
}

.cs-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem
}

.next-proj {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 2.4rem;
  margin-top: 1rem;
}

.next-proj span {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.next-proj a {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: gap .4s var(--ease)
}

.next-proj a:hover {
  gap: 1.4rem
}

.next-proj svg {
  width: 26px;
  height: 26px;
  color: var(--magenta)
}

/* ============================================================
   Blog
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.post {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s;
}

.post:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--border-str)
}

.post-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease)
}

.post:hover .post-img img {
  transform: scale(1.06)
}

.post-img .cat {
  position: absolute;
  left: .9rem;
  top: .9rem;
  background: var(--grad);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .34rem .7rem;
  border-radius: 100px
}

.post-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .6rem
}

.post-meta {
  font-size: .74rem;
  color: var(--muted);
  display: flex;
  gap: .6rem;
  align-items: center
}

.post-meta i {
  font-style: normal;
  opacity: .5
}

.post-body h3 {
  font-size: 1.14rem;
  line-height: 1.3
}

.post-body p {
  color: var(--muted);
  font-size: .88rem
}

.post-more {
  margin-top: auto;
  font-size: .84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.post.featured {
  grid-column: 1/-1;
  flex-direction: row
}

.post.featured .post-img {
  flex: 0 0 52%;
  aspect-ratio: auto
}

.post.featured .post-body {
  padding: clamp(1.8rem, 3.5vw, 3rem);
  justify-content: center
}

.post.featured h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem)
}

.post.featured p {
  font-size: .98rem
}

.article {
  display: grid;
  grid-template-columns: 1fr minmax(0, 42rem) 1fr
}

.article>* {
  grid-column: 2
}

.article .full {
  grid-column: 1/-1
}

.prose p,
.prose ul,
.prose ol,
.prose h2,
.prose h3,
.prose blockquote,
.prose figure {
  margin-bottom: 1.4rem
}

.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-top: 2.6rem
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 1.8rem
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75
}

.prose strong {
  color: var(--text)
}

.prose ul,
.prose ol {
  padding-left: 1.3rem
}

.prose li {
  margin-bottom: .6rem
}

.prose blockquote {
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  padding-left: 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text)
}

.prose figure img {
  border-radius: 20px;
  border: 1px solid var(--border)
}

.prose figcaption {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .6rem;
  text-align: center
}

.prose a:not(.btn) {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 3px
}

.share {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border)
}

.share span {
  font-size: .78rem;
  color: var(--muted);
  margin-right: .3rem
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start
}

.form-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .form-card,
html[data-theme="dark"] .rq-form {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px)
}

.form-row,
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.field,
.f-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem
}

.field label,
.f-group label {
  display: block;
  margin-bottom: .4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted)
}

.field input,
.field select,
.field textarea,
.f-group input,
.f-group select,
.f-group textarea {
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-str);
  border-radius: 14px;
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
}

.field select,
.f-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='grey' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 3rem;
}

html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .f-group input,
html[data-theme="dark"] .f-group select,
html[data-theme="dark"] .f-group textarea {
  background: rgba(255, 255, 255, .04)
}

.field textarea,
.f-group textarea {
  min-height: 130px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(230, 0, 126, .14);
}

.field .hint,
.f-group .hint {
  font-size: .72rem;
  color: var(--muted)
}

.check,
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  cursor: pointer;
}

.check input,
.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--magenta);
  margin-top: 2px;
  flex: none
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1rem
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: transform .5s var(--ease), border-color .4s;
}

.info-card:hover {
  transform: translateX(5px);
  border-color: var(--border-str)
}

.info-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
  box-shadow: 0 10px 24px -10px rgba(230, 0, 126, .7)
}

.info-card .ic svg {
  width: 20px;
  height: 20px
}

.info-card h3 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
  font-weight: 700
}

.info-card p,
.info-card a {
  font-size: 1.02rem;
  font-weight: 600
}

.info-card small {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: .25rem
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--bg-2)
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.85)
}

html[data-theme="dark"] .map-frame iframe {
  filter: invert(.9) hue-rotate(180deg) saturate(.7)
}

/* ============================================================
   404
   ============================================================ */
.err {
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.4rem;
  padding: 8rem 0 4rem
}

.err .code {
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .85;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.err p {
  color: var(--muted);
  max-width: 46ch
}

.err-links {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .6rem
}

/* ============================================================
   Responsive — inner pages
   ============================================================ */
@media(max-width:1024px) {
  .ph-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem
  }

  .split-2,
  .split-2.narrow-l,
  .split-2.narrow-r {
    grid-template-columns: 1fr
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr)
  }

  .card-grid.three {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .values {
    grid-template-columns: 1fr
  }

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

  .srow {
    grid-template-columns: 1fr;
    gap: 1.8rem
  }

  .srow:nth-child(even) .srow-media {
    order: 0
  }

  .cs-facts {
    grid-template-columns: repeat(2, 1fr)
  }

  .cs-body {
    grid-template-columns: 1fr
  }

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

  .post.featured {
    flex-direction: column
  }

  .post.featured .post-img {
    flex: none;
    aspect-ratio: 16/9
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .article {
    grid-template-columns: 1fr
  }

  .article>* {
    grid-column: 1
  }
}

@media(max-width:720px) {

  .card-grid.four,
  .card-grid.three {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .team {
    grid-template-columns: 1fr 1fr
  }

  .cs-facts {
    grid-template-columns: 1fr 1fr
  }

  .post-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .cs-gallery {
    grid-template-columns: 1fr
  }

  .mini-kpis {
    gap: 1.1rem
  }

  .page-hero {
    padding-top: 7.5rem
  }
}

/* --- polish pass --- */
.page-hero+section.sec-pad {
  padding-top: clamp(1rem, 3vw, 2.5rem)
}

.field label .hint {
  font-weight: 400;
  opacity: .7;
  text-transform: none;
  letter-spacing: 0
}

.ph-side .media-frame {
  width: 100%
}

@media(min-width:1025px) {
  .ph-grid {
    align-items: center
  }
}

/* --- burger: absolute bars so the X is symmetrical --- */
.burger {
  position: relative;
  display: none
}

@media(max-width:1180px) {
  .burger {
    display: block
  }
}

.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.7px;
  margin-left: -9px;
  margin-top: 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .25s;
}

.burger span:nth-child(1) {
  transform: translateY(-6px)
}

.burger span:nth-child(2) {
  transform: translateY(0)
}

.burger span:nth-child(3) {
  transform: translateY(6px)
}

body.menu-open .burger span:nth-child(1) {
  transform: rotate(45deg)
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0
}

body.menu-open .burger span:nth-child(3) {
  transform: rotate(-45deg)
}

/* ============================================================
   HOME — "What we do" expanding service panels
   ============================================================ */
.svcx {
  display: flex;
  gap: .9rem;
  height: min(600px, 72vh)
}

.svcx-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  isolation: isolate;
  background: var(--bg-2);
  display: block;
  box-shadow: var(--shadow);
}

.svcx-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: grayscale(.6) brightness(.85);
  transition: filter .8s var(--ease);
}

.svcx-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity .6s var(--ease);
  background: linear-gradient(200deg, rgba(8, 5, 16, .2) 0%, rgba(8, 5, 16, .68) 52%, rgba(8, 5, 16, .95) 100%);
}

.svcx-panel .wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: linear-gradient(200deg, rgba(109, 40, 217, .22) 0%, rgba(155, 31, 181, .55) 55%, rgba(230, 0, 126, .8) 100%);
}

.svcx-panel.on img {
  filter: grayscale(0) brightness(1)
}

.svcx-num {
  position: absolute;
  top: 1.3rem;
  left: 1.4rem;
  z-index: 5;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1;
  opacity: .8;
}

.svcx-plus {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .5s var(--ease), background .5s;
}

.svcx-panel.on .svcx-plus {
  background: #fff;
  color: #14081F;
  border-color: transparent;
  transform: rotate(45deg)
}

.svcx-plus svg {
  width: 14px;
  height: 14px
}

.svcx-collapsed {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 5;
  display: grid;
  place-items: center
}

.svcx-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.svcx-open {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 1.8rem;
  color: #fff;
  width: clamp(260px, 25vw, 340px);
  opacity: 0;
}

.svcx-open .line {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8
}

.svcx-open h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: .5rem 0 .6rem;
  line-height: 1.1
}

.svcx-open p {
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .86)
}

.svcx-open .chips {
  margin: 1rem 0 1.1rem
}

.svcx-open .chips i {
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .1)
}

.svcx-go {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: #fff
}

.svcx-go svg {
  width: 15px;
  height: 15px;
  transition: transform .4s var(--ease)
}

.svcx-panel:hover .svcx-go svg {
  transform: translateX(5px)
}

.svcx-foot {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem
}

@media(max-width:900px) {
  .svcx {
    flex-direction: column;
    height: 950px;
    gap: .7rem
  }

  .svcx-collapsed {
    left: 1.4rem;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    place-items: start
  }

  .svcx-vert {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.05rem
  }

  .svcx-num {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 3.6rem;
    font-size: 1.15rem
  }

  .svcx-plus {
    top: 50%;
    transform: translateY(-50%)
  }

  .svcx-panel.on .svcx-plus {
    top: 1.15rem;
    transform: rotate(45deg)
  }

  .svcx-open {
    width: 100%;
    padding: 1.2rem
  }

  .svcx-open p {
    font-size: .86rem
  }

  .svcx-panel.on .svcx-collapsed,
  .svcx-panel.on .svcx-num {
    display: none
  }
}

/* ============================================================
   CASE STUDIES — uniform project grid
   ============================================================ */
.pfilter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.4rem
}

.pfilter button {
  font-size: .85rem;
  font-weight: 600;
  padding: .6rem 1.15rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface);
  backdrop-filter: blur(12px);
  transition: color .3s, border-color .3s, background .4s, box-shadow .4s;
}

.pfilter button:hover {
  color: var(--text);
  border-color: var(--border-str)
}

.pfilter button.on {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 26px -12px rgba(230, 0, 126, .75);
}

.pcount {
  margin-left: auto;
  font-size: .8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem
}

.proj {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  isolation: isolate;
  background: var(--bg-2);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .4s;
  will-change: transform, clip-path;
}

.proj:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-str)
}

.proj-img {
  position: absolute;
  top: -7%;
  bottom: -7%;
  left: 0;
  right: 0;
  overflow: hidden
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease)
}

.proj:hover .proj-img img {
  transform: scale(1.07)
}

.proj::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 5, 16, .08) 0%, rgba(8, 5, 16, .34) 42%, rgba(8, 5, 16, .92) 100%);
}

.proj-idx {
  position: absolute;
  top: 1.15rem;
  left: 1.4rem;
  z-index: 3;
  color: #fff;
  opacity: .8;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1;
}

.proj-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 3;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .36rem .72rem;
  border-radius: 100px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
}

.proj-badge.live {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 8px 20px -10px rgba(230, 0, 126, .8)
}

.proj-inner {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 1.5rem;
  color: #fff
}

.proj-cat {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .76
}

.proj h3 {
  font-size: 1.22rem;
  margin: .35rem 0 0;
  line-height: 1.2
}

.proj-kpi {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .95rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .8rem .4rem .45rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(8px);
}

.proj-kpi i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none
}

.proj-kpi i svg {
  width: 11px;
  height: 11px;
  color: #fff
}

.proj-go {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .45s var(--ease), transform .55s var(--ease), background .4s;
  backdrop-filter: blur(8px);
}

.proj:hover .proj-go {
  opacity: 1;
  transform: scale(1);
  background: var(--grad);
  border-color: transparent
}

.proj-go svg {
  width: 17px;
  height: 17px
}

.proj-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: .95rem;
  display: none;
}

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

@media(max-width:620px) {
  .proj-grid {
    grid-template-columns: 1fr
  }

  .pfilter {
    gap: .4rem
  }

  .pfilter button {
    font-size: .78rem;
    padding: .5rem .9rem
  }

  .pcount {
    margin-left: 0;
    width: 100%;
    margin-top: .3rem
  }
}

span.wpcf7-form-control-wrap {
  display: in;
  width: 100%;
}