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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-mobile-open {
  overflow: hidden;
}

/* Max-width band with no horizontal padding (nest inside padded parents) */
.get-recontainer {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

.page {
  --bg-top: #050505;
  --bg-mid: #1a1b1e;
  --bg-bottom: #d6d7db;
  --text: #ffffff;
  --text-muted: #9e9e9e;
  --accent: #ff5a2f;
  --button-fg: #1c1b17;
  --ink: #1c1b17;
  --ink-muted: #666666;
  --surface: #ffffff;
  --stroke: #1c1b17;

  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
}

/* Hero section */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.28);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  row-gap: 12px;
  /* Fill the hero width so margin: 0 auto only centers when max-width caps the bar;
     without this, a shrink-wrapped flex/grid nav gets huge side margins on mobile. */
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 120px);
}

.logo {
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  line-height: 0.92;
}

.logo-line {
  display: block;
}

.logo-accent {
  color: var(--accent);
}

.menu-wrap {
  justify-self: center;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-link {
  display: block;
  padding: 12px 20px;
  border-radius: 48px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background-color 0.2s ease;
}

.menu-link:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--button-fg);
  background: #ffffff;
  border-radius: 1000px;
  padding: 14px 24px;
  min-width: 200px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.cta:active {
  transform: translateY(0);
}

/* Outlined CTA used in light sections */
.cta-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--stroke);
  font-weight: 700;
  min-width: 0;
  width: min(382px, 100%);
  box-shadow: none;
}

.cta-outline:hover {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.nav-cta {
  justify-self: end;
}

/* Trailing cluster: desktop CTA + lang; mobile lang pill + menu — Figma mobile 40004235:12739 */
.nav-end {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

/* Language switcher — Figma Navbar node 40004235:10816 (EN | RU + divider) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
}

.nav-lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile language control — Figma 40004235:12739 (pill + chevron); desktop uses .nav-lang-desktop */
.nav-lang-mobile {
  display: none;
  position: relative;
  flex-shrink: 0;
}

.nav-lang-mobile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 12px 20px;
  border: 0;
  border-radius: 48px;
  cursor: pointer;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #eeeeee;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
  min-height: 44px;
}

.nav-lang-mobile-trigger:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-lang-mobile-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-lang-mobile-chevron {
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s ease;
}

.nav-lang-mobile--open .nav-lang-mobile-chevron {
  transform: rotate(180deg);
}

.nav-lang-mobile-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  min-width: 120px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(4, 6, 15, 0.18);
  border: 1px solid rgba(28, 27, 23, 0.08);
}

.nav-lang-mobile-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Onest", "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  background: transparent;
  transition: background-color 0.15s ease;
}

.nav-lang-mobile-option:hover,
.nav-lang-mobile-option:focus-visible {
  background-color: rgba(28, 27, 23, 0.06);
}

.nav-lang-mobile-option--active {
  color: var(--accent);
  font-weight: 600;
}

.nav--light .nav-lang-mobile-trigger {
  color: var(--ink-muted);
}

.nav--light .nav-lang-mobile-trigger:hover {
  background-color: rgba(28, 27, 23, 0.06);
}

.nav.nav--menu-open .nav-lang-mobile-trigger {
  color: #1c1b17;
}

.nav.nav--menu-open .nav-lang-mobile-trigger:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.nav-lang-btn {
  position: relative;
  margin: 0;
  padding: 12px min(20px, 3vw);
  border: 0;
  border-radius: 48px;
  cursor: pointer;
  font-family: "Onest", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, color 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
}

.nav-lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-lang-btn--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-lang-divider {
  width: 1px;
  height: 30px;
  flex-shrink: 0;
  background: #9e9e9e;
}

.nav--light .nav-lang-btn {
  color: var(--ink);
}

.nav--light .nav-lang-btn:hover {
  background-color: rgba(28, 27, 23, 0.06);
}

.nav.nav--menu-open .nav-lang-desktop .nav-lang-btn {
  color: #1c1b17;
}

.nav.nav--menu-open .nav-lang-desktop .nav-lang-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.nav.nav--menu-open .nav-lang-desktop .nav-lang-divider {
  background: rgba(28, 27, 23, 0.35);
}

.main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Figma: main copy block ~153px from frame top; subtract ~nav band */
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 40px) clamp(72px, 9vw, 132px);
  text-align: center;
}

.hero-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: min(1233px, 100%);
  width: 100%;
  flex: 0 0 auto;
}

.headline {
  margin: 0;
  /* Figma Main Text Container — EN: Be Vietnam Pro Medium 80 / lh 100 / tracking -4.8px */
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5.56vw, 5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.06em;
  text-wrap: balance;
  max-width: 1233px;
}

html[lang="ru"] .hero .headline {
  /* Figma RU frame — Onest SemiBold 80 / lh 100 */
  font-family: "Onest", "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 600;
}

.headline-line2 {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .headline-line2 {
    white-space: normal;
  }
}

.headline-into {
  color: #ffffff;
}

.hero .headline-muted {
  color: rgba(255, 255, 255, 0.7);
}

.subtitle {
  margin: 0;
  max-width: 513px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin: 0;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu panel — hidden on desktop; opened via JS under max-width breakpoint */
@media (min-width: 601px) {
  .nav-mobile-menu {
    display: none !important;
  }
}

.nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-link {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.nav-mobile-list li:last-child .nav-mobile-link {
  border-bottom: none;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-mobile-cta {
  margin-top: 20px;
  width: 100%;
  max-width: none;
}

/* ---------- Featured Projects — Figma node 40004121:12973 ---------- */

.featured-work {
  background: #ffffff;
  color: var(--ink);
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 120px);
}

.featured-work-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
  max-width: 1728px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.section-mark {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-subtitle {
  margin: 0;
  max-width: 720px;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(1rem, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: var(--ink-muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

/* Project card: 1:1 aspect, image cover, gradient-to-dark bottom,
   title + description anchored at bottom. Figma node 40004121:12978 */
.project-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #0a0a0a;
  isolation: isolate;
  cursor: pointer;
  text-decoration: none;
}

.project-card:not(a) {
  cursor: default;
}

.project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.03);
}

.project-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250px;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 26.92%,
    rgba(0, 0, 0, 0.4) 56.25%,
    rgba(0, 0, 0, 0) 100%
  );
}

.project-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: clamp(20px, 2.5vw, 32px);
  color: #ffffff;
}

