﻿/* ================================================
   VIZIA DIGITAL — LIGHT THEME + PINK GLASS
   ================================================ */

:root {
  --pink-100: #ffe0ea;
  --pink-200: #ffb8cd;
  --pink-300: #ff8faf;
  --pink-400: #ff7a9e;
  --pink-500: #ff5b86;
  --pink-600: #e03a6a;
  --pink-glow: rgba(255, 91, 134, 0.4);
  --pink-glow-soft: rgba(255, 91, 134, 0.12);

  /* Light theme */
  --bg:        #F8F8F6;
  --bg-card:   #FFFFFF;
  --bg-section:#F0F0ED;
  --dots: radial-gradient(circle, rgba(0,0,0,0.14) 1px, transparent 1px) 0 0 / 28px 28px;
  --text-dark: #0f0f0f;
  --text-mid:  #555555;
  --text-soft: #999999;
  --border:    rgba(0, 0, 0, 0.08);
  --border-pink: rgba(255, 91, 134, 0.25);

  /* Glass (light) */
  --glass-white:       rgba(255, 255, 255, 0.65);
  --glass-white-hover: rgba(255, 255, 255, 0.9);
  --glass-pink:        rgba(255, 91, 134, 0.07);
  --glass-pink-hover:  rgba(255, 91, 134, 0.13);
  --glass-border:      rgba(255, 255, 255, 0.8);
  --glass-border-pink: rgba(255, 91, 134, 0.22);
  --glass-shadow:      0 4px 24px rgba(0, 0, 0, 0.07);
  --glass-shadow-pink: 0 8px 40px rgba(255, 91, 134, 0.15);
  --glass-inset:       inset 0 1px 0 rgba(255,255,255,0.9);

  /* Hero stays dark */
  --hero-bg: #060009;

  --blur:       blur(20px);
  --blur-light: blur(12px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; gap: 8px; }
img, video { max-width: 100%; }
button { cursor: pointer; }
details summary { cursor: pointer; transition: var(--transition); }
details summary:hover { opacity: 0.5; }
hr { border: none; height: 1px; width: 100%; background: var(--border); }

/* ============ LAYOUT ============ */
.hbox { display: flex; flex-direction: row; }
.vbox { display: flex; flex-direction: column; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.centered { align-items: center; }
.blocks { display: grid; gap: 64px; }
.no-pointer { pointer-events: none; }
main { display: flex; flex-direction: column; }
section { padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* ============ FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap');
@font-face { font-family: "InterTight ExtraBold"; src: url("/assets/fonts/InterTight-ExtraBold.ttf"); }

/* Bowlby One for all eyebrow / label text */
.section-label,
.services-category-title,
.pack-label,
.studio-process-step-title,
.cf-new-eyebrow,
.footer-nav-label,
.footer-contact-label {
  font-family: "Bowlby One", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px currentColor;
}
@font-face { font-family: "e-Ukraine Medium";     src: url("/assets/fonts/e-Ukraine-Medium.otf"); }
@font-face { font-family: "e-Ukraine Bold";       src: url("/assets/fonts/e-Ukraine-Bold.otf"); }

body {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 18px;
  background: var(--dots) var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
.text-medium { font-size: 38px; line-height: 1; }
@media (max-width: 1024px) { .text-medium { font-size: 34px; } }
@media (max-width: 768px)  { .text-medium { font-size: 30px; } }
@media (max-width: 512px)  { .text-medium { font-size: 26px; } }

.text-large {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 7.2vw;
  line-height: 0.95;
  text-align: center;
  color: var(--text-dark);
}

.text-white { color: white; }
.text-white a { color: white; }
.text-center { text-align: center; }
.text-underline { text-decoration: none; }
.section-heading { font-weight: normal; font-size: 24px; padding-bottom: 8px; }
.background-white { background: var(--bg-card); }
.background-black { background: var(--hero-bg); }
.dark { color: white; background: var(--hero-bg); }
.dark a { color: white; }
.light { color: var(--text-dark); background: var(--dots) var(--bg); }
.light a { color: var(--text-dark); }

a { color: var(--text-dark); transition: var(--transition); text-decoration: none; }
a:hover:not(.project-preview-link):not(.nav-cta-btn):not(.hero-cta):not(.work-card):not(.work-card--all):not(.footer-social-btn):not(.footer-contact-cta) { color: var(--pink-500); opacity: 1; }


/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink-400); border-radius: 3px; }

/* ============ NAVIGATION ============ */
#menu {
  position: fixed;
  left: 0; right: 0;
  z-index: 1000;
  transition: top 0.2s ease;
  padding: 10px 32px;
  background: transparent;
  border-bottom: none;
}
#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: -40px;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

#menu ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Logo — left */
#menu ul > li:first-child { justify-self: start; margin-left: -6px; }

/* Pill group — true center */
#menu ul > div:not(.nav-right) { justify-self: center; }

/* CTA + language — right */
#menu .nav-right { justify-self: end; }

/* Logo link */
#menu ul > li:first-child a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

/* ── Pill group (center nav) ── */
#menu div {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  padding: 4px;
}

#menu div li { list-style: none; }

#menu div li a {
  display: block;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

#menu div li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pink-400);
  opacity: 1;
}

/* Active pill highlight */
#menu div li.text-underline a {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
#menu div li.text-underline a::after { display: none; }

/* ── CTA button ── */
.nav-cta-btn {
  display: inline-block;
  position: relative;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  /* glass */
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(1.6) brightness(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.6) brightness(1.1);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.06);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
/* specular gradient top-left highlight */
.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.nav-cta-btn:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.06);
  opacity: 1;
}

/* Right group — CTA + language switcher */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-right li { list-style: none; }

/* Language switcher */
.menu-language-link {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none;
}
.menu-language-link svg { transform: scale(0.8); opacity: 0.5; }
.menu-language-link:hover { color: rgba(255,255,255,0.75) !important; opacity: 1; }

/* Dark hero variant */
/* ── Floating pill nav (all pages) ── */
#menu {
  background: transparent;
  border-bottom: none;
  padding: 16px 32px;
}
#menu ul {
  background: rgba(10, 6, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px 5px 5px 20px;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
#menu div:not(.nav-right) {
  background: none;
  border: none;
  padding: 0;
}
#menu div li a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease, background 0.25s ease, text-shadow 0.25s ease;
}
#menu div li a:hover {
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.13) 0%, transparent 72%);
  color: white;
  text-shadow: 0 0 16px rgba(255,255,255,0.6);
}
#menu div li.text-underline a {
  color: white;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  #menu { padding: 10px 20px; }
  #menu div li a { padding: 6px 12px; font-size: 12px; }
  .nav-cta-btn { padding: 7px 14px; font-size: 12px; }
}
@media (max-width: 480px) {
  #menu div li:not(.text-underline) { display: none; }
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 6vw;
  background: var(--hero-bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6,0,9,0.45) 0%,
    rgba(20,0,35,0.25) 50%,
    rgba(6,0,9,0.4) 100%
  );
  z-index: 1;
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-logo {
  width: clamp(120px, 14vw, 220px);
  height: auto;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-300);
  padding: 6px 14px;
  border: 1px solid rgba(255,80,140,0.35);
  border-radius: 100px;
  background: rgba(255, 91, 134,0.1);
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  display: inline-block;
  width: fit-content;
}

.hero-headline {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.1;
  padding-bottom: 0.1em;
  color: white;
  -webkit-text-fill-color: white;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 14px 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(1.6) brightness(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.6) brightness(1.12);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.06);
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.06);
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.06);
  opacity: 1;
  transform: translateY(-2px);
  color: white;
}

.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: rgba(240,239,235,0.12);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 0 40px; }
.hero-stat-num { font-family: "InterTight ExtraBold", sans-serif; font-size: 28px; color: white; line-height: 1; }
.hero-stat-label { font-family: "Bowlby One", sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-300); -webkit-text-stroke: 0.3px var(--pink-300); }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

