/* ============================================
   СК КОМФОРТ — premium landing
   ============================================ */

:root {
  /* База */
  --bg: #fafaf7;
  --bg-paper: #f3efe7;
  --bg-soft: #efe9dc;
  --bg-warm: #e8e0cf;
  --hero-strip-bg: #f2f2ee;
  --bg-dark: #18181b;
  --bg-dark-2: #27262a;
  --bg-darker: #0e0d10;

  --ink: #1a1a1d;
  --ink-2: #46464b;
  --ink-3: #76767e;
  --ink-4: #a8a8af;
  --line: #e0d8c8;
  --line-soft: #ebe5d6;

  /* Акцент — тёплый строительный охра */
  --c-1: #c89971;       /* основной */
  --c-2: #e8d5b9;       /* светлый */
  --c-3: #a87a52;       /* тёмный */
  --c-4: #f3e9d6;       /* фоновый */
  --c-5: #6e4f33;       /* deep */
  --c-bronze: #8b6f4e;
  --c-clay: #b8845a;

  /* Серьёзный материал — пыльный графит */
  --gr-1: #2a2725;
  --gr-2: #3d3935;

  --success: #15803d;

  --font: 'Manrope', -apple-system, system-ui, sans-serif;
  --font-display: 'Fraunces', 'Manrope', Georgia, serif;

  --r-sm: 6px;
  --r: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;

  --sh-1: 0 1px 2px rgba(26,26,29,.04);
  --sh-2: 0 4px 12px rgba(26,26,29,.06), 0 1px 3px rgba(26,26,29,.04);
  --sh-3: 0 12px 32px rgba(26,26,29,.08), 0 4px 8px rgba(26,26,29,.04);
  --sh-4: 0 24px 56px rgba(26,26,29,.12), 0 8px 16px rgba(26,26,29,.06);
  --sh-deep: 0 32px 80px rgba(26,26,29,.18), 0 12px 24px rgba(26,26,29,.08);

  --container: 1280px;
  --gutter: 24px;

  /* Вертикальный ритм */
  --section-y-xl: 144px;
  --section-y-lg: 120px;
  --section-y-md: 92px;
  --section-y-sm: 64px;
  --section-y-main: clamp(80px, 7vw, 100px);

  /* Текстуры */
  --noise: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  --grain: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23g)'/></svg>");
}

/* ============================================
   RESET
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
em { font-style: italic; font-family: var(--font-display); font-weight: 500; color: var(--c-3); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   КНОПКИ
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 15px; }

.btn--primary {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}
.btn--primary:hover {
  background: #111;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.btn--ghost {
  background: rgba(26,26,29,.04);
  color: var(--ink);
  border-color: rgba(26,26,29,.1);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost .btn__count {
  font-size: 11px;
  font-weight: 700;
  background: var(--c-1);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 4px;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--accent {
  background: #b3835a;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(180, 130, 80, 0.25);
  filter: brightness(1.05);
}

.btn--accent:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(180, 130, 80, 0.2);
}

/* ============================================
   ОБЩИЕ ЭЛЕМЕНТЫ
   ============================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B1845B;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #B1845B;
}
.eyebrow--light { color: var(--c-2); }
.eyebrow--light::before { background: var(--c-1); }

.section {
  padding: var(--section-y-main) 0;
  position: relative;
  background: var(--bg);
  isolation: isolate;
}

/* Шум поверх каждой секции — материальность */
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 200px 200px;
  opacity: .035;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
}

.section--dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
}
.section--dark::after { opacity: .08; mix-blend-mode: overlay; }
.section--dark::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,153,113,.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.section > .container { position: relative; z-index: 1; }

.section__head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section__head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.main-case .section__head--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  gap: 64px;
  margin-bottom: 42px;
}

.main-case .section__title {
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 0.98;
}

.main-case .section__sub {
  margin-top: 24px;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.65;
}
.section__head--row > div { max-width: 720px; }
.section__head-meta { flex-shrink: 0; }
.section__head-counter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-3);
}
.section__head-counter strong {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--c-1);
  letter-spacing: -0.03em;
}
.section__head-counter span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.3;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section__title--light { color: #fff; }
.section__title em {
  font-style: italic;
  color: var(--c-3);
  font-weight: 500;
}
.section--dark .section__title em { color: var(--c-1); }

.section__sub {
  font-size: 17px;
  color: var(--ink-2);
  margin: 18px 0 0;
  line-height: 1.55;
  max-width: 600px;
}
.section__sub--light { color: rgba(255,255,255,.65); }

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .25s;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250,250,247,.95);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 14px;
  flex-wrap: nowrap;
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 40px; height: 40px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(26,26,29,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
.logo__mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200,153,113,.3) 100%);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.logo__tagline { font-size: 11px; color: var(--ink-3); margin-top: 3px; font-weight: 500; }
.logo--light .logo__mark { background: var(--c-3); color: #fff; }
.logo--light .logo__name { color: #fff; }
.logo--light .logo__tagline { color: rgba(255,255,255,.5); }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.nav a {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(0,0,0,0.68);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: #111;
}

.header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: right;
  flex-shrink: 0;
}
.header__email {
  flex-shrink: 1;
  min-width: 0;
  max-width: 172px;
  margin-right: 8px;
}
.header__email .header__phone-num {
  font-size: 14px;
  font-weight: 600;
  color: #171717;
  opacity: 1;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__phone:not(.header__email) .header__phone-num {
  font-size: 13.5px;
}
.header__cta {
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 14px !important;
  padding-right: 14px !important;
  font-size: 12px !important;
}
.header__phone-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.55);
  font-weight: 600;
  margin-bottom: 3px;
}
.header__phone-num {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .25s, opacity .2s;
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 24px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
}
.mobile-menu__phone { font-weight: 700 !important; color: var(--ink) !important; }
.mobile-menu__email { font-size: 13px !important; color: var(--ink-2) !important; word-break: break-all; }
.mobile-menu .btn,
.mobile-menu__cta {
  margin-top: 14px;
  border-bottom: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background: var(--ink) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.mobile-menu .btn:hover,
.mobile-menu__cta:hover {
  color: #fff !important;
  background: #111 !important;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
  padding: 80px 0 60px;
  padding-top: clamp(100px, 10vw, 140px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 400px 400px;
  opacity: .04;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;

}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 12%;
  top: 140px;
  background: radial-gradient(circle, rgba(198, 164, 124, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;

}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-glow {
  position: absolute;
  top: -15%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,153,113,.14), transparent 60%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 80px;
  max-width: 1280px;
}
.hero__main {
  max-width: 740px;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(26,26,29,.06);
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
  backdrop-filter: blur(10px);
}
.hero__meta-dot {
  width: 7px; height: 7px;
  background: #15803d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(21,128,61,.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(21,128,61,.18); }
  50% { box-shadow: 0 0 0 7px rgba(21,128,61,.08); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: #171719;
  margin-bottom: 24px;
}

.hero__title em {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  line-height: 0.92;
  font-style: italic;
  font-weight: 400;
  color: #B1845B;
  letter-spacing: -0.055em;
}

.hero__sub {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
}

.hero__cta {
  margin-top: 28px;
}

.hero__facts {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(26,26,29,.1);
}
.hero__fact {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(26,26,29,.08);
}
.hero__fact:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero__fact:first-child { padding-left: 0; }
.hero__fact:nth-child(2) { padding-left: 24px; }
.hero__fact dt {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1;
}
.hero__fact dd {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

/* HERO FOUNDER — карточка основателя справа */
.hero__founder {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  height: 600px;
  max-width: 460px;
  margin-left: auto;
  transition: transform 0.6s ease;

  align-self: start;
  margin-top: 0px;

  transform: translateY(-10px);
}

/* Фото основателя сверху */
.hero__founder-photo {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;

  transform: scale(1.05);

  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

  height: 100%;
  min-height: 360px;
}
.hero__founder-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Placeholder когда нет фото */
.hero__founder-photo--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 480'><g stroke='rgba(255,255,255,.18)' stroke-width='1.2' fill='none'><circle cx='200' cy='180' r='70'/><path d='M80 420 Q80 300 200 300 Q320 300 320 420'/></g></svg>");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero__founder-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 58%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
}
.hero__founder-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.85);

  padding: 6px 10px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);

  border-radius: 999px;
}

/* Карточка с именем и опытом — выезжает на фото */
.hero__founder-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.14);
  padding: 28px 30px;
  margin: -60px 24px 0;
  position: relative;
  z-index: 3;
}
.hero__founder-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.hero__founder-role {
  font-size: 13.5px;
  font-weight: 500;
  color: #B1845B;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.hero__founder-exp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.hero__founder-exp svg { color: var(--c-3); flex-shrink: 0; }
.hero__founder-quote {
  margin: 0;
  padding-top: 16px;

  border-top: 1px solid rgba(0,0,0,0.08);

  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;

  font-style: italic;
  letter-spacing: 0;

  color: rgba(0,0,0,0.65);
}

/* HERO STRIP — нижняя полоса с преимуществами */
.hero__strip {
  background: transparent;
  color: var(--ink);
  margin-top: -20px;
  box-shadow: none;
  position: relative;
  z-index: 2;
  border-top: none;
  padding-bottom: 4px;
}
.hero__strip::before {
  display: none;
}
.hero__strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding: 14px 22px;
  min-height: 54px;
  position: relative;
  z-index: 1;
  background: var(--hero-strip-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r-md);
}
.hero__strip-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.hero__strip-item svg { color: var(--gr-2); flex-shrink: 0; }


/* ============================================
   УСЛУГИ — архитектура ответственности
   ============================================ */

.services {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-soft) 0%,
    var(--bg) 58%,
    var(--bg-paper) 100%
  );
  padding: var(--section-y-main) 0;
  border-top: 1px solid rgba(168, 122, 82, 0.16);
  overflow: visible;
}

  .services__lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.7);
  max-width: 420px;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 220px 220px;
  opacity: 0.035;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.services > .container {
  position: relative;
  z-index: 1;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}

.services__head {
  position: sticky;
  top: 110px;

  padding: 36px 40px;
  border-radius: 24px;

  background: linear-gradient(180deg, #ffffff 0%, #f6f1e7 100%);
  border: 1px solid rgba(168, 122, 82, 0.18);

  box-shadow: 0 32px 90px rgba(26, 26, 29, 0.08);

  max-width: 520px;
}

.services__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-3);
}

.services__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-3);
  opacity: 0.75;
}

.services__title {
  margin: 0;
  max-width: 420px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.services__aside {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 122, 82, 0.18);
}

.services__aside-line {
  width: 48px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--c-3);
  opacity: 0.65;
}

.services__aside p {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: rgba(28, 28, 28, 0.62);
}

.services__content {
  max-width: 640px;
  padding-top: 14px;
}

.services__intro {
  max-width: 520px;
  margin: 0 0 34px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}

.services__items {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3eb 100%);
  border: 1px solid rgba(168, 122, 82, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(26, 26, 29, 0.08);
  backdrop-filter: none;
}

.services__item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 34px;
  border: 1px solid rgba(168, 122, 82, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(26, 26, 29, 0.04);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.services__item--primary {
  background: linear-gradient(135deg, #f4efe6 0%, #ebe3d3 100%);
  border-color: rgba(168, 122, 82, 0.35);
  box-shadow: 0 28px 70px rgba(26, 26, 29, 0.10);
}

.services__item--primary .services__num,
.services__item--primary .services__tags span {
  color: var(--c-1);
}

.services__item--primary h3 {
  color: var(--ink);
}

.services__item--primary p{
  color: var(--ink-2);
}

.services__item--primary::before {
  opacity: 1;
  background: linear-gradient(180deg, #d6aa7d, #9f6f49);
}

.services__item--primary::after {
  opacity: 1;
  background: radial-gradient(circle, rgba(200,153,113,.22), transparent 68%);
}

.services__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(168, 122, 82, 0.12);
  color: var(--c-3);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--c-1), var(--c-3));
  opacity: .55;
}

.services__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(0,0,0,0.03) 100%
    );

   opacity: 0.35;
  pointer-events: none;
}

.services__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.05);

  pointer-events: none;
}

.services__item:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 122, 82, 0.35);
  box-shadow: 0 32px 70px rgba(26, 26, 29, 0.12);
}

.services__item:hover::after {
  opacity: 1;
}

.services__item h3 {
  transition: color .28s ease;
}

.services__item:hover h3 {
  color: var(--c-3);
}


.services__items:hover .services__item {
  opacity: 1;
}

.services__items .services__item:hover {
  opacity: 1;
}

.services__num {
  padding-top: 7px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--c-3);
  transition: color .3s ease;

}
.services__item:hover .services__num {
  color: var(--c-1);
}

.services__body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color .3s ease;
}

.services__body p {
  max-width: 620px;
  margin: 0;
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.70;
  opacity: 0.8;
  letter-spacing: -0.005em;
  color: rgba(28, 28, 28, 0.68);
}

.services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.services__tags span {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-3);
  opacity: 0.9;
}

.services__note {
  position: relative;
  max-width: 640px;
  margin-top: 34px;
  padding: 26px 30px 28px 34px;

  font-family: var(--font-display);
  font-size: clamp(21px, 1.65vw, 26px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--ink);

  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(246,241,231,.72));
  border: 1px solid rgba(168, 122, 82, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(26, 26, 29, 0.055);
}

.services__note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--c-1), var(--c-3));
}

.services__cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(168, 122, 82, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 340px;
}

.services__cta p {
  max-width: 320px;
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.62);
}

.services__cta .btn {
  flex-shrink: 0;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), var(--gr-1));
  color: #fff;
  box-shadow: 0 14px 30px rgba(26, 26, 29, 0.18);
  transition: all .25s ease;
}

.services__cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.services__cta .btn::after {
  content: "→";
  margin-left: 10px;
  transition: transform .25s ease;
}

.services__cta .btn:hover::after {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .services__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services__head {
    position: static;
  }

  .services__content {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .services {
    padding: var(--section-y-sm) 0 72px;
  }

  .services__cta {
  margin-top: 40px;
  padding-top: 28px;
  flex-direction: column;
  align-items: flex-start;
  }

.services__cta .btn {
  width: 100%;
  }
  .services__eyebrow {
    margin-bottom: 20px;
  }

  .services__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  }

  .services__aside {
    margin-top: 26px;
  }

  .services__items {
    gap: 11px;
    padding: 10px;
  }

  .services__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px;
  }

  .services__num {
    padding-top: 0;
  }

  .services__body h3 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .services__tags {
    margin-top: 17px;
    gap: 10px 14px;
  }

  .services__badge {
    margin-bottom: 10px;
  }

  .services__note {
    margin-top: 36px;
    padding-top: 42px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 23px;
  }

  .services__note::before {
    top: 18px;
    left: 24px;
    bottom: auto;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-1), var(--c-3));
  }
}

.services__head,
.services__intro,
.services__item,
.services__note,
.services__cta {
  opacity: 1;
  transform: none;
}

.services__item:nth-child(1) { animation-delay: .05s; }
.services__item:nth-child(2) { animation-delay: .12s; }
.services__item:nth-child(3) { animation-delay: .19s; }
.services__item:nth-child(4) { animation-delay: .26s; }



/* ============================================
   ГЛАВНЫЙ КЕЙС — Дом 150 м²
   ============================================ */

.main-case {
  background: linear-gradient(180deg, #f7f2e8 0%, #fbfaf6 42%, #f4efe6 100%);
  position: relative;
  padding: 96px 0 120px;
  border-top: 1px solid rgba(168, 122, 82, 0.16);
  overflow: visible;
}

.main-case__intro {
  max-width: 1280px;
  margin: 0 auto 44px;
  padding: 0 24px;
}

.main-case__intro-inner {
  max-width: 760px;
  text-align: left;
}

.main-case__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B1845B;
}

.main-case__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #B1845B;
}

.main-case__title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(56px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #171719;
}

.main-case__title em {
  display: block;
  font-style: italic;
  color: #B1845B;
  font-weight: 400;
}

.main-case__text {
  max-width: 720px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(23, 23, 25, 0.68);
}

.main-case__layout {
  position: relative;
  overflow: visible;
}

.main-case__photo {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a1d;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.main-case__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-case__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.main-case__photo-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
}

.main-case__photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-case__panel {
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 10;
  width: 370px;
  max-width: calc(100% - 48px);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(168, 122, 82, 0.18);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 1025px) {
  .main-case__layout:hover .main-case__panel {
    transform: translateY(-6px);
    box-shadow:
      0 36px 90px rgba(0, 0, 0, 0.16),
      0 12px 28px rgba(0, 0, 0, 0.08);
  }
}

.main-case__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 24px;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.main-case__spec {
  padding: 18px 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-paper);
}

.main-case__spec dt {
  margin-bottom: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.main-case__spec dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.main-case__scope {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.main-case__scope-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  color: #171719;
  text-transform: none;
  letter-spacing: -0.03em;
}

.main-case__scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-case__scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.35;
  color: rgba(23, 23, 25, 0.68);
}

.main-case__scope-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3e6cf;
  color: #b1845b;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.main-case__scope-icon svg {
  width: 11px;
  height: 11px;
}

.main-case__cta-note {
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(23, 23, 25, 0.42);
}

.main-case__cta {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .main-case__intro {
    margin-bottom: 32px;
    padding: 0 20px;
  }

  .main-case__title {
    font-size: clamp(38px, 8vw, 52px);
  }

  .main-case__text {
    font-size: 16px;
  }

  .main-case__photo {
    min-height: 420px;
  }

  .main-case__panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    transform: none;
  }
}

@media (max-width: 520px) {
  .main-case {
    padding: 64px 0 72px;
  }

  .main-case__photo {
    min-height: 320px;
    border-radius: 22px;
  }

  .main-case__panel {
    padding: 18px;
  }

  .main-case__specs {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   КЕЙСЫ — асимметричная вёрстка
   ============================================ */

.cases::before {
  content: '';
  position: absolute;
  top: 200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,153,113,.1), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Главный кейс — секция */
.cases {
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
  position: relative;
  padding: 96px 0 140px;
}

/* Кейс — общая база */
.case {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.case {
  will-change: transform;
}

.case:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}


.case img {
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), opacity .35s ease, filter .35s ease;
}


.case:hover img {
  transform: scale(1.05);
  opacity: 0.96;
  filter: saturate(1.02) contrast(1.02);
}

.case__content h3 {
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.02;
  font-weight: 500;
  margin: 10px 0 14px;
  letter-spacing: -0.04em;
}


.case__meta {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}

.case:hover .case__content h3 {
  transform: none;
}

.case:not(.case--large) .case__content h3 {
  font-size: 28px;
  line-height: 1.05;
}

.case:not(.case--large) .case__meta strong {
  font-size: 18px;
}

.case:not(.case--large) .case__content {
  padding: 28px;
}


.case__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case__meta span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.case__meta strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.92);
}

/* Сетка кейсов — 3 равнозначные карточки */
.cases__grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-rows: 340px;
  gap: 28px;
}
.cases__grid .case {
  display: flex;
  flex-direction: column;
}
.cases__grid .case__visual { min-height: 260px; }
.cases__grid .case__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
}


/* Визуалы кейсов */
.case__visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6e5439 0%, #3a2c1e 100%);
}

.case:hover .case__visual::after {
  opacity: 0.85;
}
.case__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.55) 100%
  );

  transition: opacity .3s ease;
  pointer-events: none;
}
.case__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .6s ease;
}
.case:hover .case__img { transform: scale(1.05); }

/* Placeholder когда фото нет — нейтральный, без декоративных схем */
.case__visual--placeholder {
  background: linear-gradient(135deg, var(--bg-paper) 0%, var(--bg-warm) 100%);
}
.case__visual--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'><rect x='14' y='14' width='52' height='52' rx='4' stroke='%23c89971' stroke-width='1.5' stroke-opacity='.35'/><circle cx='30' cy='32' r='4' stroke='%23c89971' stroke-width='1.5' stroke-opacity='.35'/><path d='M14 52l16-14 12 10 8-6 16 14' stroke='%23c89971' stroke-width='1.5' stroke-opacity='.35' stroke-linejoin='round'/></svg>");
  background-size: 80px 80px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.case__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  opacity: .12;
  mix-blend-mode: multiply;
  z-index: 3;
  pointer-events: none;
}
.case__visual-overlay {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    180deg,
    rgba(0,0,0,.04) 0%,
    transparent 38%,
    rgba(0,0,0,.46) 100%
  );

}
.case:hover .case__visual-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.08) 0%,
      transparent 36%,
      rgba(0,0,0,.58) 100%
    );
}
.case__photo-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 12px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
}
.case__photo-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--c-1);
  border-radius: 50%;
}

.case__visual--house {
  background: linear-gradient(135deg, #6e5439 0%, #3a2c1e 100%);
}
.case__visual--house::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g stroke='rgba(232,213,185,.16)' stroke-width='1.2' fill='none'><path d='M80 480 L80 280 L300 130 L520 280 L520 480 Z'/><rect x='150' y='320' width='80' height='160' rx='2' fill='rgba(232,213,185,.06)'/><rect x='370' y='320' width='80' height='160' rx='2' fill='rgba(232,213,185,.06)'/><rect x='265' y='200' width='70' height='90' rx='2' fill='rgba(232,213,185,.05)'/><line x1='80' y1='480' x2='520' y2='480'/></g></svg>");
  background-size: cover;
  background-position: center;
}

.case__visual--apartment-light {
  background: linear-gradient(135deg, #e8d5b9 0%, #c8a883 100%);
}
.case__visual--apartment-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'><g stroke='rgba(110,79,51,.18)' stroke-width='1' fill='none'><rect x='30' y='30' width='340' height='220' rx='4'/><line x1='200' y1='30' x2='200' y2='250'/><line x1='30' y1='150' x2='370' y2='150'/><rect x='50' y='60' width='130' height='70' rx='2' fill='rgba(110,79,51,.06)'/><rect x='220' y='60' width='130' height='70' rx='2' fill='rgba(110,79,51,.06)'/><rect x='50' y='170' width='130' height='60' rx='2' fill='rgba(110,79,51,.05)'/><rect x='220' y='170' width='130' height='60' rx='2' fill='rgba(110,79,51,.05)'/></g></svg>");
  background-size: cover;
  background-position: center;
}

.case__visual--bath {
  background: linear-gradient(135deg, #8a6f55 0%, #4a3a2e 100%);
}
.case__visual--bath::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'><g stroke='rgba(232,213,185,.18)' stroke-width='1' fill='none'><rect x='80' y='40' width='240' height='200' rx='4'/><rect x='110' y='80' width='180' height='100' rx='2' fill='rgba(232,213,185,.05)'/><circle cx='250' cy='220' r='10' fill='rgba(232,213,185,.1)'/><rect x='110' y='200' width='40' height='30' rx='2' fill='rgba(232,213,185,.06)'/></g></svg>");
  background-size: cover;
  background-position: center;
}

.case__visual--apartment-modern {
  background: linear-gradient(135deg, #a8845a 0%, #6e5236 100%);
}
.case__visual--apartment-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 360'><g stroke='rgba(255,255,255,.13)' stroke-width='1' fill='none'><rect x='40' y='40' width='520' height='280' rx='4'/><line x1='280' y1='40' x2='280' y2='320'/><line x1='40' y1='200' x2='560' y2='200'/><rect x='65' y='70' width='190' height='110' rx='2' fill='rgba(255,255,255,.06)'/><rect x='305' y='70' width='230' height='110' rx='2' fill='rgba(255,255,255,.06)'/><rect x='65' y='220' width='190' height='80' rx='2' fill='rgba(255,255,255,.05)'/><rect x='305' y='220' width='230' height='80' rx='2' fill='rgba(255,255,255,.05)'/></g></svg>");
  background-size: cover;
  background-position: center;
}

.case__type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-3);
  padding: 5px 10px;
  background: var(--c-4);
  border-radius: 100px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.case__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
}
.case__about {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 22px;
}

.case__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.case__specs--compact { margin-bottom: 0; margin-top: auto; }
.case__spec {
  padding: 12px 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-paper);
}
.case__spec dt {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.case__spec dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

.case__scope {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.case__scope-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.case__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.case__chips span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 5px 11px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
}

.cases__more {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--sh-2);
}
.cases__more p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 540px;
  line-height: 1.55;
}

/* ============================================
   ПРОЦЕСС — контроль объекта по этапам
   ============================================ */

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(200, 153, 113, 0.12), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%);
  color: var(--ink);
  padding: var(--section-y-main) 0;
  border-top: 1px solid var(--line-soft);
  isolation: isolate;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(200, 153, 113, 0.16), transparent 62%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.process::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(232, 213, 185, 0.08), transparent 64%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.process > .container {
  position: relative;
  z-index: 1;
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
}

.process__head {
  position: sticky;
  top: 104px;
}

.process__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-1);
}

.process__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-1);
  opacity: 0.75;
}

.process__title {
  margin: 0;
  max-width: 460px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.process__content {
  max-width: 640px;
  padding-top: 6px;
}

.process__intro {
  max-width: 520px;
  margin: 0 0 34px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}

.process__items {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.process__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
  transition: transform .35s ease, opacity .3s ease;

}

.process__item:hover {
  transform: translateX(6px);
}

.process__items:hover .process__item {
  opacity: 0.42;
}

.process__item:hover .process__num {
  color: var(--c-1);
}

.process__items .process__item:hover {
  opacity: 1;
}

.process__num {
  padding-top: 7px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--c-3);
}

.process__body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color .3s ease;
}

.process__item:hover h3 {
  color: var(--c-3);
}

.process__body p {
  max-width: 560px;
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  opacity: 1;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}

@media (max-width: 980px) {
  .process__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process__head {
    position: static;
  }
}