.project-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-description {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Our Services — Figma node 40004121:12984 ---------- */

.services {
  background: #ffffff;
  color: var(--ink);
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 120px);
}

.services-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

/* Cards: wide (736/1176 ≈ 62.6%) + narrow (440/1176 ≈ 37.4%) via flex-grow
   ratio inside .service-row. Card internals use CSS grid so the icon can
   sit in a right column on desktop (spanning header + list rows) and slot
   between header and list on mobile. Figma sizes: 736×n and 440×336 */
.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  row-gap: 16px;
  padding: 28px;
  min-height: 336px;
  box-sizing: border-box;
}

.service-card--wide {
  flex: 736 1 0;
  min-width: 0;
}

.service-card--narrow {
  flex: 440 1 0;
  min-width: 0;
}

.service-card--accent {
  background: var(--accent);
  color: #ffffff;
}

.service-card--neutral {
  background: #f5f5f5;
  color: #212121;
}

.service-card--lime {
  background: #d5fc47;
  color: #212121;
}

.service-card-header {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.service-number {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.service-card-title {
  margin: 0;
  flex: 1 1 auto;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  color: inherit;
}

.service-list {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  padding-left: 20px;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.service-list li {
  padding-left: 7px;
}

.service-card--accent .service-list {
  color: #ffffff;
}

.service-card--neutral .service-list,
.service-card--lime .service-list {
  color: #616161;
}

.service-card-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: 280px;
  height: 280px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Explicit pixel sizes per Figma spec — relying on percentages here is
   unreliable because each SVG has a different intrinsic viewBox size,
   which leads to inconsistent rendering with object-fit: contain. */
.service-card-icon svg,
.service-card-icon img {
  width: 194px;
  height: 194px;
  object-fit: contain;
  display: block;
}

/* How We Work — Figma node 40004121:13045 */
.process {
  background: #ffffff;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 120px);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 120px);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-block: clamp(40px, 6vw, 80px);
}

.process-step:first-child {
  padding-top: 0;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step + .process-step {
  border-top: 1px solid rgba(28, 27, 23, 0.12);
}

.process-number {
  flex: 0 0 auto;
  width: 175px;
  text-align: right;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #1c1b17;
}

.process-step-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Align text-baseline with the big number's cap height */
  padding-top: clamp(12px, 2vw, 24px);
}

.process-step-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.6;
  color: #212121;
}

.process-step-description {
  margin: 0;
  max-width: 720px;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #616161;
}

/* About Studio — Figma node 40004121:13122
   Two-column top (copy + image), then a 3-card stats row. */
.about {
  background: #ffffff;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 120px);
}

.about-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-top {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-info {
  flex: 0 0 auto;
  width: 406px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.about-title {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #000000;
}

.about-description {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #666666;
}

.about-cta {
  width: 240px;
  min-width: 0;
}

.about-media {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.about-image {
  display: block;
  width: 100%;
  max-width: 714px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Stats cards row */
.stats-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.stat {
  flex: 1 1 0;
  min-width: 0;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-end;
}

.stat--accent {
  background: #fe3d22;
  color: #ffffff;
  flex: 0 0 464px;
  max-width: 464px;
}

.stat--neutral {
  background: #f5f5f5;
  color: #212121;
}

.stat--lime {
  background: #d5fc47;
  color: #212121;
}

.stat-icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.stat-label {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: inherit;
}

.stat-value {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: inherit;
}

/* Pricing — Figma node 40004121:13140 */
.pricing {
  background: #f5f5f5;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 120px);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 64px);
}

.pricing-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}

.pricing-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 384px;
  min-height: 646px;
  padding: 24px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--ink);
}

.pricing-card-main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1c1b17;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-icon img {
  width: 26px;
  height: auto;
  display: block;
}

.pricing-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  color: #1c1b17;
}

.pricing-description {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #616161;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #4e4e4e;
}

.pricing-check {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #fe3d22;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
}

.pricing-price-value {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  color: #1c1b17;
}

.pricing-price-period {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #616161;
}

/* Dark pill CTA used inside the pricing cards */
.pricing-cta {
  width: 100%;
  min-width: 0;
  padding: 12px;
  background: #1c1b17;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.pricing-cta:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* Testimonials — Figma node 40004121:13147
   A row of 5 cards (wider than viewport) centered with fade masks on both
   edges. The row's natural width exceeds the container and overflows equally
   on each side thanks to flex + justify-content: center. */
.testimonials {
  background: #ffffff;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 120px);
  display: flex;
  justify-content: center;
}

.testimonials-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 64px);
}

.testimonials-viewport {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.testimonials-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  flex-shrink: 0;
}

/* Fade masks on the left and right edges */
.testimonials-viewport::before,
.testimonials-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  pointer-events: none;
  z-index: 2;
}

.testimonials-viewport::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonials-viewport::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonial-card {
  flex: 0 0 auto;
  width: 400px;
  height: 520px;
  padding: 32px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial-card--light {
  background: #fafafa;
}

.testimonial-quote {
  width: 40px;
  height: 40px;
  color: #1c1b17;
  flex-shrink: 0;
}

.testimonial-text {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #1c1b17;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.testimonial-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-name {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #4e4e4e;
}

.testimonial-divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #d2d2d2;
}

.testimonial-role {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #808080;
}

/* Final CTA — Figma node 40004121:13159
   Dark full-width block with centered heading, subtitle, and white pill button. */
