﻿:root {
  --bg-primary: #0b0c0e;
  --bg-secondary: #121418;
  --bg-card: #171a1f;
  --bg-card-hover: #1c2027;
  --text-primary: #f2efe8;
  --text-secondary: #9aa1ab;
  --accent: #d4a35c;
  --accent-soft: rgba(212, 163, 92, 0.14);
  --border: rgba(242, 239, 232, 0.1);
  --border-strong: rgba(242, 239, 232, 0.18);
  --success-soft: #7d9a88;
  --warning-soft: #b8976a;
  --ink-on-accent: #1a140c;
  --font-display: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --space: clamp(1.1rem, 3.5vw, 2.5rem);
  --max: 1280px;
  --header-h: 4.125rem; /* 66px */
  --header-max: 1380px;
  --header-pad: clamp(1.5rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --text: 1.0625rem;
  --prose: 42rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text);
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--ink-on-accent);
  padding: 0.75rem 1rem;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  left: var(--space);
  top: 0.5rem;
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  background: rgba(11, 12, 14, 0.42);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), height 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(11, 12, 14, 0.92);
  border-bottom-color: var(--border);
  height: 3.5rem;
}

.header-inner {
  width: min(100% - 2 * var(--header-pad), var(--header-max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.site-brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-brand img {
  display: block;
  height: 27.5px;
  width: auto;
}

.site-brand:hover {
  opacity: 0.88;
}

.site-brand:active {
  opacity: 0.84;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.72rem;
  color: #b4bac3;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0.3rem 1.05rem;
  background: transparent;
  border: 1px solid rgba(242, 239, 232, 0.14);
  border-radius: 2px;
  color: #e8e4db !important;
  font-weight: 550;
  font-size: 0.875rem;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-cta:hover {
  border-color: rgba(242, 239, 232, 0.32);
  color: #f2efe8 !important;
  background: transparent;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  color: var(--text-primary);
  font: inherit;
}

.nav-toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-bars span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-primary);
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--ink-on-accent) !important;
}

.btn-primary:hover {
  background: #e0b56f;
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-primary) !important;
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.btn-text {
  background: none;
  border: 0;
  color: var(--accent) !important;
  min-height: auto;
  padding: 0.35rem 0;
  font-weight: 650;
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section {
  padding: 120px 0;
}

.section-head {
  max-width: var(--prose);
  margin-bottom: 56px;
}

.section-head h2,
.block-title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-head h2:last-child,
.section-head .block-title:last-child {
  margin-bottom: 0;
}

.section-head .lead {
  margin: 0;
}

.lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: var(--prose);
}

.note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

#difference .callout {
  margin-top: 0;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.callout {
  margin-top: 0;
  padding: 1.15rem 1.25rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  font-weight: 600;
  max-width: var(--prose);
}

/* Hero */
.hero {
  --hero-accent-matte: #9a6f35;
  --hero-accent-matte-hover: #a87c3c;
  --hero-accent-border: #875f2e;
  --hero-text: #f0ece4;
  --hero-muted: #c4cad3;
  --hero-soft: #d2d6dd;
  position: relative;
  min-height: calc(100svh - var(--header-h) - 80px);
  display: grid;
  align-items: start;
  overflow: hidden;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding-top: calc(clamp(9rem, 27vh, 18rem) - 40px);
  padding-bottom: calc(clamp(3.5rem, 7vh, 6rem) - 40px);
}

.hero-inner {
  width: min(100% - 2 * var(--header-pad), var(--header-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.68fr);
  column-gap: clamp(4rem, 7vw, 7.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 900px;
}

.hero-eyebrow,
.hero h1,
.hero-lead,
.hero-sense,
.hero-soft,
.hero-actions,
.hero-proof {
  animation: hero-rise 0.55s var(--ease) both;
}

.hero-eyebrow { animation-delay: 0ms; }
.hero h1 { animation-delay: 70ms; }
.hero-lead { animation-delay: 140ms; }
.hero-sense { animation-delay: 210ms; }
.hero-soft { animation-delay: 250ms; }
.hero-actions { animation-delay: 320ms; }
.hero-proof { animation-delay: 400ms; }

.hero-eyebrow {
  margin: 0 0 1.875rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #c49a55;
}

.hero h1 {
  margin: 0;
  font-family: "IBM Plex Sans", var(--font-body), system-ui, sans-serif;
  font-size: clamp(3.625rem, 4.8vw, 5.375rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--hero-text);
  max-width: 900px;
}

.hero-br {
  display: block;
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-lead {
  margin: 1.9rem 0 0;
  font-size: clamp(1.125rem, 1.2vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--hero-muted);
  max-width: 45rem;
}

.hero-sense {
  margin: 1.75rem 0 0;
  padding-left: 1.2rem;
  border-left: 1px solid var(--accent);
  font-size: clamp(1.1875rem, 1.28vw, 1.375rem);
  font-weight: 550;
  line-height: 1.42;
  color: var(--hero-text);
  max-width: 43.75rem;
}

.hero-soft {
  margin: 0.7rem 0 0;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  color: var(--hero-soft);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-cta {
  min-height: 48px !important;
  padding: 0.62rem 1.5rem !important;
  width: auto !important;
  background: var(--hero-accent-matte) !important;
  border: 1px solid var(--hero-accent-border) !important;
  border-radius: 2px;
  color: #17130e !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  box-shadow: none !important;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease) !important;
}

.hero-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  background: var(--hero-accent-matte) !important;
}

.hero-cta:active {
  transform: translateY(0);
  filter: none;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  color: #e2e5ea;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}

.hero-link span {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.hero-link:hover {
  color: var(--hero-text);
}

.hero-link:hover span {
  transform: translateX(4px);
}

.hero-proof {
  width: min(100%, 360px);
  max-width: 360px;
  justify-self: end;
  align-self: center;
  margin-top: 4.75rem;
  padding-top: 1.2rem;
  background:
    linear-gradient(rgba(212, 163, 92, 0.78), rgba(212, 163, 92, 0.78)) 0 0 / 48px 1px no-repeat;
}

.hero-proof-num {
  margin: 0 0 1.05rem;
  font-family: "IBM Plex Sans", var(--font-body), system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: #c49a55;
}

.hero-proof-title {
  margin: 0 0 1.05rem;
  font-family: "IBM Plex Sans", var(--font-body), system-ui, sans-serif;
  font-size: clamp(1.375rem, 1.45vw, 1.6875rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hero-text);
}

.hero-proof-text {
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.58;
  color: #b5bbc5;
  max-width: 22.5rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* legacy photo styles kept unused intentionally */
.hero-visual,
.hero-figure,
.hero-aside {
  display: none;
}
/* Origin — экран 02, согласованная спецификация + полировка strike/rule */
/* Origin — экран 02 по ТЗ: 60/40, contain 1:1, top-align */
.origin-section {
  --accent: #c89b45;
  --illust-paper: #f6f2eb;
  --illust-gold: #b8893b;
  --text-primary: #ffffff;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --surface-secondary: var(--bg-secondary);
  height: auto;
  padding: 64px 20px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-secondary);
  box-sizing: border-box;
}

.origin-section__container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-inline: 0;
  box-sizing: border-box;
}

.origin-section__copy {
  width: 100%;
  max-width: 640px;
}

.origin-section__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 650;
  line-height: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c89b45;
  white-space: normal;
}

.brand-cell {
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 1.25px solid var(--accent);
  background: transparent;
  margin-inline: 1.5px;
  transform: translateY(0.5px);
  flex-shrink: 0;
  vertical-align: middle;
  color: transparent;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.origin-section__title {
  margin: 0 0 28px;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: clamp(36px, 9vw, 44px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.origin-section__title-line {
  display: block;
}

.origin-section__lead {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--text-primary);
}

.origin-section__development {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(217, 217, 217, 0.92);
}

.origin-section__strike {
  display: inline;
  color: #9a9a9a;
  font-weight: 400;
  opacity: 1;
  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #c89b45;
  text-decoration-skip-ink: none;
}

.origin-section__replacement {
  color: var(--text-primary);
  font-weight: 600;
  font-size: inherit;
}

.origin-section__rule {
  width: 100%;
  height: 1px;
  margin: 28px 0;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.origin-section__experience {
  margin: 0 0 20px;
  max-width: 640px;
  padding: 0;
  border: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(244, 241, 235, 0.86);
}

.origin-section__conclusion {
  margin: 0;
  max-width: 590px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--text-primary);
}

.origin-section__conclusion::before {
  display: none;
}

.origin-section__media {
  margin: 36px auto 0;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1024 / 682;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  /* Пластина = фон арта #F6F2EB — не карточка, а единое поле */
  background: var(--illust-paper);
  filter: none;
}

.origin-section__media picture,
.origin-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

/* Планшет: картинка под текстом, 420×420 */
@media (min-width: 768px) and (max-width: 1279px) {
  .origin-section {
    padding: 80px 28px;
  }

  .origin-section__container {
    max-width: 720px;
    padding-inline: 0;
  }

  .origin-section__eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
    white-space: nowrap;
    color: #c89b45;
  }

  .brand-cell {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
    margin-inline: 2px;
  }

  .origin-section__title {
    font-size: 44px;
    font-weight: 650;
    line-height: 1.02;
    margin-bottom: 28px;
  }

  .origin-section__title-line {
    white-space: nowrap;
  }

  .origin-section__lead {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 28px;
  }

  .origin-section__development {
    font-size: 17px;
    line-height: 27px;
    margin: 0;
  }

  .origin-section__rule {
    margin: 28px 0;
  }

  .origin-section__experience {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .origin-section__conclusion {
    font-size: 22px;
    line-height: 30px;
  }

  .origin-section__media {
    margin: 40px auto 0;
    width: 420px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1024 / 682;
    background: var(--illust-paper);
  }

  .origin-section__media picture,
  .origin-section__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

/* Ноутбук 1280–1439: ~500×500, gap 80, top-align */
@media (min-width: 1280px) and (max-width: 1439px) {
  .origin-section {
    padding-top: 48px;
    padding-bottom: 110px;
    padding-inline: 0;
  }

  .origin-section__container {
    display: grid;
    grid-template-columns: minmax(0, 575px) 567px;
    column-gap: 72px;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(40px, 5vw, 80px);
    box-sizing: border-box;
  }

  .origin-section__copy {
    max-width: 575px;
    width: 100%;
  }

  .origin-section__eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 0 24px;
    font-size: 12px;
    font-weight: 650;
    line-height: 16px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    color: #c89b45;
  }

  .brand-cell {
    width: 9px;
    height: 9px;
    border: 1.5px solid var(--accent);
    margin-inline: 2px;
  }

  .origin-section__title {
    margin: 0 0 44px;
    font-size: 52px;
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--text-primary);
  }

  .origin-section__title-line {
    display: block;
    white-space: nowrap;
  }

  .origin-section__lead {
    margin: 0 0 46px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-primary);
  }

  .origin-section__development {
    margin: 0;
    max-width: 575px;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
  }

  .origin-section__strike {
    display: inline;
    color: #9a9a9a;
    font-weight: 400;
    opacity: 1;
    text-decoration-line: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: #c89b45;
    text-decoration-skip-ink: none;
  }

  .origin-section__replacement {
    color: var(--text-primary);
    font-weight: 600;
  }

  .origin-section__rule {
    width: 100%;
    height: 1px;
    margin: 32px 0;
    background: rgba(255, 255, 255, 0.08);
  }

  .origin-section__experience {
    margin: 0 0 24px;
    max-width: 575px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(244, 241, 235, 0.86);
  }

  .origin-section__conclusion {
    position: relative;
    margin: 4px 0 0;
    max-width: 575px;
    padding-left: 24px;
    border-left: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: var(--text-primary);
  }

  .origin-section__conclusion::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 72px;
    background: var(--accent);
  }

  .origin-section__media {
    margin: 40px 0 0;
    width: 567px;
    max-width: 567px;
    height: auto;
    aspect-ratio: 1024 / 682;
    align-self: start;
    justify-self: end;
    background: var(--illust-paper);
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .origin-section__media picture,
  .origin-section__media img {
    display: block;
    width: 567px;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}

@media (min-width: 1440px) {
  .origin-section {
    padding-top: 48px;
    padding-bottom: 110px;
    padding-inline: 0;
  }

  .origin-section__container {
    display: grid;
    grid-template-columns: 575px 567px;
    column-gap: 72px;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: 80px;
    box-sizing: border-box;
  }

  .origin-section__copy {
    max-width: 575px;
    width: 100%;
  }

  .origin-section__eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 0 24px;
    font-size: 12px;
    font-weight: 650;
    line-height: 16px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    color: #c89b45;
  }

  .brand-cell {
    width: 9px;
    height: 9px;
    border: 1.5px solid var(--accent);
    margin-inline: 2px;
  }

  .origin-section__title {
    margin: 0 0 44px;
    font-size: 56px;
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--text-primary);
  }

  .origin-section__title-line {
    display: block;
    white-space: nowrap;
  }

  .origin-section__lead {
    margin: 0 0 46px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-primary);
  }

  .origin-section__development {
    margin: 0;
    max-width: 575px;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
  }

  .origin-section__strike {
    display: inline;
    color: #9a9a9a;
    font-weight: 400;
    opacity: 1;
    text-decoration-line: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: #c89b45;
    text-decoration-skip-ink: none;
  }

  .origin-section__replacement {
    color: var(--text-primary);
    font-weight: 600;
  }

  .origin-section__rule {
    width: 100%;
    height: 1px;
    margin: 32px 0;
    background: rgba(255, 255, 255, 0.08);
  }

  .origin-section__experience {
    margin: 0 0 24px;
    max-width: 575px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(244, 241, 235, 0.86);
  }

  .origin-section__conclusion {
    position: relative;
    margin: 4px 0 0;
    max-width: 575px;
    padding-left: 24px;
    border-left: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: var(--text-primary);
  }

  .origin-section__conclusion::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 72px;
    background: var(--accent);
  }

  .origin-section__media {
    margin: 48px 0 0;
    width: 567px;
    max-width: 567px;
    height: auto;
    aspect-ratio: 1024 / 682;
    align-self: start;
    justify-self: end;
    background: var(--illust-paper);
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .origin-section__media picture,
  .origin-section__media img {
    display: block;
    width: 567px;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}

.thesis {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.thesis li {
  padding-left: 1rem;
  position: relative;
  color: var(--text-secondary);
}

.thesis li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.media-frame {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  min-height: 240px;
}

.media-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.expand-panel {
  margin-top: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), margin 0.3s var(--ease);
}

.expand-panel.is-open {
  max-height: 420px;
  opacity: 1;
  margin-top: 1.15rem;
}

.expand-panel p {
  margin: 0;
  color: var(--text-secondary);
  max-width: var(--prose);
}

/* Service cards */
.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.svc-card {
  background: var(--bg-card);
  padding: 8px 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.svc-card:hover {
  background: var(--bg-card-hover);
}

.svc-card.is-open {
  background: var(--bg-card-hover);
}

.svc-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.svc-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

.svc-price small {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.svc-card > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.svc-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.svc-highlights li {
  color: var(--text-primary);
  font-size: 0.92rem;
  padding-left: 0.85rem;
  position: relative;
}

.svc-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--accent);
}

.svc-price-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.15rem;
}

.svc-details {
  display: none;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.35rem;
}

.svc-card.is-open .svc-details {
  display: block;
  animation: fade-up 0.35s var(--ease);
}

.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.svc-tab {
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
}

.svc-tab[aria-selected="true"] {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.svc-tabpanel {
  display: none;
}

.svc-tabpanel.is-active {
  display: block;
}

.svc-tabpanel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.svc-tabpanel li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 0.9rem;
  position: relative;
}

.svc-tabpanel[data-kind="in"] li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--success-soft);
}