@media (max-width: 640px) {
  .process {
    padding: var(--section-y-sm) 0 72px;
  }

  .process__title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .process__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0 22px;
  }

  .process__num {
    padding-top: 0;
  }

  .process__items:hover .process__item,
  .process__items .process__item {
    opacity: 1;
  }

  .process__body h3,
  .process__item h3 {
    margin-bottom: 8px;
    color: var(--ink);
  }

  .process__item:hover h3 {
    color: var(--ink);
  }

  .process__body p {
    margin-top: 5px;
    color: rgba(23, 23, 25, 0.58);
    opacity: 1;
  }
}

/* ============================================
   СМЕТА — сильный блок
   ============================================ */

.estimate {
  background: var(--bg);
  position: relative;
}
.estimate__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.estimate__intro { padding-top: 12px; }
.estimate__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--ink);
}
.estimate__title em { color: var(--c-3); font-style: italic; font-weight: 500; }
.estimate__lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 520px;
}

.estimate__stages {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--sh-2);
  margin-bottom: 16px;
}
.estimate__stages-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 12px 16px 12px;
}
.estimate__stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--r);
  transition: background .25s ease, transform .3s ease, box-shadow .3s ease;
}

.estimate__stage:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(35, 28, 22, 0.06);
}
.estimate__stage + .estimate__stage { border-top: 1px solid var(--line-soft); }
.estimate__stage-info { display: flex; align-items: center; gap: 14px; }
.estimate__stage-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-paper);
  color: var(--c-3);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.estimate__stage-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.estimate__stage-desc {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}
.estimate__stage-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.estimate__note {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
/* Образец сметы */
.estimate__sample {
  background: linear-gradient(180deg, var(--ink) 0%, var(--gr-1) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-deep);
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.estimate__sample:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(10, 8, 5, 0.4);
  filter: brightness(1.03);
}

.estimate__sample::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(200,153,113,.2), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.estimate__sample::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 200px 200px;
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.estimate__sample > * { position: relative; z-index: 1; }

.estimate__sample-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.estimate__sample-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-1);
  margin-bottom: 6px;
}
.estimate__sample-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.estimate__sample-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}
.estimate__sample-stamp {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-1);
  padding: 5px 10px;
  background: rgba(200,153,113,.14);
  border: 1px solid rgba(200,153,113,.3);
  border-radius: 100px;
}

.estimate__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.estimate__table td {
  padding: 11px 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px dashed rgba(255,255,255,.1);
}
.estimate__table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.estimate__table tr:last-child td { border-bottom: none; }

.estimate__total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 0 0;
  margin-top: 8px;
  border-top: 2px solid rgba(255,255,255,.18);
  margin-bottom: 24px;
}
.estimate__total-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 2px;
}
.estimate__total-sub {
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.estimate__total-sum {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-1);
  letter-spacing: -0.025em;
  line-height: 1;
}

.estimate__cta {
  width: 100%;
  margin-top: 24px;
  min-height: 58px;
  border-radius: 999px;
  background: #b3835a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(179, 131, 90, 0.28);
}

/* ============================================
   ОТЗЫВЫ — асимметрия 1+2
   ============================================ */

.review_meta { font-size: 12.5px; color: var(--ink-3); }

/* ================= REVIEWS ================= */

.reviews {
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
  padding: 96px 0;
}

.reviews__head {
  max-width: 720px;
  margin-bottom: 56px;
}

.reviews__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-3);
}

.reviews__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-3);
}

.reviews__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.reviews__lead {
  max-width: 620px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.reviews__side {
  display: contents;
}

.review {
  min-height: 260px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(168,122,82,0.12);
  box-shadow: 0 26px 70px rgba(26,26,29,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.review:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(26,26,29,0.14);
}

.review--large {
  min-height: 260px;
}

.review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.review__stars {
  color: var(--c-1);
  letter-spacing: 0.14em;
  font-size: 13px;
}

.review__badge {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(21,128,61,0.12);
  color: #15803d;
  border: 1px solid rgba(21,128,61,0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.review--large .review__text {
  font-size: 20px;
  line-height: 1.65;
}

.review__author {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(168,122,82,0.16);
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-3);
  color: #fff;
  font-weight: 700;
}

.review__author strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.review__author small {
  display: block;
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 13px;
}

@media (max-width: 900px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .review--large {
    min-height: auto;
  }
}

.reviews__grid {
  align-items: stretch;
}

.reviews__side {
  height: 100%;
}

.review {
  height: 100%;
}

/* ============================================
   FAQ
   ============================================ */

.faq { background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%); }

.faq__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.faq__intro { position: sticky; top: 100px; }
.faq__sub {
  color: var(--ink-2);
  font-size: 15px;
  margin: 16px 0 24px;
  line-height: 1.55;
}

.faq__phone {
  display: flex;
  flex-direction: column;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  transition: all .2s;
  max-width: 280px;
}
.faq__phone:hover { box-shadow: var(--sh-2); transform: translateY(-1px); }
.faq__phone span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.faq__phone strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .25s;
  box-shadow: var(--sh-1);
}
.faq__item[open] {
  border-color: var(--c-2);
  box-shadow: var(--sh-2);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  line-height: 1.35;
  color: var(--ink);
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-3); }
.faq__plus {
  position: relative;
  width: 28px; height: 28px;
  background: var(--bg-paper);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all .3s;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.faq__plus::before { width: 11px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after { width: 1.5px; height: 11px; transform: translate(-50%, -50%); transition: transform .3s; }
.faq__item[open] .faq__plus { background: var(--c-1); }
.faq__item[open] .faq__plus::before, .faq__item[open] .faq__plus::after { background: #fff; }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__body {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============================================
   ФИНАЛЬНЫЙ CTA
   ============================================ */

.cta {
  padding: var(--section-y-main) 0;
  background: var(--bg);
  color: var(--ink);
}
.cta__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 22px;
}
.cta__title em {
  color: var(--c-3);
  font-style: italic;
  font-weight: 500;
}
.cta__text {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 520px;
  line-height: 1.55;
}
.cta__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.cta__steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cta__steps li:last-child { border-bottom: none; }
.cta__step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-1);
  letter-spacing: -0.02em;
  min-width: 36px;
}
.cta__step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.cta__steps li p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.45;
}

.cta__contacts {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cta__contacts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.cta__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-3);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color .2s;
}
.cta__phone:hover { color: var(--c-1); }
.cta__address {
  font-size: 13.5px;
  color: var(--ink-2);
}

.form {
  background: linear-gradient(180deg, #fff 0%, var(--bg-paper) 100%);
  color: var(--ink);
  padding: 36px;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--sh-deep);
  border: 1px solid var(--line);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease,
    filter 320ms ease;
}
.form__head { margin-bottom: 6px; }
.form__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--ink);
}
.form__subtitle {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
}

/* Блок доверия в форме */
.form__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 14px 16px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
}
.form__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.form__trust li svg {
  color: var(--c-3);
  flex-shrink: 0;
}

.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.form__field input, .form__field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: all .2s;
  resize: none;
}
.form__field input:focus, .form__field textarea:focus {
  outline: none;
  border-color: var(--c-1);
  box-shadow: 0 0 0 4px rgba(200,153,113,.12);
}
.form__field input::placeholder, .form__field textarea::placeholder { color: var(--ink-4); }
.form__submit { margin-top: 6px; width: 100%; }
.form__policy {
  font-size: 11.5px;
  color: var(--ink-3);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.form__success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(21,128,61,.08);
  border: 1px solid rgba(21,128,61,.2);
  border-radius: var(--r-sm);
  color: var(--success);
  animation: successIn .35s ease;
}
.form__success-icon { color: var(--success); flex-shrink: 0; }
.form__success-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.form__success-text { font-size: 13px; color: rgba(21,128,61,.8); }
@keyframes successIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ФУТЕР
   ============================================ */

.footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%);
  color: var(--ink-2);
  padding: 64px 0 28px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 200px 200px;
  opacity: .035;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.footer .container { position: relative; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col--brand { gap: 16px; }
.footer__title {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.footer__text { font-size: 13.5px; line-height: 1.6; max-width: 280px; color: var(--ink-2); }
.footer__addr { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); margin-top: 4px; }
.footer__founder {
  margin-top: 4px;
  padding: 14px 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.footer__founder-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.footer__founder-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.footer__link { font-size: 13.5px; color: var(--ink-2); transition: color .2s; text-decoration: none; }
.footer__link:hover { color: var(--c-3); }
.footer__link--main {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.footer__link--main:hover { color: var(--c-3) !important; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 22px;
  font-size: 12.5px;
  color: var(--ink-3);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__legal {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 520px;
}
.footer__madeby {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(23, 23, 25, 0.42);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer__madeby span {
  color: rgba(23, 23, 25, 0.58);
  font-weight: 500;
}
.footer__madeby:hover {
  color: rgba(23, 23, 25, 0.52);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168, 122, 82, 0.32);
}
.footer__madeby:hover span {
  color: var(--c-3);
}
.footer__link--policy {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink-2) !important;
  font-size: 12.5px !important;
}
.footer__link--policy:hover {
  color: var(--c-3) !important;
}

/* ============================================
   REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  
}

.reveal.is-visible:hover {
  transform: translateY(-2px);
}

.services__item:nth-child(1) { transition-delay: 0.1s; }
.services__item:nth-child(2) { transition-delay: 0.2s; }
.services__item:nth-child(3) { transition-delay: 0.3s; }
.services__item:nth-child(4) { transition-delay: 0.4s; }

.process__item:nth-child(1) { transition-delay: 0.1s; }
.process__item:nth-child(2) { transition-delay: 0.2s; }
.process__item:nth-child(3) { transition-delay: 0.3s; }
.process__item:nth-child(4) { transition-delay: 0.4s; }
.process__item:nth-child(5) { transition-delay: 0.5s; }

/* ============================================
   ПЛАНШЕТЫ
   ============================================ */

@media (max-width: 1100px) {
  .nav { display: none; }
  .header__phone { display: none; }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 56px;
  }
  .hero__main { max-width: 100%; }
  .hero__founder { max-width: 540px; margin: 0 auto; height: auto; }
  .hero__strip-inner { gap: 16px 28px; padding: 16px var(--gutter); }

  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid .case__visual { min-height: 280px; }
  .main-case__photo { min-height: 380px; }
  .main-case__panel { padding: 28px; }
  .main-case__badge { min-width: 0; }
  .main-case__gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .estimate__layout { grid-template-columns: 1fr; gap: 40px; }

  /* Отзывы — стек */
  .reviews__layout { grid-template-columns: 1fr; gap: 14px; }
  .reviews__layout > .review--featured { grid-row: auto; }

  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }

  .cta__layout { grid-template-columns: 1fr; gap: 40px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================
   МОБИЛЬНЫЕ
   ============================================ */

@media (max-width: 720px) {
  :root { --gutter: 18px; }

  .section { padding: 56px 0; }
  .section__head { margin-bottom: 36px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .section__head-counter { padding: 14px 18px; }
  .section__head-counter strong { font-size: 30px; }

  .header__cta { display: none; }
  .burger { display: flex; }
  .header__inner { height: 64px; }

  .hero { padding-top: 32px; }
  .hero__container { padding-top: 16px; padding-bottom: 40px; gap: 32px; }
  .hero__title { font-size: clamp(34px, 9vw, 44px); margin-bottom: 18px; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__cta { gap: 10px; flex-direction: column; margin-bottom: 36px; }
  .hero__cta .btn { width: 100%; padding: 16px 22px; }

  .hero__facts { padding: 16px 0; flex-direction: column; gap: 14px; }
  .hero__fact {
    flex: none; padding: 14px 0 0 !important;
    border-right: none !important;
    border-top: 1px solid rgba(26,26,29,.08);
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  }
  .hero__fact:first-child { border-top: none; padding-top: 0 !important; }
  .hero__fact dt { margin-bottom: 0; font-size: 26px; }
  .hero__fact dd { text-align: right; }

  .hero__founder { height: auto; max-width: 100%; }
  .hero__founder-photo { box-shadow: 0 20px 50px rgba(0,0,0,0.15); } 
  .hero__founder-card { margin: -56px 16px 0; padding: 20px 22px; }
  .hero__founder-name { font-size: 19px; }
  .hero__founder-tag { font-size: 9.5px; padding: 6px 10px; top: 14px; left: 14px; }

  .hero__strip-inner { gap: 12px 20px; padding: 14px var(--gutter); }
  .hero__strip-item { font-size: 12px; }

  /* Главный кейс */
  .main-case__photo { min-height: 280px; }
  .main-case__panel { padding: 22px; gap: 22px; }
  .main-case__spec { padding: 14px 16px; }
  .main-case__spec dd { font-size: 18px; }
  .main-case__photo-caption { bottom: 16px; left: 16px; right: 16px; gap: 10px; }
  .main-case__photo-tag { font-size: 9.5px; padding: 6px 10px; }
  .main-case__photo-loc { font-size: 12px; }
  .main-case__badge { padding: 14px 18px; min-width: 0; }
  .main-case__badge-sum { font-size: 24px; }
  .main-case__gallery { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .main-case__gallery-item:nth-child(3) { grid-column: span 2; }
  .main-case__gallery-item figcaption { font-size: 10px; padding: 4px 9px; }

  /* Кейсы */
  .cases__grid { grid-template-columns: 1fr; gap: 14px; }
  .cases__grid .case__visual { min-height: 240px; }
  .cases__grid .case__content { padding: 22px; }
  .case__specs { grid-template-columns: 1fr 1fr; }
  .case__spec { padding: 10px 12px; }
  .case__spec dd { font-size: 15px; }
  .cases__more { padding: 22px; flex-direction: column; align-items: flex-start; }
  .cases__more .btn { width: 100%; }

  /* Смета */
  .estimate__stages {
    padding: 6px;
    margin-bottom: 14px;
  }

  .estimate__stages-title {
    margin: 10px 14px 10px;
  }

  .estimate__sample {
    padding: 22px 20px 18px;
  }

  .estimate__sample-head {
    padding-bottom: 16px;
    margin-bottom: 2px;
  }

  .estimate__sample-title { font-size: 20px; }
  .estimate__total-sum { font-size: 24px; }

  .estimate__table {
    margin: 12px 0;
  }

  .estimate__table td {
    padding: 9px 0;
  }

  .estimate__total {
    padding-top: 16px;
    margin-top: 6px;
    margin-bottom: 16px;
  }

  .estimate__cta {
    margin-top: 18px;
  }

  .estimate__stage {
    padding: 11px 14px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .estimate__stage-info { gap: 11px; }

  /* Отзывы */
  .reviews__grid {
    gap: 16px;
  }

  .review {
    min-height: auto;
    padding: 20px 18px;
  }

  .review--large {
    min-height: auto;
    transform: none;
  }

  .review--featured { padding: 22px 18px; }
  .review--featured .review__text { font-size: 16px; }
  .review--featured::before { font-size: 56px; top: 16px; right: 18px; }

  .review::before {
    font-size: 112px;
    right: 18px;
    bottom: -30px;
    color: rgba(184, 132, 90, 0.05);
  }

  .review__top { margin-bottom: 10px; }
  .review__text { margin-bottom: 12px; }
  .review__context { margin: 10px 0 0; }
  .review__author {
    padding-top: 18px;
    gap: 11px;
  }
  .review__author small { margin-top: 2px; }

  .reviews__source { padding: 12px 16px; }
  .reviews__source-icon { width: 32px; height: 32px; }
  .reviews__source-name { font-size: 16px; }
  .review__source { font-size: 9.5px; padding: 3px 8px; }

  /* FAQ */
  .faq__list { gap: 6px; }

  .faq__item summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq__body {
    padding: 0 18px 17px;
    font-size: 14px;
  }

  .faq__plus {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(168, 122, 82, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .faq__item[open] .faq__plus {
    box-shadow: 0 4px 14px rgba(184, 132, 90, 0.18);
  }

  /* CTA */
  .cta { padding: 56px 0; }
  .cta__layout { gap: 24px; }
  .cta__title { margin-bottom: 16px; }
  .cta__text { margin-bottom: 22px; }
  .cta__bullets {
    gap: 10px;
    margin: 20px 0 24px;
  }
  .cta__contacts { padding-top: 16px; }
  .cta__contacts-label { margin-bottom: 6px; }
  .cta__phone { font-size: 24px; margin-bottom: 4px; }
  .form {
    padding: 24px 20px 20px;
    gap: 14px;
  }
  .form__trust {
    margin: 12px 0 10px;
    padding: 12px 14px;
    gap: 6px;
  }
  .form__submit { margin-top: 6px; }
  .form__micro { margin: 0; }

  /* Футер */
  .footer { padding: 48px 0 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .btn--lg { padding: 14px 22px; font-size: 14.5px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 30px; }
  .hero__founder-photo { min-height: 280px; }
}

/* ============================================
   ДОРАБОТКА: ЛОГОТИП + СЛАЙДЕРЫ ФОТО
   ============================================ */

.logo--image {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.logo__img {
  width: 220px !important;
  height: auto !important;
  display: block;
}

.header {
  padding: 16px 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}


.photo-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: inherit;
  z-index: 1;
}
.photo-slider__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.photo-slider__slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .45s ease, visibility .45s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}
.photo-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.srv:hover .photo-slider__slide.is-active,
.case:hover .photo-slider__slide.is-active { transform: scale(1.04); }

.photo-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.photo-slider__btn--prev { left: 14px; }
.photo-slider__btn--next { right: 14px; }
.photo-slider:hover .photo-slider__btn,
.srv:hover .photo-slider__btn,
.case:hover .photo-slider__btn { opacity: 1; }
.photo-slider__btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }

.photo-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 100px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}
.photo-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: width .2s ease, background .2s ease;
}
.photo-slider__dot.is-active {
  width: 18px;
  border-radius: 100px;
  background: var(--c-1);
}

/* Чтобы поверх слайдера оставались теги, иконки и затемнение */
.srv__visual-overlay,
.case__visual-overlay { pointer-events: none; }
.srv__tag,
.srv__visual-icon,
.case__photo-tag { z-index: 7; }

@media (max-width: 768px) {
  .logo__img { height: 32px; max-width: 176px; }
  .photo-slider__btn {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
  .photo-slider__btn--prev { left: 10px; }
  .photo-slider__btn--next { right: 10px; }
  .photo-slider__dots { bottom: 10px; }
}

.hero__meta-dot {
  animation: none;
}

.hero__bg-glow {
  opacity: 0.45;
}

.hero__founder-card,
.hero__founder-photo {
  box-shadow: var(--sh-2);
}

@media (max-width: 768px) {
  .hero__cta .btn {
    width: 100%;
  }

  .hero__founder {
    height: auto;
    max-width: 100%;
  }

  .hero__strip-inner {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .hero__strip-item {
    width: calc(50% - 10px);
    font-size: 12px;
  }
}
.hero__note {
  font-size: 13px;
  color: var(--ink-3);
  margin: -30px 0 42px;
  line-height: 1.4;
}

.hero__founder-exp {
  font-size: 12.5px;
}

@media (max-width: 768px) {
  .hero__note {
    margin: -22px 0 32px;
    text-align: center;
  }
}
.accent {
  color: #B1845B;
  font-style: italic;
  line-height: 0.95;
  -webkit-text-fill-color: initial;
  background: none;
}


.hero-buttons-note {
  margin-top: 16px;
  font-size: 14px;
  color:rgba(0, 0, 0, 0.55);
  letter-spacing: 0.2px;
}

.hero-badge {
  font-size: 14px;
  color:rgba(0,0,0,0.6);
}

.hero__founder {
  transform: translate(-20px, -90px);
  z-index: 2;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 400px 400px;
  opacity: .04;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 153, 113, .14), transparent 60%);
  border-radius: 50%;
  filter: blur(50px);
}

/* === Контейнер: 2 колонки, фото справа фиксированной ширины === */
.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: stretch;          /* колонки тянутся на одну высоту */
  padding-top: 72px;
  padding-bottom: 72px;
}

/* === ЛЕВАЯ колонка === */
.hero__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* факты прижимаются к низу */
  min-height: 100%;
  max-width: 640px;
  gap: 0;
}

.hero__meta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 16px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(26, 26, 29, .08);
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
  backdrop-filter: blur(10px);
}
.hero__meta-dot {
  width: 7px;
  height: 7px;
  background: #15803d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, .18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(21, 128, 61, .18); }
  50%      { box-shadow: 0 0 0 7px rgba(21, 128, 61, .08); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: #171719;
  margin: 0 0 20px;
}

.hero__title em {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  line-height: 0.92;
  font-style: italic;
  font-weight: 400;
  color: #B1845B;
  letter-spacing: -0.055em;
}

.hero__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
  margin: 0 0 28px;
  line-height: 1.5;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Факты — равная сетка, без манипуляций с :nth-child */
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 26, 29, .12);
}
.hero__fact {
  padding: 0 22px;
  border-right: 1px solid rgba(26, 26, 29, .08);
}
.hero__fact:first-child { padding-left: 0; }
.hero__fact:last-child  { padding-right: 0; border-right: none; }
.hero__fact dt {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1;
}
.hero__fact dd {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

/* === ПРАВАЯ колонка: фото + карточка как ЕДИНЫЙ flex-блок === */
.hero__founder {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;          /* НЕТ margin-left: auto */
  width: 100%;
  /* Карточка примыкает к фото снизу — за счёт flex-direction column */
}

.hero__founder-photo {
  position: relative;
  margin: 0;
  flex: 1 1 auto;     /* занимает всё свободное место сверху */
  min-height: 360px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;  /* скруглены только верхние углы */
  overflow: hidden;
  background: linear-gradient(135deg, #d4b896 0%, #8a6f55 100%);
  border: 1px solid var(--line);
  border-bottom: none;
}
.hero__founder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;  /* лицо в верхней части кадра */
  z-index: 1;
}
.hero__founder-photo--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 480'><g stroke='rgba(255,255,255,.18)' stroke-width='1.2' fill='none'><circle cx='200' cy='180' r='70'/><path d='M80 420 Q80 300 200 300 Q320 300 320 420'/></g></svg>");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero__founder-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 21, 26, .35) 100%);
  z-index: 2;
}
.hero__founder-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 12px;
  background: rgba(20, 21, 26, .55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
}

/* Карточка ПРИМЫКАЕТ к фото, а не выезжает на него */
.hero__founder-card {
  flex: 0 0 auto;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;            /* стык с фото — без двойной линии */
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 22px 24px;
  /* НЕТ margin: -64px ... — фото и карточка стоят друг под другом */

  .hero__founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
}
.hero__founder-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero__founder-role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-3);
  letter-spacing: 0.005em;
  margin-bottom: 14px;
}
.hero__founder-quote {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
  line-height: 1.5;
  color: var(--ink-2);
}

/* Один объединяющий shadow на ВЕСЬ блок основателя — фото + карточка читаются как один объект */
.hero__founder {
  filter: drop-shadow(0 4px 12px rgba(26, 26, 29, .06)) drop-shadow(0 16px 40px rgba(26, 26, 29, .08));
}

/* === HERO STRIP === */
.hero__strip {
  background: transparent;
  color: var(--ink);
  position: relative;
  z-index: 2;
  border-top: none;
}
.hero__strip::before {
  display: none;
}
.hero__strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 16px 22px;
  position: relative;
  z-index: 1;
  background: var(--hero-strip-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r-md);
}
.hero__strip-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.hero__strip-item svg { color: var(--gr-2); flex-shrink: 0; }

/* === АДАПТИВ === */

/* Планшет: правая колонка чуть уже */
@media (max-width: 1100px) {
  .hero__container {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* Мобильный: 1 колонка, текст -> карточка основателя */
@media (max-width: 760px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .hero__main {
    min-height: auto;
    justify-content: flex-start;
  }
  .hero__title { font-size: clamp(30px, 8vw, 38px); margin-bottom: 16px; }
  .hero__sub   { font-size: 15.5px; margin-bottom: 24px; }
  .hero__cta   { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero__cta .btn { width: 100%; }

  .hero__facts { padding-top: 20px; }
  .hero__fact  { padding: 0 14px; }
  .hero__fact dt { font-size: 22px; }
  .hero__fact dd { font-size: 11.5px; }

  .hero__founder      { max-width: 480px; margin: 0 auto; }
  .hero__founder-photo { min-height: 320px; }
  .hero__founder-card  { padding: 20px 22px; }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  flex: 0 0 auto;
}

.logo__img {
  height: 52px !important;
}

.header .container {
  display: flex;
  align-items: center;
}

/* ============================================
   TRUST — блок доверия после hero
   ============================================ */

.trust {
  position: relative;
  background: var(--bg);
  padding: 72px 0 84px;
}

/* === Шапка === */
.trust__head {
  max-width: 720px;
  margin-bottom: 80px;
}
.trust__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--c-3);
  margin-bottom: 24px;
}

.trust__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-3);
}
.trust__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.trust__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-3);
}

/* ============================================
   УРОВЕНЬ 1 — крупные цифры
   ============================================ */

.trust__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.trust__number {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.trust__number:first-child { padding-left: 0; }
.trust__number:last-child  { padding-right: 0; border-right: none; }

.trust__number-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 8px;
}
.trust__number-value span {
  font-size: 0.55em;
  color: var(--c-3);
  margin-left: 0.04em;
  letter-spacing: -0.02em;
}
.trust__number-unit {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-3);
  margin-bottom: 14px;
}
.trust__number-label {
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  max-width: 220px;
}

/* ============================================
   УРОВЕНЬ 2 — преимущества (текстом, без карточек)
   ============================================ */

.trust__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-top: 56px;
}
.trust__point {
  display: flex;
  flex-direction: column;
}
.trust__point-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-3);
  margin-bottom: 20px;
}
.trust__point-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.trust__point-text {
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 320px;
  letter-spacing: -0.005em;
}

/* ============================================
   АДАПТИВ
   ============================================ */

/* Планшет */
@media (max-width: 1100px) {
  .trust { padding: 80px 0 88px; }
  .trust__head { margin-bottom: 64px; }

  .trust__numbers { padding-bottom: 56px; }
  .trust__number  { padding: 0 22px; }
  .trust__number-value { font-size: clamp(64px, 8vw, 96px); }

  .trust__points { gap: 36px; padding-top: 48px; }
}