@media (max-width: 768px) {
  .hero-section { padding: 0 24px; }
  .hero-stats-bar { padding: 16px 20px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 9px; }
}
@media (max-width: 480px) {
  .hero-stat { padding: 0 10px; }
  .hero-stat-divider { height: 24px; }
}

/* ============ SECTION HEADERS ============ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  padding: 0 4px;
}

.section-label {
  color: var(--pink-500);
}

.section-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

/* ============ CLIENTS MARQUEE ============ */
.clients-section {
  padding: 40px 0 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.clients-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 5vw;
}
.clients-heading-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.clients-heading-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  font-weight: 500;
}

.clients-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  height: 96px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin: 0 48px;
  flex-shrink: 0;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.75;
}

/* ── STUDIO INTRO ── */
.studio-intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 5vw 40px;
  background: var(--dots) #F2F2EF;
}
.studio-intro-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: 1400px;
}
.studio-intro-text {
  flex: 1;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.25;
  color: var(--text-dark);
}
.studio-brand {
  color: var(--pink-500);
  cursor: default;
}
.studio-intro-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0,0,0,0.25);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.studio-intro-text a:hover {
  color: var(--pink-500);
  text-decoration-color: var(--pink-500);
}
.studio-intro-video-wrap {
  flex: 0 0 auto;
  width: clamp(280px, 36vw, 520px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.studio-intro-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.studio-intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.studio-intro-caption {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ── WORKS INTRO ── */
.works-intro-section {
  padding: 0 5vw 40px;
}
.works-intro-text {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text-soft);
}

/* ============ WORKS SECTION ============ */
.works-section {
  background: var(--dots) #ECEAE6;
  padding: 48px 5vw 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: var(--dots) var(--bg);
}

.work-card--all {
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dashed var(--border-pink) !important;
  background: var(--glass-pink) !important;
  gap: 10px;
  min-height: 140px;
}
.work-card--all:hover {
  background: rgba(255, 91, 134, 0.08) !important;
  border-color: var(--pink-400) !important;
}
.work-card-all-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-500);
  color: white;
  font-size: 26px;
  transition: var(--transition);
  flex-shrink: 0;
}
.work-card--all:hover .work-card-all-icon {
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(255, 91, 134, 0.45);
}
.work-card--all .work-card-title { color: var(--pink-500); }

/* works fade wrapper */
.works-grid-wrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  max-height: 680px;
  overflow: hidden;
}
.works-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 340px;
  background: linear-gradient(to bottom, rgba(242,246,255,0) 0%, rgba(242,246,255,0.7) 50%, #f2f6ff 90%);
  pointer-events: none;
  z-index: 2;
}
.works-see-all-btn {
  display: inline-block;
  border: 2px dashed var(--pink-400);
  border-radius: 16px;
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  -webkit-text-fill-color: var(--text-dark);
}
.works-see-all-btn:hover { background: var(--pink-400); color: #fff; -webkit-text-fill-color: #fff; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1400px;
}
.work-card--large { grid-column: span 2; }

.work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
}
.work-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-pink);
  opacity: 1;
  color: var(--text-dark);
}

.work-card-thumb {
  position: relative;
  overflow: hidden;
  flex: none;
  aspect-ratio: 16/9;
}
.work-card--large .work-card-thumb { flex: 1; aspect-ratio: unset; min-height: 200px; }
.works-grid .work-card:nth-child(2) .work-card-thumb { flex: 1; aspect-ratio: unset; min-height: 200px; }

.work-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.work-card:hover .work-card-thumb img { transform: scale(1.04); }
.work-card-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.work-card:hover .work-card-video { transform: scale(1.04); }

.work-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 91, 134, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: var(--transition);
}
.work-card:hover .work-card-hover { opacity: 1; }

.work-card-info {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.work-card-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 17px;
  color: var(--text-dark);
}
.work-card-desc { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card--large { grid-column: span 2; }
}
@media (max-width: 640px) {
  .works-section { padding: 64px 3vw 48px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .works-grid .work-card:hover { transform: none; box-shadow: var(--glass-shadow); border-color: var(--border); }
  .works-grid .work-card:hover .work-card-video,
  .works-grid .work-card:hover img { transform: none; }
  .work-card--large { grid-column: span 2; }
  .work-card-info { padding: 12px 14px 14px; }
  .work-card-title { font-size: 14px; }
  .work-card-desc { font-size: 11px; }
  .work-card--all { grid-column: span 2; }
  /* Сбрасываем special-case для 2-го child — на мобильном все карточки одинаковые */
  .works-grid .work-card:nth-child(2) .work-card-thumb {
    flex: none !important;
    aspect-ratio: 16/9 !important;
    min-height: unset !important;
  }
}

/* ============ ABOUT STRIP ============ */
.about-strip {
  padding: 72px 5vw;
  background: var(--dots) var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1400px;
  align-items: center;
}
.about-strip-headline {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(24px, 2.8vw, 42px);
  color: var(--text-dark);
  line-height: 1.15;
  margin-top: 10px;
}
.about-strip-body { display: flex; flex-direction: column; gap: 24px; }
.about-strip-body p { color: var(--text-mid); font-size: 15px; line-height: 1.75; }
.about-strip-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--pink-500);
  border-bottom: 1px solid var(--border-pink);
  padding-bottom: 2px;
  width: fit-content;
  transition: var(--transition);
}
.about-strip-link:hover { color: var(--pink-600); opacity: 1; }
@media (max-width: 768px) { .about-strip-inner { grid-template-columns: 1fr; gap: 24px; } }

.about-strip-vizia-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  background: var(--glass-pink);
  border: 1px solid var(--border-pink);
  border-radius: 16px;
}
.about-strip-vizia-word {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 28px;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-strip-vizia-card p { margin: 0; }
.about-strip-vizia-card em { color: var(--pink-500); font-style: normal; -webkit-text-fill-color: var(--pink-500); }

/* ============ MANIFESTO SECTION ============ */
.manifesto-section {
  padding: 120px 5vw;
  background: #080610;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.manifesto-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}
.manifesto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 16, 0.45);
}
.manifesto-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 91, 134,0.12) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.manifesto-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
  align-items: center;
}

.manifesto-eyebrow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-size: 17px;
  font-family: "e-Ukraine Medium", sans-serif;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.08);
  width: fit-content;
}
.manifesto-eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.manifesto-headline {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 1.1;
  padding-bottom: 0.08em;
  color: rgba(255,255,255,0.9);
}

.manifesto-highlight {
  color: white;
  -webkit-text-fill-color: white;
}

.manifesto-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
}

@media (max-width: 768px) {
  .manifesto-section { padding: 80px 5vw; }
  .manifesto-headline { font-size: clamp(40px, 10vw, 80px); }
}

