/* =====================================================================
   KINETIC — Motion-Graphics & Animation Studio Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the studio look by editing the CSS variables in
   :root below. Swap --accent / --accent2 for your primaries, adjust
   --bg / --surface / --ink to match, and update --font-head / --font-body
   plus the Google Fonts <link> in each HTML file. Everything cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #0b0b12;             /* dark page background              */
  --ink:       #f3f3fb;            /* near-white headings & text         */
  --accent:    #ff4d6d;           /* hot-pink primary accent             */
  --accent2:   #6c5cff;          /* electric-violet secondary accent     */
  --muted:     #9a9aad;          /* muted secondary text                 */
  --surface:   #14141d;          /* card / panel surface                 */
  --line:      rgba(255,255,255,.08); /* hairline borders / dividers     */

  /* --- Fonts --- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 14px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .6);
  --glow:      0 12px 34px rgba(255, 77, 109, .34);
  --ease:      .4s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1200px;
  --gutter: 26px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.025em;
}

h1 { font-size: clamp(2.6rem, 6.6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent2); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 100px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 70px 0; }

.section-head {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 77, 109, .12);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lead { font-size: 1.16rem; color: var(--muted); line-height: 1.6; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 40px rgba(255, 77, 109, .5); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-light:hover { background: #fff; color: var(--bg); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 18, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: var(--glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin: 2px auto 0;
}

.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home) — bold, energetic, animated CSS shapes
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 116px;
  background:
    radial-gradient(720px 520px at 88% -8%, rgba(108,92,255,.22), transparent 60%),
    radial-gradient(640px 480px at 4% 108%, rgba(255,77,109,.18), transparent 58%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .grad {
  background: linear-gradient(110deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { max-width: 510px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .88rem; color: var(--muted); }

/* Hero visual — animated CSS shapes (no image files) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(420px 420px at 70% 30%, rgba(108,92,255,.45), transparent 60%),
    linear-gradient(160deg, #1a1726, #0e0e16);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.hero-visual .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  will-change: transform;
}
.hero-visual .s1 {
  width: 46%; aspect-ratio: 1; left: 8%; top: 14%;
  background: linear-gradient(135deg, var(--accent), #ff8a5c);
  animation: float1 7s ease-in-out infinite;
}
.hero-visual .s2 {
  width: 30%; aspect-ratio: 1; right: 10%; top: 22%;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent2), #4ad9ff);
  animation: spin 12s linear infinite;
  filter: none;
}
.hero-visual .s3 {
  width: 38%; aspect-ratio: 1; right: 14%; bottom: 12%;
  background: conic-gradient(from 0deg, var(--accent), var(--accent2), #4ad9ff, var(--accent));
  animation: float2 9s ease-in-out infinite;
}
.hero-visual .ring {
  position: absolute;
  width: 70%; aspect-ratio: 1;
  left: -16%; bottom: -18%;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}
.hero-visual .play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(11,11,18,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  color: #fff;
  font-size: 2rem;
  z-index: 3;
  animation: pulseBadge 2.6s ease-in-out infinite;
}
.hero-visual .hv-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 3;
  background: rgba(11,11,18,.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  padding: 8px 16px;
  border-radius: 999px;
}

@keyframes float1 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-22px) } }
@keyframes float2 { 0%,100% { transform: translate(0,0) } 50% { transform: translate(-14px,16px) } }
@keyframes spin { to { transform: rotate(360deg) } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:.7 } 50% { transform: scale(1.08); opacity:1 } }
@keyframes pulseBadge { 0%,100% { box-shadow: 0 0 0 0 rgba(255,77,109,.5) } 70% { box-shadow: 0 0 0 22px rgba(255,77,109,0) } }

@media (prefers-reduced-motion: reduce) {
  .hero-visual .shape, .hero-visual .ring, .hero-visual .play-badge { animation: none; }
}

/* ---------------------------------------------------------------------
   CLIENT STRIP
   --------------------------------------------------------------------- */
.trusted { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trusted p { text-align: center; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 50px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  opacity: .4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,77,109,.4); }