/* Мобильный */
@media (max-width: 760px) {
  .trust { padding: 52px 0 58px; }
  .trust__head { margin-bottom: 36px; }
  .trust__title { font-size: clamp(30px, 8vw, 38px); }

  /* Цифры — в колонку, разделитель снизу у каждого */
  .trust__numbers {
    grid-template-columns: 1fr;
    padding-bottom: 4px;
    margin-bottom: 28px;
    border-bottom: none;
  }
  .trust__number {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 20px;
    row-gap: 4px;
  }
  .trust__number:first-child { padding-top: 0; }
  .trust__number:last-child { padding-bottom: 0; }
  .trust__number-value {
    grid-row: span 2;
    font-size: clamp(56px, 18vw, 80px);
    margin: 0;
    line-height: 1;
  }
  .trust__number-unit { margin: 0; align-self: end; }
  .trust__number-label {
    grid-column: 2;
    font-size: 13.5px;
    max-width: none;
  }

  /* Преимущества — в колонку */
  .trust__points {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 28px;
    margin-top: 0;
  }
  .trust__point-num {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .trust__point-title {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .trust__point-text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services__head,
  .services__intro,
  .services__item,
  .services__note,
  .services__cta {
    animation: none;
  }
}

/* ==============================
   04 — Objects / Cases
============================== */

.cases {
  position: relative;
  padding: 120px 0 110px;
  background:
    linear-gradient(
      180deg,
      #fafaf7 0%,
      #f6f1e8 18%,
      #f6f1e8 100%
    );
  color: #171719;
  border-top: none;
}

.cases__head {
  margin-bottom: 72px;
  text-align: left;
}

.cases__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B1845B;
}

.cases__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #B1845B;
}

.cases__title {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #171719;
}

.cases__title em {
  font-style: italic;
  font-weight: 400;
  color: #B1845B;
}

.cases__description {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(23, 23, 25, 0.58);
}

.cases__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, 340px);
  gap: 28px;
}

.case {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #18181a;
  min-height: 320px;
  box-shadow: 0 28px 70px rgba(35, 28, 22, 0.12);
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}


.case:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(35, 28, 22, 0.22);
}

.case--large {
  grid-row: span 2;
}

.case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(0.98);
  transition: transform 0.8s ease, opacity 0.8s ease, filter 0.8s ease;
}

.case::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.04) 0%,
      rgba(0,0,0,0.12) 42%,
      rgba(0,0,0,0.58) 100%
    );
  z-index: 1;
}

.case:hover::after {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.42) 48%,
      rgba(0, 0, 0, 0.78) 100%
    );
}

.case__content {
  position: relative;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 32px;
  color: #fff;
  transition: transform 0.45s ease;
  z-index: 2;
}

.case:hover .case__content {
  transform: none;
}

.case__label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case__content h3 {
  margin: 0;
  max-width: 620px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  transition: transform 0.4s ease;
  text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.case--large .case__content h3 {
  font-size: 44px;
}

.case__meta {
  display: flex;
  gap: 34px;
  margin-top: 22px;
  opacity: 0.95;
}

.case__meta span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.52);
}

.case__meta strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1024px) {
  .cases {
    padding: 90px 0;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .case,
  .case--large {
    min-height: 420px;
    grid-row: auto;
  }

  .case--large .case__content h3 {
    font-size: 36px;
  }
}

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

  .cases__head {
    margin-bottom: 56px;
  }

  .cases__head h2 {
    font-size: 42px;
  }

  .cases__head p {
    font-size: 15px;
  }

  .case,
  .case--large {
    min-height: 340px;
    border-radius: 20px;
  }

  .case__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .case__content h3,
  .case--large .case__content h3 {
    font-size: 26px;
  }

  .case__meta {
    gap: 22px;
    margin-top: 20px;
  }

  .case__meta strong {
    font-size: 20px;
  }
}

.estimate__note {
  max-width: 560px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(23, 23, 25, 0.58);
}
/* ============================================
   FINAL UX / MOBILE FIXES — 2026
   ============================================ */

.estimate__trust {
  margin: 16px 0 28px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
}

.trust {
  padding: 112px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%);
  border-top: 1px solid rgba(168, 122, 82, 0.14);
  border-bottom: 1px solid rgba(168, 122, 82, 0.14);
}

.trust__points {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust__point-title {
  font-size: 24px;
  line-height: 1.12;
}

.trust__point-text {
  max-width: 220px;
}

.reviews__grid--compact .review__text {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.reviews__grid--compact .reviews__side .review__text {
  font-size: 18px;
  line-height: 1.45;
}

.cta__bullets {
  display: grid;
  gap: 14px;
  margin: 34px 0 54px;
  padding: 0;
  list-style: none;
}

.cta__bullets li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink-2);
}

.cta__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(200,153,113,0.14);
  border: 1px solid var(--c-3);
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.26);
}

@media (max-width: 1024px) {
  .hero__container,
  .estimate__layout,
  .cta__layout,
  .process__layout,
  .services__layout {
    grid-template-columns: 1fr;
  }

  .hero__founder {
    margin: 0 auto;
    transform: none;
    height: auto;
    max-width: 520px;
  }

  .hero__founder-photo {
    min-height: 460px;
  }

  .services__head {
    position: static;
  }

  .trust__points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 82px;
  }

  .sticky-cta {
    display: flex;
  }

  .header__right,
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 28px;
  }

  .hero__container {
    gap: 34px;
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .hero__title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero__cta {
    display: grid;
    gap: 12px;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }

  .hero__fact,
  .hero__fact:first-child,
  .hero__fact:nth-child(2),
  .hero__fact:last-child {
    padding: 0;
    border-right: 0;
  }

  .hero__strip-inner {
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .main-case__photo {
    min-height: 360px;
  }

  .main-case__panel,
  .estimate__sample,
  .form {
    border-radius: 22px;
  }

  .trust,
  .reviews,
  .section,
  .services,
  .process {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .trust__numbers,
  .trust__points,
  .reviews__grid,
  .cases__grid {
    grid-template-columns: 1fr;
  }

  .trust__point {
    padding: 24px 0;
  }

  .process__title,
  .services__title,
  .trust__title,
  .reviews__title,
  .estimate__title,
  .cta__title {
    font-size: clamp(38px, 10vw, 48px);
  }

  .cta__bullets {
    gap: 10px;
    margin: 20px 0 24px;
  }

  .cta__text {
    margin-bottom: 22px;
  }

  .cta__contacts {
    padding-top: 16px;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 18px;
  }

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

  .hero__founder-photo {
    min-height: 380px;
  }

  .hero__founder-card {
    margin: -44px 14px 0;
    padding: 22px;
  }

  .main-case__specs {
    grid-template-columns: 1fr;
  }

  .estimate__stage,
  .estimate__total {
    align-items: flex-start;
    gap: 12px;
  }

  .estimate__stage-price,
  .estimate__total-sum {
    white-space: normal;
  }
}


/* мягкий hover как у студий */
.case__content {
  transition: transform .35s ease;
}

.case__content h3 {
  transition: transform .35s ease;
}

.case:hover .case__content {
  transform: translateY(-6px);
}

.case:hover .case__content h3 {
  transform: translateY(-2px);
}

/* FIX 01 — Objects: стабильная сетка без наложений */
.cases {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
}

.cases__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-auto-rows: 340px;
  gap: 28px;
  align-items: stretch;
}

.case {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #171719;

  box-shadow: 
    0 30px 80px rgba(35, 28, 22, 0.16),
    0 8px 20px rgba(35, 28, 22, 0.08);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.case:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 50px 120px rgba(35, 28, 22, 0.22),
    0 12px 30px rgba(35, 28, 22, 0.12);
}

.case--large {
  grid-row: span 2;
}

.case > img,
.case > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  max-width: none;
  object-fit: cover;
  z-index: 1;
}

.case:hover > img {
  transform: scale(1.06);
}

.case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.12) 42%,
    rgba(0,0,0,0.78) 100%
  );
  pointer-events: none;
}

.case__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 34px;
  color: #fff;
}

.case:not(.case--large) .case__content {
  padding: 28px;
}

.case__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case__content h3 {
  color: #fff;
}

@media (max-width: 900px) {
  .cases__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 420px;
  }

  .case--large {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .cases {
    padding: 80px 0 90px;
  }

  .cases__grid {
    grid-auto-rows: 360px;
    gap: 18px;
  }

  .case__content,
  .case:not(.case--large) .case__content {
    padding: 22px;
  }
}

/* FIX 03 — отступ под заголовком объектов */
.cases__grid {
  margin-top: 52px !important;
}

.cases__description {
  margin-top: 28px;
  max-width: 720px;
}
/* FIX 05 — Objects: премиальный тёмный overlay */
.case::after {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.02) 0%,
      rgba(0,0,0,0.10) 38%,
      rgba(0,0,0,0.72) 72%,
      rgba(0,0,0,0.92) 100%
    );
}

.case__content h3 {
  max-width: 520px;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 26px rgba(0,0,0,0.35);
}

.case:not(.case--large) .case__content h3 {
  max-width: 360px;
  font-size: clamp(22px, 1.8vw, 30px);
}

.case__meta {
  margin-top: 22px;
}

.case__meta span {
  color: rgba(255,255,255,0.46);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case__meta strong {
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* FIX 06 — Objects: studio-level polish */
.case {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.case::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    inset 0 -1px 0 rgba(0,0,0,0.35);
  pointer-events: none;
}

.case__content {
  z-index: 4;
}

.case__label {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.case__meta {
  display: flex;
  gap: 34px;
  align-items: flex-end;
}

.case__meta div {
  position: relative;
}

.case__meta div + div::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 2px;
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.16);
}

.case__meta strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.case:hover .case__label {
  background: rgba(255,255,255,0.24);
}

/* FIX 07 — Objects: убираем дешёвую рамку, добавляем premium glow */
.cases__grid .case {
  border: none !important;
  background: #141416 !important;

  box-shadow:
    0 40px 100px rgba(20, 16, 12, 0.18),
    0 10px 30px rgba(20, 16, 12, 0.10),
    inset 0 0 0 1px rgba(255,255,255,0.06) !important;
}

.cases__grid .case::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  border-radius: inherit !important;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0) 30%
  ) !important;

  box-shadow: none !important;
  pointer-events: none !important;
}

.cases__grid .case:hover {
  box-shadow:
    0 55px 130px rgba(20, 16, 12, 0.24),
    0 16px 36px rgba(20, 16, 12, 0.14),
    inset 0 0 0 1px rgba(255,255,255,0.08) !important;
}
/* поднимаем контент выше */
.case__content {
  transform: translateY(-8px);
}

/* делаем отступ между заголовком и метой */
.case__content h3 {
  margin-bottom: 18px;
}

/* FIX 09 — Reviews: принудительно показываем отзывы */
.reviews,
.reviews__head,
.reviews__grid,
.review {
  opacity: 1 !important;
  visibility: visible !important;
}

.reviews .reveal,
.reviews__head,
.review {
  transform: none !important;
}
/* FIX 10 — Reviews: premium material cards */
.reviews {
  position: relative;
  padding: 120px 0 130px;
  background:
    radial-gradient(circle at 50% 45%, rgba(184,132,90,0.10), transparent 42%),
    linear-gradient(180deg, #f4efe6 0%, #eee6d8 100%);
}

.reviews__grid {
  margin-top: 52px;
  gap: 28px;
}

.review {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(168,122,82,0.16);
  box-shadow:
    0 30px 80px rgba(35,28,22,0.10),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.review::before {
  content: "“";
  position: absolute;
  right: 28px;
  bottom: -42px;
  font-family: var(--font-display);
  font-size: 170px;
  line-height: 1;
  color: rgba(184,132,90,0.08);
  pointer-events: none;
}

.review--large {
  transform: translateY(-12px) !important;
  box-shadow:
    0 42px 110px rgba(35,28,22,0.14),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.review:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 44px 110px rgba(35,28,22,0.14),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.review__quote {
  position: relative;
  z-index: 2;
}

.review__person {
  position: relative;
  z-index: 2;
}

/* FIX 11 — Services: главный формат + иерархия */

/* общий стиль карточек */
.service-card {
  position: relative;
  transition: all 0.35s ease;
}

/* делаем первую карточку главной */
.service-card:first-child {
  transform: scale(1.04);
  z-index: 2;

  background: linear-gradient(
    135deg,
    rgba(184,132,90,0.10),
    rgba(255,255,255,0.85)
  );

  border: 1px solid rgba(184,132,90,0.28);

  box-shadow:
    0 40px 100px rgba(35,28,22,0.14),
    0 10px 30px rgba(35,28,22,0.10);
}

/* бейдж "основной формат" усиливаем */
.service-card:first-child .service-card__badge {
  background: #b8845a;
  color: #fff;
}

/* остальные карточки чуть приглушаем */
.service-card:not(:first-child) {
  opacity: 0.85;
}

/* hover возвращает их в норму */
.service-card:not(:first-child):hover {
  opacity: 1;
  transform: translateY(-6px);
}

/* FIX 12 — Services: premium hover + глубина */

.service-card {
  cursor: pointer;
  transition: all 0.35s ease;
}

/* hover эффект */
.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 30px 80px rgba(35,28,22,0.14),
    0 10px 30px rgba(35,28,22,0.10);
}

/* лёгкое свечение при hover */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(
    circle at 30% 20%,
    rgba(184,132,90,0.18),
    transparent 40%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* FIX 13 — Services: больше воздуха между колонками */
.services__layout {
  gap: clamp(80px, 9vw, 140px) !important;
  align-items: start;
}

.services__content {
  max-width: 620px !important;
}

.services__items {
  padding: 12px !important;
}

.services__item {
  padding: 28px 34px !important;
}

.services__item h3 {
  font-size: clamp(25px, 2vw, 32px) !important;
}

/* FIX 15 — Services: чистый фон без грязного прямоугольника */
.services::before {
  display: none !important;
}

/* FIX 16 — Process: premium roadmap */
.process {
  background:
    radial-gradient(circle at 72% 22%, rgba(184,132,90,0.10), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%) !important;
  color: var(--ink) !important;
}

.process__items {
  position: relative;
  border-top: none !important;
}

.process__items::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(168,122,82,0.55),
    var(--line-soft)
  );
}

.process__item {
  position: relative;
  padding: 30px 0 32px !important;
  border-bottom: 1px solid var(--line) !important;
}

.process__num {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(184,132,90,0.12);
  border: 1px solid rgba(168,122,82,0.35);
  color: var(--c-3) !important;
}

.process__item:hover .process__num {
  background: var(--c-3);
  color: #fff !important;
}

/* FIX 17 — Process: крупнее и дороже */
.process__item h3 {
  font-size: clamp(30px, 2.2vw, 38px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
}

.process__item p {
  margin-top: 10px !important;
  font-size: 15px !important;
  color: var(--ink-2) !important;
}

.process__items::before {
  opacity: 0.55;
}

.process__num {
  font-family: var(--font-display);
  font-size: 15px !important;
  box-shadow:
    0 0 0 6px rgba(184,132,90,0.05),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* FIX 18 — Process: мягкий hover */
.process__items:hover .process__item {
  opacity: 0.55;
}

.process__item:hover {
  opacity: 1 !important;
}

.process__item:hover h3 {
  color: var(--c-3) !important;
}

.process__item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.process__item:hover {
  transform: translateX(6px);
}

/* FIX 19 — Trust: делаем цифры премиальными */
.trust__num {
  font-size: clamp(72px, 6vw, 110px) !important;
  letter-spacing: -0.04em;
  line-height: 0.9;

  background: linear-gradient(180deg, #1c1b1a, #6b5a4a);

  background-clip: text;              /* добавь это */
  -webkit-background-clip: text;

  color: transparent;                 /* лучше чем text-fill */
  -webkit-text-fill-color: transparent;
}

.trust__item {
  position: relative;
  padding: 30px 20px;
}

.trust__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(184,132,90,0.25),
    transparent
  );
}

.trust__item:last-child::after {
  display: none;
}

/* FIX 20 — Final CTA: premium closing block */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(184,132,90,0.12), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(200,153,113,0.08), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%) !important;
  color: var(--ink) !important;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 220px 220px;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.cta__info {
  position: relative;
  z-index: 2;
}

.cta__title {
  max-width: 680px;
  letter-spacing: -0.045em;
}

.form {
  position: relative;
  z-index: 2;
  border-radius: 30px !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  box-shadow:
    0 44px 120px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(18px);
}

.form__submit {
  box-shadow:
    0 18px 44px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.form__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

/* =========================
   FINAL CTA FIXES (20–24)
   ========================= */

/* ФОН CTA */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(184,132,90,0.12), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(200,153,113,0.08), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%) !important;
  color: var(--ink) !important;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 220px 220px;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ФОРМА */
.form {
  border-radius: 32px !important;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9)) !important;

  border: 1px solid rgba(255,255,255,0.6) !important;

  box-shadow:
    0 60px 140px rgba(0,0,0,0.35),
    0 10px 40px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.8);

  backdrop-filter: blur(20px);
}

/* КНОПКА */
.form__submit {
  background: linear-gradient(135deg, #1c1c1e, #2b2b2f) !important;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);

  letter-spacing: 0.02em;
}

.form__submit:hover {
  transform: translateY(-2px);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ЛЕВЫЙ БЛОК */
.cta__info ul {
  margin-top: 28px;
}

.cta__info li {
  opacity: 0.9;
  margin-bottom: 12px;
  font-size: 16px;
}

/* ТЕЛЕФОН */
.cta__phone {
  font-size: 28px;
  font-weight: 500;
  margin-top: 16px;

  color: var(--accent);
}

/* ФУТЕР */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%) !important;
  border-top: 1px solid var(--line-soft) !important;
  color: var(--ink-2) !important;
}

/* FIX 25 — скрываем success до отправки формы */
.form__success[hidden] {
  display: none !important;
}

/* FIX 26 — CTA: luxury bullets */
.cta__info ul {
  list-style: none;
  padding: 0;
}

.cta__info li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 16px;
  font-size: 16px;
  color: var(--ink-2);
}

.cta__info li::before {
  content: "";
  width: 13px;
  height: 13px;
  flex-shrink: 0;

  border-radius: 50%;
  border: 1px solid rgba(200,153,113,0.75);
  background: radial-gradient(circle, rgba(200,153,113,0.72) 0 28%, transparent 32%);
  box-shadow:
    0 0 0 5px rgba(200,153,113,0.08),
    0 0 22px rgba(200,153,113,0.22);
}

.cta__info li:hover {
  color: var(--ink);
}

/* FIX 26 FINAL — аккуратные премиум буллеты */
.cta__info ul {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.cta__info li {
  position: relative;
  padding-left: 26px;

  margin-bottom: 14px;

  font-size: 16px;
  line-height: 1.4;

  color: var(--ink-2);
}

/* кружок */
.cta__info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;

  width: 10px;
  height: 10px;

  border-radius: 50%;
  border: 1px solid var(--c-3);

  background: radial-gradient(circle, var(--c-1) 0 35%, transparent 40%);

  box-shadow:
    0 0 0 4px rgba(200,153,113,0.08),
    0 0 18px rgba(200,153,113,0.2);
}

/* FIX 28 — CTA: спокойное вертикальное выравнивание формы */
.cta .form {
  margin-top: 28px;
}

/* FIX 29 — Premium FAQ */

.faq__item {
  border-radius: 18px !important;

  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: all 0.25s ease;
}

