/* ============================================
   FENOX — LYFADS-INSPIRED STYLESHEET
   Dark Hero + Light Content
   ============================================ */

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

:root {
  --bg:          #F7F8FF;
  --bg-alt:      #EEF2FF;
  --surface:     #FFFFFF;
  --card:        #FFFFFF;
  --card-hover:  #F4F7FF;
  --border:      rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.11);
  --accent:      #4F7CFF;
  --accent-dark: #6D35D8;
  --accent-2:    #8B5CF6;
  --accent-3:    #37C8FF;
  --accent-light: rgba(79,124,255,0.11);
  --text:        #151827;
  --text-light:  #42475A;
  --muted:       #777777;
  --muted2:      #999999;
  --fh:          'Syne', sans-serif;
  --fb:          'Inter', -apple-system, sans-serif;
  --fm:          'JetBrains Mono', monospace;
  --mw:          1200px;
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* No overflow-x:hidden here on purpose — per spec, setting overflow-x
   to anything but visible forces overflow-y to compute as auto, which
   turns html/body into their own scroll container and silently breaks
   position:sticky (used by the horizontal-scroll showcases) for every
   descendant. The elements that actually need horizontal clipping
   (.hs-panel-stage, .hh-sticky) already clip themselves locally. */
html { scroll-behavior: auto; }
body {
  font-family: var(--fb);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(79,124,255,.38); border-radius: 3px; }

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 5rem 0; background: var(--bg); color: var(--text); }
.section-alt { background: var(--bg-alt); }

.label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.label::before {
  content: '';
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.s-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: 0;
}
.section-header { margin-bottom: 3.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 8px;
  font-family: var(--fb); font-size: .9rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  background: var(--accent); color: #fff;
  transition: all .3s var(--ease);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(79,124,255,.25); }