/* ============ TEAM SECTION ============ */
.team-section {
  padding: 96px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--dots) var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1400px;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
}
.team-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-pink);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  transition: var(--transition);
}
.team-card-name { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.team-card-role { font-size: 12px; color: var(--pink-500); letter-spacing: 0.04em; }

@media (max-width: 768px) {
  .team-section { padding: 64px 4vw 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ PRODUCT PACK ============ */
.pack-section {
  background: #111;
  padding: 80px 5vw;
}
.pack-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.pack-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.pack-label {
  color: var(--pink-400);
  margin-bottom: 12px;
}
.pack-heading {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  line-height: 1.1;
}
.pack-heading-soft { color: #fff; }
.pack-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.pack-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}
.pack-process-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.pack-split {
  display: flex;
  align-items: center;
  gap: 48px;
}
.pack-split-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pack-split-lead {
  font-size: clamp(22px, 2.4vw, 32px);
  color: rgba(255,255,255,0.95);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pack-split-body {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.pack-split-for-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.pack-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
}
.pack-split-list li {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.pack-split-list li:not(:last-child)::after {
  content: ',';
  margin-right: 6px;
}
.pack-split-video {
  flex: 0 0 48%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.pack-split-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pack-grid-label {
  font-size: clamp(22px, 2.4vw, 32px);
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: none;
  font-family: "InterTight ExtraBold", sans-serif;
  line-height: 1.35;
  font-weight: 600;
}
.pack-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pack-grid-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pack-grid-num {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-family: "InterTight ExtraBold", sans-serif;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  width: 32px;
}
.pack-grid-name {
  font-size: clamp(16px, 1.4vw, 20px);
  color: #fff;
  font-family: "InterTight ExtraBold", sans-serif;
  line-height: 1.3;
  margin: 0;
  flex-shrink: 0;
}
.pack-grid-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
  margin: 0;
}
.pack-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 64px;
  padding-top: 0;
}
.pack-bottom-cta-text {
  font-size: clamp(14px, 1.3vw, 18px);
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin: 0;
}
.pack-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  color: #fff;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 17px;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pack-cta-btn:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.2);
  color: #fff;
  opacity: 1;
}
.pack-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pack-list { display: flex; flex-direction: column; }
.pack-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.pack-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.pack-item.active, .pack-item:hover { color: #fff; }
.pack-num {
  font-size: 12px;
  font-family: "InterTight ExtraBold", sans-serif;
  min-width: 28px;
  color: rgba(255,255,255,0.25);
}
.pack-item.active .pack-num { color: var(--pink-400); }
.pack-item-name {
  flex: 1;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 16px;
}
.pack-arrow { font-size: 15px; opacity: 0; transition: opacity 0.2s; color: var(--pink-400); flex-shrink: 0; }
.pack-item-header { display: flex; align-items: center; gap: 16px; width: 100%; }
.pack-item-body {
  padding: 20px 0 8px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pack-item-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.pack-item-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pack-tag {
  background: rgba(255,122,158,0.12);
  border: 1px solid rgba(255,122,158,0.25);
  color: var(--pink-400);
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 100px;
}
.pack-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.pack-flow-step {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-width: 140px;
}
.pack-flow-emoji {
  font-size: 28px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.pack-flow-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding: 14px 20px;
}
.pack-flow-arrow {
  font-size: 18px;
  color: var(--pink-400);
  flex-shrink: 0;
  align-self: center;
}
.pack-item-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.pack-item.active .pack-arrow, .pack-item:hover .pack-arrow { opacity: 1; }
.pack-preview {
  position: sticky;
  top: 120px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #222;
}
.pack-preview-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.pack-preview-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 28px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.pack-preview-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.pack-preview-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ── PACK ADD-ONS ── */
.pack-addons {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pack-addons-header { display: flex; flex-direction: column; gap: 4px; }
.pack-addons-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #fff;
}
.pack-addons-split {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.pack-addons-list {
  list-style: none;
  padding: 0; margin: 0;
  flex: 0 0 auto;
  width: 280px;
}
.pack-addons-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  user-select: none;
}
.pack-addons-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.pack-addons-num {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  min-width: 22px;
  transition: color 0.2s;
}
.pack-addons-item .pack-addons-name {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.pack-addons-item:hover .pack-addons-name { color: rgba(255,255,255,0.7); }
.pack-addons-item.active .pack-addons-name { color: #fff; }
.pack-addons-item.active .pack-addons-num { color: var(--pink-500); }
.pack-addons-detail {
  flex: 1;
  padding-top: 14px;
}
.pack-addons-detail-text {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  transition: opacity 0.15s;
}

/* ============ PACK MODAL ============ */
html:has(.cal-modal-overlay.open),
body:has(.cal-modal-overlay.open) {
  overflow: hidden;
  scrollbar-width: none;
}
html:has(.cal-modal-overlay.open)::-webkit-scrollbar,
body:has(.cal-modal-overlay.open)::-webkit-scrollbar {
  display: none;
}
.cal-modal-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cal-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
@media (min-height: 700px) and (min-width: 600px) {
  .cal-modal-overlay {
    align-items: center;
    padding: 24px;
  }
}
.cal-modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.cal-modal-box iframe {
  border-radius: 16px;
  display: block;
}
.cal-modal-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
  transform: translateY(16px);
  transition: transform 0.25s;
}
.cal-modal-overlay.open .cal-modal-wrapper {
  transform: translateY(0);
}
.cal-modal-close {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2100;
  padding: 0;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.cal-modal-close:hover { opacity: 0.9; }
.cal-modal-close::before,
.cal-modal-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 1.5px;
  background: #000;
  border-radius: 2px;
}
.cal-modal-close::before { transform: translateY(-50%) rotate(45deg); }
.cal-modal-close::after  { transform: translateY(-50%) rotate(-45deg); }
.pack-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pack-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.pack-modal {
  background: #111;
  border-radius: 24px;
  max-width: 960px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s;
}
.pack-modal-overlay.open .pack-modal { transform: translateY(0); }
.pack-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}
.pack-modal-close:hover { background: rgba(255,255,255,0.15); }
.pack-modal-left {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pack-modal-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-400);
  margin-bottom: 14px;
}
.pack-modal-heading {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 36px;
}
.pack-modal-steps { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.pack-modal-step { display: flex; gap: 18px; align-items: flex-start; }
.pack-modal-step-num {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 12px;
  color: var(--pink-400);
  min-width: 24px;
  padding-top: 2px;
}
.pack-modal-step-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.pack-modal-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.pack-modal-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}
.pack-modal-contact:hover { color: var(--pink-400); opacity: 1; }
.pack-modal-right {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.pack-modal-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(1);
}
.pack-modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.pack-modal-form-heading {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
}
.pack-modal-form { display: flex; flex-direction: column; gap: 12px; }
.pack-modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pack-modal-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.pack-modal-input::placeholder { color: rgba(255,255,255,0.3); }
.pack-modal-input:focus { border-color: var(--pink-400); }
.pack-modal-textarea { min-height: 100px; resize: vertical; }
.pack-modal-form-bottom { display: flex; justify-content: flex-end; }
.pack-modal-submit {
  background: var(--pink-500);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 13px 28px;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pack-modal-submit:hover { background: var(--pink-400); transform: translateY(-2px); }

/* ============ FAQ ============ */
.faq-section {
  padding: 96px 5vw 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.faq-bg-marks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  user-select: none;
}
.faq-q {
  position: absolute;
  font-family: "InterTight ExtraBold", sans-serif;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  color: rgba(255, 91, 134, 0.12);
  opacity: 1;
  pointer-events: none;
}
/* 3 near FAQ heading, 2 elsewhere — all same opacity */
.faq-q--1 { font-size: 160px; width: 180px; height: 220px; top: 4%;   left: 2%;   rotate: -10deg; }
.faq-q--2 { font-size: 100px; width: 120px; height: 150px; top: 10%;  left: 30%;  rotate: 8deg;   }
.faq-q--3 { font-size: 130px; width: 150px; height: 185px; top: 1%;   right: 6%;  rotate: 12deg;  }
.faq-q--4 { font-size: 90px;  width: 110px; height: 140px; bottom: 8%; left: 10%;  rotate: 14deg;  }
.faq-q--5 { font-size: 120px; width: 140px; height: 175px; bottom: 4%; right: 8%;  rotate: -8deg;  }
.faq-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-heading {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.faq-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 32px;
}
.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--border-pink);
  border-radius: 100px;
  color: var(--pink-500);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.faq-contact-btn:hover {
  background: var(--glass-pink-hover);
  border-color: var(--pink-400);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.faq-item:hover {
  border-color: rgba(255,91,134,0.3);
  box-shadow: 0 2px 16px rgba(255,91,134,0.07);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--pink-500); }
.faq-question[aria-expanded="true"] { color: var(--pink-500); }
.faq-item,
.faq-item *,
.faq-question,
.faq-question span,
.faq-answer,
.faq-answer p {
  cursor: pointer !important;
  user-select: none !important;
}
.faq-icon {
  flex-shrink: 0;
  pointer-events: none;
  transition: transform var(--transition);
  color: var(--text-soft);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
  color: var(--pink-500);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}
.faq-answer.open { max-height: 300px; }
@media (max-width: 768px) {
  .faq-list { grid-template-columns: 1fr; }
}

/* ============ CONTACTS ============ */
#contacts {
  min-height: auto;
  padding: 28px 0 32px;
  display: grid;
  place-items: center;
  background: var(--dots) var(--bg-section);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contacts-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.contacts-headline {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--text-dark);
  line-height: 1.2;
}

#contacts::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 91, 134,0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contacts-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contacts-cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Override .text-large for light theme in contacts */
#contacts .text-large {
  color: var(--text-dark);
  -webkit-text-fill-color: var(--text-dark);
  padding-bottom: 0.1em;
}

.contacts-contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 24px 32px;
  background: var(--glass-white);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(255,255,255,0.5) inset;
  transition: var(--transition);
}
.contacts-contact:hover {
  border-color: var(--border-pink);
  box-shadow: var(--glass-shadow-pink);
}
.contacts-contact-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid var(--border-pink);
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  align-self: flex-start;
}
.contacts-contact-name { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.contacts-contact > div > p:not(.contacts-contact-name) { font-weight: 400; color: var(--text-soft); font-size: 13px; }
.contacts-contact-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.contacts-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-500);
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  padding: 4px 12px 4px 8px;
  border-radius: 100px;
  border: 1px solid transparent;
  transform: translateX(0);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.contacts-contact-list a:hover {
  color: white;
  background: rgba(255, 91, 134, 0.15);
  border-color: var(--pink-400);
  transform: translateX(6px);
  opacity: 1;
}
.contacts-contact-list a:hover svg { opacity: 1; }
.contacts-contact-list svg { flex-shrink: 0; opacity: 0.8; transition: opacity 0.25s ease; }