/* hover */
.faq__item:hover {
  transform: translateY(-2px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* активный */
.faq__item.is-open {
  background: rgba(255,255,255,0.95) !important;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* плюсик */
.faq__toggle {
  width: 32px;
  height: 32px;

  border-radius: 50%;

  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);

  transition: all 0.25s ease;
}

.faq__item:hover .faq__toggle {
  background: var(--accent);
  border-color: transparent;

  color: #fff;
}

/* текст */
.faq__question {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* FIX 30 — Micro animation: premium CTA pulse */
@keyframes premiumPulse {
  0%, 100% {
    box-shadow:
      0 18px 44px rgba(0,0,0,0.22),
      0 0 0 0 rgba(200,153,113,0);
  }

  50% {
    box-shadow:
      0 22px 52px rgba(0,0,0,0.28),
      0 0 0 7px rgba(200,153,113,0.08);
  }
}

.hero .btn--primary,
.main-case__cta,
.form__submit {
  animation: premiumPulse 3.8s ease-in-out infinite;
}

.hero .btn--primary:hover,
.main-case__cta:hover,
.form__submit:hover {
  animation: none;
}

/* FIX 31 — Hero: жизнь на hover */
.hero__founder {
  transition: transform 0.45s ease;
}

.hero__founder:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero__founder-photo {
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.hero__founder:hover .hero__founder-photo {
  transform: scale(1.07);
  box-shadow: 0 34px 90px rgba(35,28,22,0.22);
}

.hero__founder-img {
  transition: transform 0.8s ease;
}

.hero__founder:hover .hero__founder-img {
  transform: scale(1.045);
}

.hero__founder-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero__founder:hover .hero__founder-card {
  transform: translateY(-8px);
  box-shadow: 0 42px 110px rgba(35,28,22,0.18);
}

.hero__fact {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero__fact:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}

.hero__fact dt {
  transition: color 0.3s ease;
}

.hero__fact:hover dt {
  color: #b8845a;
}

/* FIX 32 — Header: premium glass bar */
.header {
  background: rgba(250, 248, 243, 0.78) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(184,132,90,0.14) !important;
  box-shadow: 0 10px 34px rgba(35,28,22,0.05);
}

.header.is-scrolled {
  background: rgba(250, 248, 243, 0.92) !important;
  box-shadow: 0 16px 44px rgba(35,28,22,0.08);
}

.header__inner {
  height: 76px !important;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: #b8845a;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__phone {
  padding-right: 2px;
}

.header__cta {
  box-shadow:
    0 14px 34px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav a {
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.nav a:hover {
  opacity: 1;
}

.header__cta {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* FIX 35 — Trust block animation */

/* цифры */
.trust__stat {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.trust__stat:hover {
  transform: translateY(-6px);
}

/* большие числа */
.trust__stat-value {
  transition: transform 0.45s ease, color 0.3s ease;
}

.trust__stat:hover .trust__stat-value {
  transform: scale(1.05);
  color: #b8845a;
}

/* нижние пункты */
.trust__item {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.trust__item:hover {
  transform: translateY(-4px);
  opacity: 0.85;
}

/* номера 01 02 03 04 */
.trust__item-index {
  transition: color 0.3s ease;
}

.trust__item:hover .trust__item-index {
  color: #b8845a;
}

/* FIX 35 FINAL — Trust: hover animation with correct classes */
.trust__number,
.trust__point {
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.trust__number:hover {
  transform: translateY(-6px);
}

.trust__number-value {
  display: inline-block;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.trust__number:hover .trust__number-value {
  transform: scale(1.04);
  color: #b8845a !important;
}

.trust__number:hover .trust__number-unit {
  color: #b8845a !important;
}

.trust__point:hover {
  transform: translateY(-4px);
  opacity: 0.86;
}

.trust__point-num,
.trust__point-title {
  transition: color 0.3s ease;
}

.trust__point:hover .trust__point-num,
.trust__point:hover .trust__point-title {
  color: #b8845a !important;
}

/* FIX 36 — Premium scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1),
    filter 0.9s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* чуть более дорогой вход для карточек */
.case.reveal,
.review.reveal,
.faq__item.reveal,
.process__item.reveal,
.main-case__panel.reveal,
.main-case__photo.reveal {
  transform: translateY(42px) scale(0.985);
}

.case.reveal.is-visible,
.review.reveal.is-visible,
.faq__item.reveal.is-visible,
.process__item.reveal.is-visible,
.main-case__panel.reveal.is-visible,
.main-case__photo.reveal.is-visible {
  transform: translateY(0) scale(1);
}

/* без анимации для пользователей, у кого отключены motion-эффекты */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* FIX 37 — Header logo: readable text version */
.logo--text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.logo__main {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1d;
}

.logo__main i {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(184,132,90,0.55);
}

.logo__sub {
  padding-left: 1px;

  font-size: 8.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;

  color: #c89971;
}

/* FIX 38 — footer logo refinement */

.logo--light .logo__name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.logo--light .logo__tagline {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200,153,113,0.75);
}

/* FIX 40 — Hero: premium composition */
.hero {
  background:
    radial-gradient(circle at 72% 22%, rgba(184,132,90,0.16), transparent 30%),
    radial-gradient(circle at 20% 36%, rgba(255,255,255,0.75), transparent 34%),
    linear-gradient(180deg, #f4efe6 0%, #eee6d8 100%) !important;
}

.hero__title {
  max-width: 720px;
  letter-spacing: -0.045em;
}

.hero__sub {
  max-width: 560px;
  font-size: 17px;
  color: rgba(26,26,29,0.68);
}

.hero__founder {
  filter: drop-shadow(0 40px 90px rgba(35,28,22,0.14));
}

.hero__founder::before {
  content: "";
  position: absolute;
  inset: 24px -28px -28px 36px;
  z-index: -1;
  border-radius: 34px;
  background: rgba(184,132,90,0.10);
  border: 1px solid rgba(184,132,90,0.12);
}

.hero__cta {
  margin-top: 34px;
}

/* контейнер */
.hero__founder {
  perspective: 1000px;
}

/* само фото */
.hero__founder img {
  transition: transform 0.6s ease;
}

/* карточка */
.hero__founder-card {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* hover эффект */
.hero__founder:hover img {
  transform: scale(1.04);
}

.hero__founder:hover .hero__founder-card {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* FIX 42 — Hero: Apple-style entrance */
.hero__title,
.hero__sub,
.hero__cta,
.hero__facts,
.hero__founder {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  animation: heroAppleIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero__title {
  animation-delay: 0.08s;
}

.hero__sub {
  animation-delay: 0.22s;
}

.hero__cta {
  animation-delay: 0.34s;
}

.hero__facts {
  animation-delay: 0.46s;
}

.hero__founder {
  animation-delay: 0.30s;
}

@keyframes heroAppleIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero__phone {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .hero__fact {
    text-align: left;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .hero__fact:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero__founder {
    margin-top: 28px;
  }
}

/* === MOBILE NORMALIZE (single block) === */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  img,
  video {
    max-width: 100%;
    height: auto;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 9999;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services__layout,
  .process__layout,
  .estimate__layout,
  .cta__layout,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .trust__numbers,
  .trust__points,
  .reviews__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* FIX 64 — Mobile: ровная ширина карточек без ухода вправо */
@media (max-width: 768px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box !important;
  }

  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .estimate__sample,
  .form,
  .review,
  .faq__item,
  .case,
  .services__head,
  .services__item,
  .services__note {
    width: auto !important;
    max-width: calc(100vw - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .estimate__sample,
  .form {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .estimate__sample .btn,
  .estimate__sample button,
  .estimate__sample a {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .sticky-cta {
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
  }
}

/* FIX 65 — Mobile: убираем реальный overflow справа */
@media (max-width: 768px) {
  .header__inner,
  .hero__inner,
  .main-case__layout,
  .cases__grid,
  .services__layout,
  .process__layout,
  .estimate__layout,
  .trust__numbers,
  .trust__points,
  .reviews__grid,
  .faq__layout,
  .cta__layout,
  .footer__grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .estimate__card,
  .estimate__sample,
  .main-case__panel,
  .case,
  .review,
  .faq__item,
  .form {
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* FIX 66 — Mobile: Objects + Trust cleanup */
@media (max-width: 768px) {

  /* ОБЪЕКТЫ — возвращаем первую большую карточку */
  .cases__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .cases__grid .case,
  .case--large {
    height: 420px !important;
    min-height: 420px !important;
    grid-row: auto !important;
    transform: none !important;
    opacity: 1 !important;
    overflow: hidden !important;
  }

  .case--large {
    order: 0 !important;
  }

  .case img,
  .case video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .case__content {
    padding: 28px 24px 26px !important;
    transform: none !important;
  }

  .case__content h3 {
    font-size: 28px !important;
    line-height: 1.02 !important;
  }

  /* ДОВЕРИЕ — убираем размазанность */
  .trust__numbers {
    margin-bottom: 28px !important;
    padding-bottom: 4px !important;
  }

  .trust__number {
    padding: 20px 0 !important;
  }

  .trust__points {
    gap: 0 !important;
    margin-top: 0 !important;
    padding-top: 28px !important;
  }

  .trust__point {
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .trust__point:last-child {
    border-bottom: none;
  }

  .trust__point-num {
    margin-bottom: 8px !important;
  }

  .trust__point-title {
    font-size: 23px !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }

  .trust__point-text {
    margin-top: 0 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}

/* FIX 67 — Mobile: Objects cards spacing and readable text */
@media (max-width: 768px) {
  .cases__grid {
    gap: 22px !important;
    grid-auto-rows: auto !important;
    align-items: start !important;
  }

  .cases__grid .case,
  .case--large {
    height: 430px !important;
    min-height: 430px !important;
    max-height: none !important;
    margin-bottom: 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .cases__grid .case + .case {
    margin-top: 0 !important;
  }

  .case__content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 26px 24px 24px !important;
    z-index: 6 !important;
  }

  .case__content h3 {
    font-size: 26px !important;
    line-height: 1.04 !important;
    margin-bottom: 16px !important;
  }

  .case__meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
.case::after {
  display: none !important;
}
}
/* FIX HEADER MOBILE */

@media (max-width: 480px) {

  .header,
  header {
    padding: 14px 16px !important;
  }

  .header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* логотип */
  .logo {
    font-size: 16px !important;
    line-height: 1.1 !important;
  }

  .logo small {
    font-size: 10px !important;
    letter-spacing: 1px !important;
  }

  /* кнопка бургер */
  .menu-btn,
  .burger {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

}

/* FIX HEADER — компактная и аккуратная */

@media (max-width: 480px) {

  header,
  .header {
    padding: 10px 14px !important;
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  }

  /* контейнер */
  .header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* логотип */
  .logo {
    font-size: 15px !important;
    line-height: 1.1 !important;
  }

  .logo small {
    font-size: 9px !important;
    letter-spacing: 1px !important;
  }

  /* бургер */
  .menu-btn,
  .burger {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
  }

}

/* FIX 68 — Mobile hero facts: premium compact cards */
@media (max-width: 480px) {
  .hero__facts {
    gap: 10px !important;
    margin-top: 34px !important;
  }

  .hero__fact {
    display: grid !important;
    grid-template-columns: 92px 1fr !important;
    align-items: center !important;
    padding: 16px 0 !important;
  }

  .hero__fact dt {
    font-size: 27px !important;
    line-height: 1 !important;
  }

  .hero__fact dd {
    font-size: 11px !important;
    line-height: 1.25 !important;
    text-align: right !important;
    max-width: 125px !important;
    justify-self: end !important;
  }
}

/* FIX 69 — Hero facts: акцент на цифрах */
@media (max-width: 480px) {

  .hero__facts {
    margin-top: 36px !important;
  }

  .hero__fact {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    padding: 18px 0 !important;
  }

  /* ЦИФРЫ — главный акцент */
  .hero__fact dt {
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
  }

  /* ОПИСАНИЕ — читаемое, но вторичное */
  .hero__fact dd {
    font-size: 12px !important;
    line-height: 1.3 !important;
    color: rgba(0,0,0,0.55) !important;
    text-align: right !important;
  }

}

/* FIX 70 FINAL — Hero mobile polish safe */
@media (max-width: 480px) {

  .hero__title {
    font-size: 31px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.02em !important;
  }

  .hero__sub {
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(26,26,29,0.68) !important;
  }

  .hero__cta {
    margin-top: 28px !important;
    gap: 12px !important;
  }

  .hero__cta .btn--primary {
    height: 56px !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, #1e1e1f 0%, #0e0e10 100%) !important;
    color: #fff !important;
    box-shadow:
      0 14px 34px rgba(0,0,0,0.22),
      inset 0 1px 0 rgba(255,255,255,0.08) !important;
  }

  .hero__phone {
    height: 52px !important;
    border-radius: 26px !important;
    background: rgba(255,255,255,0.62) !important;
    color: #1a1a1d !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08) !important;
  }

  .process .section__title,
  .process__title {
    background: transparent !important;
  }
}
/* FIX 71 FINAL — убираем серый фон в процессе */
@media (max-width: 480px) {
  .process .section__head,
  .process .section__title,
  .process__head,
  .process__title,
  .process__content {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }
}
/* FIX 72 — premium dark block */
@media (max-width: 480px) {

  .founder__features,
  .about__features,
  .dark-list {
    border-radius: 16px !important;

    background: linear-gradient(
      180deg,
      #1b1b1d 0%,
      #0e0e10 100%
    ) !important;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.25),
      inset 0 1px 0 rgba(255,255,255,0.04) !important;

    padding: 18px !important;
  }

  .founder__features li {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

}
/* FIX 72 FINAL — premium dark benefits strip */
@media (max-width: 480px) {
  .hero__benefits,
  .hero-benefits,
  .benefits,
  .benefits-bar {
    margin: 0 18px 34px !important;
    padding: 18px 18px !important;

    border-radius: 18px !important;
    background: linear-gradient(180deg, #1c1c1e 0%, #0d0d0f 100%) !important;

    box-shadow:
      0 18px 44px rgba(0,0,0,0.24),
      inset 0 1px 0 rgba(255,255,255,0.05) !important;
  }

  .hero__benefits li,
  .hero-benefits li,
  .benefits li,
  .benefits-bar li {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
}
/* FIX 72 REAL — Mobile hero strip */
@media (max-width: 480px) {
  .hero__strip {
    background: transparent !important;
    padding: 0 18px 34px !important;
  }

  .hero__strip-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;

    padding: 18px 20px !important;
    border-radius: 18px !important;

    background: var(--hero-strip-bg) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: none !important;
  }

  .hero__strip-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    font-size: 14px !important;
    line-height: 1.35 !important;
    color: var(--ink-2) !important;
  }

  .hero__strip-item svg {
    flex: 0 0 16px !important;
    color: var(--gr-2) !important;
  }
}

/* FIX 73 — отступ от карточки основателя */
@media (max-width: 480px) {

  .hero__strip {
    margin-top: 20px !important;
  }

}
/* FIX 74 — Mobile cases/cards final polish */
@media (max-width: 480px) {
  .cases {
    padding-bottom: 86px !important;
  }

  .cases__grid {
    gap: 20px !important;
  }

  .cases__grid .case,
  .case--large {
    height: 390px !important;
    min-height: 390px !important;
    border-radius: 20px !important;
  }

  .case__content {
    padding: 22px 20px 22px !important;
  }

  .case__badge {
    font-size: 10px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
  }

  .case__content h3 {
    font-size: 24px !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
  }

  .case__meta {
    gap: 10px !important;
  }

  .case__meta small {
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  .case__meta strong {
    font-size: 17px !important;
  }

  .case img,
  .case video {
    object-position: center center !important;
  }
}
/* FIX 75 — Mobile cases: text above sticky CTA */
@media (max-width: 480px) {
  .cases {
    padding-bottom: 130px !important;
  }

  .cases__grid .case,
  .case--large {
    height: 360px !important;
    min-height: 360px !important;
  }

  .case__content {
    bottom: 18px !important;
    padding: 0 20px !important;
  }

  .case__content h3 {
    font-size: 23px !important;
    line-height: 1.04 !important;
    margin-bottom: 18px !important;
  }

  .case__meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .case__meta strong {
    font-size: 16px !important;
  }
}

/* FIX 76 — Mobile cases: readable glass caption */
@media (max-width: 480px) {
  .case__content {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    padding: 16px 16px 14px !important;
    border-radius: 18px !important;
    background: linear-gradient(
      180deg,
      rgba(12,12,13,0.52),
      rgba(12,12,13,0.82)
    ) !important;
    backdrop-filter: blur(8px) !important;
  }

  .case__content h3 {
    font-size: 22px !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  }

  .case__meta strong,
  .case__meta small {
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  }
}
/* FIX 77 — Mobile cases: lighter glass caption */
@media (max-width: 480px) {
  .case__content {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    padding: 14px 14px 13px !important;
    border-radius: 16px !important;

    background: linear-gradient(
      180deg,
      rgba(12,12,13,0.42),
      rgba(12,12,13,0.74)
    ) !important;
  }

  .case__content h3 {
    font-size: 21px !important;
    margin-bottom: 12px !important;
  }

  .case__badge {
    margin-bottom: 12px !important;
  }

  .case__meta strong {
    font-size: 15px !important;
  }
}
/* FIX 78 — Premium glass cases (final) */
@media (max-width: 480px) {
  .case__content {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;

    padding: 12px 14px !important;
    border-radius: 14px !important;

    /* меньше мыла, больше контраста */
    background: linear-gradient(
      180deg,
      rgba(10,10,11,0.55),
      rgba(10,10,11,0.85)
    ) !important;

    backdrop-filter: blur(6px) !important;
  }

  .case__content h3 {
    font-size: 20px !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }

  .case__badge {
    font-size: 11px !important;
    padding: 6px 10px !important;
    margin-bottom: 10px !important;
  }

  .case__meta {
    margin-top: 8px !important;
  }

  .case__meta strong {
    font-size: 14px !important;
  }
}
/* FIX 79 — Mobile services block cleanup */
@media (max-width: 480px) {
  .services {
    padding-top: 72px !important;
    padding-bottom: 120px !important;
  }

  .services__head {
    padding: 30px 24px !important;
    border-radius: 24px !important;
    margin-bottom: 34px !important;
  }

  .services__head .section__title,
  .services__title {
    font-size: 34px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
  }

  .services__lead {
    margin: 0 0 28px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .services__items {
    gap: 10px !important;
  }

  .services__item {
    padding: 22px 20px !important;
    border-radius: 22px !important;
  }

  .services__item h3 {
    font-size: 25px !important;
    line-height: 1.12 !important;
  }

  .services__item p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .services__note {
    margin-top: 28px !important;
    padding: 42px 24px 28px 24px !important;
    border-radius: 22px !important;
    font-size: 23px !important;
    line-height: 1.22 !important;
  }

  .services__note::before {
    top: 18px !important;
    left: 24px !important;
    bottom: auto !important;
    width: 42px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--c-1), var(--c-3)) !important;
  }
}
/* FIX 80 — Mobile services final polish */
@media (max-width: 480px) {
  .services__item {
    min-height: auto !important;
    padding: 21px 20px !important;
  }

  .services__body h3 {
    margin-bottom: 9px !important;
  }

  .services__tags {
    margin-top: 15px !important;
    gap: 9px 12px !important;
  }

  .services__badge {
    margin-bottom: 9px !important;
  }

  .services__item h3 {
    font-size: 24px !important;
  }

  .services__note {
    margin-top: 22px !important;
    padding: 42px 24px 26px 24px !important;
    font-size: 21px !important;
    line-height: 1.24 !important;
  }

  .services__note::before {
    top: 18px !important;
    left: 24px !important;
    bottom: auto !important;
    width: 42px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--c-1), var(--c-3)) !important;
  }
}
/* микро-полировка карточек */
@media (max-width: 480px) {
  .services__item {
    box-shadow: 
      0 6px 20px rgba(0,0,0,0.04),
      inset 0 1px 0 rgba(255,255,255,0.6);
  }
}
/* FIX 81 — Mobile process block polish */
@media (max-width: 480px) {
  .process {
    padding-top: 72px !important;
    padding-bottom: 96px !important;
  }

  .process .section__title,
  .process__title {
    font-size: 38px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
  }

  .process__lead,
  .process .section__text {
    margin-top: 28px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: var(--ink-2) !important;
  }

  .process__intro {
    color: var(--ink-2) !important;
  }

  .process__list,
  .process__steps {
    margin-top: 38px !important;
  }

  .process__items:hover .process__item,
  .process__items .process__item {
    opacity: 1 !important;
  }

  .process__item {
    gap: 12px !important;
    padding: 20px 0 20px 50px !important;
    position: relative !important;
  }

  .process__item h3,
  .process__body h3 {
    margin-bottom: 8px !important;
    font-size: 27px !important;
    line-height: 1.12 !important;
    color: var(--ink) !important;
  }

  .process__item:hover h3 {
    color: var(--ink) !important;
  }

  .process__item p,
  .process__body p {
    margin-top: 5px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(23, 23, 25, 0.58) !important;
    opacity: 1 !important;
  }

  .process__num,
  .process__number,
  .process__index {
    width: 42px !important;
    height: 42px !important;
    font-size: 14px !important;
  }
}
/* FIX 82 — Mobile process final */
@media (max-width: 480px) {
  .process {
    padding-bottom: 150px !important;
  }

  .process .section__title,
  .process__title {
    font-size: 34px !important;
    line-height: 1.08 !important;
    max-width: 340px !important;
  }

  .process__item {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .process__item h3 {
    font-size: 25px !important;
    line-height: 1.12 !important;
    color: var(--ink) !important;
  }
}
/* FIX 83 — Estimate premium polish */
@media (max-width: 480px) {
  .estimate__stages {
    padding: 6px !important;
    border-radius: 22px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
  }

  .estimate__stages-title {
    margin: 10px 12px 10px !important;
  }

  .estimate__stage {
    padding: 10px 12px !important;
    gap: 10px !important;
  }

  .estimate__stage-info {
    gap: 10px !important;
  }

  .estimate__sample {
    border-radius: 24px !important;
    padding: 20px 18px 16px !important;
  }

  .estimate__sample-head {
    padding-bottom: 14px !important;
  }

  .estimate__table {
    margin: 10px 0 !important;
  }

  .estimate__table td {
    padding: 8px 0 !important;
  }

  .estimate__total {
    margin-top: 6px !important;
    margin-bottom: 14px !important;
    padding-top: 14px !important;
  }

  .estimate__cta {
    margin-top: 16px !important;
  }
}
/* FIX 84 — Trust block premium */
@media (max-width: 480px) {

  /* убираем “серый баг” */
  .trust .section__title,
  .trust__title {
    background: none !important;
    padding: 0 !important;
  }

  /* цифры — делаем акцентнее */
  .trust__item strong,
  .trust__num {
    font-size: 64px !important;
    line-height: 0.9 !important;
    letter-spacing: -0.04em !important;
  }

  /* подписи */
  .trust__item span,
  .trust__item small {
    font-size: 14px !important;
    color: rgba(0,0,0,0.6) !important;
  }

  /* уменьшаем пустоту */
  .trust__stats {
    margin-bottom: 36px !important;
  }

  /* блоки 01–04 — усиливаем */
  .trust__list {
    margin-top: 10px !important;
  }

  .trust__list-item {
    padding: 22px 0 !important;
  }

  .trust__list-item h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .trust__list-item p {
    font-size: 14px !important;
    color: rgba(0,0,0,0.55) !important;
  }
}
/* FIX 85 — trust premium depth */
@media (max-width: 480px) {

  /* цифры — делаем “дорого” */
  .trust__num,
  .trust__item strong {
    font-size: 68px !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em !important;
  }

  /* маленькие подписи — аккуратнее */
  .trust__item span,
  .trust__item small {
    display: block;
    margin-top: 6px;
    line-height: 1.4;
  }

  /* разделители — мягче */
  .trust__item {
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  }

  /* список 01–04 — делаем “карточнее” */
  .trust__list-item {
    padding: 24px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  }

  /* номер (01 02) */
  .trust__list-item::before {
    font-size: 12px;
    color: #b88a5a;
    opacity: 0.9;
  }

  /* заголовки */
  .trust__list-item h3 {
    font-weight: 500;
    margin-bottom: 6px;
  }

  /* текст */
  .trust__list-item p {
    line-height: 1.5;
  }
}
/* =========================
   FIX TRUST MOBILE — FINAL
   ========================= */

@media (max-width: 480px) {
  .trust {
    padding-top: 76px !important;
    padding-bottom: 86px !important;
  }

  .trust .section__title,
  .trust__title {
    background: none !important;
    padding: 0 !important;
    font-size: 38px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
  }

  .trust .section__title em,
  .trust__title em {
    color: #b8845a !important;
    font-style: italic !important;
  }

  .trust__numbers,
  .trust__stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-top: 32px !important;
    margin-bottom: 28px !important;
    padding-bottom: 4px !important;
  }

  .trust__number,
  .trust__item,
  .trust__stat {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: baseline !important;
    gap: 18px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.09) !important;
  }

  .trust__number:first-child,
  .trust__item:first-child,
  .trust__stat:first-child {
    padding-top: 0 !important;
    border-top: 1px solid rgba(0,0,0,0.09) !important;
  }

  .trust__number:last-child {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }

  .trust__num,
  .trust__item strong,
  .trust__stat strong {
    font-size: 66px !important;
    line-height: 0.9 !important;
    font-weight: 500 !important;
    letter-spacing: -0.045em !important;
    color: #19191b !important;
  }

  .trust__item span,
  .trust__item small,
  .trust__stat span,
  .trust__stat small {
    display: block !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
    color: rgba(25,25,27,0.56) !important;
  }

  .trust__label,
  .trust__item b,
  .trust__stat b {
    display: block !important;
    margin-bottom: 6px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #b8845a !important;
    font-weight: 600 !important;
  }

  .trust__points,
  .trust__list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-top: 0 !important;
    padding-top: 24px !important;
  }

  .trust__point,
  .trust__list-item {
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  }

  .trust__point:first-child,
  .trust__list-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.08) !important;
  }

  .trust__point-num,
  .trust__point-index,
  .trust__list-item::before {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
    color: #b8845a !important;
    font-weight: 600 !important;
  }

  .trust__point h3,
  .trust__point-title,
  .trust__list-item h3 {
    margin: 0 0 6px !important;
    font-size: 23px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    font-weight: 500 !important;
    color: #19191b !important;
  }

  .trust__point p,
  .trust__point-text,
  .trust__list-item p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: rgba(25,25,27,0.58) !important;
  }
}
/* FIX — убираем плашку под заголовком */
.trust .section__title,
.trust__title {
  background: none !important;
  box-shadow: none !important;
}
/* FIX — больше воздуха */
.trust__numbers,
.trust__stats {
  margin-bottom: 56px !important;
}

.trust__list,
.trust__points {
  margin-top: 32px !important;
}
/* микро-апгрейд цифр */
.trust__num {
  color: #1a1a1a;
  background: linear-gradient(180deg, #1a1a1a, #000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* =========================
   FIX REVIEWS — PREMIUM
   ========================= */

@media (max-width: 480px) {

  /* контейнер */
  .reviews {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* карточки */
  .review,
  .reviews__item {
    min-height: auto !important;
    padding: 20px 18px !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
  }

  .review--large {
    min-height: auto !important;
    transform: none !important;
  }

  .reviews__grid {
    gap: 16px !important;
  }

  /* расстояние между карточками */
  .reviews__list,
  .reviews__items {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* текст отзыва */
  .review__text,
  .reviews__text {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    color: #1a1a1a !important;
  }

  .review__context,
  .reviews .review__context {
    margin: 10px 0 0 !important;
  }

  .review__author {
    padding-top: 18px !important;
    gap: 11px !important;
  }

  .review__author small {
    margin-top: 2px !important;
  }

  .review::before {
    font-size: 108px !important;
    right: 16px !important;
    bottom: -28px !important;
    color: rgba(184, 132, 90, 0.05) !important;
  }

  /* имя */
  .review__name,
  .reviews__name {
    font-weight: 500 !important;
    font-size: 15px !important;
  }

  /* описание */
  .review__desc,
  .reviews__desc {
    font-size: 13px !important;
    color: rgba(0,0,0,0.5) !important;
  }

  /* аватар круг */
  .review__avatar,
  .reviews__avatar {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    font-weight: 600 !important;
    background: #b8845a !important;
    color: #fff !important;
  }

  /* верхняя линия (звезды + whatsapp) */
  .review__top,
  .reviews__top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
  }

  /* whatsapp бейдж */
  .review__badge,
  .reviews__badge {
    font-size: 11px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
  }

  /* цитата (иконка) — мягче */
  .review__quote,
  .reviews__quote {
    opacity: 0.05 !important;
  }

}
/* FIX REVIEWS FINAL — mobile */
@media (max-width: 480px) {
  .reviews {
    padding-bottom: 130px !important;
  }

  .review,
  .reviews__item {
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
  }

  .review:active,
  .reviews__item:active {
    transform: scale(0.985) !important;
  }
}
/* =========================
   FIX FAQ — PREMIUM
   ========================= */

@media (max-width: 480px) {
  .faq {
    padding-bottom: 120px !important;
  }

  .faq__item,
  .faq-item {
    padding: 0 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(26, 26, 29, 0.05) !important;
    transition: box-shadow 0.22s ease, border-color 0.22s ease !important;
  }

  .faq__item:hover {
    transform: none !important;
  }

  .faq__list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .faq__item summary {
    padding: 16px 18px !important;
    font-size: 15px !important;
    line-height: 1.38 !important;
  }

  .faq__body {
    padding: 0 18px 16px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .faq__plus {
    width: 30px !important;
    height: 30px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(168, 122, 82, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transition:
      background 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.16s ease !important;
  }

  .faq__item[open] .faq__plus {
    background: var(--c-1) !important;
    border-color: rgba(168, 122, 82, 0.22) !important;
    box-shadow: 0 4px 14px rgba(184, 132, 90, 0.2) !important;
  }

  .faq__item[open] {
    box-shadow: 0 10px 28px rgba(26, 26, 29, 0.07) !important;
  }

  .faq__phone {
    padding: 16px 18px !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(26, 26, 29, 0.05) !important;
  }
}
/* =========================
   FINAL CTA — PREMIUM
   ========================= */

@media (max-width: 480px) {

  /* форма */
  .form,
  .cta__form {
    border-radius: 22px !important;
    padding: 22px 20px !important;
    background: #fff !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18) !important;
  }

  /* внутренний блок преимуществ */
  .form__benefits {
    border-radius: 14px !important;
    background: rgba(184,132,90,0.08) !important;
  }

  /* поля */
  .form input,
  .form textarea {
    border-radius: 12px !important;
    padding: 14px 14px !important;
    font-size: 15px !important;
  }

  /* кнопка */
  .form button {
    height: 52px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: linear-gradient(135deg, #1a1a1a, #000) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important;
    transition: all 0.2s ease !important;
  }

  .form button:active {
    transform: scale(0.98);
  }

  /* телефон сверху */
  .cta__phone {
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
  }

  /* текст под телефоном */
  .cta__desc {
    font-size: 13px !important;
    color: rgba(255,255,255,0.6) !important;
  }

}
/* =========================
   CTA FINAL PREMIUM FIX
   ========================= */

@media (max-width: 480px) {

  /* текст под заголовком */
  .cta__desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 18px !important;
  }

  /* список преимуществ */
  .cta__list li {
    font-size: 14px !important;
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 10px !important;
  }

  .cta__list li::before {
    transform: scale(0.9);
    opacity: 0.8;
  }

  /* линия */
  .cta hr {
    opacity: 0.2 !important;
    margin: 20px 0 !important;
  }

  /* телефон */
  .cta__phone {
    font-size: 24px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    margin: 6px 0 4px !important;
  }

  .cta__city {
    font-size: 13px !important;
    color: rgba(255,255,255,0.55) !important;
  }

  /* =========================
     ФОРМА — ключевой блок
     ========================= */

  .form,
  .cta__form {
    margin-top: 22px !important;
    border-radius: 22px !important;
    padding: 22px 18px !important;

    background: #ffffff !important;

    box-shadow:
      0 25px 60px rgba(0,0,0,0.25),
      0 8px 20px rgba(0,0,0,0.12) !important;

    transform: translateY(8px);
  }

  /* внутренний инфо блок */
  .form__benefits {
    background: rgba(184,132,90,0.08) !important;
    border-radius: 14px !important;
  }

  /* поля */
  .form input,
  .form textarea {
    border-radius: 12px !important;
    padding: 14px !important;
    font-size: 15px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
  }

  /* кнопка */
  .form button {
    height: 54px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 500 !important;

    background: linear-gradient(135deg, #1a1a1a, #000) !important;

    box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;

    transition: all 0.2s ease !important;
  }

  .form button:active {
    transform: scale(0.97);
  }

}
/* =========================
   FINAL CTA — LAST POLISH
   ========================= */

@media (max-width: 480px) {
  .cta__desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.7) !important;
  }

  .cta__list li {
    font-size: 14px !important;
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 10px !important;
  }

  .cta__phone {
    font-size: 26px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
  }

  .cta__city {
    font-size: 13px !important;
    color: rgba(255,255,255,0.55) !important;
  }

  .cta__form,
  .form {
    margin-top: 28px !important;
    border-radius: 22px !important;
    padding: 22px 18px !important;
    background: #ffffff !important;

    box-shadow:
      0 30px 70px rgba(0,0,0,0.35),
      0 10px 25px rgba(0,0,0,0.2) !important;

    transform: translateY(12px);
  }

  .form__benefits {
    border-radius: 14px !important;
    background: rgba(184,132,90,0.08) !important;
  }

  .form input,
  .form textarea,
  .cta__form input,
  .cta__form textarea {
    border-radius: 12px !important;
    padding: 14px !important;
    font-size: 15px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
  }

  .form button,
  .cta__form button {
    height: 54px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 500 !important;

    background: linear-gradient(135deg, #1a1a1a, #000) !important;
    color: #fff !important;

    box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
    transition: transform 0.2s ease !important;
  }

  .form button:active,
  .cta__form button:active {
    transform: scale(0.97);
  }
}
.form button,
.cta__form button {
  background: linear-gradient(135deg, #1a1a1a, #000);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.35),
    0 4px 10px rgba(0,0,0,0.2);
}
@media (max-width: 480px) {

  .cta__form,
  .form {
    padding-bottom: 28px !important;
  }

  .form button,
  .cta__form button {
    margin-top: 16px !important;
    margin-bottom: 8px !important;
  }

}
@media (max-width: 480px) {

  .cta__form,
  .form {
    padding-bottom: 28px !important;
  }

  .form button,
  .cta__form button {
    margin-top: 16px !important;
    margin-bottom: 8px !important;
  }

}
/* =========================
   FOOTER — PREMIUM FIX
   ========================= */

@media (max-width: 480px) {

  footer {
    padding: 32px 20px 40px !important;
  }

  /* логотип блок */
  .footer__logo {
    margin-bottom: 16px !important;
  }

  .footer__desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(23, 23, 25, 0.58) !important;
    margin-bottom: 20px !important;
  }

  /* карточка основателя */
  .footer__founder {
    padding: 14px 16px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid var(--line) !important;
    margin-bottom: 26px !important;
  }

  /* заголовки */
  .footer h4,
  .footer__title {
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--ink) !important;
    margin-bottom: 12px !important;
  }

  /* телефон */
  .footer__phone {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
  }

  /* email */
  .footer__mail {
    font-size: 14px !important;
    color: rgba(23, 23, 25, 0.58) !important;
    margin-bottom: 16px !important;
  }

  /* блоки */
  .footer__block {
    margin-bottom: 28px !important;
  }

  /* ссылки */
  .footer a {
    display: block;
    font-size: 15px !important;
    color: rgba(23, 23, 25, 0.58) !important;
    margin-bottom: 10px !important;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
  }

  .footer a:active {
    opacity: 0.85;
  }

  /* соцсети */
  .footer__social a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line-soft);
    margin-bottom: 8px;
  }

}
/* =========================
   FOOTER FINAL PRO
   ========================= */

@media (max-width: 480px) {

  footer {
    padding: 28px 20px 32px !important;
  }

  /* описание */
  .footer__desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }

  /* карточка основателя */
  .footer__founder {
    padding: 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid var(--line) !important;
    margin-bottom: 22px !important;
  }

  /* блоки */
  .footer__block {
    margin-bottom: 22px !important;
  }

  /* заголовки */
  .footer h4,
  .footer__title {
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    color: var(--ink) !important;
    margin-bottom: 10px !important;
  }

  /* телефон — усиливаем */
  .footer__phone {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin: 6px 0 10px !important;
  }

  /* email */
  .footer__mail {
    font-size: 14px !important;
    color: rgba(23, 23, 25, 0.58) !important;
    opacity: 1 !important;
    margin-bottom: 14px !important;
  }

  /* ссылки */
  .footer a {
    display: block;
    font-size: 15px !important;
    margin-bottom: 8px !important;
    color: rgba(23, 23, 25, 0.58) !important;
    opacity: 1 !important;
  }

  /* соцсети — превращаем в кнопки */
  .footer__social a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 14px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line-soft);
    margin-bottom: 8px;

    font-size: 14px;
    color: rgba(23, 23, 25, 0.58) !important;
  }

  .footer__social a::after {
    content: "→";
    opacity: 0.38;
    color: var(--ink-3);
  }

}
/* =========================
   FOOTER FORCE FIX
   ========================= */

@media (max-width: 480px) {

  footer {
    padding: 28px 20px 36px !important;
  }

  /* телефон */
  footer a[href^="tel"] {
    font-size: 24px !important;
    font-weight: 600 !important;
    display: block;
    margin: 8px 0 12px !important;
    color: var(--ink) !important;
    opacity: 1 !important;
  }

  /* email */
  footer a[href^="mailto"] {
    display: block;
    margin-bottom: 14px !important;
    color: rgba(23, 23, 25, 0.58) !important;
    opacity: 1 !important;
  }

  /* блоки */
  footer h4,
  footer .footer__title {
    margin-top: 22px !important;
    margin-bottom: 10px !important;
    font-size: 12px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink) !important;
    opacity: 1 !important;
  }

  /* все ссылки */
  footer a {
    display: block;
    margin-bottom: 8px !important;
    font-size: 15px;
  }

  /* соцсети превращаем в кнопки */
  footer a[href*="telegram"],
  footer a[href*="whatsapp"],
  footer a[href*="youtube"] {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line-soft);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: rgba(23, 23, 25, 0.58) !important;
  }

  footer a[href*="telegram"]::after,
  footer a[href*="whatsapp"]::after,
  footer a[href*="youtube"]::after {
    content: "→";
    opacity: 0.38;
    color: var(--ink-3);
  }

}

/* =========================
   FOOTER MOBILE — FINAL REAL
   ========================= */

@media (max-width: 480px) {
  .footer {
    padding: 32px 22px 96px !important;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%) !important;
  }

  .footer__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding-bottom: 24px !important;
  }

  .footer__col {
    margin: 0 !important;
  }

  .footer__text {
    margin-top: 16px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: rgba(23, 23, 25, 0.58) !important;
  }

  .footer__founder {
    margin-top: 16px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.72) !important;
    border: 1px solid var(--line) !important;
  }

  .footer__founder-label {
    margin-bottom: 8px !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--ink-3) !important;
  }

  .footer__founder-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
  }

  .footer__title {
    margin-bottom: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
  }

  .footer__link {
    display: block !important;
    margin-bottom: 11px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    color: rgba(23, 23, 25, 0.58) !important;
    text-decoration: none !important;
    opacity: 1 !important;
  }

  .footer__link--main {
    margin-bottom: 18px !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    letter-spacing: -0.02em !important;
  }

  .footer__addr {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(23, 23, 25, 0.58) !important;
  }

  .footer__col:last-child .footer__link {
    padding: 12px 14px !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid var(--line-soft) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
    color: rgba(23, 23, 25, 0.58) !important;
  }

  .footer__col:last-child .footer__link::after {
    content: "→";
    opacity: 0.38;
    color: var(--ink-3);
  }

  .footer__social svg {
    opacity: 0.72 !important;
    color: var(--c-3) !important;
  }

  .footer__bottom {
    margin-top: 26px !important;
    padding-top: 18px !important;
    border-top: 1px solid var(--line) !important;
    display: grid !important;
    gap: 10px !important;
    color: var(--ink-3) !important;
    font-size: 13px !important;
  }

  .footer__legal {
    color: var(--ink-3) !important;
  }

  .footer__bottom .footer__link,
  .footer__link--policy {
    margin: 0 !important;
    color: rgba(23, 23, 25, 0.58) !important;
  }
}
/* FOOTER PHONE FINAL */
@media (max-width: 480px) {
  .footer__link--main,
  footer a[href^="tel"] {
    color: var(--ink) !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  .footer__grid {
    gap: 24px !important;
  }
}
@media (max-width: 480px) {
  .footer__col:nth-child(3) .footer__link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line-soft);
    margin-bottom: 8px;
    color: rgba(23, 23, 25, 0.58) !important;
  }
}

/* FINAL POLISH — SAFE */
@media (max-width: 480px) {
  .btn,
  .sticky-cta,
  .form button,
  .cta__form button,
  .faq__item,
  .review,
  .services__item,
  .footer__link {
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s ease, opacity 0.18s ease !important;
  }

  .btn:active,
  .sticky-cta:active,
  .form button:active,
  .cta__form button:active,
  .faq__item:active,
  .review:active,
  .services__item:active,
  .footer__link:active {
    transform: scale(0.985) !important;
  }
}
/* ============================================
   PERFORMANCE FIX (DESKTOP)
   убираем лаги при скролле + видео
   ============================================ */

@media (min-width: 769px) {

  /* 1. УБИРАЕМ САМУЮ ТЯЖЕЛУЮ ВЕЩЬ — blur в reveal */
  .reveal {
    filter: none !important;
    will-change: opacity, transform;
    transition:
      opacity 0.6s cubic-bezier(.2,.8,.2,1),
      transform 0.6s cubic-bezier(.2,.8,.2,1);
  }

  /* 2. ВАЖНО: не анимируем блок с видео */
  .main-case__photo.reveal,
  .main-case__photo.reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto;
  }

  /* 3. ОПТИМИЗАЦИЯ САМОГО ВИДЕО */
  .main-case__video {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
  }

  /* 4. УПРОЩАЕМ OVERLAY (шум + смешивание сильно грузят GPU) */
  .main-case__photo::before {
    opacity: 0.04 !important;
    mix-blend-mode: normal !important;
  }

  /* 5. УБИРАЕМ backdrop-filter с плашки над видео */
  .main-case__photo-tag {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0,0,0,0.6);
  }

  /* 6. КАРТОЧКА РЯДОМ С ВИДЕО — без blur */
  .main-case__panel.reveal {
    filter: none !important;
    will-change: transform, opacity;
  }

  /* 7. HEADER — уменьшаем нагрузку от blur */
  .header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

}
/* ============================================
   HARD PERFORMANCE FIX — DESKTOP SCROLL / VIDEO
   вставить самым последним блоком в style.css
   ============================================ */

@media (min-width: 769px) {

  /* 1. Полностью убираем blur-анимации reveal на десктопе */
  .reveal,
  .reveal.is-visible,
  .case.reveal,
  .review.reveal,
  .faq__item.reveal,
  .main-case__photo.reveal {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .35s ease, transform .35s ease !important;
    will-change: auto !important;
  }

  /* process__item.reveal — transform lock only off hover (hover restored below) */
  .process__item.reveal:not(:hover),
  .process__item.reveal.is-visible:not(:hover) {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .35s ease, transform .35s ease !important;
    will-change: auto !important;
  }

  /* estimate__sample.reveal — transform lock only off hover (hover restored below) */
  .estimate__sample.reveal:not(:hover),
  .estimate__sample.reveal.is-visible:not(:hover) {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      filter 0.3s ease,
      opacity 0.35s ease !important;
    will-change: auto !important;
  }

  /* form.reveal — transform lock only off hover (hover restored below) */
  .form.reveal:not(:hover),
  #leadForm.form.reveal:not(:hover),
  .cta #leadForm.form.reveal.is-visible:not(:hover) {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      filter 0.32s ease,
      opacity 0.35s ease !important;
    will-change: auto !important;
  }

  /* 2. Главный видео-блок вообще не должен участвовать в анимациях */
  .main-case__photo,
  .main-case__photo:hover,
  .main-case__photo--video,
  .main-case__photo--video:hover {
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .main-case__photo--video .main-case__video,
  .main-case__photo--video:hover .main-case__video,
  .main-case__video {
    transform: none !important;
    transition: none !important;
    filter: none !important;
    will-change: auto !important;
    backface-visibility: hidden;
  }

  /* 3. Убираем тяжёлый шум/смешивание поверх видео */
  .main-case__photo::before,
  .main-case__photo::after {
    display: none !important;
  }

  .main-case__photo-overlay {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.42) 100%) !important;
  }

  /* 4. Убираем glass blur над видео */
  .main-case__photo-tag,
  .main-case__photo-caption,
  .main-case__panel,
  .main-case__badge,
  .btn--ghost,
  .hero__founder-card,
  .hero__founder-tag,
  .form,
  .sticky-cta {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* 6. Шапка — без blur, он пересчитывается при скролле */
  .header,
  .header.is-scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(250,250,247,0.96) !important;
    transition: background .2s ease, border-color .2s ease !important;
  }

  /* 7. Отключаем фоновые blur-пятна на десктопе */
  .hero__bg-glow,
  .hero::after,
  .main-case::before {
    display: none !important;
  }

}
@media (min-width: 769px) {
  .review.reveal {
    opacity: 0 !important;
    transform: translateY(24px) !important;
    filter: none !important;
    transition:
      opacity .55s ease,
      transform .55s ease !important;
    will-change: opacity, transform !important;
  }

  .review.reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: none !important;
  }
}
/* FIX — вернуть отзывы после performance правок */
@media (min-width: 769px) {
  .reviews,
  .reviews__grid,
  .reviews__side,
  .review,
  .review.reveal,
  .review.reveal.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: none !important;
    transform: none !important;
  }

  .reviews__grid {
    display: grid !important;
  }

  .reviews__side {
    display: grid !important;
  }

  .review {
    transition:
      transform .25s ease,
      box-shadow .25s ease !important;
  }

  .review:hover {
    transform: translateY(-4px) !important;
  }
}
/* REVIEWS — DESKTOP PREMIUM FIX */
@media (min-width: 769px) {
  .reviews {
    padding: 110px 0 120px !important;
    background:
      radial-gradient(circle at 46% 58%, rgba(184,132,90,0.13), transparent 36%),
      linear-gradient(180deg, #f3eee5 0%, #ede4d6 100%) !important;
  }

  .reviews .container {
    max-width: 1180px !important;
  }

  .reviews__head {
    max-width: 820px !important;
    margin-bottom: 58px !important;
  }

  .reviews__title {
    font-size: clamp(54px, 5.2vw, 78px) !important;
    line-height: .96 !important;
    letter-spacing: -0.055em !important;
  }

  .reviews__lead {
    margin-top: 22px !important;
    font-size: 18px !important;
    color: rgba(26,26,29,.62) !important;
  }

  .reviews__grid {
    display: grid !important;
    grid-template-columns: 1.08fr .92fr !important;
    gap: 34px !important;
    max-width: 980px !important;
    margin-top: 0 !important;
  }

  .reviews__side {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 28px !important;
  }

  .review {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 292px !important;
    padding: 34px 38px !important;
    border-radius: 28px !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow:
      0 34px 90px rgba(35,28,22,.13),
      inset 0 1px 0 rgba(255,255,255,.8) !important;
  }

  .review--large {
    min-height: 612px !important;
    padding: 42px 42px !important;
  }

  .review--large .review__text {
    font-size: 34px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.045em !important;
  }

  .review:not(.review--large) .review__text {
    font-size: 20px !important;
    line-height: 1.45 !important;
    letter-spacing: -0.035em !important;
  }

  .review__author {
    margin-top: 28px !important;
  }

  .review__avatar {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
  }
}
/* REVIEWS — FINAL BALANCE FIX */
@media (min-width: 769px) {
  .reviews .container {
    max-width: 1120px !important;
  }

  .reviews__head {
    max-width: 760px !important;
    margin-bottom: 52px !important;
  }

  .reviews__grid {
    grid-template-columns: 1fr 0.86fr !important;
    gap: 28px !important;
    max-width: 940px !important;
  }

  .review {
    min-height: 250px !important;
    padding: 30px 34px !important;
    border-radius: 24px !important;
  }

  .review--large {
    min-height: 530px !important;
    padding: 38px 38px !important;
  }

  .review--large .review__text {
    max-width: 430px !important;
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .review:not(.review--large) .review__text {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .reviews__side {
    gap: 28px !important;
  }

  .review__quote {
    opacity: .045 !important;
    right: 28px !important;
    bottom: 22px !important;
  }
}
/* REVIEWS — убрать пустоту в большой карточке */
@media (min-width: 769px) {
  .review {
    justify-content: flex-start !important;
  }

  .review--large {
    min-height: 420px !important;
  }

  .review--large .review__text {
    margin-top: 34px !important;
    margin-bottom: 28px !important;
  }

  .review__author {
    margin-top: 0 !important;
  }

  .review__quote {
    display: none !important;
  }

  .reviews__side .review {
    min-height: 196px !important;
  }
}
/* REVIEWS — уплотнить большую карточку */
@media (min-width: 769px) {
  .review--large {
    min-height: 360px !important;
  }

  .review--large .review__text {
    margin-top: 26px !important;
    margin-bottom: 24px !important;
  }

  .reviews__side .review {
    min-height: 178px !important;
  }
}
/* REVIEWS — премиальный баланс большой карточки */
@media (min-width: 769px) {

  /* 1. Карточка становится более живой по вертикали */
  .review--large {
    min-height: auto !important;
    padding: 42px 42px 36px !important;
  }

  /* 2. Центрируем смысл (дорогой эффект) */
  .review--large {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* 3. Текст — главный акцент */
  .review--large .review__text {
    font-size: 32px !important;
    line-height: 1.25 !important;
    max-width: 460px !important;
    margin-bottom: 28px !important;
  }

  /* 4. Автор вниз — но без пустоты */
  .review--large .review__author {
    margin-top: 0 !important;
  }

  /* 5. Добавляем "дорогую деталь" — цитата */
  .review--large::after {
    content: "“";
    position: absolute;
    right: 34px;
    bottom: 20px;
    font-size: 120px;
    line-height: 1;
    color: rgba(180,130,80,0.08);
    pointer-events: none;
  }

  /* 6. Убираем лишнюю линию (она дробит пространство) */
  .review--large hr,
  .review--large .review__divider {
    display: none !important;
  }

}
/* REVIEWS — убрать нижнюю пустоту в большой карточке */
@media (min-width: 769px) {
  .reviews__grid {
    align-items: stretch !important;
  }

  .review--large {
    min-height: 0 !important;
    height: auto !important;
    padding: 36px 42px !important;
    justify-content: flex-start !important;
  }

  .review--large .review__text {
    margin-top: 34px !important;
    margin-bottom: 26px !important;
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .review--large .review__author {
    margin-top: 0 !important;
  }

  .review--large::after,
  .review__quote {
    display: none !important;
  }

  .reviews__side {
    gap: 24px !important;
  }

  .reviews__side .review {
    min-height: 190px !important;
    height: auto !important;
    padding: 30px 34px !important;
  }
}
/* REVIEWS — гарантированно убрать пустоту */
@media (min-width: 769px) {

  /* ключевая вещь — не растягивать карточки по высоте */
  .reviews__grid {
    align-items: start !important;
  }

  /* убираем ВСЕ возможные ограничения */
  .review,
  .review--large {
    height: auto !important;
    min-height: unset !important;
  }

  /* убираем растягивание контента */
  .review {
    display: block !important;
  }

  /* делаем отступы нормальными */
  .review--large {
    padding: 36px 40px !important;
  }

}

/* HERO улучшение */

.hero {
  padding: 120px 0 90px;
}

.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  align-items: center;
  gap: 90px;
}

.hero__content {
  max-width: 620px;
}

.hero__title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: #171719;
}

.hero__title em {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  line-height: 0.92;
  font-style: italic;
  font-weight: 400;
  color: #B1845B;
  letter-spacing: -0.055em;
}

.hero__text {
  max-width: 560px;
  margin: 0 0 38px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(25, 25, 25, 0.62);
}

.hero__text small,
.hero__note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(25, 25, 25, 0.45);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 46px;
}

.hero__btn,
.hero__actions .btn {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 30px;
  border-top: 1px solid rgba(25, 25, 25, 0.12);
}

.hero__stat {
  padding-right: 28px;
}

.hero__stat:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid rgba(25, 25, 25, 0.1);
}

.hero__stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #191919;
}

.hero__stat span {
  display: block;
  max-width: 130px;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(25, 25, 25, 0.5);
}

/* Правая карточка */

.hero__media {
  position: relative;
  transform: translateY(10px);
}

.hero__founder-card,
.founder-card {
  transform: scale(1.04);
  transform-origin: center;
}

/* Нижняя чёрная полоса */

.hero__features {
  min-height: 72px;
}

.hero__features-item {
  gap: 12px;
  font-size: 14px;
}

/* Планшет */

@media (max-width: 1180px) {
  .hero {
    padding: 100px 0 80px;
  }

  .hero__container {
    grid-template-columns: 1fr 420px;
    gap: 60px;
  }

  .hero__title {
    font-size: clamp(42px, 5vw, 64px);
  }
}

/* Мобильная версия */

@media (max-width: 900px) {
  .hero {
    padding: 92px 0 64px;
  }

  .hero__container {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    margin-bottom: 22px;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .hero__text {
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero__btn,
  .hero__actions .btn {
    width: 100%;
    min-height: 58px;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 26px;
  }

  .hero__stat,
  .hero__stat:not(:first-child) {
    padding: 0;
    border-left: 0;
  }

  .hero__stat strong {
    font-size: 28px;
  }

  .hero__media {
    width: 100%;
    transform: none;
  }

  .hero__founder-card,
  .founder-card {
    transform: none;
  }
}

/* Маленькие телефоны */

@media (max-width: 480px) {
  .hero {
    padding: 82px 0 52px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__text {
    font-size: 15.5px;
  }
}

/* ==============================
   FIX: плотнее стык Смета → Доверие
============================== */

.estimate.section {
  padding-top: 72px;
  padding-bottom: 56px;
}

.trust {
  padding-top: 64px !important;
  padding-bottom: 96px;
}

.trust__head {
  margin-bottom: 56px;
}

/* чтобы блок сметы смотрелся собраннее */
.estimate__layout {
  align-items: center;
}

.estimate__intro {
  padding-top: 0;
}

.estimate__sample {
  margin-top: 0;
}

/* мобильная версия */
@media (max-width: 768px) {
  .estimate.section {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .trust {
    padding-top: 52px !important;
    padding-bottom: 72px;
  }

  .trust__head {
    margin-bottom: 42px;
  }
}

/* ==============================
   FINAL OVERRIDES — Reviews premium motion
============================== */

.reviews {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  overflow: hidden;
}

.reviews__head {
  margin-bottom: 64px;
}

.reviews__grid {
  align-items: stretch;
}

.review {
  position: relative;
  transform: translateY(0);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.review:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 110px rgba(35, 28, 22, 0.16);
  border-color: rgba(179, 131, 90, 0.22);
}

/* лёгкое оживление текста */
.review__text {
  transition: color .3s ease, transform .3s ease;
}

.review:hover .review__text {
  transform: translateY(-2px);
}

/* бейдж WhatsApp живее */
.review__badge {
  transition: transform .3s ease, background .3s ease;
}

.review:hover .review__badge {
  transform: translateY(-2px);
  background: rgba(21,128,61,0.16);
}

/* звёзды чуть премиальнее */
.review__stars {
  color: #b3835a;
  opacity: .9;
}

/* фикс обрезания заголовка */
.reviews__title {
  overflow: visible;
  padding-top: 4px;
}

/* мобильная */
@media (max-width: 768px) {
  .reviews {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .reviews__head {
    margin-bottom: 42px;
  }

  .review:hover {
    transform: none;
  }
}
/* ==============================
   FINAL CTA — conversion upgrade
============================== */

.cta {
  position: relative;
  padding-top: var(--section-y-main);
  padding-bottom: var(--section-y-main);
  overflow: hidden;
  background: var(--bg) !important;
  color: var(--ink) !important;
}

.cta__layout {
  align-items: center;
}

.cta__title {
  max-width: 680px;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cta__text {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}

.cta__bullets {
  gap: 18px;
}

.cta__bullets li {
  font-size: 16px;
  color: var(--ink-2);
}

.form {
  transform: translateY(-8px);
  padding: 42px;
  border-radius: 30px;
  box-shadow:
    0 40px 110px rgba(0,0,0,0.36),
    0 12px 32px rgba(0,0,0,0.18);
}

.form__title {
  font-size: 30px;
}

.form__subtitle {
  font-size: 14px;
  line-height: 1.45;
}

.form__trust {
  margin-top: 6px;
  margin-bottom: 4px;
  border-radius: 14px;
}

.form__field input,
.form__field textarea {
  min-height: 56px;
  border-radius: 12px;
  font-size: 15px;
}

.form__field textarea {
  min-height: 96px;
}

.form__submit {
  min-height: 58px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.2);
}

.form__policy {
  max-width: 420px;
  margin: 0 auto;
  color: rgba(26,26,29,0.45);
}

/* Мягкий свет за формой */
.cta__layout::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200,153,113,0.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 768px) {
  .cta {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .cta__title {
    font-size: clamp(38px, 10vw, 48px);
  }

  .cta__text {
    font-size: 16px;
  }

  .form {
    transform: none;
    padding: 26px 22px;
    border-radius: 24px;
  }
}
/* ==============================
   PREMIUM BUTTON
============================== */

.form__submit {
  position: relative;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;

  color: #fff;
  background: linear-gradient(180deg, #2b2b2e 0%, #17171a 100%);
  
  box-shadow:
    0 12px 28px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* свечение снизу */
.form__submit::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 20px;
  background: radial-gradient(
    ellipse,
    rgba(0,0,0,0.35),
    transparent 70%
  );
  filter: blur(6px);
  opacity: 0.6;
  z-index: -1;
}

/* hover эффект */
.form__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* нажатие */
.form__submit:active {
  transform: translateY(0);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.3),
    inset 0 2px 6px rgba(0,0,0,0.4);
}

/* стрелка чуть живая */
.form__submit span,
.form__submit svg {
  margin-left: 8px;
  transition: transform .25s ease;
}

.form__submit:hover span,
.form__submit:hover svg {
  transform: translateX(4px);
}
.form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    transparent 40%
  );
  pointer-events: none;
}
/* ==============================
   STUDIO CTA BUTTON
============================== */

.form__submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 62px;
  padding: 0 34px;
  border-radius: 999px;

  background:
    linear-gradient(180deg, #2b2b2e 0%, #121214 100%);
  color: #fff;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;

  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);

  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s cubic-bezier(.2,.8,.2,1),
    filter .28s ease;
}

.form__submit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 35%,
      rgba(255,255,255,0.16) 48%,
      rgba(255,255,255,0.06) 56%,
      transparent 70%,
      transparent 100%
    );
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}

.form__submit::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -12px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,0.38);
  filter: blur(12px);
  z-index: -2;
}