.final-cta {
  background: #1c1b17;
  padding: clamp(80px, 10vw, 120px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.final-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.final-cta-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.final-cta-subtitle {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: #d2d2d2;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  padding: 14px;
  border-radius: 1000px;
  background: #ffffff;
  color: #1c1b17;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.final-cta-button:hover,
.final-cta-button:focus-visible {
  background: #fe3d22;
  color: #ffffff;
}

/* Studio tagline — Figma node 40004121:13160
   Soft-grey band with brand mark and a centered one-liner. */
.studio-tagline {
  background: #eeeeee;
  padding: 80px clamp(20px, 5vw, 120px);
  display: flex;
  justify-content: center;
}

.studio-tagline-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.studio-tagline-mark {
  width: 93px;
  height: 93px;
  display: block;
}

.studio-tagline-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.6;
  color: #1c1b17;
  max-width: 900px;
}

/* Footer — Figma node 40004121:13161 */
.site-footer {
  background: #fafafa;
  padding: 100px 40px 40px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer-inner {
  max-width: 1360px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.site-footer-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.site-footer-brand {
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  width: 124px;
  height: 52px;
}

.site-footer-logo img {
  display: block;
  width: 124px;
  height: 52px;
}

.site-footer-email {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #616161;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-email:hover,
.site-footer-email:focus-visible {
  color: #1c1b17;
}

.site-footer-columns {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.site-footer-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer-column:nth-child(2),
.site-footer-column:nth-child(3) {
  flex: 0 0 auto;
  width: 210px;
}

.site-footer-column-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #616161;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer-links a {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #212121;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #fe3d22;
}

.site-footer-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.site-footer-copyright {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #666666;
}

.site-footer-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #d2d2d2;
  color: #1c1b17;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer-top-link svg {
  width: 24px;
  height: 24px;
}

.site-footer-top-link:hover,
.site-footer-top-link:focus-visible {
  background: #1c1b17;
  color: #ffffff;
  border-color: #1c1b17;
}

/* Tablet: collapse nav to single column, keep desktop hero sizes */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .logo {
    justify-self: center;
  }

  .menu-wrap {
    justify-self: center;
  }

  .nav-end {
    justify-self: center;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-cta {
    justify-self: center;
    width: 100%;
  }

  .nav-cta .cta {
    width: 100%;
    max-width: 320px;
  }

  .service-grid {
    gap: 20px;
  }

  .service-row {
    flex-direction: column;
    gap: 20px;
  }

  .service-card--wide,
  .service-card--narrow {
    flex: 0 0 auto;
    width: 100%;
  }

  /* Mobile-layout from Figma 40004121:12845 —
     single column, icon between header and list, icon container 140px. */
  .service-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .service-card-header {
    grid-column: 1;
    grid-row: 1;
  }

  .service-card-icon {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 140px;
    height: 140px;
  }

  .service-card-icon svg,
  .service-card-icon img {
    width: 97px;
    height: 97px;
  }

  .service-list {
    grid-column: 1;
    grid-row: 3;
  }

  /* About — stack copy and image on tablet, collapse lime card off the
     464px fixed width so all 3 stats share the row evenly. */
  .about-top {
    flex-direction: column;
    align-items: stretch;
  }

  .about-info {
    width: 100%;
  }

  .about-media {
    justify-content: center;
  }

  .about-image {
    max-width: 100%;
  }

  .stat--accent {
    flex: 1 1 0;
    max-width: none;
  }

  /* Pricing — stack cards vertically on narrow viewports */
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pricing-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
  }

  /* Testimonials tablet: keep the row centered with fade masks,
     let cards stay at desktop size so the edges are still hinted at. */
  .testimonials {
    padding: clamp(64px, 9vw, 100px) 0;
  }

  .testimonials-inner {
    padding-inline: clamp(20px, 5vw, 40px);
  }

  /* Final CTA tablet */
  .final-cta {
    padding: clamp(64px, 10vw, 100px) clamp(20px, 5vw, 80px);
    min-height: 0;
  }

  /* Footer tablet — stack brand above the three columns */
  .site-footer {
    padding: 80px 24px 32px;
  }

  .site-footer-top {
    flex-direction: column;
    gap: 48px;
  }

  .site-footer-brand,
  .site-footer-columns {
    width: 100%;
  }
}

/* Mobile — Figma node 40004121:12816 (390px frame) */
@media (max-width: 600px) {
  /* Single top bar: logo left, language + menu right (override tablet .nav-end { width: 100% }) */
  .nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 20px;
    text-align: start;
  }

  .logo {
    justify-self: unset;
    text-align: left;
    font-size: 1.1rem;
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-end {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    justify-self: unset;
  }

  .nav-actions {
    width: auto;
    flex: 0 0 auto;
  }

  .menu-wrap,
  .nav-cta {
    display: none;
  }

  .nav-lang-desktop {
    display: none !important;
  }

  .nav-lang-mobile {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  /* Mobile nav dropdown — Figma node 40004121:12829 */
  .nav-mobile-menu {
    flex: 1 0 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 8px 20px 24px;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.45);
    z-index: 50;
  }

  .nav-mobile-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Full-screen mobile menu open — Figma 40004171:138092 (board / nav gear menu) */
  .nav.nav--menu-open {
    position: fixed;
    inset: 0;
    z-index: 200;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: auto;
    overscroll-behavior: contain;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: center;
    gap: 0;
    padding: calc(8px + env(safe-area-inset-top, 0px)) 20px 0;
    background: #ffffff;
    box-shadow: none;
  }

  .nav.nav--menu-open .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    flex: unset;
    padding-right: 12px;
  }

  .nav.nav--menu-open .nav-end {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    margin-left: 0;
    align-self: center;
    position: relative;
    z-index: 100;
  }

  .hero .nav.nav--menu-open .logo {
    color: #1c1b17;
  }

  .hero .nav.nav--menu-open .logo-accent {
    color: var(--accent);
  }

  /* Keep close control in the flex row next to language (no absolute — avoids overlap with lang pill) */
  .nav.nav--menu-open .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    inset: auto;
    flex-shrink: 0;
    justify-self: unset;
  }

  .nav.nav--menu-open .nav-toggle-bar:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav.nav--menu-open .nav-toggle-bar:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav.nav--menu-open .nav-mobile-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    min-height: 0;
    display: flex;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav.nav--menu-open .nav-mobile-menu nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 0;
  }

  .nav.nav--menu-open .nav-mobile-list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 361px;
    padding: 8px 16px 24px;
    margin: 0;
  }

  .nav.nav--menu-open .nav-mobile-list li {
    width: auto;
    max-width: 100%;
  }

  .nav.nav--menu-open .nav-mobile-link {
    padding: 12px 20px;
    border: 0;
    border-radius: 48px;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: #1c1b17;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.35);
  }

  .nav.nav--menu-open .nav-mobile-link:hover,
  .nav.nav--menu-open .nav-mobile-link:focus-visible {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .nav.nav--menu-open .nav-mobile-cta {
    flex-shrink: 0;
    align-self: center;
    width: 220px;
    max-width: 100%;
    margin: 16px 0 calc(36px + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  .page-start .nav.nav--menu-open .nav-mobile-menu,
  .page-studio .nav.nav--menu-open .nav-mobile-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main {
    padding: 20px 20px 0;
  }

  .hero-stack {
    gap: 40px;
    max-width: 350px;
  }

  .headline {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  html[lang="ru"] .hero .headline {
    font-family: "Onest", system-ui, sans-serif;
    font-weight: 600;
  }

  .headline-line2 {
    white-space: normal;
  }

  .subtitle {
    max-width: 100%;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .work-hero-title-strong,
  .work-hero-title-muted {
    display: block;
  }

  .hero-stack .cta {
    width: 220px;
    min-width: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  /* Mobile — Figma node 40004121:12845 */
  .services {
    padding: 100px 20px;
  }

  .services-inner {
    gap: 48px;
  }

  .section-header {
    gap: 20px;
  }

  .services .section-subtitle,
  .process .section-subtitle,
  .pricing .section-subtitle {
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: #616161;
  }

  /* How We Work mobile — Figma node 40004121:12906
     Stacked, center-aligned: number on top, then title, then description. */
  .process {
    padding: 100px 20px;
  }

  .process-inner {
    gap: 80px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    padding-block: 80px;
  }

  .process-number {
    width: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
    color: #1c1b17;
  }

  .process-step-info {
    width: 100%;
    padding-top: 0;
    align-items: center;
  }

  .process-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .process-step-description {
    font-size: 16px;
    text-align: center;
  }

  /* About mobile — Figma node 40004121:12918
     Rearranged and centered: image → centered header → CTA → stats. */
  .about {
    padding: 100px 20px;
  }

  .about-inner {
    gap: 80px;
    align-items: center;
  }

  .about-top {
    flex-direction: column;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 350px;
  }

  /* Reorder: image on top, copy below */
  .about-media {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .about-info {
    order: 2;
    width: 100%;
    max-width: 350px;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .about-image {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
  }

  .about-copy {
    gap: 12px;
  }

  .about-title {
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
    color: #1c1b17;
  }

  /* Suppress the desktop line break on narrow screens */
  .about-title br {
    display: none;
  }

  .about-description {
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: #616161;
  }

  .about-cta {
    width: 240px;
    max-width: 100%;
    /* gap (20px) + margin (60px) ≈ Figma's 80px between header and CTA */
    margin-top: 60px;
  }

  .stats-row {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 350px;
  }

  .stat {
    width: 100%;
    min-height: 300px;
  }

  .stat--accent {
    flex: 0 0 auto;
    max-width: none;
  }

  /* Pricing mobile — Figma node 40004121:12929 */
  .pricing {
    padding: 100px 20px;
  }

  .pricing-inner {
    gap: 80px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    max-width: 350px;
  }

  /* Testimonials mobile — single-card view with horizontal scroll.
     Users can swipe through the testimonials; fade masks stay visible. */
  .testimonials {
    padding: 100px 0;
  }

  .testimonials-inner {
    gap: 48px;
    padding-inline: 20px;
  }

  .testimonials .section-header {
    padding-inline: 0;
  }

  .testimonials .section-subtitle {
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: #616161;
  }

  .testimonials-viewport {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-viewport::-webkit-scrollbar {
    display: none;
  }

  .testimonials-track {
    gap: 20px;
    padding-inline: 20px;
  }

  .testimonial-card {
    width: min(350px, calc(100vw - 40px));
    height: auto;
    min-height: 480px;
    scroll-snap-align: center;
  }

  .testimonials-viewport::before,
  .testimonials-viewport::after {
    width: 20px;
  }

  /* Final CTA mobile */
  .final-cta {
    padding: 80px 20px;
  }

  .final-cta-inner {
    gap: 40px;
  }

  .final-cta-copy {
    gap: 20px;
  }

  .final-cta-title {
    font-size: 36px;
    letter-spacing: -0.03em;
  }

  .final-cta-subtitle {
    font-size: 18px;
  }

  /* Studio tagline mobile */
  .studio-tagline {
    padding: 60px 20px;
  }

  .studio-tagline-inner {
    gap: 32px;
  }

  .studio-tagline-mark {
    width: 72px;
    height: 72px;
  }

  .studio-tagline-title {
    font-size: 24px;
    line-height: 1.5;
  }

  /* Footer mobile — single column */
  .site-footer {
    padding: 60px 20px 32px;
  }

  .site-footer-inner {
    gap: 48px;
  }

  .site-footer-top {
    flex-direction: column;
    gap: 48px;
  }

  .site-footer-brand {
    gap: 32px;
  }

  .site-footer-columns {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .site-footer-column,
  .site-footer-column:nth-child(2),
  .site-footer-column:nth-child(3) {
    flex: 1 1 auto;
    width: 100%;
    gap: 20px;
  }

  .site-footer-links {
    gap: 20px;
  }

  .site-footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .site-footer-copyright {
    font-size: 14px;
  }

  .site-footer-top-link {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .site-footer-top-link svg {
    width: 20px;
    height: 20px;
  }
}

/* ---------- Start project page — Figma 40004121:12798 ---------- */

.page.page-start,
.page.page-studio,
.page.page-work,
.page.page-case {
  --text: #212121;
  --text-muted: #616161;
  background: #ffffff;
  color: #212121;
}

.page-start > .nav.nav--light {
  background: transparent;
  box-shadow: none;
}

.page-start .nav--light .menu-link,
.page-studio .nav--light .menu-link,
.page-work .nav--light .menu-link,
.page-case .nav--light .menu-link {
  color: #212121;
}

.page-start .nav--light .menu-link:hover,
.page-studio .nav--light .menu-link:hover,
.page-work .nav--light .menu-link:hover,
.page-case .nav--light .menu-link:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.page-start .cta--nav-dark,
.page-studio .cta--nav-dark,
.page-work .cta--nav-dark,
.page-case .cta--nav-dark,
.hero .cta--nav-dark {
  min-width: 200px;
  width: 220px;
  max-width: 100%;
  padding: 14px;
  background: #1c1b17;
  color: #ffffff;
  border: none;
  box-shadow: none;
  text-decoration: none;
  box-sizing: border-box;
}

.page-start .cta--nav-dark:hover,
.page-studio .cta--nav-dark:hover,
.page-work .cta--nav-dark:hover,
.page-case .cta--nav-dark:hover,
.hero .cta--nav-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.page-start .cta--nav-dark:active,
.page-studio .cta--nav-dark:active,
.page-work .cta--nav-dark:active,
.page-case .cta--nav-dark:active,
.hero .cta--nav-dark:active {
  transform: translateY(0);
}

.start-main {
  padding: 100px clamp(20px, 5vw, 120px) 120px;
}

.start-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 48px);
  max-width: 1728px;
  margin: 0 auto;
}

.start-intro {
  flex: 0 1 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.start-kicker {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fe3d22;
}

.start-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-title {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #000000;
}

.start-lead,
.start-aside {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #616161;
}

.start-aside a {
  font-weight: 700;
  color: #1c1b17;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.start-aside a:hover,
.start-aside a:focus-visible {
  color: #fe3d22;
}

.start-form-card {
  flex: 1 1 480px;
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  box-sizing: border-box;
  padding: 40px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.start-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.start-legend {
  margin: 0 0 14px;
  padding: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #616161;
}

.start-required {
  color: #fe3d22;
}

.start-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.start-chip {
  position: relative;
  cursor: pointer;
}

.start-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

/* Chips — Figma 40004121:12812: default border #e0e0e0; selected fill #1c1b17 + white label */
.start-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 1000px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #212121;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.start-chip:hover span {
  border-color: #b4b4b4;
}

.start-chip input:focus-visible + span {
  outline: 2px solid #1c1b17;
  outline-offset: 2px;
}

.start-chip input:checked + span {
  border-color: #1c1b17;
  background: #1c1b17;
  color: #ffffff;
}

.start-chip input:checked:hover + span {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

/* Text fields — Figma 40004121:12812 (Input Form): underline #b4b4b4, label/body #212121 */
.start-fields-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.start-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 0;
  border-bottom: 1px solid #b4b4b4;
}

.start-field:focus-within,
.start-field:has(:invalid),
.start-field:has(:user-invalid) {
  border-bottom-color: #b4b4b4;
}

.start-field-label {
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #212121;
}

.start-field input,
.start-field textarea {
  width: 100%;
  margin: 0;
  padding: 8px 0 0;
  border: none;
  background: transparent;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #212121;
  resize: vertical;
  min-height: 0;
}

.start-field input:focus,
.start-field textarea:focus {
  outline: none;
}

.start-field--tall textarea {
  min-height: 120px;
}

.start-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
}

.start-submit {
  flex: 0 0 auto;
  width: 220px;
  max-width: 100%;
  padding: 14px;
  box-sizing: border-box;
  border: none;
  border-radius: 1000px;
  background: #1c1b17;
  color: #ffffff;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.start-submit-text--mobile {
  display: none;
}

.start-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.start-submit:active {
  transform: translateY(0);
}

.start-disclaimer {
  flex: 1 1 200px;
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #616161;
  text-align: right;
}

.start-disclaimer a {
  color: #1c1b17;
  text-decoration: none;
  font-weight: 500;
}

.start-disclaimer a:hover,
.start-disclaimer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .start-form-card {
    margin-left: 0;
    max-width: none;
  }

  .start-intro {
    max-width: none;
    flex-basis: 100%;
  }
}

@media (max-width: 600px) {
  .page-start .nav-mobile-menu,
  .page-studio .nav-mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.12);
  }

  .page-start .nav-mobile-link,
  .page-studio .nav-mobile-link {
    color: #212121;
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .page-start .nav-mobile-link:hover,
  .page-start .nav-mobile-link:focus-visible,
  .page-studio .nav-mobile-link:hover,
  .page-studio .nav-mobile-link:focus-visible {
    background-color: rgba(0, 0, 0, 0.04);
  }

  /* Intro — tighter mobile rhythm alongside form */
  .start-layout {
    gap: 32px;
  }

  .start-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .start-lead,
  .start-aside {
    font-size: 18px;
  }

  .start-kicker {
    font-size: 14px;
  }

  .start-main {
    padding: 48px 20px 64px;
  }

  /* Form card — Figma 40004121:12795 / Message. Mobile: py 40, single 20px gutter via .start-main */
  .start-form-card {
    padding: 40px 0;
  }

  /* Section labels — mobile 18px (desktop legend stays 20px above this breakpoint) */
  .start-legend {
    font-size: 18px;
  }

  /* Service chips: full-width stack, centered — Figma Message. Mobile */
  .start-fieldset:first-of-type .start-chip-row {
    flex-direction: column;
    align-items: center;
  }

  .start-fieldset:first-of-type .start-chip {
    width: 100%;
    max-width: 350px;
  }

  .start-fieldset:first-of-type .start-chip span {
    width: 100%;
    min-height: 68px;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }

  /* Text fields — mobile spec uses Grey-300 underline + 18px grey labels */
  .start-field {
    border-bottom-color: #b4b4b4;
  }

  .start-field-label {
    font-size: 18px;
    color: #616161;
  }

  .start-field input,
  .start-field textarea {
    font-size: 18px;
  }

  .start-form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .start-submit {
    width: 100%;
  }

  .start-submit-text--desktop {
    display: none;
  }

  .start-submit-text--mobile {
    display: inline;
  }

  /* Figma: legal line full width, right-aligned */
  .start-disclaimer {
    text-align: right;
  }
}

/* ---------- Studio page — Figma 40004121:12411 (Who we are) ---------- */

.page-studio > .nav.nav--light.nav--fixed:not(.nav--menu-open),
.page-work > .nav.nav--light.nav--fixed:not(.nav--menu-open),
.page-case > .nav.nav--light.nav--fixed:not(.nav--menu-open) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: none;
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* ---------- Work page — Figma 40004121:11688 ---------- */

.work-main {
  padding-top: clamp(88px, 12vh, 120px);
  padding-inline: 0;
  padding-bottom: 0;
}

.work-hero {
  background: #ffffff;
  padding: 0 clamp(20px, 5vw, 120px) 48px;
}

.work-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.work-hero-title {
  margin: 0;
  max-width: 100%;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #212121;
}

.work-hero-title-muted {
  color: #9e9e9e;
}

.work-hero-lead {
  margin: 0;
  max-width: 684px;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(1rem, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #666666;
}

.work-page-featured {
  padding-top: 0;
  padding-bottom: clamp(56px, 8vw, 120px);
}

.work-page-featured .featured-work-inner {
  gap: 0;
}

.page-work .work-main > .final-cta {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
  padding-block: clamp(80px, 10vw, 120px);
  scroll-margin-top: 96px;
}

.page-work .final-cta {
  min-height: 600px;
}

/* ---------- E-commerce case study — Figma 40004121:11851 ---------- */

.case-main {
  background: #ffffff;
  color: #212121;
  padding-top: 83px;
}

.case-container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.case-hero {
  position: relative;
  height: min(1024px, calc(100vw * 0.711));
  min-height: 520px;
  overflow: hidden;
  background: #1c1b21;
}

.case-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.case-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-intro {
  padding-block: clamp(72px, 8vw, 120px) clamp(56px, 7vw, 96px);
}

.case-title-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(44px, 6.2vw, 80px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #212121;
}

.case-lede,
.case-emphasis {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #1a1a1a;
}

.case-copy,
.case-list {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}

.case-overview {
  padding-bottom: clamp(72px, 8vw, 120px);
}

.case-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 379px) minmax(0, 1fr);
  gap: 21px;
  align-items: stretch;
}

.case-phone-card {
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fafafa;
}

.case-phone-card img {
  width: min(72%, 260px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 60px rgba(4, 6, 15, 0.08));
}

.case-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 60px;
  padding: clamp(32px, 4.5vw, 60px);
  background: #fafafa;
}

.case-fact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-fact dt {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #9e9e9e;
}

.case-fact dd {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  color: #212121;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 2px solid #757575;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #757575;
}

.case-section {
  padding-block: clamp(56px, 8vw, 120px);
}

.case-section h2 {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  color: #212121;
}

.case-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #d2d2d2;
}

.case-section-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  border-left: 1px solid #d2d2d2;
}

.case-list {
  padding-left: 1.25em;
}

.case-list li + li {
  margin-top: 4px;
}

.case-list--columns {
  columns: 2;
  column-gap: 48px;
  max-width: 1000px;
  margin-top: 24px;
}

.case-media-strip {
  width: 100%;
  min-height: min(56.25vw, 810px);
  overflow: hidden;
  background: #f3f3f3;
}

.case-media-strip--dark {
  background: #1c1c1c;
}

.case-media-strip img {
  display: block;
  width: 100%;
  min-height: min(56.25vw, 810px);
  object-fit: cover;
}

.case-feature-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
  padding-block: clamp(56px, 8vw, 120px);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 588px);
  gap: 24px;
  align-items: stretch;
}

.case-feature--reverse {
  grid-template-columns: minmax(320px, 588px) minmax(0, 1fr);
}

.case-feature--reverse .case-feature-copy {
  order: 2;
}

.case-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.case-feature-copy h3 {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  color: #212121;
}

.case-feature-copy p,
.case-admin-block p {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}

.case-feature-media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  background: #f3f1f4;
}