@media (max-width: 414px) {
  .contacts-contact { flex-direction: column; gap: 16px; align-items: center; padding: 24px 20px; }
}

/* ============ STUDIO — ABOUT ============ */
.studio-about {
  align-items: center;
  padding: 140px 5vw 64px;
  justify-content: center;
  background: var(--dots) var(--bg);
}
.studio-about-logo { width: 15vw; }
@media (max-width: 1024px) { .studio-about-logo { width: 20vw; } }
@media (max-width: 512px)  { .studio-about-logo { width: 30vw; } }

.studio-about-text {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 5.8vw;
  line-height: 0.95;
  text-align: center;
  width: 80%;
  padding-bottom: 32px;
  color: var(--text-dark);
}
@media (max-width: 768px) { .studio-about-text { font-size: 7vw; padding-bottom: 16px; } }

.studio-about-paragraphs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 1400px;
  padding: 0 16px;
}
.studio-about-paragraph {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.studio-about-icon {
  flex-shrink: 0;
  color: var(--pink-500);
  opacity: 0.85;
}
.studio-about-paragraph:hover {
  border-color: var(--border-pink);
  box-shadow: var(--glass-shadow-pink);
}
@media (max-width: 768px) {
  .studio-about-paragraphs { display: flex; flex-direction: column; }
  .studio-about-paragraph { text-align: center; max-width: 512px; margin: 0 auto; }
}

/* ============ STUDIO TEAM ============ */
.studio-team { text-align: center; padding: 64px 16px; background: var(--dots) var(--bg-section); }
.studio-team-members {
  display: contents; /* children flow into parent .studio-founders grid */
}

.studio-team-member {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
.studio-team-member:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-pink);
}
.studio-team-member .studio-team-member-photo {
  border-radius: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.studio-team-member-name { color: var(--text-dark); font-size: 14px; padding: 14px 16px 2px; }
.studio-team-member-role { font-size: 12px; color: var(--text-soft); padding: 0 16px 14px; }
@media (max-width: 768px) {
  .studio-founders { grid-template-columns: 1fr 1fr; }
  .studio-founder-photo-wrap .studio-team-member-photo { height: 220px; }
  .studio-team-member .studio-team-member-photo { height: 160px; }
}

/* ============ STUDIO PROCESS ============ */
.workflow-section {
  padding: 80px 5vw;
  background: var(--bg);
}
.workflow-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.studio-process-step {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 32px 36px;
  width: 100%;
  background: var(--glass-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
}
.studio-process-step:hover {
  border-color: var(--border-pink);
  box-shadow: var(--glass-shadow-pink);
}
@media (max-width: 768px) { .studio-process-step { display: flex; flex-direction: column; gap: 20px; } }

.studio-process-step-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.studio-process-step-title {
  color: var(--pink-500);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "InterTight ExtraBold", sans-serif;
}
.studio-process-step-description { width: 100%; color: var(--text-mid); font-size: 16px; line-height: 1.6; }

.studio-process-step video { border-radius: 12px; width: 100%; display: block; }

/* ============ PROJECT PAGES ============ */
.project {
  text-align: center;
  padding-top: 88px;
  background: var(--dots) var(--bg);
  color: var(--text-dark);
}

/* Project header — title + subtitle */
.project-header {
  padding: 56px 8vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--dots) var(--bg);
}
.project-title {
  background: linear-gradient(135deg, var(--text-dark) 20%, var(--pink-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.12em;
  display: inline-block;
}
/* ── Behance button ── */
.behance-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--glass-shadow);
}
.behance-btn:hover {
  border-color: #1769ff;
  box-shadow: 0 4px 24px rgba(23,105,255,0.15);
  transform: translateY(-2px);
  color: var(--text-dark);
  opacity: 1;
}
.behance-btn-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(100%) contrast(105%);
  flex-shrink: 0;
}
.behance-btn-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-soft);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.behance-btn:hover .behance-btn-arrow {
  transform: translateX(3px);
  color: #1769ff;
}

.proj-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.proj-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.proj-meta-label {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 15px;
  color: var(--text-soft);
}
.proj-meta-dot {
  color: var(--pink-400);
  font-size: 18px;
  line-height: 1;
  margin-top: -1px;
}
.proj-meta-val {
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
}

.project-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.5;
  text-align: center;
}

/* Challenge section — two-column */
.project-challenge {
  display: flex;
  justify-content: center;
  padding: 56px 8vw 72px;
  background: var(--dots) var(--bg);
  text-align: center;
}
.project-challenge-heading {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.project-challenge-heading span {
  color: var(--text-soft);
  font-weight: 400;
}
.project-challenge-body {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
}

/* Tag pills (right column) */
.project-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.project-tag-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 91, 134, 0.05);
  border: 1px solid rgba(255, 91, 134, 0.15);
  border-left: 3px solid var(--pink-500);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.project-tag-pill:hover {
  background: rgba(255, 91, 134, 0.1);
  border-color: rgba(255, 91, 134, 0.35);
  border-left-color: var(--pink-500);
  transform: translateX(5px);
  box-shadow: var(--glass-shadow-pink);
}
.project-tag-dot { display: none; }

@media (max-width: 900px) {
  .project-challenge { grid-template-columns: 1fr; gap: 32px; padding: 48px 5vw 56px; }
  .project-header { padding: 48px 5vw 0; }
}
.project-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}
.project-video iframe,
.project-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; }
.project-video-container { width: 80%; }
@media (max-width: 1024px) { .project-video-container { width: 90%; } }
@media (max-width: 768px)  { .project-video-container { width: 100%; } }