.form__submit:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55);
}

.form__submit:hover::before {
  transform: translateX(120%);
}

.form__submit:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    inset 0 2px 8px rgba(0,0,0,0.45);
}

.form__submit-text,
.form__submit-arrow {
  position: relative;
  z-index: 2;
}

.form__submit-arrow {
  display: inline-flex;
  margin-left: 8px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}

.form__submit:hover .form__submit-arrow {
  transform: translateX(5px);
}

/* loading */
.form__submit.is-loading {
  pointer-events: none;
  color: rgba(255,255,255,0.68);
}

.form__submit.is-loading .form__submit-arrow {
  opacity: 0;
}

.form__submit.is-loading::before {
  transform: translateX(120%);
  animation: studioButtonShine 1.2s infinite;
}

.form__submit.is-loading::after {
  opacity: .45;
}

/* success */
.form__submit.is-success {
  background: linear-gradient(180deg, #2f6b45 0%, #18462c 100%);
}

.form__submit.is-success .form__submit-arrow {
  transform: none;
}

@keyframes studioButtonShine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 768px) {
  .form__submit {
    min-height: 58px;
    font-size: 14.5px;
  }
}
/* ==============================
   UI TOAST (вместо alert)
============================== */

.ui-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;

  z-index: 9999;
  transition: all .35s ease;
}