.case-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 588px;
  object-fit: contain;
}

.case-cta {
  min-height: 600px;
  padding: clamp(80px, 10vw, 120px) 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1b17;
}

.case-cta-inner {
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.case-cta h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.case-cta p {
  margin: 0 0 28px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: #d2d2d2;
}

.case-cta-mobile {
  display: none;
}

.case-admin-intro .case-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 588px;
  margin-left: max(20px, calc((100% - 1200px) / 2));
  margin-right: auto;
}

.case-admin-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(56px, 8vw, 120px);
}

.case-admin-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-admin-block p {
  width: min(588px, calc(100% - 40px));
  margin-left: max(20px, calc((100% - 1200px) / 2));
}

.case-admin-block img {
  display: block;
  width: 100%;
  min-height: min(56.25vw, 810px);
  object-fit: cover;
  background: #f3f3f3;
}

.case-more {
  padding-block: clamp(72px, 8vw, 120px);
}

.case-more .project-grid {
  max-width: 1200px;
}

.page-case .final-cta {
  min-height: 600px;
}

.studio-main {
  padding: clamp(88px, 12vh, 120px) clamp(20px, 5vw, 120px) clamp(64px, 8vw, 120px);
}

.studio-about {
  background: #ffffff;
}

.studio-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 64px);
}