.project-text { display: flex; flex-direction: column; gap: 48px; }
.project-text-heading { display: flex; flex-direction: column; gap: 8px; }
.project-text-paragraphs {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 512px;
  color: var(--text-mid);
  line-height: 1.7;
}
.project-images { gap: 8px; }
@media (max-width: 512px) { .project-images { grid-template-columns: repeat(1, 1fr); } }

.project-images img {
  border-radius: 12px;
  transition: var(--transition);
}
.project-images img:hover {
  transform: scale(1.02);
  box-shadow: var(--glass-shadow-pink);
}

/* ============ VIDEO BG (project previews) ============ */
.background-video-container {
  position: relative;
  background: var(--hero-bg);
  height: 100vh;
  color: white;
  overflow: hidden;
}
.project-preview-link { z-index: 2; }
.project-preview-details {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 40px;
  z-index: 2;
  background: rgba(6,0,9,0.4);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-top: 1px solid rgba(255,80,140,0.2);
}
.project-preview-details .text-large {
  padding-bottom: 12px;
  font-size: 6.4vw;
  background: linear-gradient(135deg, #fff 20%, var(--pink-200) 70%, var(--pink-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.project-preview-details p:not(.text-large) { color: rgba(255,255,255,0.65); font-size: 15px; }
.showreel-section { display: flex; justify-content: space-between; text-align: center; }
.showreel-logo { margin: auto; width: 30vw; pointer-events: none; z-index: 1; }
@media (max-width: 1024px) { .showreel-logo { width: 40vw; } }
@media (max-width: 768px)  { .showreel-logo { width: 50vw; } }
@media (max-width: 512px)  { .showreel-logo { width: 60vw; } }
.showreel-arrow { z-index: 1; padding-bottom: 48px; color: var(--pink-300); animation: showreel-arrow-move 3s ease infinite; }
@keyframes showreel-arrow-move {
  0%   { transform: translateY(-92px); opacity: 0; }
  20%  { transform: translateY(-92px); opacity: 0; }
  35%  { transform: translateY(-92px); opacity: 1; }
  40%  { transform: translateY(-92px); opacity: 1; }
  80%  { transform: translateY(0px);   opacity: 1; }
  100% { transform: translateY(0px);   opacity: 0; }
}

/* ============ SERVICES SECTION ============ */
.services-section {
  padding: 96px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: var(--dots) var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1400px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.services-grid .services-category {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
}
.services-grid .services-category:last-child {
  border-right: none;
}

.services-column-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-category-title {
  color: var(--pink-500);
  padding: 0 4px 4px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}

.service-item:hover {
  border-color: var(--border-pink);
  background: var(--glass-pink-hover);
  transform: translateX(5px);
  opacity: 1;
  box-shadow: var(--glass-shadow-pink);
}

.service-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.service-item-name {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.2;
}

.service-item-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}

.service-item-arrow {
  font-size: 18px;
  color: var(--text-soft);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}

.service-item:hover .service-item-arrow {
  color: var(--pink-500);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-section { padding: 40px 4vw 32px; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .services-category { padding: 20px 20px; }
  .services-category { gap: 6px; }
  .service-item { padding: 10px 14px; border-radius: 10px; }
  .service-item-name { font-size: 13px; }
  .service-item-desc { font-size: 11px; }
  .service-item-arrow { font-size: 15px; margin-left: 10px; }
  .services-list { gap: 2px; }
}

/* ============ EMPTY TEAM CARD ============ */
.team-card--empty {
  background: #fff;
  border: none;
  box-shadow: none;
  pointer-events: none;
  min-height: 320px;
}
.team-card--empty .team-card-join-icon,
.team-card--empty .team-card-name,
.team-card--empty .team-card-role {
  display: none;
}

/* ============ TESTIMONIALS ============ */
.quote-section {
  background: var(--dots) var(--bg);
  padding: 96px 5vw 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-section .section-header { width: 100%; max-width: 1400px; }

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1400px;
}
.qr-card {
  background: var(--bg-section);
  border-radius: 20px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
}
.qr-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(0,0,0,0.18);
  display: block;
  margin-bottom: -30px;
}
.qr-text {
  font-size: 15px;
  color: rgba(0,0,0,0.82);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  padding-bottom: 16px;
}
.qr-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.09);
  text-decoration: none;
}
.qr-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.qr-avatar--init {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: var(--pink-500);
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
.qr-avatar--green { background: #2E7D32; }
.qr-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  font-family: "InterTight", sans-serif;
  margin: 0 0 3px;
}
.qr-handle {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  font-family: "InterTight", sans-serif;
  margin: 0;
}
.qr-cta-wrap {
  width: 100%;
  max-width: 1400px;
}
.qr-cta {
  display: inline-block;
  border-radius: 100px;
  padding: 13px 28px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.5);
  font-size: 15px;
  font-weight: 700;
  font-family: "InterTight ExtraBold", sans-serif;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.qr-cta:hover { border-color: var(--pink-500); color: var(--pink-500); }
.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8e4de;
  border: none;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.quote-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  background: var(--pink-500);
  border: none;
}
.quote-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  font-family: "InterTight", sans-serif;
  transition: color 0.2s;
  margin: 0 0 3px;
}
.quote-role {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  font-family: "InterTight", sans-serif;
  margin: 0;
}
.quote-text {
  font-size: 14px;
  color: rgba(0,0,0,0.85);
  line-height: 1.55;
  margin: 0;
  font-style: normal;
}
.quote-cta {
  display: inline-block;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.18);
  padding: 15px 36px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 40px;
  transition: opacity 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
}
.quote-cta:hover { opacity: 1; transform: translateY(-1px); border-color: rgba(0,0,0,0.35); color: rgba(0,0,0,0.75); }

.testimonials-section {
  padding: 80px 8vw;
}
.testimonials-track-wrap {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-track-wrap::-webkit-scrollbar { display: none; }
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 8px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-pink);
}
.testimonial-quote {
  font-size: 32px;
  line-height: 1;
  color: var(--pink-400);
  opacity: 0.4;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
}
.testimonial-company {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  opacity: 0.5;
}