.ui-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.ui-toast__content {
  padding: 14px 22px;
  border-radius: 999px;

  background: linear-gradient(180deg, #2b2b2e, #17171a);
  color: #fff;

  font-size: 14px;
  font-weight: 500;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* мобилка */
@media (max-width: 768px) {
  .ui-toast {
    bottom: 20px;
    left: 16px;
    right: 16px;
    transform: translateY(20px);
  }

  .ui-toast.is-visible {
    transform: translateY(0);
  }

  .ui-toast__content {
    border-radius: 14px;
    text-align: center;
  }
}
/* ==============================
   Form agree error
============================== */

.form-agree.is-error {
  animation: agreeShake .4s ease;
}

.form-agree.is-error label,
.form-agree.is-error {
  color: #dc2626;
}

.form-agree.is-error input {
  outline: 2px solid rgba(220, 38, 38, 0.35);
  outline-offset: 3px;
}

@keyframes agreeShake {
  0%, 100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}
/* ==============================
   MOBILE CTA — one button
============================== */

.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 110px !important;
  }

  .mobile-cta {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 9999;

    display: block;
  }

  .mobile-cta__btn {
    width: 100%;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: linear-gradient(180deg, #1b1b1b 0%, #0f0f0f 100%);
    color: #fff;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 18px 42px rgba(0,0,0,.30);
  }
}
/* ==============================
   MOBILE HERO — продающий первый экран
============================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 24px;
  }

  .hero__container {
    padding-top: 28px;
    padding-bottom: 44px;
    gap: 30px;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
  }

  .hero__title .accent {
    display: block;
    margin-top: 6px;
    font-size: 0.92em;
  }

  .hero__sub {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(26,26,29,0.68);
  }

  .hero__note {
    margin: 0 0 26px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(26,26,29,0.5);
    text-align: left;
  }

  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero__cta .btn {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    font-size: 14.5px;
  }

  .hero__cta .btn--ghost {
    background: rgba(255,255,255,0.72);
    border-color: rgba(26,26,29,0.1);
  }
}
/* ==============================
   MOBILE TRUST NUMBERS
============================== */

@media (max-width: 768px) {
  .hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;

    padding: 18px 0 0;
    border-top: 1px solid rgba(26,26,29,0.12);
  }

  .hero__fact {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;

    padding: 16px 0 !important;
    border-top: 1px solid rgba(26,26,29,0.08);
    border-right: 0 !important;
  }

  .hero__fact:first-child {
    border-top: 0;
  }

  .hero__fact dt {
    min-width: 86px;
    font-size: 28px;
    line-height: 1;
    margin: 0;
  }

  .hero__fact dd {
    margin: 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(26,26,29,0.52);
  }
}
/* ==============================
   MOBILE FOUNDER CARD
============================== */

@media (max-width: 768px) {
  .hero__founder {
    max-width: 100%;
    margin: 0 auto;
    transform: none !important;
    filter:
      drop-shadow(0 18px 42px rgba(26,26,29,0.12))
      drop-shadow(0 4px 12px rgba(26,26,29,0.06));
  }

  .hero__founder-photo {
    min-height: 360px;
    border-radius: 24px 24px 0 0;
    transform: none !important;
  }

  .hero__founder-img {
    object-position: center 20%;
  }

  .hero__founder-card {
    margin: 0 !important;
    padding: 22px 22px 24px;
    border-radius: 0 0 24px 24px;
    background: rgba(255,255,255,0.96);
  }

  .hero__founder-name {
    font-size: 19px;
    line-height: 1.2;
  }

  .hero__founder-role {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .hero__founder-quote {
    font-size: 13.5px;
    line-height: 1.55;
  }
}
/* ==============================
   MOBILE HERO STRIP
============================== */

@media (max-width: 768px) {
  .hero__strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero__strip-item {
    width: auto !important;
    min-height: 42px;
    font-size: 11.5px;
    line-height: 1.25;
    color: rgba(255,255,255,0.82);
  }

  .hero__strip-item svg {
    width: 15px;
    height: 15px;
  }
}
/* ============================================
   🔥 MOBILE CASES — PREMIUM VERSION
============================================ */

@media (max-width: 768px) {

  /* Карточка кейса — даём воздух */
  .case {
    margin-bottom: 90px;
  }

  /* Контейнер фото */
  .case {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Ослабляем затемнение */
  .case::before {
    content: '';
    position: absolute;
    inset: 0;

    background: linear-gradient(
      to top,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.25) 45%,
      rgba(0,0,0,0.05) 100%
    );

    z-index: 1;
  }

  /* Опускаем карточку вниз */
  .case__content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;

    z-index: 2;

    padding: 16px 16px 18px;

    border-radius: 18px;

    background: rgba(20,20,22,0.65);
    backdrop-filter: blur(14px);

    box-shadow:
      0 12px 30px rgba(0,0,0,0.25),
      inset 0 1px 0 rgba(255,255,255,0.08);

    transform: none !important;
  }

  /* Заголовок */
  .case__title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #fff;
  }

  /* Метки (тип объекта) */
  .case__badge {
    display: inline-block;
    margin-bottom: 8px;

    padding: 6px 12px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;

    background: rgba(255,255,255,0.1);
    color: #fff;

    backdrop-filter: blur(6px);
  }

  /* Инфо блок (срок / бюджет) */
  .case__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-top: 10px;
  }

  .case__meta-item {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
  }

  .case__meta-item strong {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    color: #fff;
  }

  /* Фото становится “глубже” */
  .case img {
    object-fit: cover;
    transform: scale(1.02);
  }

  /* Убираем лишние эффекты на мобиле */
  .case:hover {
    transform: none !important;
  }

}
/* ============================================
   🔥 MOBILE CASES — FIXED VERSION
============================================ */

@media (max-width: 768px) {

  /* даём отступ под нижнюю кнопку */
  .case {
    margin-bottom: 110px;
  }

  /* ОБЯЗАТЕЛЬНО — контейнер */
  .case {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  /* правильный overlay */
  .case::after {
    content: '';
    position: absolute;
    inset: 0;

    background: linear-gradient(
      to top,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.2) 50%,
      rgba(0,0,0,0.05) 100%
    );

    z-index: 1;
  }

  /* 🔥 ГЛАВНОЕ — опускаем карточку вниз */

}

/* ==============================
   CASE FULLSCREEN LIGHTBOX
============================== */

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.9);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.3s;
}

.case-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-lightbox__img {
  max-width: 95%;
  max-height: 85vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.case-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: #fff;
  color: #000;

  font-size: 24px;

  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ============================================
   FINAL FIX — Mobile cases + Safari + lightbox
============================================ */

@media (max-width: 768px) {
  .cases {
    padding-top: 72px !important;
    padding-bottom: 120px !important;
    overflow: visible !important;
  }

  .cases__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .case,
  .case--large {
    position: relative !important;
    min-height: 360px !important;
    height: auto !important;
    margin-bottom: 0 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #161616 !important;
  }

  .case > img,
  .case > video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    transform: none !important;
    filter: saturate(1) contrast(1) !important;
  }

  .case::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.02) 0%,
      rgba(0,0,0,0.08) 42%,
      rgba(0,0,0,0.62) 100%
    ) !important;
    pointer-events: none !important;
  }

  .case__content {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 3 !important;

    padding: 18px !important;
    border-radius: 20px !important;

    background: rgba(18,18,20,0.62) !important;
    -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;

    box-shadow:
      0 16px 42px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.08) !important;

    transform: none !important;
  }

  .case__content h3,
  .case--large .case__content h3 {
    font-size: 25px !important;
    line-height: 1.08 !important;
    color: #fff !important;
  }

  .case__label {
    margin-bottom: 14px !important;
    color: rgba(255,255,255,0.9) !important;
  }

  .case__meta {
    gap: 28px !important;
    margin-top: 20px !important;
  }

  .case__meta strong {
    font-size: 20px !important;
  }

  .main-case {
    margin-bottom: 0 !important;
    overflow: visible !important;
  }

  .main-case__photo > div {
    position: static !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .main-case__photo .main-case__photo-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.02) 0%,
      rgba(0,0,0,0.10) 48%,
      rgba(0,0,0,0.58) 100%
    ) !important;
    pointer-events: none !important;
  }

  .main-case__photo .main-case__photo-caption {
    position: absolute !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    z-index: 4 !important;
    display: flex !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .mobile-cta {
    z-index: 9990 !important;
  }
}

.case-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(8,8,10,0.92) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .28s ease, visibility .28s ease !important;
}

.case-lightbox.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.case-lightbox__img {
  max-width: 96vw !important;
  max-height: 82vh !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55) !important;
}

.case-lightbox__close {
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 100000 !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.94) !important;
  color: #111 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 30px !important;
  line-height: 1 !important;
}

/* ============================================
   FINAL MOBILE POLISH — Safari / Main case / Trust
============================================ */

@media (max-width: 768px) {

  /* главный кейс — убираем грязное затемнение */
  .main-case__photo {
    min-height: 360px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    background: #171719 !important;
  }

  .main-case__video {
    filter: saturate(1.05) contrast(1.03) brightness(0.92) !important;
  }

  .main-case__photo::before {
    opacity: 0.04 !important;
    mix-blend-mode: normal !important;
  }

  .main-case__photo::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.02) 0%,
      rgba(0,0,0,0.08) 45%,
      rgba(0,0,0,0.42) 100%
    ) !important;
  }

  .main-case__photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.12) 55%,
      rgba(0,0,0,0.48) 100%
    ) !important;
  }

  .main-case__photo-caption {
    bottom: 18px !important;
  }

  .main-case__panel {
    background: rgba(255,255,255,0.94) !important;
    color: #171719 !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.12) !important;
  }

  .main-case__scope-list li {
    color: rgba(26,26,29,0.72) !important;
  }

  /* чтобы нижняя кнопка не перекрывала последние блоки */
  .trust,
  .reviews,
  .faq,
  .cta,
  .main-case {
    scroll-margin-top: 110px;
  }

  .trust {
    padding-bottom: 120px !important;
  }

  .trust__points {
    padding-bottom: 28px !important;
  }

  .trust__point:last-child {
    margin-bottom: 42px !important;
  }
}
/* FINAL MOBILE CASE FIX */

@media (max-width: 768px) {

  .case__content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;

    padding: 16px;
    border-radius: 18px;

    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  .main-case__photo-overlay {
    display: none !important;
  }

}
/* EMERGENCY FIX — hide lightbox on page */

#caseLightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;

  display: none !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 16px !important;
  background: rgba(8,8,10,0.92) !important;
}

#caseLightbox.is-open {
  display: flex !important;
}

#caseLightbox .case-lightbox__img {
  max-width: 96vw !important;
  max-height: 82vh !important;
  object-fit: contain !important;
  border-radius: 20px !important;
}

#caseLightbox .case-lightbox__close {
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 100000 !important;

  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;

  background: #fff !important;
  color: #111 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 30px !important;
  line-height: 1 !important;
}
/* EMERGENCY FIX — main case dark square */

@media (max-width: 768px) {
  .main-case__photo-overlay {
    display: none !important;
  }

  .main-case__photo::before,
  .main-case__photo::after {
    display: none !important;
  }

  .main-case__video {
    filter: none !important;
  }
}
#caseLightbox:not(.is-open) .case-lightbox__img {
  display: none !important;
}
@media (max-width: 768px) {

  .trust__point {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .trust__point-title {
    font-size: 18px;
    font-weight: 600;
  }

  .trust__point-text {
    font-size: 14px;
    opacity: 0.7;
  }

}
/* ===== MOBILE FIXED CTA PREMIUM ===== */
@media (max-width: 768px) {

  .sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;

    display: flex;
    gap: 10px;

    padding: 10px;
    border-radius: 20px;

    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    z-index: 999;
  }

  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
  }

  /* главная кнопка */
  .sticky-cta .cta-primary {
    flex: 1;
    height: 48px;

    background: #111;
    color: #fff;

    font-weight: 500;
  }

  /* кнопка звонка */
  .sticky-cta .cta-call {
    width: 48px;
    height: 48px;

    background: #fff;
    color: #111;

    font-size: 18px;
  }

  /* убираем старые большие кнопки */
  .sticky-cta .cta-secondary {
    display: none;
  }

}
/* ===== MOBILE CTA PREMIUM ===== */
@media (max-width: 768px) {

  .mobile-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;

    display: flex;
    gap: 10px;

    padding: 10px;
    border-radius: 20px;

    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    z-index: 999;
  }

  .mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    text-decoration: none;
  }

  .mobile-cta__btn--main {
    flex: 1;
    height: 48px;

    background: #111;
    color: #fff;

    font-size: 14px;
    font-weight: 500;
  }

  .mobile-cta__btn--phone {
    width: 48px;
    height: 48px;

    background: #fff;
    color: #111;

    font-size: 18px;
  }

}
body {
  padding-bottom: 80px;
}
/* ===== FINAL MOBILE CTA FIX ===== */
@media (max-width: 768px) {
  body {
    padding-bottom: 96px;
  }

  .sticky-cta {
    display: none !important;
  }

  .mobile-cta {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
    z-index: 9999 !important;

    display: grid !important;
    grid-template-columns: 1fr 132px !important;
    gap: 12px !important;

    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    backdrop-filter: none !important;
  }

  .mobile-cta__btn {
    height: 56px !important;
    min-height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .mobile-cta__btn--main {
    background: linear-gradient(180deg, #202020 0%, #111 100%) !important;
    color: #fff !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.28) !important;
  }

  .mobile-cta__btn--phone {
    background: rgba(255,255,255,.94) !important;
    color: #111 !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.16) !important;
    border: 1px solid rgba(0,0,0,.06) !important;
  }
}
/* ===== FINAL MOBILE CTA — PREMIUM CLEAN ===== */
@media (max-width: 768px) {
  body {
    padding-bottom: 104px !important;
  }

  .sticky-cta {
    display: none !important;
  }

  .mobile-cta {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
    z-index: 9999 !important;

    display: grid !important;
    grid-template-columns: 1fr 124px !important;
    gap: 12px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .mobile-cta__btn {
    height: 56px !important;
    min-height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease !important;
  }

  .mobile-cta__btn--main {
    background: linear-gradient(180deg, #1b1b1b 0%, #0f0f0f 100%) !important;
    color: #fff !important;
    letter-spacing: .1px !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.30) !important;
  }

  .mobile-cta__btn--phone {
    background: rgba(255,255,255,.96) !important;
    color: #111 !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.16) !important;
  }

  .mobile-cta__btn:active {
    transform: scale(.97) !important;
  }
}
.hero .btn-primary {
  height: 56px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
/* ===== HIDE EXTRA HERO BUTTONS (MOBILE ONLY) ===== */
@media (max-width: 768px) {

  /* WhatsApp кнопка */
  .hero .btn-secondary,
  .hero a[href*="wa"],
  .hero a[href*="whatsapp"] {
    display: none !important;
  }

  /* вторая кнопка "Получить точный расчёт" */
  .hero .btn-outline,
  .hero .btn-light {
    display: none !important;
  }

}
/* ===== FORCE MOBILE CTA FULL WIDTH ===== */
@media (max-width: 768px) {
  .mobile-cta {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
    z-index: 99999 !important;

    display: block !important;
    width: auto !important;
    max-width: none !important;

    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .mobile-cta .mobile-cta__btn,
  .mobile-cta .mobile-cta__btn--main {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    height: 56px !important;
    min-height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    background: linear-gradient(180deg, #1b1b1b 0%, #0f0f0f 100%) !important;
    color: #fff !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;

    box-shadow: 0 18px 42px rgba(0,0,0,.30) !important;
  }
}
@media (max-width: 768px) {

  .hero__main {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .hero__title {
    margin-bottom: 18px;
  }

  .hero__sub {
    margin-bottom: 16px;
  }

  .hero__note {
    margin-bottom: 24px;
  }

}
@media (max-width: 768px) {

  .hero__title {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    font-weight: 500;
  }

  .hero__title .accent {
    display: block;
    margin-top: 6px;
    font-weight: 500;
  }

}
@media (max-width: 768px) {

  .hero__sub {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0,0,0,0.75);
  }

  .hero__note {
    font-size: 13px;
    color: rgba(0,0,0,0.5);
  }

}
@media (max-width: 768px) {

  .hero__cta .btn {
    height: 56px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  }

}
@media (max-width: 768px) {

  .case-card,
  .cases__item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  .case-card__overlay,
  .cases__overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.2),
      transparent
    );
  }

}
/* ===== CASES UPGRADE ===== */

@media (max-width: 768px) {

  .cases__overlay,
  .case-card__overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.4),
      rgba(0,0,0,0.1)
    );
    backdrop-filter: blur(8px);
    border-radius: 18px;
  }

  .cases__title,
  .case-card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
  }

  .cases__item,
  .case-card {
    margin-bottom: 18px;
  }

  body {
    padding-bottom: 120px !important;
  }
}
@media (max-width: 768px) {
  .mobile-cta {
    position: fixed !important;
    bottom: 20px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 9999 !important;
    background: transparent !important;
  }

  .mobile-cta__btn {
    height: 54px !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: .3px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.25) !important;
  }

  body {
    padding-bottom: 110px !important;
  }
}
/* ===== DISABLE MOBILE STICKY CTA ===== */
@media (max-width: 768px) {
  .mobile-cta {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}
/* ==================================================
   FINAL FORM PREMIUM — DESKTOP + MOBILE
================================================== */

/* Общая карточка формы */
.form {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%) !important;

  border: 1px solid rgba(180, 140, 100, 0.22) !important;
  border-radius: 34px !important;

  padding: 42px 42px 40px !important;

  box-shadow:
    0 40px 100px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9) !important;
}

/* лёгкое премиум-свечение */
.form::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(190,140,90,.18), transparent 65%);
  pointer-events: none;
}