.studio-about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}

.studio-about-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.studio-about-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #1c1b17;
}

.studio-about-title-muted {
  color: #9e9e9e;
}

.studio-about-lead {
  max-width: 684px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.studio-about-lead p {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #616161;
}

.studio-about-lead p + p {
  margin-top: 0.35em;
}

.studio-about-cta {
  width: 220px;
  min-width: 0;
  max-width: 100%;
}

.studio-about-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.studio-about-media {
  width: 100%;
  background: #dedede;
  overflow: hidden;
}

.studio-about-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.studio-stats-row {
  max-width: 1200px;
}

/* ---------- Studio — Meet the team Figma 40004121:12429 ---------- */

.studio-team {
  background: #ffffff;
  margin-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.studio-team-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 64px);
}

.studio-team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
}

.studio-team-kicker {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fe3d22;
}

.studio-team-heading-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.studio-team-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #1c1b17;
}

.studio-team-lead {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #666666;
}

.studio-team-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.studio-team-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 15px;
  align-items: start;
  width: 100%;
}

.studio-team-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.studio-team-card-media {
  width: 100%;
  aspect-ratio: 390 / 400;
  background: #f5f5f5;
  overflow: hidden;
}

.studio-team-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.studio-team-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.studio-team-card-name {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #212121;
}