/* ============ HOW TO GET STARTED ============ */
.how-section {
  padding: 100px 0;
  background: #0e0e0e;
}
.how-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 48px;
}
.how-heading {
  margin-bottom: 40px;
}
.how-title-line1 {
  font-size: clamp(32px, 4vw, 52px);
  font-family: "InterTight ExtraBold", sans-serif;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.how-title-line2 {
  font-size: clamp(32px, 4vw, 52px);
  font-family: "InterTight ExtraBold", sans-serif;
  color: var(--pink-500);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-step-num {
  font-size: 11px;
  color: var(--pink-500);
  font-family: "InterTight ExtraBold", sans-serif;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 28px;
  padding-top: 3px;
}
.how-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.how-step-title {
  font-size: clamp(15px, 1.3vw, 17px);
  color: #fff;
  font-family: "InterTight ExtraBold", sans-serif;
  line-height: 1.2;
  margin: 0;
}
.how-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin: 0;
}

/* ============ CONTACT FORM SECTION ============ */
.contact-form-section {
  margin: 0;
  background: #0e0e0e;
  border-radius: 0;
  border-top: none;
  padding: 96px 5vw 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
  align-items: start;
}
.contact-form-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-form-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-400);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--pink-400);
}
.contact-form-headline {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.15;
  color: #fff;
}
.contact-form-headline span {
  color: var(--pink-400);
  font-weight: 400;
}
.contact-form-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.contact-form-perks {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form-right {
  display: flex;
  flex-direction: column;
}
.contact-form-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cf-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  display: block;
}
.cf-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cf-input:focus { border-color: rgba(255,255,255,0.3); }
.cf-input::placeholder { color: rgba(255,255,255,0.25); }
.cf-select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  outline: none;
  appearance: none;
  box-sizing: border-box;
}
.cf-submit {
  width: 100%;
  background: #fff;
  color: #0e0e0e;
  border: none;
  border-radius: 100px;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.cf-submit:hover { opacity: 0.88; }

/* ── New contact form layout (ref style) ── */
.cf-new-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: transparent;
  padding: 0;
}
.cf-contact-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.cf-person-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cf-person-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.cf-person-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.cf-person-role {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.cf-person-action {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #111;
  margin: 0;
}
.cf-new-left .cf-person-action { color: #fff; }
.cf-person-desc {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
  line-height: 1.65;
  max-width: 340px;
}
.cf-new-left .cf-person-desc { color: rgba(255,255,255,0.5); }
.cf-book-btn {
  width: auto;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(1.6) brightness(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.6) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 100px;
  padding: 16px 72px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cf-book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.cf-book-btn:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.28);
}
.cf-panel { display: flex; flex-direction: column; }
.cf-contact-links { display: flex; flex-direction: row; gap: 8px; flex-wrap: wrap; }
.cf-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cf-contact-link:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.06); opacity: 1; }
.cf-demo-btn {
  display: inline-block;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  width: fit-content;
  transition: border-color 0.2s, background 0.2s;
}
.cf-demo-btn:hover { border-color: #111; background: rgba(0,0,0,0.04); }
.cf-new-left .cf-demo-btn { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.cf-new-left .cf-demo-btn:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.cf-person-email {
  font-size: 13px;
  color: rgba(0,0,0,0.3);
  margin-top: auto;
}
.cf-new-left .cf-person-email { color: rgba(255,255,255,0.25); }
.cf-new-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}
.cf-call-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cf-call-perks-label {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 13px;
  color: var(--pink-500);
  background: rgba(255,91,134,0.12);
  border: 1px solid rgba(255,91,134,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  display: inline-block;
}
.cf-call-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf-call-perks-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.cf-call-perks-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink-500);
  font-size: 13px;
}
.cf-call-host {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
}
.cf-call-host-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.cf-call-host-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin: 0;
}
.cf-call-host-text strong { color: #fff; font-weight: 700; }
.calendly-inline-widget {
  border-radius: 16px;
  overflow: visible;
  position: relative;
  z-index: 10;
}
#calendlyWidget {
  transition: height 0.3s ease;
}
.calendly-inline-widget iframe {
  scrollbar-width: none;
}
.calendly-inline-widget iframe::-webkit-scrollbar {
  display: none;
}
.cf-new-eyebrow {
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.cf-new-headline {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin: 0 0 20px 0;
}
.cf-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf-textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 20px;
}
.cf-form-bottom {
  display: flex;
  justify-content: flex-end;
}
.cf-submit-pill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(1.6) brightness(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.6) brightness(1.1);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.06);
  color: #fff;
  border-radius: 100px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.cf-submit-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.cf-submit-pill:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.06);
  opacity: 1;
}

@media (max-width: 900px) {
  .contact-form-section { padding: 64px 6vw; }
  .cf-inner { grid-template-columns: 1fr; gap: 48px; }
  .cf-row-two { grid-template-columns: 1fr; }
  .cf-new-headline { font-size: 52px; }
}

/* ============ CREDITS BLOCK ============ */
.credits-block {
  width: 100%;
  max-width: 480px;
}
.credits-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.credits-toggle:hover {
  border-color: var(--pink-400);
  background: rgba(255,91,134,0.04);
}
.credits-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-soft);
}
.credits-block.open .credits-chevron {
  transform: rotate(180deg);
}
.credits-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-soft);
}
.credits-block.open .credits-body {
  max-height: 300px;
  padding: 16px 20px;
}
.credits-role {
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 6px;
}

/* ============ JOIN TEAM CARD ============ */
.team-card--join {
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dashed var(--border-pink);
  background: var(--glass-pink);
  cursor: pointer;
  text-decoration: none;
  gap: 10px;
}

.team-card--join:hover {
  background: rgba(255, 91, 134, 0.08);
  border-color: var(--pink-400);
  box-shadow: var(--glass-shadow-pink);
}

.team-card-join-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-500);
  color: white;
  font-size: 30px;
  line-height: 1;
  transition: var(--transition);
  flex-shrink: 0;
}

.team-card--join:hover .team-card-join-icon {
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(255, 91, 134, 0.45);
}

/* ============ WORKS FULLSCREEN PAGE ============ */
.works-fullscreen { display: block; }

.wp-slide {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.wp-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.85);
  transition: filter 0.6s ease;
}
/* bg darkening only when hovering the info block, via JS class */
.wp-slide.info-hovered .wp-bg { filter: brightness(0.45) saturate(0.9); }

.wp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 0, 8, 0.92) 0%,
    rgba(4, 0, 8, 0.35) 45%,
    transparent 100%
  );
  z-index: 1;
}

.wp-link {
  position: relative;
  z-index: 2;
  width: 100%;
  text-decoration: none;
  color: white;
  padding: 0 6vw 56px;
  display: flex;
  align-items: flex-end;
  height: 100%;
  opacity: 1;
}

.wp-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wp-num {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-400);
}

.wp-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1.0;
  color: white;
  transition: color var(--transition);
}
.wp-info:hover .wp-title { color: var(--pink-200); }

.wp-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  max-width: 480px;
}