.svc-tabpanel[data-kind="out"] li::before,
.svc-tabpanel[data-kind="extra"] li::before,
.svc-tabpanel[data-kind="price"] li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--warning-soft);
}

.svc-tabpanel[data-kind="steps"] li::before,
.svc-tabpanel[data-kind="visual"] li::before,
.svc-tabpanel[data-kind="detail"] li::before,
.svc-tabpanel[data-kind="electronics"] li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.mini-form {
  display: grid;
  gap: 0.55rem;
}

.mini-form input,
.mini-form select {
  font: inherit;
  min-height: 44px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Extras strip */
.extras {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.extra-chip {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
  text-align: left;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.extra-chip:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.extra-chip strong {
  display: block;
  margin-bottom: 0.25rem;
}

.extra-chip span {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.extra-chip p {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.extra-pop {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  display: none;
}

.extra-pop.is-open {
  display: block;
  animation: fade-up 0.3s var(--ease);
}

/* Comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
}

.compare-col {
  background: var(--bg-card);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.compare-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.compare-col.them h3 {
  color: var(--text-secondary);
}

.compare-col.us {
  background: var(--accent-soft);
}

.compare-col.us h3 {
  color: var(--accent);
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.compare-col li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--border);
}

.compare-col.us li {
  color: var(--text-primary);
  border-left-color: rgba(212, 163, 92, 0.55);
}

/* Responsibility */
.resp {
  background: #08090b;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.resp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  counter-reset: r;
}

.resp-steps li {
  list-style: none;
  counter-increment: r;
  padding-top: 1.75rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.resp-steps li::before {
  content: "0" counter(r);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* Process stepper */
.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  background: var(--border);
  border: 1px solid var(--border);
}

.step + .step {
  border-left: 1px solid var(--border);
}

.step {
  background: var(--bg-card);
  border: 0;
  text-align: left;
  padding: calc(1.35rem + 5px) 1.15rem;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.step:hover,
.step[aria-expanded="true"] {
  background: var(--bg-card-hover);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.step strong {
  display: block;
  margin-bottom: 0.35rem;
}

.step span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step-more {
  display: none;
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step[aria-expanded="true"] .step-more {
  display: block;
}

/* Pricing transparency */
.price-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 0 1.5rem;
}

.price-teaser article {
  background: var(--bg-card);
  padding: 1.25rem;
}

.price-teaser h3 {
  margin: 0;
  font-size: 1rem;
}

/* --- Section: two work models (#services) — geometry stage --- */
.section.section-services {
  background: #090b0d;
  padding: 72px 0 78px;
}

.services-container {
  width: 100%;
  max-width: 1380px;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.services-label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d6a441;
}

.services-title {
  margin: 12px 0 28px;
  max-width: none;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #f4f1ea;
}

.services-lead {
  margin: 0 0 30px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: #a6abb2;
}

.services-models {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 37px;
  align-items: stretch;
}

/* Services PNG assets — fixed display sizes, no filters/scaling */
.section-services img.asset {
  display: block;
  object-fit: contain;
  image-rendering: auto;
  user-select: none;
  pointer-events: none;
}

.svc-asset--fbo-icon {
  width: 88px;
  height: 88px;
}

.svc-asset--fbs-icon {
  width: 72px;
  height: 72px;
}

.svc-asset--fbo-scheme {
  width: 100%;
  max-width: none;
  height: auto;
}

.svc-asset--op {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.svc-asset--seal {
  width: 185px;
  height: 185px;
  flex-shrink: 0;
}

.svc-model {
  min-height: 300px;
  height: auto;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0f12;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.svc-model:hover {
  background: #111418;
  border-color: rgba(214, 164, 65, 0.55);
}

.svc-model__rail {
  flex: 0 0 113px;
  width: 113px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 0 26px;
  border-right: 1px solid rgba(160, 125, 50, 0.45);
}

.svc-model__body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 30px 26px 28px;
  box-sizing: border-box;
}

.svc-model__head {
  width: 100%;
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(221, 160, 70, 0.75);
}

.svc-model__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #dda046;
}

.svc-model__desc {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
}

.svc-model__mid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  padding: 12px 0 10px;
}

.svc-model__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
  width: max-content;
  max-width: 240px;
  min-width: 0;
}

.svc-model__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #ffffff;
}

.svc-model__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  background: #dda046;
}

.svc-model__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 15px;
  font-weight: 700;
  color: #dda046;
  transition: color 180ms ease;
}

.svc-model__arrow {
  display: inline-block;
  transition: transform 180ms ease;
}

.svc-model:hover .svc-model__arrow {
  transform: translateX(4px);
}

.services-ops {
  margin-top: 26px;
}

.services-ops__title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: #f2efe9;
}

.services-ops__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 12px;
  column-gap: 14px;
}

.services-ops__grid li {
  width: auto;
  height: 60px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101317;
  border-radius: 3px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #e8e4dc;
}

.services-accent {
  margin-top: 26px;
  min-height: 184px;
  height: 184px;
  box-sizing: border-box;
  border: 1px solid rgba(214, 164, 65, 0.45);
  border-left: 4px solid #d6a441;
  background: #0d1013;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2px;
}

.services-accent__left {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 0;
  padding: 18px 28px 18px 24px;
  box-sizing: border-box;
}

.services-accent__media {
  width: 200px;
  height: 148px;
  min-height: 148px;
  max-height: 148px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.services-accent__headline {
  margin: 0;
  display: grid;
  gap: 8px;
}

.services-accent__line {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #f4f1ea;
}

.services-accent__line--gold {
  color: #d6a441;
}

.services-accent__right {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 18px 32px;
}

.services-accent__right p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #d0d1d2;
}

.services-accent__right em {
  font-style: normal;
  color: #d6a441;
  font-weight: 650;
}

@media (max-width: 1320px) {
  .services-ops__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .services-ops__grid li {
    width: auto;
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .services-title {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
  }

  .services-accent {
    grid-template-columns: 1fr;
  }

  .services-accent__left {
    grid-template-columns: 230px 1fr;
  }

  .services-accent__right {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
  }

  .services-accent__line {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  }

  .services-ops__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .services-models {
    grid-template-columns: 1fr;
  }

  .svc-model__mid {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .services-ops__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-accent__left {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .services-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-services {
    padding: 64px 0 72px;
  }

  .services-ops__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-ops__grid li {
    width: auto;
  }
}

/* /services page */
.svc-scheme-label {
  margin: 1.5rem 0 0.85rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.mode-switch {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--border);
  margin-bottom: 1.5rem;
}

.mode-switch__btn {
  appearance: none;
  border: 0;
  background: var(--bg-card);
  color: var(--text-secondary);
  font: inherit;
  font-weight: 650;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  min-width: 6.5rem;
}

.mode-switch__btn.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.svc-mode-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  letter-spacing: -0.03em;
}

.svc-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
}

.svc-check-list li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--text-primary);
  font-size: 1rem;
}