.studio-team-card-role {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #616161;
}

/* ---------- Studio — Our journey timeline Figma 40004121:12444 + states 12541, 12571, 12601 ---------- */

.studio-journey {
  background: #fafafa;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 120px);
  margin-top: 0;
}

.studio-journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 64px);
}

.studio-journey-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
}

.studio-journey-kicker {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fe3d22;
}

.studio-journey-heading-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.studio-journey-title {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #1c1b17;
}

.studio-journey-lead {
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #666666;
}

.studio-journey-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

.studio-journey-timeline {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.studio-journey-year {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  transition: transform 0.2s ease;
}

.studio-journey-year:hover .studio-journey-year-label {
  color: #8a8a8a;
}

.studio-journey-year.is-active:hover .studio-journey-year-label {
  color: #fe3d22;
}

.studio-journey-year:focus-visible {
  outline: 2px solid #fe3d22;
  outline-offset: 6px;
  border-radius: 4px;
}

.studio-journey-year-label {
  margin: 0;
  width: 100%;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #bdbdbd;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio-journey-year.is-active .studio-journey-year-label {
  color: #fe3d22;
}

.studio-journey-year-line {
  display: flex;
  align-items: center;
  width: 100%;
}

.studio-journey-seg {
  flex: 1 1 0;
  min-width: 0;
  height: 1px;
  background-color: #d8d8d8;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio-journey-year.is-active .studio-journey-seg--before {
  background-color: #fe3d22;
}

.studio-journey-dot {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #d8d8d8;
  background-color: #fafafa;
  transition:
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.studio-journey-year.is-active .studio-journey-dot {
  background-color: #fe3d22;
  border-color: #fe3d22;
  transform: scale(1.05);
}

.studio-journey-panel {
  width: 100%;
  max-width: 634px;
}

.studio-journey-copy-stack {
  display: grid;
  grid-template-areas: "journeycopy";
  width: 100%;
}

.studio-journey-copy {
  grid-area: journeycopy;
  margin: 0;
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #616161;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.studio-journey-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Studio — Founder statement Figma 40004121:12474 ---------- */

.studio-founder {
  background: #ffffff;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 120px);
}

.studio-founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 64px);
}

.studio-founder-kicker {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fe3d22;
}

.studio-founder-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 48px);
  width: 100%;
}