.wp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: rgba(255, 91, 134, 0.12);
  border: 1px solid rgba(255, 91, 134, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: white;
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.wp-info:hover .wp-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Dot navigation */
.wp-counter {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
}

.wp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.wp-dot.active {
  background: var(--pink-400);
  transform: scale(1.6);
  box-shadow: 0 0 8px rgba(255, 91, 134, 0.6);
}
.wp-dot:hover:not(.active) { background: rgba(255, 255, 255, 0.6); }

/* Down arrow navigation */
.wp-down-arrow {
  position: absolute;
  top: calc(100vh - 130px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  opacity: 1;
  transition: opacity 1.2s ease;
}
.wp-down-arrow--hidden {
  opacity: 0;
  pointer-events: none;
}
.wp-chevron {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  margin: 0 auto 8px;
}
.wp-down-arrow .wp-chevron:nth-child(1) { animation: wp-chevron 1.8s ease-in-out infinite 0s; }
.wp-down-arrow .wp-chevron:nth-child(2) { animation: wp-chevron 1.8s ease-in-out infinite 0.22s; }
.wp-down-arrow .wp-chevron:nth-child(3) { animation: wp-chevron 1.8s ease-in-out infinite 0.44s; }
@keyframes wp-chevron {
  0%   { opacity: 0.15; transform: rotate(45deg) translateY(-5px); }
  50%  { opacity: 0.6;  transform: rotate(45deg) translateY(4px); }
  100% { opacity: 0.15; transform: rotate(45deg) translateY(-5px); }
}

/* Works list overlay */
.works-list-overlay {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.works-list-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  padding: 6px 0;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.works-list-item:hover,
.works-list-item.active {
  opacity: 1;
}
.works-list-item.active .works-list-num {
  color: var(--pink-500);
}
.works-list-num {
  font-size: 11px;
  color: #fff;
  font-family: "InterTight", sans-serif;
  letter-spacing: 0.05em;
  min-width: 20px;
}
.works-list-title {
  font-size: 13px;
  color: #fff;
  font-family: "InterTight", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .works-list-overlay { display: none; }
}

/* Scroll hint */
.wp-scroll-hint {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: wp-hint-appear 0.6s ease forwards 0.5s;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

@keyframes wp-hint-appear {
  to { opacity: 0.9; }
}

.wp-scroll-hint-text {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.wp-scroll-hint-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.wp-scroll-hint-line::before,
.wp-scroll-hint-line::after,
.wp-scroll-hint-line-third {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  animation: wp-chevron 1.4s ease infinite;
  opacity: 0;
}
.wp-scroll-hint-line::after { animation-delay: 0.2s; }
.wp-scroll-hint-line-third { animation-delay: 0.4s; }

@keyframes wp-chevron {
  0%   { opacity: 0; transform: rotate(45deg) translate(-4px, -4px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(4px, 4px); }
}

@media (max-width: 768px) {
  .wp-link { padding: 0 24px 48px; }
  .wp-counter { right: 14px; }
  .wp-desc { font-size: 14px; }
}

/* ============ WORD HOVER EFFECT ============ */
.w {
  transition: color 0.2s ease;
  cursor: default;
}
.w:hover {
  color: var(--pink-500) !important;
  -webkit-text-fill-color: var(--pink-500) !important;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0e0e0e;
  color: rgba(255,255,255,0.5);
  padding: 64px 5vw 0;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}
.footer-brand-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
}
.footer-nav-label,
.footer-contact-label {
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--pink-300); }
.footer-contact-email {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.footer-contact-email:hover { color: var(--pink-300); }
.footer-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background: rgba(255,255,255,0.04);
}
.footer-social-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: white;
  background: rgba(255,255,255,0.08);
}
.site-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
  .site-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============ FOUNDERS ============ */
.studio-team-sublabel {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 32px 0 16px;
}
.studio-founders {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.studio-founder-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--glass-shadow-pink);
  overflow: hidden;
  grid-column: span 1;
}
.studio-founder-photo-wrap {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
.studio-founder-photo-wrap .studio-team-member-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
}
.studio-founder-info {
  padding: 0 18px 20px;
}
.studio-founder-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink-500);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.studio-founder-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.studio-founder-role {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.studio-founder-contacts {
  gap: 8px !important;
}
.studio-founder-contacts a {
  font-size: 13px !important;
}
.studio-team-member-photo--bw {
  filter: grayscale(1);
}
.studio-team-member-role {
  font-size: 13px;
  color: var(--text-soft);
}
@media (max-width: 768px) {
  .studio-founders { grid-template-columns: 1fr; }
  .studio-founder-photo-wrap .studio-team-member-photo { height: 260px; }
}

.footer-contact-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.footer-contact-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

/* ============ STUDIO TEAM GRID (v2) ============ */
.studio-team-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.studio-team-count {
  background: var(--glass-pink);
  border: 1px solid var(--border-pink);
  color: var(--pink-500);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.studio-team-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.studio-team-viewport {
  overflow: hidden;
  flex: 1;
}
.studio-team-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.stm-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
  user-select: none;
}
.stm-nav-btn:hover { border-color: var(--pink-400); color: var(--pink-400); }
.stm-nav-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.stm-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.stm-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-pink);
}
.stm-card--founder {
  border-color: var(--pink-400);
  box-shadow: 0 0 20px rgba(255, 91, 134, 0.18), inset 0 0 0 1px var(--pink-400);
  cursor: pointer;
}
.stm-photo-wrap {
  position: relative;
  overflow: hidden;
}
.stm-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.stm-card:hover .stm-photo { transform: scale(1.04); }
.stm-photo--bw { filter: grayscale(1); }
.stm-hover-contacts {
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 18, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stm-card--founder:hover .stm-hover-contacts { opacity: 1; }
.stm-hover-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.stm-hover-contacts a:hover { background: rgba(255, 91, 134,0.35); border-color: var(--pink-400); }
.stm-name {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  padding: 14px 16px 3px;
}
.stm-role { font-size: 12px; color: var(--text-soft); padding: 0 16px 14px; }
.stm-photo-wrap--empty {
  height: 240px;
  background: var(--dots) var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stm-photo-wrap--empty span {
  font-size: 32px;
  color: var(--border-pink);
  font-weight: 300;
}
.stm-card--empty {
  border-style: dashed;
  border-color: var(--border);
  opacity: 0.6;
}
.stm-card--empty:hover { transform: none; box-shadow: none; border-color: var(--border); }

/* ════════════════════════════════════════
   REEL CURSOR FOLLOWER
   ════════════════════════════════════════ */
.reel-cursor {
  position: fixed;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-family: "e-Ukraine Medium", sans-serif;
  font-size: 12px;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: left, top;
}
.reel-cursor.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.reel-cursor svg {
  width: 42px;
  height: 48px;
  margin-left: 7px;
}

/* ════════════════════════════════════════
   SHOWREEL MODAL + PLAYER
   ════════════════════════════════════════ */
.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.showreel-modal.open {
  opacity: 1;
  pointer-events: all;
}
.showreel-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: default;
}
.showreel-modal-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(76vw, calc(76vh * 16/9));
}
.showreel-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
}
.showreel-modal-title {
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.showreel-modal-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.showreel-modal-close:hover {
  background: rgba(255,255,255,0.18);
}
.showreel-modal-close svg {
  width: 28px;
  height: 28px;
}
.showreel-iframe-wrap {
  position: relative;
  z-index: 1;
  width: min(76vw, calc(76vh * 16 / 9));
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
#showreelIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.showreel-player {
  position: relative;
  z-index: 1;
  width: min(90vw, calc(90vh * 16 / 9));
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.showreel-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  cursor: pointer;
}
/* Quality loader */
.showreel-loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.showreel-loading.gone {
  opacity: 0;
  pointer-events: none;
}
.showreel-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,255,255,0.75);
  animation: sr-spin 0.75s linear infinite;
}
@keyframes sr-spin { to { transform: rotate(360deg); } }

/* Big center play overlay (shown before first play) */
.showreel-center-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.25s;
}
.showreel-center-play.hidden { opacity: 0; }
.showreel-center-disc {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showreel-center-disc svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
/* Controls */
.showreel-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.showreel-player:hover .showreel-controls,
.showreel-player.paused .showreel-controls {
  opacity: 1;
  pointer-events: all;
}
.showreel-progress-area {
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 6px;
}
.showreel-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  position: relative;
}
.showreel-progress-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}
.showreel-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.showreel-progress-area:hover .showreel-progress-thumb { opacity: 1; }
.showreel-controls-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sr-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.sr-btn:hover { opacity: 1; }
.sr-btn svg { width: 22px; height: 22px; }
.showreel-time {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-family: 'InterTight ExtraBold', sans-serif;
  letter-spacing: 0.03em;
  flex: 1;
}
.sr-vol-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sr-vol-slider {
  width: 72px;
  accent-color: #fff;
  cursor: pointer;
  opacity: 0.8;
}
.sr-vol-slider:hover { opacity: 1; }
.sr-fs { margin-left: auto; }

@media (max-width: 600px) {
  .showreel-iframe-wrap,
  .showreel-player {
    width: 96vw;
  }
  .sr-vol-group { display: none; }
  .sr-vol-slider { display: none; }
}
@media (max-width: 600px) { .stm-nav-btn { width: 36px; height: 36px; font-size: 16px; } }

/* ═══ Player cover (poster + play, hides before first play) ═══ */
.sr-cover {
  position: absolute;
  inset: 0;
  z-index: 12;
  border-radius: inherit;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}
