@font-face {
  font-family: "Bounded";
  src: local("Bounded"), local("Bounded Variable"), url("../assets/fonts/Bounded-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

* { margin: 0; padding: 0; box-sizing: border-box; user-select: none; }
:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --paper: #f4f4f2;
  --text: #0f121b;
  --text-soft: #6c7387;
  --line: rgba(15, 18, 27, 0.16);
  --line-soft: rgba(15, 18, 27, 0.1);
  --accent: #0f121b;
  --accent-2: #2e3342;
  --container: min(1320px, calc(100% - 64px));
  --header-h: 78px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Bounded", "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(12, 18, 32, 0.09) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.08;
  z-index: 2;
}

header {
  height: var(--header-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: transparent;
  backdrop-filter: none;
  z-index: 20;
  transition: transform 0.4s var(--ease);
}

header.hidden { transform: translateY(-100%); }
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
  margin-left: 28px;
}

header nav a,
.header-btn {
  color: var(--text-soft);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

header nav a:hover,
.header-btn:hover { color: var(--text); }

header nav a::after,
.header-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.32s var(--ease);
  pointer-events: none;
}

header nav a:hover::after,
.header-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-btn {
  border: 0;
  border-radius: 0;
  padding: 0 0 8px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 41;
}

.burger-icon {
  width: 24px;
  height: 16px;
  position: relative;
  display: block;
}

.burger-icon::before,
.burger-icon::after,
.burger-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger-icon::before { top: 0; }
.burger-icon span { top: 7px; }
.burger-icon::after { top: 14px; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  background: #ffffff;
  color: var(--text);
  z-index: 40;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.34s var(--ease), visibility 0s linear 0.34s;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 26px;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.34s var(--ease), visibility 0s;
}

.mobile-menu-head {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}

.mobile-menu-brand {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-nav {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.mobile-menu-link,
.mobile-menu-cta {
  border: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  padding: 0;
}

.mobile-menu-cta {
  margin-top: 4px;
  font-family: inherit;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

section { position: relative; z-index: 3; }

.hero {
  min-height: 100vh;
  padding: var(--header-h) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f0f2f4;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240, 242, 244, 0.24) 0%, rgba(240, 242, 244, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--text-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 28px;
}

.hero-title {
  text-transform: uppercase;
  line-height: 0.88;
  font-size: clamp(58px, 12vw, 180px);
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-switch {
  display: block;
  height: 1em;
  overflow: hidden;
}

.hero-switch-top {
  width: 6.6ch;
  margin-top: 0;
}

.hero-switch-bottom {
  width: 9.5ch;
  margin-top: 6px;
}

.hero-switch-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.hero-switch-word {
  display: block;
  white-space: nowrap;
  will-change: transform, opacity;
  color: #0f121b;
  line-height: 1;
  height: 1em;
  font-weight: 700;
  -webkit-text-stroke: 0.024em currentColor;
  paint-order: stroke fill;
}

.hero-switch-word.creative {
  color: #0f121b;
}

.hero-switch-word.studio {
  color: #0f121b;
}

.hero-switch-word.weare {
  color: #0f121b;
}

.hero-divider {
  margin-top: 34px;
  width: min(72vw, 1080px);
  height: 1px;
  background: rgba(15, 18, 27, 0.28);
  transform-origin: left center;
}

.hero-note {
  max-width: 740px;
  margin-top: 34px;
  color: var(--text-soft);
  font-size: clamp(15px, 1.5vw, 23px);
  line-height: 1.44;
  letter-spacing: 0.01em;
}

.hero-meta {
  margin-top: 44px;
  display: flex;
  gap: 24px;
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
}

.section-head {
  width: var(--container);
  margin: 0 auto 64px;
}

.section-label {
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(34px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
}

.section-title .light {
  color: #95a0bd;
  font-weight: 500;
}

.title-line {
  display: block;
  overflow: hidden;
  line-height: 1;
}

.title-line > span {
  display: inline-block;
  will-change: transform, opacity;
}

.title-slide-target .title-line {
  overflow: visible;
}

.title-slide-free .title-line {
  overflow: visible;
}

.section-desc {
  max-width: 720px;
  margin-top: 20px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 16px;
}

.approach {
  padding: 160px 0 80px;
}

.metrics {
  width: var(--container);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.metrics::before,
.metrics::after {
  content: "";
  position: absolute;
  left: -56px;
  right: -56px;
  height: 1px;
  background: rgba(15, 18, 27, 0.24);
  pointer-events: none;
  z-index: 2;
}

.metrics::before { top: 0; }
.metrics::after { bottom: 0; }

.metric::before,
.metric::after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--line-top));
  bottom: calc(-1 * var(--line-bottom));
  width: 1px;
  background: rgba(15, 18, 27, 0.24);
  pointer-events: none;
  z-index: 3;
}

.metric:first-child::before { left: -10px; }
.metric:last-child::after { right: -10px; }

.metric:not(:first-child)::before {
  left: -10px;
}

.metric:not(:last-child)::after {
  right: -10px;
}

.metric {
  --line-top: 56px;
  --line-bottom: 48px;
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 34px 28px;
  /* backdrop-filter: blur(12px); */
  overflow: visible;
}

.metric:nth-child(2) {
  --line-top: 82px;
  --line-bottom: 38px;
}

.metric:nth-child(3) {
  --line-top: 44px;
  --line-bottom: 78px;
}

.metric:nth-child(4) {
  --line-top: 96px;
  --line-bottom: 62px;
}

.metric-number {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.metric-percent {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.metric-percent::after {
  content: "%";
  font-size: 0.44em;
  margin-left: 0.08em;
  vertical-align: -0.02em;
  font-weight: 800;
  letter-spacing: 0;
}

.metric-label {
  color: var(--text-soft);
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

.portfolio {
  padding: 140px 0 120px;
  background: #ffffff;
}

.portfolio .section-head {
  margin-bottom: 48px;
}

.case-hero {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  gap: clamp(24px, 3vw, 48px);
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.case-hero-aside {
  position: relative;
  min-height: 100%;
}

.case-hero-content {
  position: relative;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #0f121b;
  background: transparent;
  will-change: transform;
}

.case-hero-media {
  position: relative;
  background: transparent;
  overflow: hidden;
  will-change: transform;
}

.case-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}

.case-hero-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 18, 27, 0.12);
}

.case-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-hero-label {
  color: rgba(15, 18, 27, 0.58);
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
}

.case-hero-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 9px;
  border: 1px solid rgba(15, 18, 27, 0.2);
  color: rgba(15, 18, 27, 0.72);
  white-space: nowrap;
}

.case-hero-content h3 {
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 0.96;
  text-transform: uppercase;
  color: #0f121b;
}

.case-hero-summary {
  color: rgba(15, 18, 27, 0.66);
  line-height: 1.55;
  max-width: 420px;
}

.case-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-hero-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 18, 27, 0.66);
  border: 1px solid rgba(15, 18, 27, 0.16);
  padding: 6px 8px;
}

.case-hero-link {
  text-decoration: none;
  color: #ffffff;
  background: #0f121b;
  border: 1px solid #0f121b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 16px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.case-hero-link:hover {
  background: transparent;
  color: #0f121b;
  border-color: rgba(15, 18, 27, 0.36);
}

.case-hero-cta {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15, 18, 27, 0.36);
  color: #0f121b;
  font: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0 2px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.case-hero-cta:hover {
  color: rgba(15, 18, 27, 0.6);
  border-bottom-color: rgba(15, 18, 27, 0.6);
}

.experience-block {
  width: var(--container);
  margin: 56px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(15, 18, 27, 0.12);
}

.experience-title {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.experience-desc {
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 680px;
  margin-bottom: 24px;
}

.experience-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.experience-list li {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 18, 27, 0.66);
  border: 1px solid rgba(15, 18, 27, 0.16);
  padding: 8px 12px;
}


.services {
  background: var(--paper);
  color: #0d0f16;
  padding: 150px 0;
}

.services .section-label,
.services .section-desc { color: rgba(13, 15, 22, 0.58); }
.services .section-title .light { color: rgba(13, 15, 22, 0.45); }

.services-grid {
  width: 100%;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.service-card {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  padding: 36px 34px 40px;
  min-height: 250px;
  transition: background 0.25s ease;
}

.service-card:last-child { border-right: none; }

.service-card:hover { background: rgba(255, 255, 255, 0.58); }

.service-num {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(13, 15, 22, 0.58);
}

.service-card h3 {
  margin-top: 18px;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.service-card p {
  margin-top: 14px;
  color: rgba(13, 15, 22, 0.66);
  line-height: 1.45;
  font-size: 14px;
}

.contact {
  padding: 160px 0 140px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-bg-video-wrap {
  position: absolute;
  inset: -18% 0 -12%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  opacity: 0.3;
}

.contact-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(1.02) contrast(1);
  transform: scale(1.08);
  will-change: transform;
}

.contact > .section-head,
.contact > .contact-grid {
  position: relative;
  z-index: 2;
}

.business-blocks {
  background: #ffffff;
  color: #0f121b;
  padding: 190px 0 210px;
}

.business-blocks .section-label,
.business-blocks .section-desc { color: rgba(15, 18, 27, 0.58); }
.business-blocks .section-title .light { color: rgba(15, 18, 27, 0.42); }

.steps-grid {
  width: var(--container);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  background: #f1f4f9;
  border: 1px solid #e4e8f0;
  border-radius: 0;
  padding: 30px 28px;
  min-height: 176px;
}

.step-title {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.step-card p {
  margin-top: 12px;
  color: rgba(15, 18, 27, 0.64);
  line-height: 1.45;
  font-size: 14px;
}

.pricing-wrap {
  width: 100%;
  margin: 140px auto 0;
  padding-top: 110px;
  border-top: 1px solid #e5e9f2;
}

.pricing-head {
  width: var(--container);
  margin: 0 auto 26px;
}

.pricing-title {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 860px;
}

.pricing-grid {
  margin-top: 24px;
  border: 1px solid #e2e7ef;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  grid-auto-rows: minmax(126px, auto);
  background: #fff;
}

.pricing-item {
  grid-column: 1;
  padding: 18px 20px 22px;
  border-right: 1px solid #e2e7ef;
  border-bottom: 1px solid #e2e7ef;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-item:last-child { border-bottom: none; }

.pricing-item-hour {
  grid-column: 2;
  grid-row: 1 / span 4;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #e2e7ef;
  min-height: 100%;
  justify-content: center;
  gap: 18px;
  padding: 24px 22px;
}

.pricing-label {
  color: rgba(15, 18, 27, 0.56);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.pricing-value {
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.faq-wrap {
  width: 100%;
  margin: 140px auto 0;
  padding-top: 110px;
  border-top: 1px solid #e5e9f2;
}

.faq-head {
  width: var(--container);
  margin: 0 auto 26px;
}

.faq-title {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  max-width: 860px;
}

.faq-item {
  border-top: 1px solid #dde3ee;
  background: #fff;
}

.faq-item:last-child {
  border-bottom: 1px solid #dde3ee;
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 20px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  color: #0f121b;
}

.faq-num {
  color: rgba(15, 18, 27, 0.44);
  font-size: 12px;
  letter-spacing: 0.1em;
  min-width: 34px;
}

.faq-q {
  flex: 1;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.faq-plus {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #d8dee9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 18, 27, 0.66);
  transition: transform 0.3s ease;
  font-size: 20px;
  flex-shrink: 0;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease);
  padding: 0 58px 0 58px;
  color: rgba(15, 18, 27, 0.64);
  line-height: 1.5;
  font-size: 15px;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 18px;
}

.contact-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line-soft);
  border-radius: 0;
  padding: 34px;
  background: #f8f9fc;
  backdrop-filter: blur(12px);
}

.contact-panel h3 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 0.95;
}

.contact-panel p {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}

.contact-line {
  margin-top: 16px;
  color: var(--text-soft);
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-line:hover { color: var(--text); }

.contact-quick-tg {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 18, 27, 0.26);
  color: #0f121b;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-quick-tg:hover {
  background: #0f121b;
  color: #ffffff;
  border-color: #0f121b;
}

.contact-form {
  border: 1px solid var(--line-soft);
  border-radius: 0;
  padding: 34px;
  background: #f8f9fc;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 14px;
  position: relative;
}

.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(15, 18, 27, 0.35);
  box-shadow: 0 0 0 3px rgba(15, 18, 27, 0.08);
}

.form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.form-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.form-section-title {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin: 0 0 18px;
}

.form-chip-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin: 0 0 10px;
}

.form-chip-label + .form-chips {
  margin-top: 0;
}

.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.form-chips:last-child {
  margin-bottom: 0;
}

.budget-chip {
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 9px 13px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.budget-chip.is-active {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #ffffff;
}

.form-error {
  color: #ff8f8f;
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-radius: 0;
  padding: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  font-family: inherit;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 18, 27, 0.22);
}

.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.form-success {
  margin-top: 10px;
  font-size: 13px;
  color: #14965a;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-success.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #ffffff;
  overflow: hidden;
}

.footer-marquee {
  padding: clamp(22px, 4vw, 36px) 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.footer-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(28px, 5vw, 56px);
  animation: footer-marquee 28s linear infinite;
  will-change: transform;
}

.footer-marquee-track > span:not(.footer-marquee-sep) {
  font-size: clamp(42px, 9.5vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-marquee-sep {
  font-size: clamp(14px, 2vw, 22px);
  color: rgba(15, 18, 27, 0.22);
  flex-shrink: 0;
}

@keyframes footer-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-bar {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0 clamp(28px, 4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-left: auto;
}

.footer-logo {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.footer-logo:hover {
  transform: rotate(-8deg) scale(1.06);
}

.footer-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.footer-copy {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.footer-nav,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  line-height: 1;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-nav a::after {
  display: none;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--text-soft);
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-nav a:hover,
.footer-links a:hover,
.footer-top:hover {
  color: var(--text);
}

.footer-top:hover {
  background: var(--text);
  border-color: var(--text);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .footer-marquee-track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-inline: 16px;
  }
}

.reveal {
  overflow: hidden;
}

.reveal > span {
  display: inline-block;
  transform: translateY(120%);
}

@media (max-width: 1180px) {
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n + 2) { border-bottom: none; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-hero { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .case-hero-aside { min-height: 0; }
  .case-hero-content { position: static; top: auto; }
  .case-hero-media img { max-height: 62vh; object-fit: cover; object-position: top center; }
  .case-hero-summary { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-shell { width: min(1320px, calc(100% - 56px)); }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 28px); }
  header {
    padding: 0 16px;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }
  nav {
    display: flex;
    width: auto;
    flex: 0 0 auto;
    min-width: 0;
    margin-left: 0;
    justify-content: flex-end;
  }
  header nav a,
  .header-btn { display: none; }
  .burger-btn {
    display: inline-flex;
    position: static;
  }
  .hero { min-height: 100vh; padding-top: var(--header-h); }
  .hero-shell { min-height: calc(100vh - var(--header-h)); transform: translateY(0); }
  .hero-switch-top { width: 6.6ch; }
  .hero-switch-bottom { width: 9.5ch; }
  .hero-meta { gap: 14px; margin-top: 30px; }
  .hero-divider { width: 100%; }
  .metrics { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .service-card:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .business-blocks { padding: 150px 0 160px; }
  .pricing-wrap,
  .faq-wrap { margin-top: 96px; padding-top: 76px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-item { grid-column: auto; border-right: none; border-left: none; border-bottom: 1px solid #e2e7ef; min-height: 122px; }
  .pricing-item-hour { grid-column: auto; grid-row: auto; border-left: none; gap: 10px; padding: 18px 20px 22px; }
  .pricing-item:last-child { border-bottom: none; }
  .faq-button { padding-inline: 4px; }
  .faq-answer { padding-inline: 38px 8px; }
  .portfolio { padding: 100px 0 80px; }
  .case-hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 100px 0 80px; }
  .contact-grid { gap: 18px; }
  .contact-panel,
  .contact-form { padding: 18px 14px; }
  .contact-panel h3 { font-size: clamp(22px, 6.4vw, 30px); }
  .contact-panel p { margin-top: 12px; font-size: 13px; line-height: 1.5; }
  .contact-line { margin-top: 12px; font-size: 13px; }
  .contact-quick-tg { margin-top: 14px; padding: 8px 12px; font-size: 10px; }
  .form-section { margin-bottom: 18px; padding-bottom: 18px; }
  .form-section-title { margin-bottom: 12px; font-size: 10px; }
  .form-chip-label { margin-bottom: 6px; font-size: 10px; }
  .field { margin-bottom: 10px; }
  .field label { font-size: 10px; margin-bottom: 6px; }
  .field input,
  .field textarea { padding: 10px 11px; font-size: 13px; }
  .field textarea { min-height: 88px; }
  .form-chips { gap: 6px; margin-bottom: 10px; }
  .budget-chip { padding: 7px 10px; font-size: 11px; }
  .form-submit { padding: 12px; font-size: 11px; margin-top: 4px; }
  .form-note { margin-top: 8px; font-size: 11px; }
  .form-error { font-size: 11px; margin-top: 4px; min-height: 14px; }
  .footer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-bottom: 28px;
  }
  .footer-brand { width: 100%; }
  .footer-actions {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-top { align-self: stretch; text-align: center; }
  .footer-marquee { padding: 18px 0; }
}