.studio-founder-profile {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.studio-founder-media {
  width: 100%;
  aspect-ratio: 400 / 600;
  background: #f5f5f5;
  overflow: hidden;
}

.studio-founder-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.studio-founder-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.studio-founder-name {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #212121;
}

.studio-founder-role {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #616161;
}

.studio-founder-statement {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 48px);
}

.studio-founder-quote-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-founder-quote {
  width: 100px;
  height: 100px;
  color: #fe3d22;
}

.studio-founder-copy {
  flex: 1 1 240px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.studio-founder-lede {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.studio-founder-lede-strong {
  color: #212121;
}

.studio-founder-lede-muted {
  color: #9e9e9e;
}

.studio-founder-mission {
  margin: 0;
  font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: #616161;
}

.page-studio .testimonials,
.page-studio .final-cta {
  scroll-margin-top: 96px;
}

.page-studio .testimonials {
  padding-inline: 0;
}

/* Full-bleed black band: cancel .studio-main horizontal padding */
.page-studio .studio-main > .final-cta {
  margin-inline: calc(-1 * clamp(20px, 5vw, 120px));
  width: calc(100% + 2 * clamp(20px, 5vw, 120px));
  max-width: none;
  box-sizing: border-box;
  padding-inline: 0;
  padding-block: clamp(80px, 10vw, 120px);
}

@media (prefers-reduced-motion: reduce) {
  .studio-journey-year-label,
  .studio-journey-seg,
  .studio-journey-dot,
  .studio-journey-copy {
    transition: none;
  }

  .studio-journey-year.is-active .studio-journey-dot {
    transform: none;
  }
}

@media (max-width: 900px) {
  .case-hero {
    height: 72vw;
    min-height: 420px;
  }

  .case-overview-grid,
  .case-two-column,
  .case-feature,
  .case-feature--reverse {
    grid-template-columns: 1fr;
  }

  .case-feature--reverse .case-feature-copy {
    order: 0;
  }

  .case-section-body {
    padding-left: 0;
    border-left: 0;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .case-phone-card {
    min-height: 420px;
  }

  .case-list--columns {
    columns: 1;
  }

  .case-admin-intro .case-container,
  .case-admin-block p {
    margin-inline: auto;
  }

  .studio-team-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-founder-profile {
    max-width: none;
    flex: 1 1 100%;
  }

  .studio-founder-media {
    max-width: 400px;
  }

  .studio-journey-timeline {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .studio-journey-year {
    flex: 0 0 min(200px, 28vw);
    min-width: 140px;
  }
}

.menu-link[aria-current="page"],
.nav-mobile-link[aria-current="page"] {
  font-weight: 600;
}

@media (max-width: 600px) {
  .case-main {
    padding-top: 64px;
  }

  .case-hero {
    height: 350px;
    min-height: 350px;
  }

  .case-intro {
    padding-block: 56px 48px;
  }

  .case-title-block {
    gap: 24px;
  }

  .case-title {
    font-size: 32px;
    line-height: 1.6;
    letter-spacing: -0.03em;
  }

  .case-title-block {
    align-items: center;
    text-align: center;
  }

  .case-lede {
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2px;
  }

  .case-emphasis {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .case-copy,
  .case-list,
  .case-feature-copy p,
  .case-admin-block p {
    font-size: 18px;
  }

  .case-overview {
    padding-bottom: 64px;
  }

  .case-phone-card {
    min-height: 535px;
  }

  .case-facts {
    padding: 32px 20px;
  }

  .case-fact dt {
    font-size: 16px;
  }

  .case-section,
  .case-more {
    padding-block: 64px;
  }

  .case-section h2 {
    font-size: 32px;
    line-height: 1.6;
  }

  .case-two-column {
    gap: 20px;
    padding-top: 0;
    border-top: 0;
  }

  .case-section-heading,
  .case-text-section .case-container > h2 {
    padding-bottom: 20px;
    border-bottom: 1px solid #d2d2d2;
  }

  .case-section-body {
    gap: 20px;
  }

  .case-section-body .case-emphasis {
    padding-bottom: 20px;
    border-bottom: 1px solid #d2d2d2;
  }

  .case-media-strip,
  .case-media-strip img,
  .case-admin-block img {
    min-height: 220px;
    height: 220px;
  }

  .case-feature-grid {
    width: 100%;
    gap: 0;
    padding-block: 0;
  }

  .case-feature {
    gap: 40px;
    padding: 48px 0;
  }

  .case-feature-copy {
    width: min(350px, calc(100% - 40px));
    margin-inline: auto;
    gap: 20px;
  }

  .case-feature-copy h3 {
    font-size: 18px;
    line-height: 1.6;
  }

  .case-feature-media {
    width: 100%;
    min-height: 390px;
  }

  .case-feature-media img {
    max-height: none;
  }

  .case-cta-mobile {
    display: inline;
  }

  .case-cta-desktop {
    display: none;
  }

  .page-case-taxi .case-cta {
    min-height: 600px;
    background:
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url("./taxi_service_main_full.png") center / cover;
  }

  .page-case-taxi .case-cta-inner {
    width: min(350px, 100%);
    gap: 60px;
  }

  .page-case-taxi .case-cta h2 {
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .page-case-taxi .case-cta p {
    margin: -28px 0 0;
    font-family: "Be Vietnam Pro", "Inter", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
  }

  .page-case-taxi .case-cta .final-cta-button {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
    background: #f0f0f0;
    color: #1c1b17;
  }

  .case-cta,
  .page-case .final-cta {
    min-height: 520px;
  }

  .case-more .featured-work-inner {
    align-items: stretch;
    width: 100%;
  }

  .case-more .project-grid {
    display: flex;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .case-more .project-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
  }

  .studio-main {
    padding: 72px 20px 64px;
  }

  .studio-about-intro {
    gap: 32px;
  }

  .studio-about-copy {
    gap: 32px;
  }

  .studio-about-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .studio-about-lead p {
    font-size: 18px;
    letter-spacing: 0.2px;
  }

  .studio-team-inner {
    gap: 40px;
  }

  .studio-team-kicker {
    font-size: 14px;
  }

  .studio-team-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .studio-team-lead {
    font-size: 18px;
    letter-spacing: 0.2px;
  }

  .studio-team-row {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-inline: auto;
  }

  .studio-journey-inner {
    gap: 40px;
  }

  .studio-journey-kicker {
    font-size: 14px;
  }

  .studio-journey-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .studio-journey-lead {
    font-size: 18px;
    letter-spacing: 0.2px;
  }

  .studio-journey-body {
    gap: 32px;
  }

  .studio-journey-year {
    gap: 16px;
  }

  .studio-journey-year-label {
    font-size: clamp(32px, 10vw, 48px);
  }

  .studio-journey-copy {
    font-size: 18px;
    letter-spacing: 0.2px;
  }

  .page-studio .testimonials-inner {
    padding-inline: 0;
  }

  .page-studio .testimonials-track {
    padding-inline: 0;
  }

  .page-studio .studio-main > .final-cta {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }

  .studio-founder-inner {
    gap: 40px;
  }

  .studio-founder-kicker {
    font-size: 14px;
  }

  .studio-founder-statement {
    flex-direction: column;
    gap: 24px;
  }

  .studio-founder-quote {
    width: 72px;
    height: 72px;
  }

  .studio-founder-copy {
    gap: 32px;
  }

  .studio-founder-lede {
    font-size: clamp(24px, 6vw, 32px);
  }

  .studio-founder-mission {
    font-size: 18px;
  }
}

/* Russian locale: prefer Cyrillic-capable fonts (Be Vietnam Pro has limited Cyrillic coverage) */
html[lang="ru"] .page {
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
}

html[lang="ru"] .logo-line,
html[lang="ru"] .menu-link,
html[lang="ru"] .nav-mobile-link,
html[lang="ru"] .cta,
html[lang="ru"] .section-title,
html[lang="ru"] .section-mark,
html[lang="ru"] .service-card-title,
html[lang="ru"] .project-title,
html[lang="ru"] .process-step-title,
html[lang="ru"] .pricing-title,
html[lang="ru"] .pricing-feature,
html[lang="ru"] .about-title,
html[lang="ru"] .stat-label,
html[lang="ru"] .site-footer-column-title,
html[lang="ru"] .final-cta-button,
html[lang="ru"] .studio-tagline-title {
  font-family: "Inter", "Be Vietnam Pro", system-ui, sans-serif;
}

html[lang="ru"] .final-cta-title,
html[lang="ru"] .final-cta-subtitle {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}