.btn-sm { padding: .55rem 1.3rem; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER (fixed, transparent over dark hero)
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all .3s var(--ease);
}
.header.scrolled {
  background: rgba(250,250,248,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.header-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; }
.logo-img { height: 40px; width: auto; border-radius: 6px; }

.nav-main { display: flex; gap: 2rem; }
.nav-main a {
  text-decoration: none; font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav-main a:hover, .nav-main a.active { color: #fff; }
.header.scrolled .nav-main a.active { color: var(--accent); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.menu-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* Header btn in dark area (default) */
.header .btn { background: #fff; color: #000; }
.header .btn:hover { background: var(--accent); color: #fff; box-shadow: 0 6px 24px rgba(79,124,255,.32); }

/* Scrolled: switch to light-theme nav */
.header.scrolled .nav-main a { color: var(--text-light); }
.header.scrolled .nav-main a:hover { color: var(--accent); }
.header.scrolled .menu-toggle span { background: var(--text); }
.header.scrolled .btn { background: var(--accent); color: #fff; }
.header.scrolled .btn:hover { background: var(--accent-dark); }

/* Mobile Menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 999;
  background: #030303;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu-inner { text-align: center; }
.mob-menu ul { list-style: none; }
.mob-menu li { margin: 1.2rem 0; }
.mob-link {
  font-family: var(--fh); font-size: 2rem; font-weight: 800;
  color: #fff; text-decoration: none; transition: color .2s;
}
.mob-link:hover, .mob-link-cta { color: var(--accent); }

/* ============================================
   HERO PART 1: BRAND INTRO
   ============================================ */
.hero-scatter {
  position: relative;
  height: 165vh;
  background:
    linear-gradient(180deg, rgba(3,3,3,.12), rgba(3,3,3,.9) 84%),
    radial-gradient(circle at 30% 38%, rgba(99,102,241,.18), transparent 24%),
    radial-gradient(circle at 68% 58%, rgba(55,200,255,.13), transparent 25%),
    #030303;
  overflow: hidden;
}

.hs-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 8%, rgba(3,3,3,0.9) 88%);
}

.hs-panel-stage {
  position: fixed;
  inset: 0;
  z-index: 3;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(.94);
  filter: blur(8px);
  transition: opacity 1s .12s var(--ease-out), transform 1s .12s var(--ease-out), filter 1s .12s var(--ease-out);
}
.is-ready .hs-panel-stage {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.hs-panel {
  --media: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(150px, 17vw, 260px);
  height: clamp(240px, 49vh, 430px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  background:
    radial-gradient(circle at 45% 30%, rgba(79,124,255,.08), transparent 52%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  box-shadow:
    inset 0 0 48px rgba(255,255,255,.025),
    0 34px 88px rgba(0,0,0,.36);
  opacity: .82;
  will-change: transform, opacity;
  overflow: hidden;
}
.hs-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: var(--media);
  transition: opacity .2s linear;
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(1.08) brightness(.72);
}
.hs-panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(79,124,255,.22), transparent 32%, rgba(139,92,246,.2)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .48;
}
.hs-panel-a::before {
  background-image:
    linear-gradient(rgba(8,9,16,.18), rgba(8,9,16,.5)),
    radial-gradient(circle at 34% 34%, rgba(255,255,255,.2) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 58%, rgba(79,124,255,.32) 0 9%, transparent 10%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 2px, transparent 2px 28px),
    linear-gradient(135deg, #12182c, #273d7a 52%, #0a0d18);
}
.hs-panel-b::before {
  background-image:
    linear-gradient(rgba(10,9,17,.2), rgba(10,9,17,.55)),
    radial-gradient(circle at 30% 66%, rgba(255,255,255,.2) 0 7%, transparent 8%),
    radial-gradient(circle at 72% 22%, rgba(139,92,246,.36), transparent 28%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.1) 0 2px, transparent 2px 24px),
    linear-gradient(150deg, #171022, #44238f 54%, #12182c);
}
.hs-panel-c::before {
  background-image:
    linear-gradient(rgba(7,10,18,.12), rgba(7,10,18,.54)),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    radial-gradient(circle at 62% 36%, rgba(55,200,255,.36), transparent 24%),
    linear-gradient(135deg, #101426, #28428d 55%, #0b0e16);
  background-size: cover, 34px 34px, 34px 34px, cover, cover;
}
.hs-panel-d::before {
  background-image:
    linear-gradient(rgba(6,8,14,.1), rgba(6,8,14,.58)),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.22) 0 7%, transparent 8%),
    radial-gradient(circle at 28% 62%, rgba(139,92,246,.38), transparent 26%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 20px),
    linear-gradient(145deg, #10111a, #242a61 55%, #0a0b12);
}
.hs-panel-e::before {
  background-image:
    linear-gradient(rgba(8,9,16,.18), rgba(8,9,16,.55)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 40% 28%, rgba(55,200,255,.3), transparent 24%),
    radial-gradient(circle at 68% 70%, rgba(139,92,246,.34), transparent 26%),
    linear-gradient(135deg, #12182a, #1f356f 48%, #150f25);
}
/* Panel rest/spread positions are computed at runtime (circular
   layout, see scatterLayout() in main.js) so they stay mathematically
   consistent across breakpoints instead of hand-placed per size. */

.hs-intro {
  position: fixed;
  inset: 0;
  z-index: 4;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
  pointer-events: none;
  text-align: center;
  padding: 0 1.25rem;
}
.hs-badge,
.hs-tagline {
  font-family: var(--fm);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}

/* Logo — the actual mark, no stylised wordmark. Uses a version of the
   PNG with the background keyed out to real alpha transparency
   (assets/logos/2-transparent.png) rather than a mix-blend-mode trick —
   blend modes only composite against content in the same local
   stacking context, and this logo sits in its own position:fixed
   layer with nothing opaque behind it locally, so screen/lighten
   never had anything correct to blend against. */
.hs-logo {
  height: clamp(150px, 15vw, 230px);
  width: auto;
  opacity: 0;
  transform: scale(.74);
  filter: blur(10px) drop-shadow(0 0 60px rgba(79,124,255,.3));
  transition: opacity 1.05s .15s var(--ease-out), transform 1.05s .15s var(--ease-out), filter 1.05s .15s var(--ease-out);
}
.is-ready .hs-logo {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 60px rgba(79,124,255,.3));
}

/* Entrance transitions are one-shot: once played, hand full control
   back to inline styles (GSAP / fallback scroll sync) with no lag. */
.is-settled .hs-logo,
.is-settled .hs-panel-stage {
  transition: none;
}

/* Scroll indicator */
.hs-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.hs-scroll-indicator p {
  font-family: var(--fm); font-size: .6rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.hsi-mouse {
  width: 22px; height: 34px; border: 1.5px solid rgba(79,124,255,.45);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.hsi-dot {
  width: 3px; height: 8px; background: var(--accent); border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%     { transform: translateY(10px); opacity: .3; }
}

/* ============================================
   HERO PART 2: HORIZONTAL SCROLL
   ============================================ */
.hero-hscroll {
  position: relative;
  height: 400vh;
  background:
    radial-gradient(circle at 12% 50%, rgba(139,92,246,.16), transparent 24%),
    radial-gradient(circle at 88% 46%, rgba(55,200,255,.12), transparent 28%),
    #07070B;
}

.hh-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hh-track {
  display: flex; align-items: center; gap: 5rem;
  padding: 0 10vw;
  height: 100%;
  will-change: transform;
}

.hh-item { flex-shrink: 0; }

/* Brand Name */
.hh-brand-text {
  font-family: var(--fh);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900; font-style: italic; letter-spacing: 0;
  line-height: 1;
}
.hhb-main { color: #fff; }
.hhb-accent {
  color: transparent;
  background: linear-gradient(110deg, var(--accent-2), var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
}
.hhb-bottom { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.hhb-line { width: 60px; height: 1px; background: var(--accent); }
.hhb-bottom p {
  font-family: var(--fm); font-size: .6rem; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}

/* Cards */
.hh-card {
  width: clamp(320px, 40vw, 520px);
}

.hhc-preview {
  width: 100%; padding-bottom: 62%;
  border-radius: 8px; overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .5s var(--ease), border-color .5s;
}
.hhc-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  transition: opacity .5s;
}
.hh-card:hover .hhc-preview { transform: scale(1.02); border-color: rgba(79,124,255,.45); }
.hh-card:hover .hhc-overlay { opacity: 0; }

.hhc-info { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 1rem; }
.hhc-tag {
  font-family: var(--fm); font-size: .62rem; font-weight: 500;
  letter-spacing: .08em; color: var(--accent); margin-bottom: .3rem;
  display: block;
}
.hhc-info h3 {
  font-family: var(--fh); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; font-style: italic; color: #fff; letter-spacing: 0;
}

.hhc-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .4s var(--ease);
  flex-shrink: 0;
}
.hh-card:hover .hhc-arrow {
  background: var(--accent); border-color: var(--accent);
  color: #fff; transform: rotate(45deg);
}
.hhc-arrow svg { width: 16px; height: 16px; }

/* Service showcase cards (Services page horizontal-scroll) */
.hhc-preview-service {
  width: 100%; padding-bottom: 62%;
  border-radius: 8px; overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 30% 22%, rgba(79,124,255,.28), transparent 55%),
    radial-gradient(circle at 78% 78%, rgba(139,92,246,.22), transparent 55%),
    linear-gradient(150deg, #10142A, #171c33 60%, #0b0d18);
}
.hhc-preview-num {
  position: absolute; left: 1.5rem; bottom: 1.25rem;
  font-family: var(--fh); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  color: rgba(255,255,255,.14); line-height: 1;
}
.hhc-desc {
  font-size: .92rem; line-height: 1.65; color: rgba(255,255,255,.5);
  max-width: 34ch; margin-top: .4rem;
}
.hh-card-service .hhc-info { align-items: flex-start; flex-direction: column; gap: .3rem; }

/* CTA */
.hhcta-text {
  font-family: var(--fh);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900; line-height: .85; letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.15);
  margin-bottom: 2rem;
}
.hhcta-dot { -webkit-text-stroke-color: var(--accent); }

.hhcta-btn {
  padding: 1.1rem 3rem; border-radius: 6px;
  background: #fff; color: #080808;
  font-size: .9rem; font-weight: 700; letter-spacing: .08em;
  text-decoration: none; display: inline-block;
  transition: all .3s;
}
.hhcta-btn:hover { background: var(--accent); color: #fff; }

/* Progress bar */
.hh-progress {
  position: absolute; top: 2rem; right: 2rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
  z-index: 5;
}
.hhp-num {
  font-family: var(--fh); font-size: 2.5rem; font-weight: 900;
  color: rgba(255,255,255,.08); line-height: 1;
}
.hhp-bar { width: 80px; height: 2px; background: rgba(255,255,255,.08); overflow: hidden; }
.hhp-fill { height: 100%; background: var(--accent); width: 0; transform-origin: left; }

/* Nav hint */
.hh-nav-hint {
  position: absolute; bottom: 2rem; left: 2rem; z-index: 5;
}
.hh-nav-hint span {
  font-family: var(--fm); font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
}

/* ============================================
   PAGE HERO (dark intro band for secondary pages —
   Services / Work / About / Contact)
   ============================================ */
.page-hero {
  position: relative;
  padding: 11rem 0 4rem;
  background:
    linear-gradient(180deg, rgba(3,3,3,.25), rgba(3,3,3,.96) 92%),
    radial-gradient(circle at 22% 28%, rgba(99,102,241,.18), transparent 28%),
    radial-gradient(circle at 78% 62%, rgba(55,200,255,.13), transparent 28%),
    #030303;
  color: #fff;
  overflow: hidden;
}
.page-hero .label { color: var(--accent-3); }
.page-hero .label::before { background: var(--accent-3); }
.page-hero h1 {
  font-family: var(--fh);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: 0;
  margin: .5rem 0 1.1rem;
  color: transparent;
  background: linear-gradient(110deg, #fff 18%, var(--accent-3) 45%, var(--accent) 68%, var(--accent-2) 92%);
  -webkit-background-clip: text;
  background-clip: text;
}
.page-hero p {
  max-width: 560px;
  color: rgba(255,255,255,.62);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, #FFFFFF, #F7F8FF);
}
.production-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}
.pp-num {
  font-family: var(--fh);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: rgba(79,124,255,.16);
  line-height: 1;
}
.production-panel h2 {
  max-width: 760px;
  font-family: var(--fh);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text);
}
.pp-logo {
  width: clamp(72px, 12vw, 130px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(28,38,94,.16);
}
.clients-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.clients-row {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}
.client-name {
  font-family: var(--fm);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.s-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: all .35s var(--ease);
}
.s-card:hover {
  border-color: var(--accent);
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.05);
}
.sc-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-light); border-radius: 12px;
  color: var(--accent); margin-bottom: 1.2rem;
}
.sc-icon svg { width: 20px; height: 20px; }
.s-card h3 { font-family: var(--fh); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.s-card > p { color: var(--text-light); font-size: .87rem; line-height: 1.65; margin-bottom: 1rem; }
.sc-points {
  list-style: none; display: flex; flex-wrap: wrap; gap: .4rem;
}
.sc-points li {
  font-size: .72rem; padding: .25rem .65rem;
  background: var(--bg-alt); border-radius: 100px;
  color: var(--muted); font-weight: 500;
}

/* ============================================
   WORK
   ============================================ */
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.work-card {
  text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all .35s var(--ease);
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.15);
}
.wc-img { height: 220px; transition: transform .5s; }
.work-card:hover .wc-img { transform: scale(1.03); }
.wc-body { padding: 1.5rem; }
.wc-tag {
  display: inline-block; font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.wc-body h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.wc-body p { color: var(--text-light); font-size: .87rem; line-height: 1.6; margin-bottom: .75rem; }
.wc-link { font-size: .82rem; font-weight: 600; color: var(--accent); }
.work-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
  transition: transform .3s;
}
.testimonial:hover { transform: translateY(-3px); }
.t-stars { font-size: .9rem; color: var(--accent-2); letter-spacing: 2px; margin-bottom: .75rem; }
.testimonial > p { font-size: .9rem; line-height: 1.7; color: var(--text-light); margin-bottom: 1.25rem; }
.t-author { display: flex; align-items: center; gap: .75rem; }
.ta-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.t-author strong { display: block; font-size: .85rem; font-weight: 600; }
.t-author span { font-size: .75rem; color: var(--muted); }

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.p-step { text-align: center; }
.p-num {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  border: 2px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: var(--accent);
  background: var(--surface);
  transition: all .35s;
}
.p-step:hover .p-num { background: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(79,124,255,.22); }
.p-step h3 { font-family: var(--fh); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.p-step p { color: var(--text-light); font-size: .87rem; line-height: 1.6; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.about-text p { color: var(--text-light); font-size: .97rem; line-height: 1.75; margin-bottom: 1rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; }
.av-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
  transition: all .3s;
}
.av-card:hover { border-color: var(--accent); transform: translateX(6px); }
.av-num {
  font-family: var(--fh); font-size: .8rem; font-weight: 800; color: var(--accent);
  width: 36px; height: 36px; border: 1.5px solid rgba(79,124,255,.22);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av-card strong { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .15rem; }
.av-card span { color: var(--muted); font-size: .83rem; line-height: 1.5; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start;
}
.contact-info p { color: var(--text-light); font-size: .97rem; line-height: 1.7; margin: 1.25rem 0 2rem; }
.ci-details { display: flex; flex-direction: column; gap: .85rem; }
.ci-row {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--text-light);
}
.ci-row svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.ci-row a { color: var(--text-light); text-decoration: none; }
.ci-row a:hover { color: var(--accent); }

.c-form {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg label { font-size: .7rem; font-weight: 600; letter-spacing: .06em; color: var(--text-light); }
.fg input, .fg textarea {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: .8rem 1rem;
  font-family: var(--fb); font-size: .9rem; color: var(--text);
  outline: none; width: 100%; transition: all .25s;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,124,255,.08);
}
.fg input::placeholder, .fg textarea::placeholder { color: #B0B0B0; }
.fg textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 44px; width: auto; margin-bottom: .75rem; border-radius: 6px; }
.footer-brand p { color: var(--muted); font-size: .85rem; line-height: 1.6; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fl-col h4 {
  font-family: var(--fh); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem;
}
.fl-col a {
  display: block; text-decoration: none; color: var(--muted);
  font-size: .85rem; padding: .25rem 0;
  transition: color .2s, transform .2s;
}
.fl-col a:hover { color: var(--accent); transform: translateX(3px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted2); font-size: .78rem; flex-wrap: wrap; gap: .5rem;
}
.fb-links { display: flex; gap: 1.5rem; }
.fb-links a { color: var(--muted2); text-decoration: none; font-size: .78rem; }
.fb-links a:hover { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-main, .header .btn { display: none; }
  .menu-toggle { display: flex; }

  .hs-panel { width: clamp(130px, 24vw, 220px); height: clamp(220px, 43vh, 390px); }

  .hh-track { gap: 3rem; padding: 0 6vw; }
  .hh-brand-text { font-size: clamp(3.5rem, 12vw, 8rem); }
  .hh-card { width: clamp(260px, 45vw, 380px); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .production-panel { grid-template-columns: auto 1fr; }
  .pp-logo { display: none; }
}

@media (max-width: 768px) {
  .container, .header-inner { padding: 0 1.5rem; }

  .hs-badge, .hs-tagline { font-size: .58rem; }

  .hh-track { gap: 2rem; padding: 0 5vw; }
  .hh-brand-text { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hh-card { width: clamp(220px, 55vw, 320px); }
  .hhc-info h3 { font-size: 1.4rem; }
  .hhcta-text { font-size: clamp(2rem, 10vw, 5rem); }
  .hh-progress { top: 1rem; right: 1rem; }
  .hhp-num { font-size: 1.5rem; }
  .hhp-bar { width: 50px; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .wc-img { height: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .production-panel { gap: 1rem; }
}

@media (max-width: 480px) {
  .container, .header-inner { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .s-title { font-size: 1.5rem; }

  .hero-scatter { height: 145vh; }
  .hero-hscroll { height: 350vh; }

  .hs-logo { height: 100px; }
  .hs-badge, .hs-tagline { max-width: 290px; line-height: 1.5; }
  .hs-panel { width: 126px; height: 230px; }

  .hh-track { gap: 1.5rem; padding: 0 4vw; }
  .hh-brand-text { font-size: 2.2rem; }
  .hh-card { width: 200px; }
  .hhc-info h3 { font-size: 1.1rem; }
  .hhc-arrow { width: 32px; height: 32px; }
  .hhc-arrow svg { width: 12px; height: 12px; }

  .c-form { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-scatter { height: auto; }
  .hero-hscroll { height: auto; }
  .hh-sticky, .hs-intro { position: relative; }
  .hs-panel-stage { display: none; }
  .hs-logo { opacity: 1; transform: none; filter: drop-shadow(0 0 60px rgba(79,124,255,.3)); }
}