/* заголовок */
.form__title {
  font-size: clamp(30px, 2.6vw, 42px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}

.form__subtitle {
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: rgba(0,0,0,.52) !important;
  max-width: 430px;
}

/* блок доверия */
.form__trust {
  margin: 28px 0 28px !important;
  padding: 20px 22px !important;

  background: linear-gradient(180deg, #f2ede4 0%, #ebe4d8 100%) !important;
  border: 1px solid rgba(180,140,100,.22) !important;
  border-radius: 18px !important;

  gap: 12px !important;
}

.form__trust li {
  font-size: 14px !important;
  font-weight: 650 !important;
  color: rgba(0,0,0,.68) !important;
}

/* поля */
.form__field {
  gap: 10px !important;
}

.form__field label {
  font-size: 11px !important;
  letter-spacing: .09em !important;
  font-weight: 800 !important;
  color: rgba(0,0,0,.58) !important;
}

.form__field input,
.form__field textarea {
  height: 62px !important;
  border-radius: 18px !important;

  background: rgba(255,255,255,.88) !important;
  border: 1px solid rgba(0,0,0,.09) !important;

  font-size: 16px !important;
  padding: 0 22px !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 8px 24px rgba(0,0,0,.035) !important;
}

.form__field input:focus,
.form__field textarea:focus {
  border-color: rgba(180,130,80,.65) !important;
  box-shadow:
    0 0 0 4px rgba(180,130,80,.12),
    0 10px 28px rgba(0,0,0,.06) !important;
}

/* чекбокс */
.form-agree {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;

  margin: 4px 0 4px !important;

  font-size: 14px !important;
  line-height: 1.45 !important;
  color: rgba(0,0,0,.68) !important;
}

.form-agree input {
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px !important;
  flex: 0 0 auto !important;
}

.form-agree a {
  color: #9b6d45 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* кнопка */
.form__submit {
  height: 64px !important;
  margin-top: 12px !important;

  border-radius: 999px !important;
  background: linear-gradient(180deg, #1b1b1b 0%, #090909 100%) !important;
  color: #fff !important;

  font-size: 16px !important;
  font-weight: 750 !important;
  letter-spacing: .01em !important;

  box-shadow:
    0 22px 52px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.form__submit:active {
  transform: scale(.98) !important;
}

/* текст под кнопкой */
.form__micro {
  margin: -4px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: rgba(0,0,0,.48) !important;
  text-align: center !important;
}

/* success */
.form__success {
  border-radius: 18px !important;
  padding: 20px !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .cta__layout {
    gap: 24px !important;
  }

  .cta__title {
    margin-bottom: 16px !important;
  }

  .cta__text {
    margin-bottom: 22px !important;
  }

  .cta__bullets {
    gap: 10px !important;
    margin: 20px 0 24px !important;
  }

  .cta__contacts {
    padding-top: 16px !important;
  }

  .cta__contacts-label {
    margin-bottom: 6px !important;
  }

  .cta__phone {
    margin-bottom: 4px !important;
  }

  .cta .form {
    margin-top: 0 !important;
    transform: none !important;
  }

  .form {
    border-radius: 28px !important;
    padding: 24px 20px 20px !important;
    gap: 14px !important;
  }

  .form__head {
    margin-bottom: 4px !important;
  }

  .form__title {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .form__subtitle {
    font-size: 14px !important;
  }

  .form__trust {
    margin: 12px 0 10px !important;
    padding: 12px 14px !important;
    gap: 6px !important;
    border-radius: 16px !important;
  }

  .form-agree {
    margin: 2px 0 !important;
  }

  .form__micro {
    margin: 0 !important;
  }

  .form__field input {
    height: 58px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
  }

  .form__submit {
    height: 60px !important;
    font-size: 15px !important;
  }

  .form-agree {
    font-size: 13.5px !important;
  }
}
/* ===== FOOTER FINAL FIX ===== */

.footer {
  padding: 72px 0 36px !important;
}

.footer .container {
  max-width: 1180px !important;
}

.footer__grid {
  grid-template-columns: 1.25fr 1fr .8fr .7fr !important;
  gap: 56px !important;
}

.footer__link--main {
  font-size: 26px !important;
  line-height: 1.15 !important;
  word-break: keep-all !important;
}

.footer__text {
  max-width: 260px !important;
}

.footer__bottom {
  margin-top: 36px !important;
}

@media (max-width: 768px) {
  .footer {
    padding: 52px 0 28px !important;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer__link--main {
    font-size: 24px !important;
  }

  .footer__bottom {
    margin-top: 28px !important;
    gap: 10px !important;
  }
}
footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* === FIX: футер на всю ширину === */
.footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* === FIX: контейнер не ломает футер === */
.footer .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === FIX: кнопки (цена + стрелка не ломаются) === */
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* === FIX: чтобы цена не переносилась криво === */
.btn span:first-child {
  white-space: nowrap;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social svg {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  color: var(--c-1);
}
.footer__social:hover {
  color: var(--c-1);
}

/* ============================================
   Светлые Process + CTA, ритм секций
   ============================================ */

.process__title,
.process__body h3,
.process__item h3 {
  color: var(--ink) !important;
}

.cta__title {
  color: var(--ink) !important;
}

.cta__title em {
  color: var(--c-3) !important;
}

.cta__phone {
  color: var(--c-3) !important;
}

.cta__phone:hover {
  color: var(--c-1) !important;
}

.cta__contacts-label,
.cta__address {
  color: var(--ink-2) !important;
}

.cta__contacts {
  border-top-color: var(--line) !important;
}

section.main-case,
section.cases,
section.services,
section.process,
section.estimate,
section.trust,
section.reviews,
section.faq,
section.cta {
  padding-top: var(--section-y-main) !important;
  padding-bottom: var(--section-y-main) !important;
}

@media (max-width: 768px) {
  section.main-case,
  section.cases,
  section.services,
  section.process,
  section.estimate,
  section.trust,
  section.reviews,
  section.faq,
  section.cta {
    padding-top: clamp(72px, 14vw, 88px) !important;
    padding-bottom: clamp(72px, 14vw, 88px) !important;
  }
}

/* ============================================
   Шапка, hero-strip, светлый футер — финал
   ============================================ */

@media (min-width: 1101px) and (max-width: 1260px) {
  .header__email {
    display: none;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 12px;
  }

  .header__cta {
    font-size: 11px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

@media (min-width: 1261px) {
  .header__email {
    max-width: 232px;
  }
}

.hero__strip {
  background: transparent !important;
}

.hero__strip-inner {
  background: var(--hero-strip-bg) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: var(--r-md) !important;
}

.hero__strip-item,
.hero__strip-item svg {
  color: var(--ink-2) !important;
}

.hero__strip-item svg {
  color: var(--gr-2) !important;
}

.footer,
.footer::before {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-paper) 100%) !important;
}

.footer__title,
.footer__founder-name,
.footer__link--main {
  color: var(--ink) !important;
}

.footer__text,
.footer__addr,
.footer__link,
.footer__bottom,
.footer__legal,
.footer__founder-label {
  color: var(--ink-2) !important;
}

.footer__grid {
  border-bottom-color: var(--line) !important;
}

.footer__founder {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: var(--line) !important;
}

.footer__social svg {
  color: var(--c-3) !important;
}

.footer__link:hover,
.footer__link--policy:hover {
  color: var(--c-3) !important;
}

.form-agree a {
  color: var(--c-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-agree a:hover {
  color: var(--c-1);
}

/* ============================================
   04 — Новые кейсы (та же сетка .case)
   ============================================ */

.cases__grid--extended {
  margin-top: clamp(56px, 7vw, 80px);
  padding-top: clamp(56px, 7vw, 80px);
  border-top: 1px solid rgba(168, 122, 82, 0.18);
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-rows: minmax(340px, auto);
}

.cases__grid.cases__grid--extended > .case--wide,
.cases__grid.cases__grid--extended > .case--extended {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-height: 340px;
}

.cases__grid.cases__grid--extended > .case--wide > img,
.cases__grid.cases__grid--extended > .case--extended > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case__meta--full {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: 18px;
}

.case__meta--full > div {
  min-width: 72px;
}

.case__meta--full strong {
  font-size: clamp(16px, 1.6vw, 20px);
}

.case__quiz-link {
  display: inline-flex;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 153, 113, 0.65);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.case__quiz-link:hover {
  color: var(--c-2);
  border-bottom-color: var(--c-2);
}

.cases__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(28px, 4vw, 36px) clamp(32px, 5vw, 48px);
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
}

.cases__footer p {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}

a[href^="#popup:marquiz_"] {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .cases__grid--extended {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cases__grid--extended .case--large,
  .cases__grid--extended .case--wide,
  .cases__grid--extended .case--extended {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .cases__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cases__footer .btn {
    width: 100%;
  }

  .case__meta--full {
    gap: 20px;
  }
}

/* FINAL FIX — cinematic video case */
.case.case--video#caseGreeceVideo {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: clamp(480px, 52vw, 620px) !important;
  min-height: clamp(480px, 52vw, 620px) !important;
  margin: 36px 0 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #111 !important;
  transform: none !important;
  isolation: isolate !important;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.case.case--video#caseGreeceVideo .case-video__media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 1 !important;
  display: block !important;
  transform: none !important;
  filter: brightness(0.78) contrast(1.03) saturate(0.9) !important;
}

.case.case--video#caseGreeceVideo::before {
  content: none !important;
  display: none !important;
}

.case.case--video#caseGreeceVideo::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.04) 45%,
    rgba(0, 0, 0, 0.24) 100%
  ) !important;
}

.case.case--video#caseGreeceVideo .case-video__content {
  position: absolute !important;
  left: clamp(24px, 4vw, 40px) !important;
  bottom: clamp(18px, 3.2vw, 28px) !important;
  top: auto !important;
  right: auto !important;
  z-index: 5 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;

  width: min(480px, calc(100% - 72px)) !important;
  min-width: 440px !important;
  max-width: 510px !important;
  padding: clamp(30px, 3.2vw, 34px) !important;
  border-radius: 24px !important;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;

  color: #fff !important;
  background: rgba(16, 16, 18, 0.62) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.case.case--video#caseGreeceVideo .case-video__label {
  display: inline-flex !important;
  width: fit-content !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.88) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.case.case--video#caseGreeceVideo .case-video__content h3 {
  margin: 0 !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.02 !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.case.case--video#caseGreeceVideo .case-video__content p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.case.case--video#caseGreeceVideo .case-video__works {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.case.case--video#caseGreeceVideo .case-video__works span {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .case.case--video#caseGreeceVideo {
    height: 520px !important;
    min-height: 520px !important;
    border-radius: 22px !important;
    margin-top: 28px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    top: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 24px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content h3 {
    font-size: 30px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__works span {
    font-size: 11px !important;
    padding: 6px 10px !important;
    white-space: normal !important;
  }
}

/* === CASE GRID NORMALIZE === */

.cases__grid .case,
.case--large,
.case--extended,
.case--wide {
  transform: none !important;
  scale: 1 !important;
}

.cases__grid .case:hover {
  transform: translateY(-6px) !important;
}

.case--video:hover {
  transform: none !important;
}

/* EMERGENCY — remove broken oval/blur on video case */
#caseGreeceVideo::before {
  content: none !important;
  display: none !important;
}

#caseGreeceVideo::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.04) 45%,
    rgba(0, 0, 0, 0.24) 100%
  ) !important;
  border-radius: inherit !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

#caseGreeceVideo .case-video__media {
  filter: brightness(0.78) contrast(1.03) saturate(0.9) !important;
  transform: none !important;
}

#caseGreeceVideo .case-video__content {
  z-index: 5 !important;
}

/* === FOOTER BOTTOM — remove white strip below footer === */
html,
body {
  margin-bottom: 0;
}

.footer,
.footer__bottom {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0 !important;
  }
}

/* Hero location clarity */
.hero__location {
  display: block;
  margin: 16px 0 6px;
  max-width: 520px;
  font-family: var(--font);
  font-size: clamp(16px, 1.75vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.015em;
  color: #9a7354;
}

@media (max-width: 768px) {
  .hero__location {
    font-size: 15px;
    margin: 12px 0 4px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__location {
    font-size: 14.5px;
    line-height: 1.45;
  }
}

/* Header contact — guaranteed specificity */
@media (min-width: 1261px) {
  .header .header__right a.header__phone.header__email > .header__phone-num {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #171717 !important;
    opacity: 1 !important;
    line-height: 1 !important;
    -webkit-text-fill-color: #171717;
  }

  .header .header__right a.header__phone:not(.header__email) > .header__phone-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(20, 20, 20, 0.55);
  }

  /* Optical center: email ↔ city + phone */
  .header__right > a.header__phone.header__email {
    line-height: 1;
    align-self: center;
  }

  .header__right > a.header__phone:not(.header__email) {
    line-height: 1;
    transform: translateY(-2px);
  }
}

/* Hero conversion micro-refinements */
.hero__title em {
  margin-top: 8px;
  font-size: 0.84em;
  color: rgba(177, 132, 91, 0.88);
}

.hero__cta .btn.btn--primary.btn--lg {
  background: linear-gradient(180deg, #1a1a1c 0%, #0d0d0f 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: heroCtaPulse 3.8s ease-in-out infinite;
}

.hero__cta .btn.btn--primary.btn--lg:hover {
  background: linear-gradient(180deg, #121214 0%, #08080a 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  animation: none;
}

@keyframes heroCtaPulse {
  0%, 100% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* Video-case dark panel — ambient glass shimmer */
.case.case--video#caseGreeceVideo .case-video__content {
  overflow: hidden !important;
  isolation: isolate !important;
}

.case.case--video#caseGreeceVideo .case-video__content::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.045) 46%,
    rgba(255, 255, 255, 0.02) 54%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  background-size: 260% 100% !important;
  opacity: 0.65 !important;
  animation: caseVideoPanelAmbient 18s ease-in-out infinite !important;
}

.case.case--video#caseGreeceVideo .case-video__content > * {
  position: relative !important;
  z-index: 1 !important;
}

@keyframes caseVideoPanelAmbient {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.62;
  }

  50% {
    background-position: 100% 50%;
    opacity: 0.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case.case--video#caseGreeceVideo .case-video__content::before {
    animation: none !important;
    background-position: 50% 50% !important;
    opacity: 0.64 !important;
  }
}

/* Services cards — subtle hover (right column only) */
.services__content .services__items .services__item {
  cursor: pointer;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services__content .services__items .services__item:not(.services__item--primary):hover {
  transform: translateY(-2px);
  border-color: rgba(168, 122, 82, 0.24);
  box-shadow:
    0 12px 32px rgba(26, 26, 29, 0.08),
    0 4px 14px rgba(26, 26, 29, 0.04);
}

.services__content .services__items .services__item--primary:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 122, 82, 0.44);
  box-shadow:
    0 22px 52px rgba(26, 26, 29, 0.11),
    0 8px 22px rgba(26, 26, 29, 0.06);
}

.services__content .services__items .services__item:hover::after {
  opacity: 0.42;
}

.services__content .services__items .services__item:hover h3,
.services__content .services__items .services__item--primary:hover h3 {
  color: var(--ink);
}

.services__content .services__items .services__item:hover .services__num {
  color: var(--c-3);
}

.services__content .services__items .services__item--primary:hover .services__num {
  color: var(--c-1);
}

@media (prefers-reduced-motion: reduce) {
  .services__content .services__items .services__item:hover {
    transform: none;
  }
}

/* Reviews — trust polish (cards only) */
.reviews .review {
  box-shadow:
    0 26px 68px rgba(35, 28, 22, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.reviews .review--large {
  box-shadow:
    0 36px 94px rgba(35, 28, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}

.reviews .review:hover {
  box-shadow:
    0 30px 78px rgba(35, 28, 22, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}

.reviews .review__badge {
  background: rgba(94, 108, 82, 0.12);
  color: #5f6d56;
  border-color: rgba(94, 108, 82, 0.22);
}

.reviews .review__context {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-3);
}

.reviews .review--large .review__context {
  font-size: 12.5px;
}

@media (max-width: 480px) {
  .reviews .review,
  .reviews .reviews__item {
    box-shadow: 0 9px 26px rgba(0, 0, 0, 0.05) !important;
  }

  .reviews .review__badge,
  .reviews .reviews__badge {
    background: rgba(94, 108, 82, 0.12) !important;
    color: #5f6d56 !important;
    border: 1px solid rgba(94, 108, 82, 0.2) !important;
  }
}

/* Final CTA form — compact spacing + placeholders */
.cta #leadForm.form {
  gap: 15px;
}

.cta #leadForm .form__trust {
  margin: 24px 0 22px !important;
  padding: 18px 20px !important;
  gap: 10px !important;
}

.cta #leadForm .form-agree {
  margin: 3px 0 3px !important;
}

.cta #leadForm .form__submit {
  margin-top: 10px !important;
}

.cta #leadForm .form__micro {
  margin: -2px 0 0 !important;
}

.cta #leadForm .form__field input#name::placeholder,
.cta #leadForm .form__field input#phone::placeholder {
  color: rgba(70, 70, 75, 0.52);
  opacity: 1;
}

.cta #leadForm .form__field input#name::-webkit-input-placeholder,
.cta #leadForm .form__field input#phone::-webkit-input-placeholder {
  color: rgba(70, 70, 75, 0.52);
}

@media (max-width: 768px) {
  .cta #leadForm .form__trust {
    margin: 12px 0 10px !important;
    padding: 12px 14px !important;
    gap: 6px !important;
  }

  .cta #leadForm.form {
    gap: 14px !important;
    padding: 24px 20px 20px !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  .cta #leadForm .form__submit {
    margin-top: 8px !important;
  }

  .cta #leadForm .form__micro {
    margin: 0 !important;
  }
}

/* Final CTA form card — scroll reveal (desktop only) */
@media (min-width: 769px) {
  .cta #leadForm.form.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .cta #leadForm.form.reveal.is-visible:not(:hover) {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta #leadForm.form.reveal,
  .cta #leadForm.form.reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Footer founder — calm info card */
.footer__founder {
  background: rgba(255, 255, 255, 0.4) !important;
  border: 1px solid rgba(168, 122, 82, 0.1) !important;
  box-shadow: none !important;
}

.footer__founder-label {
  color: rgba(70, 70, 75, 0.68) !important;
}

.footer__founder-name {
  color: rgba(26, 26, 29, 0.92) !important;
}

@media (max-width: 768px) {
  .header {
    z-index: 100002 !important;
  }

  .burger {
    position: relative !important;
    z-index: 100003 !important;
    pointer-events: auto !important;
  }

  .mobile-menu {
    display: none !important;
    position: fixed !important;
    top: 113px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100001 !important;
    padding: 18px 24px 26px !important;
    background: #fafaf7 !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14) !important;
    max-height: calc(100vh - 113px) !important;
    overflow-y: auto !important;
  }

  .mobile-menu.is-open {
    display: flex !important;
    flex-direction: column !important;
  }

  .mobile-menu a:not(.btn) {
    display: block !important;
    padding: 15px 0 !important;
    font-size: 16px !important;
    color: #1a1a1d !important;
  }

  .mobile-menu a.btn,
  .mobile-menu__cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 14px !important;
    padding: 14px 20px !important;
    border-bottom: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    background: var(--ink) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
  }

  .mobile-menu a.btn:hover,
  .mobile-menu__cta:hover {
    color: #fff !important;
    background: #111 !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }
}

/* Hero — mobile readability & scroll rhythm (cold traffic) */
@media (max-width: 768px) {
  .hero__main .hero__sub {
    line-height: 1.68;
    margin-top: 0;
    margin-bottom: 0;
    max-width: none;
  }

  .hero__main .hero__sub + .hero__sub {
    margin-top: 12px;
  }

  .hero__main .hero__sub:last-of-type {
    margin-bottom: 6px;
  }

  .hero__main .hero__note {
    margin-top: 14px !important;
    margin-bottom: 26px !important;
    line-height: 1.5;
  }

  .hero__main .hero__cta {
    margin-top: 36px !important;
    margin-bottom: 42px !important;
  }
}

/* Hero stats + founder — mobile scroll rhythm */
@media (max-width: 768px) {
  .hero__container {
    gap: 28px;
    padding-bottom: 48px;
  }

  .hero .hero__facts {
    padding-top: 18px !important;
    padding-bottom: 16px !important;
    gap: 10px !important;
  }

  .hero__founder {
    margin-top: 0;
  }

  .hero .hero__founder-photo {
    min-height: 400px !important;
  }

  .hero .hero__founder-img {
    object-position: center 22%;
  }

  .hero .hero__founder-tag {
    font-size: 9px !important;
    padding: 5px 9px !important;
    top: 12px !important;
    left: 12px !important;
    letter-spacing: 0.1em !important;
  }

  .hero .hero__founder-card {
    margin-top: -50px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .hero .hero__founder-quote {
    padding-top: 12px;
  }

  .hero .hero__founder-role {
    margin-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .hero .hero__facts {
    margin-top: 8px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    gap: 8px !important;
  }

  .hero .hero__founder-photo {
    min-height: 350px !important;
  }

  .hero .hero__founder-card {
    margin-top: -42px !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    padding: 20px 20px !important;
  }
}

@media (max-width: 480px) {
  .hero .hero__facts {
    margin-top: 24px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    gap: 6px !important;
  }

  .hero .hero__fact {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .hero .hero__fact:first-child {
    padding-top: 0 !important;
  }

  .hero .hero__founder-photo {
    min-height: 310px !important;
  }

  .hero .hero__founder-tag {
    font-size: 8.5px !important;
    padding: 4px 8px !important;
    top: 10px !important;
    left: 10px !important;
  }

  .hero .hero__founder-card {
    margin-top: -38px !important;
    padding: 18px 18px !important;
  }
}

/* Main case — mobile conversion rhythm */
@media (max-width: 768px) {
  .main-case {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .main-case__intro {
    margin-bottom: 28px;
  }

  .main-case__layout .main-case__panel {
    margin-top: 18px !important;
    padding: 20px !important;
  }

  .main-case .main-case__specs {
    margin-bottom: 18px !important;
  }

  .main-case .main-case__spec {
    padding: 14px 14px !important;
  }

  .main-case .main-case__spec dt {
    margin-bottom: 4px !important;
  }

  .main-case .main-case__scope {
    margin-bottom: 14px !important;
    padding-top: 12px !important;
  }

  .main-case .main-case__scope-title {
    margin-bottom: 12px !important;
  }

  .main-case .main-case__scope-list {
    gap: 7px !important;
  }

  .main-case .main-case__scope-list li {
    gap: 10px !important;
    line-height: 1.38;
  }

  .main-case .main-case__cta-note {
    margin-top: 10px !important;
    margin-bottom: 12px !important;
  }
}

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

  .main-case__intro {
    margin-bottom: 24px;
  }

  .main-case__layout .main-case__panel {
    margin-top: 16px !important;
    padding: 18px !important;
  }

  .main-case .main-case__specs {
    margin-bottom: 16px !important;
  }

  .main-case .main-case__spec {
    padding: 12px 14px !important;
  }

  .main-case .main-case__scope {
    margin-bottom: 12px !important;
    padding-top: 10px !important;
  }

  .main-case .main-case__scope-title {
    margin-bottom: 10px !important;
  }

  .main-case .main-case__scope-list {
    gap: 6px !important;
  }

  .main-case .main-case__cta-note {
    margin-top: 8px !important;
    margin-bottom: 10px !important;
  }
}

/* Cases — mobile image clarity & lighter glass panel */
@media (max-width: 768px) {
  .cases .case > img,
  .cases .case > video {
    filter: saturate(1.05) contrast(1.06) brightness(1.04) !important;
  }

  .cases .case::after {
    display: block !important;
    content: "" !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.03) 36%,
      rgba(0, 0, 0, 0.22) 68%,
      rgba(0, 0, 0, 0.46) 100%
    ) !important;
  }

  .cases .case__content {
    background: rgba(22, 22, 24, 0.5) !important;
    -webkit-backdrop-filter: blur(10px) saturate(125%) !important;
    backdrop-filter: blur(10px) saturate(125%) !important;
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .cases .case__content h3,
  .cases .case__meta strong {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45) !important;
  }

  .cases .case__label {
    background: rgba(255, 255, 255, 0.14) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
  }
}

@media (max-width: 480px) {
  .cases .case::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 42%,
      rgba(0, 0, 0, 0.26) 76%,
      rgba(0, 0, 0, 0.5) 100%
    ) !important;
  }

  .cases .case__content {
    background: rgba(24, 24, 26, 0.52) !important;
    -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
    backdrop-filter: blur(8px) saturate(120%) !important;
  }
}

/* Cases — mobile panel compactness */
@media (max-width: 768px) {
  .cases .case__content {
    padding: 16px 16px 14px !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
  }

  .cases .case__label {
    margin-bottom: 10px !important;
  }

  .cases .case__content h3,
  .cases .case--large .case__content h3 {
    margin-bottom: 12px !important;
  }

  .cases .case__meta {
    margin-top: 14px !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .cases .case__content {
    padding: 14px 14px 12px !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
  }

  .cases .case__label {
    margin-bottom: 8px !important;
  }

  .cases .case__content h3,
  .cases .case--large .case__content h3 {
    margin-bottom: 10px !important;
  }

  .cases .case__meta {
    margin-top: 12px !important;
    gap: 10px !important;
  }
}

/* Cases — mobile scroll rhythm & card hierarchy */
@media (max-width: 768px) {
  .cases .cases__grid {
    gap: 14px !important;
  }

  .cases .case--large {
    min-height: 400px !important;
    height: 400px !important;
  }

  .cases .case:not(.case--large) {
    min-height: 352px !important;
    height: 352px !important;
  }

  .cases .case--large::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 34%,
      rgba(0, 0, 0, 0.28) 66%,
      rgba(0, 0, 0, 0.52) 100%
    ) !important;
  }

  .cases .case:not(.case--large)::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.02) 38%,
      rgba(0, 0, 0, 0.16) 70%,
      rgba(0, 0, 0, 0.38) 100%
    ) !important;
  }

  .cases .case--large .case__content {
    background: rgba(20, 20, 22, 0.54) !important;
  }

  .cases .case:not(.case--large) .case__content {
    background: rgba(24, 24, 26, 0.46) !important;
  }
}

@media (max-width: 480px) {
  .cases .cases__grid {
    gap: 12px !important;
  }

  .cases .case--large {
    min-height: 376px !important;
    height: 376px !important;
  }

  .cases .case:not(.case--large) {
    min-height: 328px !important;
    height: 328px !important;
  }

  .cases .case--large::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.06) 40%,
      rgba(0, 0, 0, 0.3) 78%,
      rgba(0, 0, 0, 0.56) 100%
    ) !important;
  }

  .cases .case:not(.case--large)::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.04) 44%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0.42) 100%
    ) !important;
  }
}

/* Cases — mobile curated flow + video case scanability */
@media (min-width: 769px) {
  .cases__more-toggle,
  .cases__more-mobile,
  .projects-show-more,
  .cases__show-more {
    display: none !important;
  }

  .cases__more-collapse {
    display: block !important;
    grid-template-rows: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    height: auto !important;
    margin-top: 28px !important;
    overflow: visible !important;
  }

  .cases__more-collapse-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: minmax(340px, auto) !important;
    gap: 28px !important;
    overflow: visible !important;
    min-height: auto !important;
  }

  .cases__more-collapse .case--extended {
    grid-column: 1 / -1;
    min-height: 340px !important;
  }

  .cases__more-collapse .case,
  .cases__more-collapse .case--more,
  .case.is-hidden,
  .case.is-collapsed,
  .case.project-hidden {
    display: block !important;
    height: auto !important;
    min-height: 320px !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
  }

  .cases__more-collapse .case--more.reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 768px) {
  .cases__more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 18px 0 0;
    padding: 16px 22px;
    border: 1px solid rgba(168, 122, 82, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(35, 28, 22, 0.08);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1a1a1d;
    cursor: pointer;
    transition:
      background 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s ease;
  }

  .cases__more-toggle:hover {
    border-color: rgba(168, 122, 82, 0.34);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 40px rgba(35, 28, 22, 0.1);
  }

  .cases__more-collapse {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
    transition:
      grid-template-rows 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 0.45s ease,
      margin-top 0.45s ease;
  }

  .cases__more-collapse-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
  }

  .cases.is-expanded .cases__more-collapse {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 14px;
  }

  .cases.is-expanded .cases__more-collapse .case--more {
    animation: casesMoreReveal 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .cases.is-expanded .cases__more-collapse .case--more ~ .case--more {
    animation-delay: 0.07s;
  }

  .cases.is-expanded .cases__more-collapse .case--more.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .cases.is-expanded .cases__more-toggle {
    margin-top: 14px;
  }

  .case.case--video#caseGreeceVideo {
    height: 460px !important;
    min-height: 460px !important;
    margin-top: 20px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__media,
  #caseGreeceVideo .case-video__media {
    filter: brightness(0.9) contrast(1.05) saturate(0.98) !important;
  }

  .case.case--video#caseGreeceVideo::after,
  #caseGreeceVideo::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.02) 46%,
      rgba(0, 0, 0, 0.14) 100%
    ) !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content {
    gap: 10px !important;
    padding: 16px 16px 14px !important;
    background: rgba(18, 18, 20, 0.5) !important;
    -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
    backdrop-filter: blur(14px) saturate(120%) !important;
    box-shadow:
      0 16px 44px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .case.case--video#caseGreeceVideo .case-video__works {
    gap: 5px !important;
    margin-top: 2px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__works span {
    padding: 4px 8px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
  }
}

@media (max-width: 480px) {
  .cases__more-toggle {
    margin-top: 14px;
    padding: 14px 18px;
    font-size: 13.5px;
  }

  .case.case--video#caseGreeceVideo {
    height: 420px !important;
    min-height: 420px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 14px 14px 12px !important;
    gap: 8px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__works {
    gap: 4px !important;
  }
}

@keyframes casesMoreReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cases__more-collapse,
  .cases.is-expanded .cases__more-collapse {
    transition: none !important;
  }

  .cases.is-expanded .cases__more-collapse .case--more {
    animation: none !important;
  }
}

/* Cases — secondary cards glass refinement (mobile) */
@media (max-width: 768px) {
  .cases .case:not(.case--large) > img,
  .cases .case:not(.case--large) > video {
    filter: saturate(1.06) contrast(1.07) brightness(1.05) !important;
  }

  .cases .case:not(.case--large)::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.015) 40%,
      rgba(0, 0, 0, 0.11) 72%,
      rgba(0, 0, 0, 0.3) 100%
    ) !important;
  }

  .cases .case:not(.case--large) .case__content {
    background: rgba(24, 24, 26, 0.4) !important;
    -webkit-backdrop-filter: blur(7px) saturate(118%) !important;
    backdrop-filter: blur(7px) saturate(118%) !important;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.17),
      inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
  }

  .cases .case:not(.case--large) .case__content h3,
  .cases .case:not(.case--large) .case__meta strong {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48) !important;
  }

  .cases .case:not(.case--large) .case__label {
    background: rgba(255, 255, 255, 0.12) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    backdrop-filter: blur(6px) !important;
  }
}

