/* ============================================================
   XENA AGENCY — Stylesheet (wibify-inspired)
   Fonts: Switzer (text) · Instrument Serif (accents) · JetBrains Mono (labels)
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0a0b;
  --bg-soft:   #0e0e10;
  --card:      #121214;
  --card-2:    #161619;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #fafafa;
  --muted:     #9a9a95;
  --muted-2:   #6e6e69;
  --mono:      #c8c7c2;
  --lime:      #AEF434;
  --lime-dim:  rgba(174,244,52,0.14);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 40px);
  --sec-y: clamp(72px, 10vw, 128px);

  --font-sans: "Switzer", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--lime); color: #000; }

/* film grain / vignette overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(174,244,52,0.05), transparent 60%),
    radial-gradient(100% 100% at 100% 0%, rgba(174,244,52,0.03), transparent 50%);
}

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* serif italic accent */
em, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: 0;
}

/* underlined serif accent */
.ul {
  position: relative;
  white-space: nowrap;
}
.ul::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.4s;
}
.visible .ul::after, .in .ul::after, .hero .ul::after { transform: scaleX(1); }

/* ---------- Mono section label ---------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mono);
}
.label .line { width: 36px; height: 1px; background: var(--muted-2); }
.label .num { color: var(--lime); }

/* ---------- Headings ---------- */
.h-xl {
  font-weight: 600;
  font-size: clamp(2.7rem, 7.2vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.h-lg {
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h-lg em, .h-xl em { letter-spacing: -0.01em; }

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--lime);
  color: #0a0a0b;
  border-color: var(--lime);
  font-weight: 600;
}
.btn-primary:hover { background: #c2ff52; box-shadow: 0 0 40px -8px rgba(174,244,52,0.5); }

.btn-ghost { color: var(--text); }
.btn-ghost:hover { border-color: var(--lime); color: var(--text); background: rgba(174,244,52,0.06); }
.btn-ghost .dot { width: 7px; height: 7px; background: var(--lime); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 9px 9px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12,12,14,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled { background: rgba(12,12,14,0.92); box-shadow: 0 12px 40px -12px rgba(0,0,0,0.7); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .mark { width: 26px; height: 31px; }
.nav-logo .name { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .name b { font-weight: 800; font-size: 1.02rem; letter-spacing: 0.02em; }
.nav-logo .name small {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin-top: 3px;
}

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav .btn { padding: 11px 18px; border-radius: 9px; }

.burger {
  width: 42px; height: 42px;
  display: grid; place-content: center; gap: 5px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s;
}
.burger:hover { border-color: var(--line-2); }
.burger span { display: block; width: 17px; height: 1.5px; background: var(--text); }

/* ---------- Mobile menu ---------- */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8,8,9,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mmenu.open { transform: translateY(0); }
.mmenu a { font-size: 2.4rem; font-weight: 600; letter-spacing: -0.03em; padding: 8px 0; }
.mmenu a:hover { color: var(--lime); }
.mmenu .close {
  position: absolute; top: 26px; right: 26px;
  font-size: 1.6rem; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 9px;
}
.mmenu .btn-primary { font-size: 1.1rem; align-self: flex-start; margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero .wrap { width: 100%; position: relative; z-index: 3; }

#particles { position: absolute; inset: 0; z-index: 1; }
.hero-glow {
  position: absolute; z-index: 0;
  top: 50%; right: -5%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(174,244,52,0.12), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}

/* hero 3D visual */
.hero-visual {
  position: absolute; z-index: 2;
  top: 50%; right: 4%;
  transform: translateY(-50%);
  width: min(46vw, 560px); aspect-ratio: 1;
  pointer-events: none;
}
.hero-sphere {
  position: absolute; inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #2a2c22, #0c0d0a 64%),
    #0a0a0b;
  box-shadow:
    inset -30px -30px 80px rgba(0,0,0,0.8),
    inset 20px 20px 60px rgba(174,244,52,0.06),
    0 0 120px -20px rgba(174,244,52,0.25);
}
.hero-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(174,244,52,0.22);
  transform: rotateX(74deg) rotateZ(8deg);
  box-shadow: 0 0 40px -6px rgba(174,244,52,0.18);
  animation: spin 26s linear infinite;
}
.hero-ring::after {
  content: ""; position: absolute; inset: -9% ;
  border-radius: 50%;
  border: 1px solid rgba(174,244,52,0.10);
}
@keyframes spin { to { transform: rotateX(74deg) rotateZ(368deg); } }

.hero-tag { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; max-width: 14ch; }
.hero .lead { margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.stat { display: flex; align-items: center; gap: 10px; }
.stat .ico {
  width: 30px; height: 30px;
  display: grid; place-content: center;
  border: 1px solid var(--line-2);
  font-size: 0.8rem; color: var(--lime);
}
.stat b { font-weight: 700; font-size: 0.95rem; }
.stat span {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted-2);
}
.hero-stats .sep { width: 4px; height: 4px; background: var(--muted-2); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; z-index: 2; }
.section { padding-block: var(--sec-y); }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .label { margin-bottom: 26px; }

/* ============================================================
   WORK
   ============================================================ */
.work-list { border-top: 1px solid var(--line); }
.work-item {
  display: grid;
  grid-template-columns: 56px 1fr auto auto 40px;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3.4vw, 38px) 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.work-item:hover { padding-left: 26px; background: linear-gradient(90deg, rgba(174,244,52,0.05), transparent 40%); }
.work-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted-2); }
.work-name {
  font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em; line-height: 1;
  transition: color 0.3s;
}
.work-item:hover .work-name { color: var(--lime); }
.work-meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.work-meta .d { color: var(--muted-2); }
.work-year { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2); }
.work-arrow {
  font-size: 1.1rem; color: var(--muted-2);
  transition: transform 0.35s var(--ease), color 0.3s;
}
.work-item:hover .work-arrow { color: var(--lime); transform: translate(4px,-4px); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc {
  position: relative;
  background: var(--bg);
  padding: clamp(28px, 3.4vw, 48px);
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.svc:hover { background: var(--card); }
.svc-n {
  position: absolute; top: 18px; right: 24px;
  font-weight: 700; font-size: 5.5rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  transition: -webkit-text-stroke 0.4s;
}
.svc:hover .svc-n { -webkit-text-stroke: 1px rgba(174,244,52,0.18); }
.svc-ico {
  width: 50px; height: 50px;
  display: grid; place-content: center;
  border: 1px solid var(--line-2);
  margin-bottom: 80px;
  font-size: 1.2rem; color: var(--lime);
  transition: border-color 0.4s, background 0.4s;
}
.svc:hover .svc-ico { border-color: rgba(174,244,52,0.4); background: var(--lime-dim); }
.svc h3 { font-weight: 600; font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 14px; }
.svc p { color: var(--muted); font-size: 0.95rem; max-width: 42ch; margin-bottom: 26px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 22px; border-top: 1px solid var(--line); }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mono);
  padding: 7px 11px;
  border: 1px solid var(--line);
  transition: border-color 0.3s, color 0.3s;
}
.chip::before { content: ""; width: 5px; height: 5px; background: var(--lime); }
.svc:hover .chip { border-color: var(--line-2); }

/* ============================================================
   PROCESS
   ============================================================ */
.proc-list { display: flex; flex-direction: column; gap: 22px; }
.proc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  min-height: 340px;
}
.proc-visual {
  position: relative;
  background:
    radial-gradient(circle at 50% 60%, rgba(174,244,52,0.10), transparent 60%),
    linear-gradient(180deg, #0d0e0b, #0a0a0b);
  display: grid; place-content: center;
  overflow: hidden;
}
.proc-orb {
  width: 180px; height: 180px; border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 40% 35%, rgba(174,244,52,0.5), rgba(174,244,52,0.05) 60%, transparent 70%);
  box-shadow: 0 0 80px -10px rgba(174,244,52,0.4);
}
.proc-orb::before, .proc-orb::after {
  content: ""; position: absolute; inset: -30px; border-radius: 50%;
  border: 1px solid rgba(174,244,52,0.18);
  transform: rotateX(72deg);
}
.proc-orb::after { inset: -60px; border-color: rgba(174,244,52,0.08); }
.proc-body { padding: clamp(28px, 3.2vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.proc-step { font-family: var(--font-mono); font-size: 0.78rem; color: var(--lime); margin-bottom: 18px; letter-spacing: 0.1em; }
.proc-body h3 { font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.proc-body p { color: var(--muted); max-width: 44ch; margin-bottom: 24px; }
.proc-tags { display: flex; flex-wrap: wrap; gap: 18px; }
.proc-tags span {
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mono);
  display: inline-flex; align-items: center; gap: 8px;
}
.proc-tags span::before { content: ""; width: 5px; height: 5px; background: var(--lime); }

/* ============================================================
   ABOUT / STUDIO
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 30%, rgba(174,244,52,0.18), transparent 55%),
    linear-gradient(160deg, #131410, #0a0a0b);
  overflow: hidden;
  display: grid; place-content: center;
}
.about-visual .tag {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mono);
  display: inline-flex; align-items: center; gap: 8px;
}
.about-visual .tag::before { content: ""; width: 6px; height: 6px; background: var(--lime); }
.about-visual .glyph { width: 50%; opacity: 0.9; }
.about-text h2 { margin-bottom: 28px; }
.about-text p { color: var(--muted); margin-bottom: 18px; max-width: 50ch; }
.about-text p strong { color: var(--text); font-weight: 600; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-top: 34px;
}
.about-stats div { background: var(--bg); padding: 22px; }
.about-stats .k { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.about-stats .v { font-weight: 700; font-size: 1.8rem; letter-spacing: -0.02em; }
.about-stats .v small { font-family: var(--font-serif); font-style: italic; color: var(--lime); font-size: 1.4rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(20px, 2.6vw, 30px) 8px;
  font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.4rem); letter-spacing: -0.02em;
  text-align: left;
  transition: color 0.3s, padding 0.4s var(--ease);
}
.faq-q:hover { color: var(--lime); padding-left: 18px; }
.faq-ico { flex: none; width: 26px; height: 26px; display: grid; place-content: center; border: 1px solid var(--line-2); font-size: 1rem; transition: transform 0.4s var(--ease), color 0.3s; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: var(--lime); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 8px clamp(22px, 2.6vw, 32px); color: var(--muted); max-width: 70ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-left h2 { margin-bottom: 28px; }
.contact-left p { color: var(--muted); max-width: 42ch; margin-bottom: 28px; }
.contact-meta { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); display: flex; gap: 16px; align-items: center; }
.contact-meta .dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }

.form-card { border: 1px solid var(--line); background: var(--card); padding: clamp(26px, 3vw, 42px); }
.form-card .label { margin-bottom: 8px; }
.form-card .form-title { font-weight: 600; font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field label .req { color: var(--lime); }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  padding: 13px 15px; font-size: 0.92rem; color: var(--text);
  transition: border-color 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(174,244,52,0.5); }
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--muted-2); margin-top: 16px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 90px); padding-bottom: 36px; position: relative; z-index: 2; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.foot-brand .mark { width: 38px; height: 45px; margin-bottom: 22px; }
.foot-brand p { font-weight: 600; font-size: 1.5rem; line-height: 1.15; letter-spacing: -0.03em; max-width: 16ch; }
.foot-col h4 { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { color: var(--muted); font-size: 0.92rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.foot-col a:hover { color: var(--lime); }
.foot-col a .ar { font-size: 0.7rem; color: var(--muted-2); transition: color 0.3s; }
.foot-col a:hover .ar { color: var(--lime); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  margin-top: clamp(48px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--muted-2);
  text-transform: uppercase;
}
.foot-bottom .links { display: flex; gap: 22px; }
.foot-bottom .links a:hover { color: var(--lime); }

/* ============================================================
   TEXT SPLIT — masked word/char reveal (wibify signature)
   ============================================================ */
.split { opacity: 1; }
.rw, .rc {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  /* room for descenders so the mask doesn't clip g/p/y */
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.rw-i {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.75s var(--ease);
  will-change: transform;
}
.split.in .rw-i { transform: none; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.rd-1 { transition-delay: 0.08s; }
.rd-2 { transition-delay: 0.16s; }
.rd-3 { transition-delay: 0.24s; }
.rd-4 { transition-delay: 0.32s; }

/* hero load animation */
.hero .anim { opacity: 0; transform: translateY(30px); animation: heroIn 0.9s var(--ease) forwards; }
.hero .a1 { animation-delay: 0.1s; }
.hero .a2 { animation-delay: 0.22s; }
.hero .a3 { animation-delay: 0.34s; }
.hero .a4 { animation-delay: 0.46s; }
.hero .a5 { animation-delay: 0.58s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .anim { opacity: 1; transform: none; }
  .rw-i { transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-visual { opacity: 0.45; right: -6%; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .svc-grid { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr; }
  .proc-visual { min-height: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav .btn-primary { display: none; }
  .hero-visual { display: none; }
  .work-item { grid-template-columns: 40px 1fr 32px; }
  .work-meta, .work-year { display: none; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .hero-stats .sep { display: none; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