.svc-bullet {
  color: var(--accent);
  font-weight: 700;
}

.svc-check-list--out li {
  color: var(--text-secondary);
}

.svc-price-table-wrap {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}

.svc-price-table {
  width: 100%;
  border-collapse: collapse;
}

.svc-price-table th,
.svc-price-table td {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.svc-price-table tr:last-child th,
.svc-price-table tr:last-child td {
  border-bottom: 0;
}

.svc-price-table th {
  font-weight: 500;
  color: var(--text-primary);
}

.svc-price-table td {
  white-space: nowrap;
  color: var(--text-primary);
  text-align: right;
}

.svc-unit {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: var(--space);
  background: rgba(0, 0, 0, 0.65);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(100%, 420px);
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  padding: 1.5rem;
}

.modal-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}

.modal-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-secondary);
}

/* Owners */
.owners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.owner {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.15rem;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-items: start;
  min-height: 220px;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.media-stack {
  display: grid;
  gap: 0.75rem;
}

.owner-photo {
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  overflow: hidden;
}

.owner-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.owner .role {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-weight: 650;
  font-size: 0.9rem;
}

.owner p {
  margin: 0;
  color: var(--text-secondary);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.audience-grid article {
  background: var(--bg-card);
  padding: 1.25rem;
}

.audience-grid h3 {
  margin: 0;
  font-size: 1rem;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  min-height: 64px;
  box-sizing: border-box;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 64px;
  height: 64px;
  box-sizing: border-box;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "в€’";
}

.faq details p {
  margin: 0.25rem 0 0.5rem;
  color: var(--text-secondary);
  max-width: var(--prose);
}

.faq details a {
  color: var(--accent);
}

/* Final CTA + form */
.final {
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(212, 163, 92, 0.12), transparent 50%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.final-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  font: inherit;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text-primary);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-status {
  margin: 0;
  color: var(--success-soft);
  font-weight: 650;
}

.form-status[hidden] {
  display: none;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.15rem 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 5.5rem;
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.75rem;
}

.footer-grid h3 {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-grid a {
  text-decoration: none;
  color: var(--text-secondary);
}

.footer-meta {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* Sticky mobile CTA */
.sticky-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.65rem var(--space) calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(11, 12, 14, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.sticky-mobile .btn {
  width: 100%;
}

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.035em;
}

.inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 1.25rem 0;
}

.inc-exc > div {
  background: var(--bg-card);
  padding: 1.15rem;
}

.inc-exc h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.inc-exc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.inc-exc li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding-left: 0.85rem;
  position: relative;
}

.inc-exc .in li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--success-soft);
}