.card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,77,109,.18), rgba(108,92,255,.22));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.card-link:hover { color: var(--accent); }
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: var(--glow);
}
.feature h3 { font-size: 1.16rem; margin-bottom: 5px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section (visual block + content) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius);
  min-height: 420px;
  background:
    radial-gradient(360px 280px at 78% 22%, rgba(108,92,255,.5), transparent 60%),
    linear-gradient(150deg, #1a1726, #0e0e16);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  padding: 36px;
}
.split-media::after {
  content: "";
  position: absolute;
  width: 58%; aspect-ratio: 1;
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 50%;
  top: -14%; right: -10%;
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(620px 400px at 12% 10%, rgba(108,92,255,.2), transparent 60%),
    linear-gradient(135deg, #15131f, #0d0d15);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.stat strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  display: block;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------------
   WORK / PORTFOLIO
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-bar button {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: var(--accent); }
.filter-bar button.active { background: linear-gradient(120deg, var(--accent), var(--accent2)); color: #fff; border-color: transparent; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--ease);
}
.work-card.is-hidden { display: none; }
.work-card:hover { transform: translateY(-6px); }
.work-thumb {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.work-thumb span.tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: rgba(255,255,255,.92);
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.work-thumb::after {
  content: "";
  position: absolute;
  width: 46%; aspect-ratio: 1;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  bottom: -16%; right: -8%;
}
.work-g1 { background: linear-gradient(150deg, #ff4d6d, #6c5cff); }
.work-g2 { background: linear-gradient(150deg, #6c5cff, #4ad9ff); }
.work-g3 { background: linear-gradient(150deg, #ff8a5c, #ff4d6d); }
.work-g4 { background: linear-gradient(150deg, #2a2740, #14141d); }
.work-g5 { background: linear-gradient(150deg, #4ad9ff, #6c5cff); }
.work-g6 { background: linear-gradient(150deg, #ff4d6d, #ff8a5c); }
.work-g7 { background: linear-gradient(150deg, #6c5cff, #ff4d6d); }
.work-g8 { background: linear-gradient(150deg, #1c1a2e, #3a2740); }
.work-g9 { background: linear-gradient(150deg, #4ad9ff, #ff4d6d); }
.work-meta {
  padding: 20px 6px 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.work-meta h3 { font-size: 1.25rem; margin: 0; color: var(--ink); }
.work-meta .cat {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.work-card .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11,11,18,.36);
  opacity: 0;
  transition: opacity var(--ease);
  border-radius: var(--radius);
}
.work-card:hover .overlay { opacity: 1; }
.work-card .overlay .play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(11,11,18,.55);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.5);
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.6rem;
  transform: scale(.85);
  transition: transform var(--ease);
}
.work-card:hover .overlay .play { transform: scale(1); }
.work-duration {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(11,11,18,.6);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}

/* ---------------------------------------------------------------------
   PROCESS STEPS
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.quote-card .stars { color: var(--accent); margin-bottom: 16px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: 1.12rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-author b { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 14%, rgba(108,92,255,.5), transparent 60%),
    radial-gradient(520px 360px at 8% 90%, rgba(255,77,109,.4), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 28px;
  padding: 66px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(620px 360px at 88% -30%, rgba(108,92,255,.22), transparent 60%),
    radial-gradient(520px 320px at 4% 120%, rgba(255,77,109,.16), transparent 60%),
    var(--bg);
  padding: 76px 0 66px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 14px; }
.page-banner p { max-width: 620px; color: var(--muted); font-size: 1.1rem; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(108,92,255,.4); }
.service-block .s-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,77,109,.2), rgba(108,92,255,.24));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.9rem;
}
.service-block h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-block p { color: var(--muted); }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.deliverables li {
  font-size: .84rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 999px;
}

/* ---------------------------------------------------------------------
   ABOUT — values + team
   --------------------------------------------------------------------- */
.value-card .icon { background: linear-gradient(135deg, rgba(108,92,255,.24), rgba(74,217,255,.2)); }

.team-card { text-align: center; }
.team-card .team-photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.team-card .tp1 { background: linear-gradient(135deg, #ff4d6d, #6c5cff); }
.team-card .tp2 { background: linear-gradient(135deg, #6c5cff, #4ad9ff); }
.team-card .tp3 { background: linear-gradient(135deg, #ff8a5c, #ff4d6d); }
.team-card .tp4 { background: linear-gradient(135deg, #4ad9ff, #6c5cff); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-card h2 { font-size: 1.6rem; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5d5d6e; }
.field select { color: var(--ink); }
.field select option { background: var(--surface); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,77,109,.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #ff6b81; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b81; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-status {
  display: none;
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  background: rgba(108,92,255,.14);
  border: 1px solid rgba(108,92,255,.4);
  color: #cfc8ff;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 12px; background: linear-gradient(135deg, rgba(255,77,109,.2), rgba(108,92,255,.24));
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row b { font-family: var(--font-head); font-weight: 600; color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }
.info-row a { color: var(--accent); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 250px;
  background:
    linear-gradient(rgba(108,92,255,.06), rgba(108,92,255,.06)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 44px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background:
    radial-gradient(620px 380px at 90% 0%, rgba(108,92,255,.12), transparent 60%),
    #08080e;
  color: var(--muted);
  padding: 78px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer .brand { color: var(--ink); margin-bottom: 16px; }
.site-footer .brand:hover { color: var(--ink); }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 {
  color: var(--ink); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-head); font-weight: 600;
  margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--ink); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--ink);
}
.social a:hover { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(11,11,18,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 16px var(--gutter) 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 16px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; gap: 18px; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 50px 28px; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 28px; }
  .footer-bottom { flex-direction: column; }
}