.sr-cover.hidden {
  opacity: 0;
  pointer-events: none;
}
.sr-cover-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.sr-cover-btn {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.sr-cover:hover .sr-cover-btn {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}
.sr-cover-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

/* ═══ Custom player overlay controls ═══ */
.sr-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: inherit;
  overflow: hidden;
  cursor: pointer;
}
.sr-center {
  position: absolute;
  inset: 0;
  bottom: 72px;
}
.sr-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 52px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  border-radius: 0 0 10px 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.sr-overlay.ctrl-on .sr-bar {
  opacity: 1;
  pointer-events: all;
}
/* Progress bar */
.sr-prog {
  cursor: pointer;
  padding: 7px 0;
  margin-bottom: 6px;
  user-select: none;
}
.sr-prog-track {
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  position: relative;
}
.sr-prog-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  pointer-events: none;
}
.sr-prog-knob {
  position: absolute;
  top: 50%; left: 0%;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.sr-prog:hover .sr-prog-knob { opacity: 1; }
/* Buttons row */
.sr-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sr-spacer { flex: 1; }
.sr-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.sr-btn:hover { opacity: 1; transform: scale(1.1); }
.sr-btn svg { width: 20px; height: 20px; display: block; }
.sr-time {
  font-size: 12px;
  font-family: 'InterTight ExtraBold', monospace;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  white-space: nowrap;
  user-select: none;
  min-width: 84px;
}
.sr-vol {
  width: 68px;
  accent-color: #fff;
  cursor: pointer;
  opacity: 0.8;
}
.sr-vol:hover { opacity: 1; }
@media (max-width: 600px) {
  .sr-vol { display: none; }
  .sr-btn svg { width: 18px; height: 18px; }
  .sr-bar { padding: 40px 10px 10px; }
}

/* ============================================================
   MOBILE OPTIMISATION
   ============================================================ */

/* ── Hamburger button ─────────────────────────────────────── */
#navHamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
#navHamburger:hover { background: rgba(255,255,255,0.08); }
#navHamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-open #navHamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open #navHamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-open #navHamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

@media (max-width: 640px) {
  #navHamburger { display: flex; }

  /* Flatten pill → plain dark bar */
  #menu {
    background: rgba(12, 10, 8, 0.72) !important;
    padding: 0 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
  #menu ul {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 56px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Show logo */
  #menu ul > li:first-child { display: block !important; }

  /* Hide pill nav links + CTA */
  #menu div { display: none !important; }
}

/* ── Mobile menu overlay ──────────────────────────────────── */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 48px;
}
.menu-open #mobileMenu { display: flex; }
#mobileMenu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
#mobileMenu nav a {
  display: block;
  font-family: "InterTight ExtraBold", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  letter-spacing: -0.02em;
  opacity: 1;
}
#mobileMenu nav a:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
#mobileMenu nav a.active,
#mobileMenu nav a:hover { color: #fff; }
#mobileMenu nav a.mobile-menu-cta {
  margin-top: 32px;
  border: none !important;
  border-radius: 100px;
  color: #fff !important;
  font-size: 17px;
  padding: 18px 56px !important;
  width: auto;
  background: linear-gradient(135deg, var(--pink-500) 0%, #e0365a 100%);
  box-shadow: 0 4px 24px rgba(255, 91, 134, 0.45), 0 1px 0 rgba(255,255,255,0.12) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "InterTight ExtraBold", sans-serif;
  font-weight: 900;
}
#mobileMenu nav a.mobile-menu-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 32px rgba(255, 91, 134, 0.6), 0 1px 0 rgba(255,255,255,0.12) inset;
  color: #fff !important;
}

/* ── Studio intro: stack on mobile ───────────────────────── */
@media (max-width: 768px) {
  .studio-intro-inner { flex-direction: column; gap: 28px; }
  .studio-intro-video-wrap { width: 100%; }
}

/* ── Testimonials grid: 1 column on mobile ───────────────── */
@media (max-width: 900px) {
  .qr-grid { grid-template-columns: 1fr !important; }
}

/* ── Pack split: stack on mobile ─────────────────────────── */
@media (max-width: 768px) {
  .pack-split { flex-direction: column; gap: 32px; }
  .pack-split-video { flex: none; width: 100%; }
}

/* ── Pack CTA block on mobile ────────────────────────────── */
@media (max-width: 640px) {
  .pack-bottom-cta {
    margin-top: 16px;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .pack-bottom-cta-text {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
  }
  .pack-cta-btn {
    border: none;
    background: linear-gradient(135deg, var(--pink-500) 0%, #e0365a 100%);
    box-shadow: 0 4px 20px rgba(255,91,134,0.4);
    color: #fff;
    font-size: 16px;
    padding: 14px 36px;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .pack-cta-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(255,91,134,0.55);
    background: linear-gradient(135deg, var(--pink-500) 0%, #e0365a 100%);
    border: none;
  }
}

/* ── Pack items: desc below name on mobile ────────────────── */
@media (max-width: 640px) {
  .pack-grid-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: start;
  }
  .pack-grid-num {
    grid-row: 1;
    grid-column: 1;
    padding-top: 2px;
  }
  .pack-grid-name {
    grid-row: 1;
    grid-column: 2;
    font-size: 15px;
  }
  .pack-grid-desc {
    grid-row: 2;
    grid-column: 2;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.45;
  }
}

/* ── Contact form headline ────────────────────────────────── */
@media (max-width: 480px) {
  .cf-new-headline { font-size: 34px !important; }
  .contact-form-section { padding: 48px 5vw !important; }
  .cf-person-email { display: none !important; }
}

/* ── Hero stats: 2×2 grid on mobile ──────────────────────── */
@media (max-width: 640px) {
  .hero-stats-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    padding: 0 !important;
    gap: 0;
  }
  .hero-stat-divider { display: none; }
  /* Все 4 стата: padding и нижняя граница */
  .hero-stat {
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  /* Левый столбец (1-й и 3-й child) — правая граница */
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(5) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  /* Нижний ряд (5-й и 7-й child) — без нижней границы */
  .hero-stat:nth-child(5),
  .hero-stat:nth-child(7) {
    border-bottom: none;
  }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.1em; }
}

/* ── Works grid: full-width padding on small phones ─────── */
@media (max-width: 480px) {
  .works-section { padding: 48px 4vw 40px; }
  .pack-section { padding: 56px 4vw; }
  .quote-section { padding: 64px 4vw 56px; }
  .faq-section { padding: 64px 4vw 24px; }
}

/* ── Project pages on mobile ─────────────────────────────── */
@media (max-width: 480px) {
  .project-header { padding: 32px 4vw 0 !important; }
  .project-challenge { padding: 32px 4vw 40px !important; }
  .project-images { padding: 0; }
  .proj-meta { flex-wrap: wrap; gap: 8px; }
}

/* ── Testimonials: collapsible on all screens ─────────────────── */
@media (max-width: 900px) {
  .quote-section { padding: 48px 4vw 40px; }
  .qr-card {
    padding: 16px 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .qr-mark { font-size: 38px; margin-bottom: -22px; }
  .qr-name { font-size: 14px; }
  .qr-handle { font-size: 12px; }
  .qr-avatar, .qr-avatar--init { width: 42px !important; height: 42px !important; font-size: 16px; }
}

.qr-text {
  flex: none !important;
  max-height: 80px;
  overflow: hidden;
  padding-bottom: 0 !important;
  transition: max-height 0.4s ease;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
@media (min-width: 901px) {
  .qr-text { max-height: 200px; }
}
.qr-card.qr-open .qr-text {
  max-height: 1200px;
  -webkit-mask-image: none;
  mask-image: none;
}

.qr-expand-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--pink-500);
  cursor: pointer;
  padding: 8px 0 10px;
  font-family: inherit;
  transition: color 0.2s;
  flex-shrink: 0;
}
.qr-expand-btn:hover { color: var(--pink-600); }
.qr-expand-btn svg { transition: transform 0.25s ease; flex-shrink: 0; }
.qr-card.qr-open .qr-expand-btn svg { transform: rotate(180deg); }

/* ── Showreel modal: fullscreen on mobile ─────────────────── */
@media (max-width: 640px) {
  .showreel-modal {
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .showreel-modal-inner {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
  }
  .showreel-iframe-wrap {
    width: 100% !important;
    max-width: 100%;
  }
  .showreel-modal-title { font-size: 20px; }
  .showreel-modal-close { width: 40px; height: 40px; }
  .showreel-modal-close svg { width: 20px; height: 20px; }
}