.inc-exc .out li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--warning-soft);
}

/* Price page inherits dark vars; tables */
.price-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: rgba(11, 12, 14, 0.94);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  backdrop-filter: blur(10px);
}

.price-nav-inner {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
}

.price-nav a {
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.price-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.price-tools input[type="search"] {
  flex: 1;
  min-width: 200px;
  min-height: 48px;
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text-primary);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin: 1rem 0 2rem;
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  font-size: 0.9rem;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--bg-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.price-table tr.is-hidden {
  display: none;
}

.price-line {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 3.5rem);
}

.offer-body h2 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.offer-body p,
.offer-body li {
  color: var(--text-secondary);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1279px) and (min-width: 981px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    column-gap: clamp(2.75rem, 4vw, 4.25rem);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 4.4vw, 3.75rem);
  }

  .hero-proof {
    width: min(100%, 330px);
    max-width: 330px;
    margin-top: 3.75rem;
  }
}

@media (max-height: 800px) and (min-width: 1100px) {
  .hero {
    padding-top: clamp(4.05rem, 10.8vh, 6.3rem);
    padding-bottom: clamp(2.25rem, 4.5vh, 3.5rem);
  }

  .hero-proof {
    margin-top: 2.25rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 3.8vw, 4rem);
  }

  .hero-lead {
    margin-top: 1.25rem;
  }

  .hero-sense {
    margin-top: 1.2rem;
  }

  .hero-soft {
    margin-top: 0.55rem;
  }
}