@media (max-width: 480px) {
  .cases .case:not(.case--large)::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.03) 46%,
      rgba(0, 0, 0, 0.14) 82%,
      rgba(0, 0, 0, 0.32) 100%
    ) !important;
  }

  .cases .case:not(.case--large) .case__content {
    background: rgba(24, 24, 26, 0.42) !important;
    -webkit-backdrop-filter: blur(6px) saturate(115%) !important;
    backdrop-filter: blur(6px) saturate(115%) !important;
  }
}

/* Cases — mobile hidden/revealed collapse cards */
@media (max-width: 768px) {
  .cases__more-collapse .case--more {
    min-height: 312px !important;
    height: 312px !important;
  }

  .cases__more-collapse .case--more > img {
    filter: saturate(1.09) contrast(1.09) brightness(1.08) !important;
  }

  .cases__more-collapse .case--more::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.008) 44%,
      rgba(0, 0, 0, 0.09) 76%,
      rgba(0, 0, 0, 0.24) 100%
    ) !important;
  }

  .cases__more-collapse .case--more .case__content {
    padding: 13px 14px 11px !important;
    background: rgba(24, 24, 26, 0.34) !important;
    -webkit-backdrop-filter: blur(5px) saturate(112%) !important;
    backdrop-filter: blur(5px) saturate(112%) !important;
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .cases__more-collapse .case--more .case__label {
    margin-bottom: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    backdrop-filter: blur(4px) !important;
  }

  .cases__more-collapse .case--more .case__content h3 {
    margin-bottom: 10px !important;
  }

  .cases__more-collapse .case--more .case__meta {
    margin-top: 10px !important;
    gap: 8px 16px !important;
  }

  .cases__more-collapse .case--more .case__content h3,
  .cases__more-collapse .case--more .case__meta strong {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42) !important;
  }
}

@media (max-width: 480px) {
  .cases__more-collapse .case--more {
    min-height: 296px !important;
    height: 296px !important;
  }

  .cases__more-collapse .case--more::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.02) 48%,
      rgba(0, 0, 0, 0.11) 84%,
      rgba(0, 0, 0, 0.26) 100%
    ) !important;
  }

  .cases__more-collapse .case--more .case__content {
    padding: 12px 12px 10px !important;
    background: rgba(24, 24, 26, 0.36) !important;
    -webkit-backdrop-filter: blur(4px) saturate(110%) !important;
    backdrop-filter: blur(4px) saturate(110%) !important;
  }

  .cases__more-collapse .case--more .case__meta {
    margin-top: 8px !important;
    gap: 6px 10px !important;
  }
}

/* Video case — desktop subtitle/button visibility */
.case-video__desc--mobile,
.case-video__watch-btn {
  display: none;
}

/* Video case — mobile preview + lightbox */
@media (max-width: 768px) {
  .case-video__desc--desktop,
  .case.case--video#caseGreeceVideo .case-video__works {
    display: none !important;
  }

  .case-video__desc--mobile {
    display: block !important;
  }

  .case.case--video#caseGreeceVideo {
    height: 380px !important;
    min-height: 380px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__media,
  #caseGreeceVideo .case-video__media {
    filter: brightness(0.94) contrast(1.04) saturate(1) !important;
  }

  .case.case--video#caseGreeceVideo::after,
  #caseGreeceVideo::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.02) 52%,
      rgba(0, 0, 0, 0.16) 100%
    ) !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content {
    gap: 8px !important;
    padding: 14px 14px 12px !important;
    background: rgba(18, 18, 20, 0.46) !important;
    -webkit-backdrop-filter: blur(12px) saturate(118%) !important;
    backdrop-filter: blur(12px) saturate(118%) !important;
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content h3 {
    font-size: 24px !important;
    line-height: 1.06 !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content p,
  .case.case--video#caseGreeceVideo .case-video__desc--mobile {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.84) !important;
  }

  .case-video__watch-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    cursor: pointer;
    transition:
      background 0.3s ease,
      border-color 0.3s ease;
  }

  .case-video__watch-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 480px) {
  .case.case--video#caseGreeceVideo {
    height: 340px !important;
    min-height: 340px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 12px 12px 10px !important;
    gap: 6px !important;
  }

  .case.case--video#caseGreeceVideo .case-video__content h3 {
    font-size: 22px !important;
  }

  .case-video__watch-btn {
    margin-top: 2px;
    padding: 11px 16px;
    font-size: 13px;
  }
}

#caseVideoLightbox {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(8, 8, 10, 0.94);
}

#caseVideoLightbox.is-open {
  display: flex;
}

#caseVideoLightbox .case-video-lightbox__stage {
  width: min(960px, 100%);
  max-height: calc(100vh - 88px);
}

#caseVideoLightbox .case-video-lightbox__video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 88px);
  border-radius: 16px;
  background: #000;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

#caseVideoLightbox .case-video-lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100002;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease;
}

#caseVideoLightbox .case-video-lightbox__close:hover {
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .case-video__watch-btn,
  #caseVideoLightbox .case-video-lightbox__close {
    transition: none;
  }
}

/* Services intro card — mobile rhythm */
@media (max-width: 768px) {
  .services__head {
    padding: 28px 26px !important;
  }

  .services__eyebrow {
    margin-bottom: 18px !important;
  }

  .services__title {
    margin-bottom: 14px !important;
  }

  .services__aside {
    margin-top: 18px !important;
    padding-top: 16px !important;
  }

  .services__aside-line {
    margin-bottom: 14px !important;
  }

  .services__lead {
    margin-bottom: 0 !important;
  }

  .services__cta {
    margin-top: 28px !important;
    padding-top: 22px !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .services__head {
    padding: 24px 20px !important;
    margin-bottom: 28px !important;
  }

  .services__eyebrow {
    margin-bottom: 16px !important;
  }

  .services__title {
    margin-bottom: 12px !important;
  }

  .services__aside {
    margin-top: 16px !important;
    padding-top: 14px !important;
  }

  .services__aside-line {
    margin-bottom: 12px !important;
  }

  .services__cta {
    margin-top: 24px !important;
    padding-top: 20px !important;
    gap: 14px !important;
  }
}

/* Mobile services cards — tighter scroll rhythm (cards only) */
@media (max-width: 768px) {
  .services__items {
    gap: 11px !important;
    padding: 10px !important;
  }

  .services__content .services__items .services__item {
    padding: 23px 22px !important;
    gap: 12px !important;
  }

  .services__body h3 {
    margin-bottom: 10px !important;
  }

  .services__tags {
    margin-top: 17px !important;
    gap: 10px 14px !important;
  }

  .services__badge {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 480px) {
  .services__items {
    gap: 10px !important;
  }

  .services__content .services__items .services__item {
    padding: 21px 20px !important;
  }

  .services__body h3 {
    margin-bottom: 9px !important;
  }

  .services__tags {
    margin-top: 15px !important;
    gap: 9px 12px !important;
  }

  .services__badge {
    margin-bottom: 9px !important;
  }
}

/* Mobile services/process cards — subtle left accent (no oversized blob) */
@media (max-width: 768px) {
  .services__content .services__items .services__item--primary::after {
    opacity: 0.52 !important;
    background: radial-gradient(
      circle 76px at -10% 24%,
      rgba(200, 153, 113, 0.13),
      transparent 72%
    ) !important;
  }

  .services__content .services__items .services__item::after {
    opacity: 0.28;
  }

  .services__content .services__items .services__item:hover::after {
    opacity: 0.36 !important;
  }

  .process__num {
    width: 36px !important;
    height: 36px !important;
    background: rgba(184, 132, 90, 0.08) !important;
    box-shadow:
      0 0 0 3px rgba(184, 132, 90, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .process__items::before {
    left: 17px !important;
    opacity: 0.36 !important;
  }

  .process::before {
    width: 300px;
    height: 300px;
    right: -10%;
    opacity: 0.55;
  }

  .process::after {
    width: 240px;
    height: 240px;
    left: -90px;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .services__content .services__items .services__item--primary::after {
    opacity: 0.45 !important;
    background: radial-gradient(
      circle 56px at -14% 16%,
      rgba(200, 153, 113, 0.1),
      transparent 74%
    ) !important;
  }

  .process__num,
  .process__number,
  .process__index {
    width: 34px !important;
    height: 34px !important;
    box-shadow:
      0 0 0 2px rgba(184, 132, 90, 0.03),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .process__items::before {
    left: 16px !important;
    opacity: 0.3 !important;
  }

  .process__item {
    padding-left: 50px !important;
  }

  .process::before {
    width: 220px;
    height: 220px;
    opacity: 0.42;
  }

  .process::after {
    width: 180px;
    height: 180px;
    left: -70px;
    opacity: 0.38;
  }
}

/* Mobile process — readable copy, no hover dimming */
@media (max-width: 768px) {
  .process__items:hover .process__item,
  .process__items .process__item,
  .process__item:hover {
    opacity: 1 !important;
    transform: none !important;
  }

  .process__item.reveal,
  .process__item.reveal.is-visible {
    transform: none !important;
    filter: none !important;
  }

  .process__body h3,
  .process__item h3,
  .process__item:hover h3 {
    color: var(--ink) !important;
  }

  .process__body p,
  .process__item p {
    color: rgba(23, 23, 25, 0.58) !important;
    opacity: 1 !important;
  }

  .process__intro {
    color: var(--ink-2) !important;
  }

  .process__item {
    gap: 12px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .process__body h3,
  .process__item h3 {
    margin-bottom: 8px !important;
  }

  .process__body p,
  .process__item p {
    margin-top: 5px !important;
  }
}

@media (max-width: 480px) {
  .process__item {
    padding: 20px 0 20px 50px !important;
  }
}

/* Mobile estimate — scanability and scroll rhythm */
@media (max-width: 768px) {
  .estimate__sample.reveal,
  .estimate__sample.reveal.is-visible,
  .estimate__sample:hover {
    transform: none !important;
    filter: none !important;
  }

  .estimate__layout {
    gap: 32px;
  }

  .estimate__lead {
    margin-bottom: 28px;
  }

  .estimate__trust {
    margin-bottom: 22px;
  }

  .estimate__stages {
    padding: 6px !important;
    margin-bottom: 14px;
  }

  .estimate__stages-title {
    margin: 10px 14px 10px;
  }

  .estimate__stage {
    padding: 11px 14px;
    gap: 12px;
  }

  .estimate__stage-info {
    gap: 11px;
  }

  .estimate__note {
    margin-top: 10px;
  }

  .estimate__sample {
    padding: 22px 20px 18px !important;
  }

  .estimate__sample-head {
    padding-bottom: 16px;
    margin-bottom: 2px;
  }

  .estimate__table {
    margin: 12px 0;
  }

  .estimate__table td {
    padding: 9px 0;
  }

  .estimate__total {
    padding-top: 16px;
    margin-top: 6px;
    margin-bottom: 16px;
  }

  .estimate__cta {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .estimate__stage {
    padding: 10px 12px !important;
  }

  .estimate__sample {
    padding: 20px 18px 16px !important;
  }

  .estimate__total {
    margin-bottom: 14px !important;
  }

  .estimate__cta {
    margin-top: 16px !important;
  }
}

/* Mobile trust — compact scroll rhythm */
@media (max-width: 768px) {
  .trust__head {
    margin-bottom: 36px;
  }

  .trust__numbers {
    margin-bottom: 28px !important;
    padding-bottom: 4px !important;
  }

  .trust__number {
    padding: 20px 0 !important;
    row-gap: 4px;
    column-gap: 20px;
  }

  .trust__number:first-child {
    padding-top: 0 !important;
  }

  .trust__number:last-child {
    padding-bottom: 0 !important;
  }

  .trust__points {
    gap: 0 !important;
    margin-top: 0 !important;
    padding-top: 28px !important;
  }

  .trust__point {
    padding: 16px 0 !important;
  }

  .trust__point-num {
    margin-bottom: 8px !important;
  }

  .trust__point-title {
    margin-bottom: 8px !important;
  }

  .trust__point-text {
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .trust {
    padding-top: 68px !important;
    padding-bottom: 72px !important;
  }

  .trust__numbers {
    margin-top: 28px !important;
    margin-bottom: 24px !important;
  }

  .trust__number {
    padding: 18px 0 !important;
  }

  .trust__points {
    padding-top: 24px !important;
  }

  .trust__point {
    padding: 14px 0 !important;
  }

  .trust__point-num {
    margin-bottom: 7px !important;
  }

  .trust__point-title {
    margin-bottom: 6px !important;
  }
}

/* Mobile reviews — compact scroll rhythm */
@media (max-width: 768px) {
  .reviews__grid {
    gap: 16px !important;
  }

  .reviews .review,
  .review {
    min-height: auto !important;
    padding: 20px 18px !important;
  }

  .reviews .review--large,
  .review--large {
    min-height: auto !important;
    transform: none !important;
  }

  .review__top {
    margin-bottom: 10px !important;
  }

  .review__text {
    margin-bottom: 12px !important;
  }

  .reviews .review__context,
  .review__context {
    margin: 10px 0 0 !important;
  }

  .review__author {
    padding-top: 18px !important;
    gap: 11px !important;
    margin-top: auto !important;
  }

  .review__author small {
    margin-top: 2px !important;
  }

  .review::before {
    font-size: 110px !important;
    right: 18px !important;
    bottom: -28px !important;
    color: rgba(184, 132, 90, 0.05) !important;
  }
}

@media (max-width: 480px) {
  .reviews__grid {
    gap: 14px !important;
  }

  .reviews .review,
  .review {
    padding: 18px 16px !important;
  }

  .review__top {
    margin-bottom: 9px !important;
  }

  .review__text {
    margin-bottom: 10px !important;
  }

  .reviews .review__context,
  .review__context {
    margin: 8px 0 0 !important;
  }

  .review__author {
    padding-top: 16px !important;
    gap: 10px !important;
  }

  .review::before {
    font-size: 92px !important;
    right: 14px !important;
    bottom: -22px !important;
    color: rgba(184, 132, 90, 0.045) !important;
  }
}

/* Mobile FAQ — compact rhythm + premium tap */
@media (max-width: 768px) {
  .faq__list {
    gap: 6px !important;
  }

  .faq__item {
    box-shadow:
      0 8px 22px rgba(26, 26, 29, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
  }

  .faq__item:hover {
    transform: none !important;
    box-shadow:
      0 10px 26px rgba(26, 26, 29, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  }

  .faq__item summary {
    padding: 16px 18px !important;
    gap: 14px !important;
  }

  .faq__body {
    padding: 0 18px 17px !important;
  }

  .faq__plus {
    width: 30px !important;
    height: 30px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(168, 122, 82, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transition:
      background 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.16s ease !important;
  }

  .faq__item[open] .faq__plus {
    border-color: rgba(168, 122, 82, 0.2) !important;
    box-shadow: 0 4px 14px rgba(184, 132, 90, 0.2) !important;
  }

  .faq__item:active {
    transform: scale(0.992) !important;
  }

  .faq__item summary:active .faq__plus {
    transform: scale(0.94);
  }

  .faq__item[open] summary:active .faq__plus {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .faq__item summary {
    padding: 15px 16px !important;
  }

  .faq__body {
    padding: 0 16px 15px !important;
  }

  .faq__list {
    gap: 5px !important;
  }
}

/* Mobile CTA / lead form — faster conversion flow */
@media (max-width: 768px) {
  .cta__layout {
    gap: 24px !important;
  }

  .cta__title {
    margin-bottom: 16px !important;
  }

  .cta__text {
    margin-bottom: 22px !important;
  }

  .cta__bullets {
    gap: 10px !important;
    margin: 20px 0 24px !important;
  }

  .cta__contacts {
    padding-top: 16px !important;
  }

  .cta__contacts-label {
    margin-bottom: 6px !important;
  }

  .cta__phone {
    margin-bottom: 4px !important;
  }

  .cta .form,
  .cta #leadForm.form {
    margin-top: 0 !important;
    transform: none !important;
    gap: 14px !important;
    padding: 24px 20px 20px !important;
  }

  .cta .form:hover,
  .cta #leadForm.form:hover {
    transform: none !important;
    filter: none !important;
  }

  .cta #leadForm .form__head,
  .form__head {
    margin-bottom: 4px !important;
  }

  .cta #leadForm .form__trust,
  .cta .form__trust {
    margin: 12px 0 10px !important;
    padding: 12px 14px !important;
    gap: 6px !important;
  }

  .cta #leadForm .form-agree,
  .form-agree {
    margin: 2px 0 !important;
  }

  .cta #leadForm .form__submit {
    margin-top: 8px !important;
  }

  .cta #leadForm .form__micro,
  .form__micro {
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .cta__bullets {
    margin: 18px 0 20px !important;
  }

  .cta .form,
  .cta #leadForm.form,
  .cta__form,
  .form {
    padding: 22px 18px 18px !important;
    padding-bottom: 18px !important;
  }

  .cta #leadForm .form__trust,
  .form__trust {
    margin: 10px 0 8px !important;
    padding: 11px 12px !important;
    gap: 5px !important;
  }

  .cta #leadForm .form__submit,
  .form button,
  .cta__form button {
    margin-bottom: 4px !important;
  }
}

/* === FOOTER MOBILE — contrast + calm hierarchy (wins over legacy FIX) === */
@media (max-width: 768px) {
  .footer {
    padding-top: 48px !important;
    padding-bottom: 28px !important;
  }

  .footer__grid {
    gap: 24px !important;
    padding-bottom: 24px !important;
  }

  .footer__col {
    gap: 8px !important;
  }

  .footer__title,
  .footer__founder-name,
  .footer__link--main,
  footer a[href^="tel"] {
    color: var(--ink) !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  .footer__text,
  .footer__addr,
  .footer__link,
  footer a[href^="mailto"],
  .footer__bottom .footer__link--policy,
  .footer__link--policy {
    color: rgba(23, 23, 25, 0.58) !important;
    opacity: 1 !important;
  }

  .footer__bottom,
  .footer__legal {
    color: var(--ink-3) !important;
  }

  .footer__col:last-child .footer__link,
  .footer__social,
  footer a[href*="telegram"],
  footer a[href*="whatsapp"],
  footer a[href*="youtube"] {
    color: rgba(23, 23, 25, 0.58) !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid var(--line-soft) !important;
  }

  .footer__col:last-child .footer__link::after,
  .footer__social::after,
  footer a[href*="telegram"]::after,
  footer a[href*="whatsapp"]::after,
  footer a[href*="youtube"]::after {
    color: var(--ink-3) !important;
    opacity: 0.38 !important;
  }

  .footer__social svg {
    opacity: 0.72 !important;
    color: var(--c-3) !important;
  }

  .footer__bottom {
    margin-top: 24px !important;
    padding-top: 18px !important;
    border-top-color: var(--line) !important;
    gap: 10px !important;
  }

  .footer a:active,
  .footer__link:active {
    opacity: 0.88 !important;
  }

  .footer__madeby {
    display: inline-block !important;
    margin: 4px 0 0 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    color: rgba(23, 23, 25, 0.45) !important;
    text-decoration: none !important;
    opacity: 1 !important;
  }

  .footer__madeby span {
    color: rgba(23, 23, 25, 0.58) !important;
  }

  .footer__madeby:hover {
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 32px 22px 96px !important;
  }

  .footer__text {
    margin-top: 14px !important;
  }

  .footer__founder {
    margin-top: 14px !important;
  }

  .footer__title {
    margin-bottom: 8px !important;
  }

  .footer__link {
    margin-bottom: 10px !important;
  }

  .footer__link--main {
    margin-bottom: 14px !important;
  }

  .footer__bottom {
    margin-top: 22px !important;
  }
}

/* Cases — desktop: never apply mobile collapse / hide to project cards */
@media (min-width: 769px) {
  .cases__more-mobile,
  .projects-show-more,
  .cases__show-more,
  .cases__more-toggle {
    display: none !important;
  }

  .cases .cases__more-collapse,
  .cases.is-expanded .cases__more-collapse {
    display: block !important;
    grid-template-rows: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    height: auto !important;
    margin-top: 28px !important;
    overflow: visible !important;
  }

  .cases .cases__more-collapse-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: minmax(340px, auto) !important;
    gap: 28px !important;
    overflow: visible !important;
    min-height: auto !important;
  }

  .cases .cases__more-collapse .case--extended {
    grid-column: 1 / -1 !important;
    min-height: 340px !important;
  }

  .cases__more-collapse .case,
  .cases__more-collapse .case--more,
  .case.is-hidden,
  .case.is-collapsed,
  .case.project-hidden {
    display: block !important;
    height: auto !important;
    min-height: 320px !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
  }

  .cases__more-collapse .case--more.reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Process — subtle desktop hover (hover-capable devices only) */
@media (min-width: 769px) and (hover: hover) {
  .process__item {
    transition: transform 0.35s ease, opacity 0.35s ease, color 0.3s ease !important;
  }

  .process__item:hover,
  .process__item.reveal.is-visible:hover {
    transform: translateX(6px) !important;
  }

  .process__item:hover h3,
  .process__item:hover .process__body h3 {
    color: var(--c-3) !important;
  }

  .process__item:hover .process__num {
    background: var(--c-3) !important;
    border-color: var(--c-3) !important;
    color: #fff !important;
  }
}

/* Estimate — subtle desktop hover (hover-capable devices only) */
@media (min-width: 769px) and (hover: hover) {
  .estimate__sample,
  .estimate__sample.reveal.is-visible {
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
  }

  .estimate__sample:hover,
  .estimate__sample.reveal.is-visible:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 40px 80px rgba(10, 8, 5, 0.4) !important;
    filter: brightness(1.03) !important;
  }
}

/* Estimate — desktop CTA balance inside dark sample card */
@media (min-width: 769px) {
  .estimate__sample .estimate__cta,
  .estimate__sample a.estimate__cta {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 58px !important;
    padding: 0 34px !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    white-space: nowrap !important;
    gap: 16px !important;
    box-sizing: border-box !important;
  }

  .estimate__sample .estimate__cta svg {
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
}

/* Form — subtle desktop hover (hover-capable devices only) */
@media (min-width: 769px) and (hover: hover) {
  .cta .form,
  .cta #leadForm.form,
  .cta #leadForm.form.reveal.is-visible {
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      filter 0.32s ease !important;
  }

  .cta .form:hover,
  .cta #leadForm.form:hover,
  .cta #leadForm.form.reveal.is-visible:hover {
    transform: translateY(-4px) !important;
    box-shadow:
      0 40px 90px rgba(26, 26, 29, 0.16),
      0 12px 28px rgba(26, 26, 29, 0.08) !important;
    border-color: rgba(168, 122, 82, 0.28) !important;
    filter: brightness(1.01) !important;
  }
}

/* Form — desktop submit button balance */
@media (min-width: 769px) {
  .form__submit,
  .cta #leadForm .form__submit {
    width: 100% !important;
    min-height: 58px !important;
    height: auto !important;
    padding: 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .form__submit-text {
    flex: 1 1 auto !important;
    text-align: center !important;
    margin-left: 0 !important;
  }

  .form__submit-arrow {
    flex: 0 0 auto !important;
    margin-left: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta .form:hover,
  .cta #leadForm.form:hover {
    transform: none !important;
    filter: none !important;
  }
}

/* Cookie / privacy notice — compact, non-blocking */
.cookie-notice {
  position: fixed;
  z-index: 9990;
  left: 20px;
  bottom: 24px;
  max-width: min(440px, calc(100vw - 40px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 12px 14px;
  border-radius: var(--r-lg);
  background: rgba(250, 250, 247, 0.9);
  border: 1px solid rgba(168, 122, 82, 0.2);
  box-shadow:
    0 14px 40px rgba(35, 28, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.cookie-notice:not([hidden]) {
  pointer-events: auto;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-notice.is-hiding {
  opacity: 0;
  transform: translateY(8px);
}

.cookie-notice__text {
  flex: 1 1 200px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  flex: 0 1 auto;
}

.cookie-notice__link {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.cookie-notice__link:hover {
  color: var(--c-1);
}

.cookie-notice__btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(168, 122, 82, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.cookie-notice__btn:hover {
  background: #fff;
  border-color: rgba(168, 122, 82, 0.4);
  color: var(--ink);
}

@media (max-width: 768px) {
  .cookie-notice {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: calc(84px + env(safe-area-inset-bottom));
    padding: 10px 12px;
    gap: 8px 10px;
  }

  .cookie-notice__text {
    flex: 1 1 100%;
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie-notice__actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .cookie-notice__link {
    font-size: 12px;
    white-space: normal;
    max-width: 58%;
  }

  .cookie-notice__btn {
    min-height: 44px;
    padding: 0 16px;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice,
  .cookie-notice.is-visible,
  .cookie-notice.is-hiding {
    transition: none;
    transform: none;
  }
}

/* Mobile contact / lead form — always visible, no reveal gap */
@media (max-width: 768px) {
  section.cta,
  section.cta#contact {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
  }

  section.cta .container,
  section.cta .cta__layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
  }

  section.cta .cta__layout::after {
    display: none !important;
  }

  section.cta .cta__info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  section.cta .form,
  section.cta #leadForm.form,
  section.cta #leadForm.form.reveal,
  section.cta #leadForm.form.reveal.is-visible {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }
}

/* Desktop — main case right panel: scroll reveal + hover float (scoped, no contact/mobile impact) */
@media (min-width: 769px) {
  .main-case__panel.reveal {
    opacity: 0 !important;
    transform: translateY(42px) scale(0.985) !important;
    filter: none !important;
    transition:
      opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    will-change: opacity, transform !important;
  }

  .main-case__panel.reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: none !important;
  }
}

@media (min-width: 1025px) and (hover: hover) {
  .main-case__panel,
  .main-case__panel.reveal.is-visible {
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  .main-case__layout:hover .main-case__panel,
  .main-case__layout:hover .main-case__panel.reveal.is-visible {
    transform: translateY(-6px) !important;
    box-shadow:
      0 36px 90px rgba(0, 0, 0, 0.16),
      0 12px 28px rgba(0, 0, 0, 0.08) !important;
  }
}