@media (max-width: 1023px) {
  .site-header {
    height: 3.75rem;
  }

  .site-header.is-scrolled {
    height: 3.5rem;
  }

  .site-brand img {
    height: 24.2px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 12, 14, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0 1rem;
    margin-left: 0;
  }

  .nav.is-open {
    display: flex;
    z-index: 60;
  }

  .nav a {
    padding: 0.85rem var(--header-pad);
    min-height: 44px;
  }

  .nav-cta {
    margin: 0.4rem var(--header-pad) 0;
    align-self: flex-start;
  }

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-block: clamp(3.6rem, 6.3vh, 4.725rem) clamp(4.75rem, 9vh, 6rem);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6vw, 3.4rem);
    line-height: 1.03;
  }

  .hero-br {
    display: none;
  }

  .hero-nowrap {
    white-space: normal;
  }

  .hero-proof {
    justify-self: start;
    width: 100%;
    max-width: 420px;
    margin-top: 3.75rem;
    padding-top: 1.7rem;
    background: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 980px) {
  .service-showcase,
  .compare,
  .resp-steps,
  .stepper,
  .price-teaser,
  .audience-grid,
  .final-grid,
  .footer-grid,
  .inc-exc {
    grid-template-columns: 1fr;
  }

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

  .step + .step {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .owner {
    grid-template-columns: 96px 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 3.625rem;
  }

  .site-header.is-scrolled {
    height: 3.5rem;
  }

  .site-brand img {
    height: 23.1px;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(3.375rem, 8.1vh, 4.05rem);
    padding-bottom: clamp(4.75rem, 11vh, 5.75rem);
  }

  .hero-inner {
    width: min(100% - 2 * var(--header-pad), var(--header-max));
  }

  .hero-eyebrow {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.625rem, 11.8vw, 3.5rem);
    line-height: 1.01;
    letter-spacing: -0.025em;
    margin-bottom: 0;
  }

  .hero-br {
    display: none;
  }

  .hero-nowrap {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .hero-sense {
    margin-top: 1.5rem;
    font-size: 1.175rem;
    line-height: 1.4;
    padding-left: 1.1rem;
  }

  .hero-soft {
    margin-top: 0.7rem;
    font-size: 0.975rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.05rem;
    margin-top: 1.85rem;
  }

  .hero-cta {
    width: 100% !important;
    max-width: none;
  }

  .hero-link {
    justify-content: flex-start;
  }

  .hero-proof {
    margin-top: 3.75rem;
    padding-top: 1.75rem;
    width: 100%;
    max-width: none;
    background: none;
    border-top: 1px solid var(--border);
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-mobile {
    display: block;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .site-header,
  .sticky-mobile,
  .nav-toggle {
    display: none !important;
  }
}


/* === RHYTHM EXCEPTIONS (layout only) === */
#responsibility.section,
.section.resp {
  padding-top: 90px;
  padding-bottom: 90px;
}

#audience.section {
  padding-bottom: 80px;
}

#audience .section-head {
  margin-bottom: 76px;
}

#difference.section {
  padding-top: 150px;
}

/* Origin after hero: do not override — keep existing origin-section rules */

/* Desktop presentation scale: match approved 90% browser look at zoom 100% */
@media (min-width: 1440px) {
  body {
    zoom: 0.9;
  }
}
