:root {
  --bg: #0a0b0d;
  --bg-soft: #121419;
  --bg-panel: #151820;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #f4f1ea;
  --muted: #a8a39a;
  --accent: #d8a85f;
  --accent-soft: rgba(216, 168, 95, 0.16);
  --danger: #ff7c64;
  --radius: 26px;
  --radius-lg: 40px;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216,168,95,0.12), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(255,255,255,0.04), transparent 24%),
    linear-gradient(180deg, #0a0b0d 0%, #0d0f13 100%);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(10,11,13,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(216,168,95,0.18), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  flex: 0 0 auto;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.nav a {
  font-size: 13px;
  color: rgba(244,241,234,0.82);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn {
  border: 1px solid rgba(216,168,95,0.35);
  background: linear-gradient(180deg, #e1b16b 0%, #c79348 100%);
  color: #17130d;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(216,168,95,0.22);
}

.btn:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}

.header-cta-mobile {
  display: none;
}

.hero {
  padding: 32px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-left {
  position: relative;
  min-height: 720px;
  padding: 44px 46px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(135deg, rgba(216,168,95,0.08), transparent 42%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 28px 28px auto auto;
  width: 160px;
  height: 160px;
  border-top: 1px solid rgba(216,168,95,0.25);
  border-right: 1px solid rgba(216,168,95,0.25);
  border-radius: 0 26px 0 0;
  pointer-events: none;
}

.hero-kicker {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 34px;
}

.hero-kicker .vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}

.hero-kicker .text {
  max-width: 220px;
  color: var(--muted);
  font-size: 13px;
}

h1 {
  margin: -24px auto 0;
  max-width: 980px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.hero-subline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 72px;
  align-items: start;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.72;
  color: rgba(244,241,234,0.88);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.hero-stat {
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
}

.hero-stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.metric-card,
.quote-card,
.split-card,
.industries-card,
.workflow-card,
.form-panel,
.gallery-card,
.faq-card,
.cta-block,
.contacts-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 14px 0 0;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 700px;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  max-width: 680px;
  justify-self: end;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.split-card {
  padding: 28px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.value-item {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.value-item strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.metric-card {
  padding: 30px;
  display: grid;
  gap: 18px;
  align-content: space-between;
  position: relative;
}

.metric-card::before {
  content: "точность / сроки / тираж";
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}

.metric-line {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
}

.metric-line strong {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 0.92;
  font-weight: 500;
}

.metric-line span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.format-card {
  position: relative;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(216,168,95,0.05), transparent 55%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216,168,95,0.08), transparent 28%);
  pointer-events: none;
}

.format-card > * {
  position: relative;
  z-index: 1;
}

.format-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.format-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(214,223,244,0.92);
  font-size: 14px;
  line-height: 1;
}

.format-code {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
}

.format-card h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 260px;
}

.format-card p {
  margin: 0;
  color: rgba(244,241,234,0.82);
  font-size: 15px;
  line-height: 1.72;
  max-width: 290px;
}

.format-note {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.format-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #86d7ff;
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(134,215,255,0.08);
}

/* --------------------------------------------
   WORKS / GALLERY
--------------------------------------------- */

.gallery-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: stretch;
}

.quote-card {
  padding: 32px;
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.quote-card blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.gallery-card {
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  min-height: 640px;
}

.gallery-main,
.gallery-side-top,
.gallery-side-bottom {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}

.gallery-main::before,
.gallery-main::after,
.gallery-side-top::before,
.gallery-side-top::after,
.gallery-side-bottom::before,
.gallery-side-bottom::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery-main {
  background:
    radial-gradient(circle at 16% 18%, rgba(216,168,95,0.12), transparent 0 20%),
    radial-gradient(circle at 82% 14%, rgba(255,255,255,0.05), transparent 0 14%),
    linear-gradient(180deg, #20242d 0%, #0d1015 100%);
}

.gallery-main::before {
  width: 46%;
  height: 66%;
  right: 12%;
  top: 10%;
  border-radius: 30px;
  transform: rotate(-10deg);
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03) 38%),
    linear-gradient(180deg, rgba(216,168,95,0.18), rgba(19,22,29,0.94));
  box-shadow:
    0 26px 60px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.14);
  z-index: 1;
}

.gallery-main::after {
  width: 22%;
  height: 32%;
  left: 12%;
  top: 18%;
  border-radius: 22px;
  transform: rotate(14deg);
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(216,168,95,0.14), rgba(16,19,24,0.95));
  box-shadow:
    0 18px 38px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.10);
  z-index: 1;
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.gallery-side-top {
  background:
    radial-gradient(circle at 82% 18%, rgba(216,168,95,0.12), transparent 0 18%),
    linear-gradient(180deg, #222733 0%, #0f131a 100%);
}

.gallery-side-top::before {
  inset: 10% 8%;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 40%),
    linear-gradient(180deg, rgba(216,168,95,0.16), rgba(18,22,29,0.96));
  border-radius: 18px;
  opacity: 0.95;
  transform: rotate(-16deg);
  width: 22%;
  height: 34%;
  left: 10%;
  top: 30%;
  box-shadow:
    54px -14px 0 rgba(0,0,0,0),
    108px -28px 0 rgba(0,0,0,0),
    162px -42px 0 rgba(0,0,0,0);
  z-index: 1;
}

.gallery-side-top::after {
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 38%) 12% 56% / 24% 38% no-repeat,
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.02) 38%) 28% 42% / 24% 38% no-repeat,
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 38%) 44% 28% / 24% 38% no-repeat,
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.02) 38%) 60% 14% / 24% 38% no-repeat,
    radial-gradient(circle at 24% 28%, rgba(216,168,95,0.14), transparent 0 14%);
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.26));
  z-index: 1;
}

.gallery-side-bottom {
  background:
    radial-gradient(circle at 18% 24%, rgba(216,168,95,0.10), transparent 0 18%),
    linear-gradient(180deg, #21252e 0%, #0f1319 100%);
}

.gallery-side-bottom::before {
  width: 34%;
  height: 42%;
  left: 14%;
  top: 18%;
  border-radius: 22px;
  transform: rotate(-14deg);
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 38%),
    linear-gradient(180deg, rgba(216,168,95,0.16), rgba(18,22,29,0.96));
  box-shadow:
    0 18px 36px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.10);
  z-index: 1;
}

.gallery-side-bottom::after {
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255,255,255,0.08), transparent 0 14%),
    radial-gradient(circle at 70% 26%, transparent 0 16%, rgba(255,255,255,0.08) 16%, rgba(255,255,255,0.08) 16.8%, transparent 17.4%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 38%) 58% 20% / 22% 30% no-repeat,
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 38%) 68% 48% / 16% 22% no-repeat,
    radial-gradient(circle at 28% 74%, rgba(216,168,95,0.08), transparent 0 16%);
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.22));
  z-index: 1;
}

.gallery-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(10,11,13,0.54);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(7px);
  z-index: 3;
}

.gallery-label strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.gallery-label span {
  color: rgba(244,241,234,0.78);
  font-size: 13px;
  line-height: 1.58;
  display: block;
}

.industries-card {
  padding: 30px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.industry {
  padding: 20px 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

.industry strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.industry p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.workflow-card {
  padding: 30px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.workflow-step {
  position: relative;
  padding: 58px 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  min-height: 220px;
}

.workflow-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--accent);
}

.workflow-step strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: stretch;
}

.form-info,
.form-panel {
  min-height: 100%;
}

.form-info {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.form-info h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.form-info p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  max-width: 430px;
}

.form-points {
  display: grid;
  gap: 14px;
}

.form-point {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(244,241,234,0.88);
  font-size: 15px;
}

.form-panel {
  padding: 30px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field-full textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field-full textarea:focus {
  border-color: rgba(216,168,95,0.5);
  background: rgba(255,255,255,0.045);
}

.field-full textarea {
  min-height: 148px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.checkbox input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.form-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 420px;
}

.faq-card {
  padding: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

details {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-right: 34px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.cta-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  margin-top: 18px;
}

.cta-block h3,
.contacts-intro h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.cta-block p,
.contacts-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  max-width: 760px;
}

.contacts-card {
  margin-top: 18px;
  padding: 34px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contacts-panel {
  display: grid;
  gap: 18px;
}

.contact-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-item {
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

.contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-value {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

.contact-value a {
  color: var(--text);
}

.contact-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer {
  padding: 10px 0 44px;
}

.footer-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(244,241,234,0.82);
  font-size: 14px;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 1180px) {
  .hero-grid,
  .value-grid,
  .gallery-layout,
  .form-wrap,
  .section-head,
  .cta-block,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: auto;
  }

  .hero-subline,
  .gallery-grid,
  .split-grid,
  .industries-grid,
  .workflow-list,
  .faq-grid,
  .formats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-copy {
    justify-self: start;
  }

  .cta-block {
    align-items: start;
  }
}

@media (max-width: 920px) {
  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 12px;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 12px;
  }

  .brand-text strong {
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.12;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding: 8px 0 2px;
  }

  .topbar.menu-open .nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    color: var(--text);
  }

  .hero-left {
    padding: 28px 24px 26px;
  }

  h1 {
    margin: -18px auto 0;
    text-align: center;
    font-size: clamp(38px, 8vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.62;
    text-align: center;
  }

  .hero-subline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 24px;
  }

  .hero-meta {
    gap: 10px;
    margin-top: 26px;
  }

  .hero-subline,
  .hero-meta,
  .split-grid,
  .gallery-grid,
  .gallery-side,
  .industries-grid,
  .workflow-list,
  .lead-form,
  .faq-grid,
  .hero-actions,
  .footer-line,
  .formats-grid,
  .contact-group {
    grid-template-columns: 1fr;
  }

  .section-title,
  .quote-card blockquote,
  .form-info h3,
  .cta-block h3,
  .format-card h3,
  .contacts-intro h3 {
    max-width: none;
  }

  .form-bottom {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .format-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .section {
    padding: 22px 0;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 11px;
  }

  .brand-text strong {
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.1;
  }

  .brand-text span {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-cta-desktop {
    display: none;
  }

  .header-cta-mobile {
    display: inline;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-left,
  .metric-card,
  .quote-card,
  .form-info,
  .form-panel,
  .industries-card,
  .workflow-card,
  .faq-card,
  .cta-block,
  .split-card,
  .format-card,
  .contacts-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-left::before {
    inset: 18px 18px auto auto;
    width: 92px;
    height: 92px;
  }

  .hero-kicker {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-kicker .vertical {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .hero-kicker .text {
    max-width: none;
    font-size: 12px;
    line-height: 1.5;
  }

  h1 {
    margin: -10px auto 0;
    max-width: none;
    text-align: center;
    font-size: clamp(31px, 10.4vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .hero-subline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.58;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost {
    width: auto;
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-stat {
    padding: 14px 0 15px;
  }

  .hero-stat strong {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .hero-stat span {
    font-size: 13px;
    line-height: 1.5;
  }

  .gallery-grid {
    min-height: auto;
  }

  .gallery-main {
    min-height: 320px;
  }

  .gallery-side-top,
  .gallery-side-bottom {
    min-height: 220px;
  }

  .gallery-main::before {
    width: 42%;
    height: 54%;
    right: 10%;
    top: 14%;
    border-radius: 22px;
  }

  .gallery-main::after {
    width: 20%;
    height: 22%;
    left: 10%;
    top: 18%;
    border-radius: 16px;
  }

  .gallery-side-top::after {
    background:
      linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 38%) 10% 54% / 26% 36% no-repeat,
      linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.02) 38%) 26% 40% / 26% 36% no-repeat,
      linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 38%) 42% 26% / 26% 36% no-repeat,
      linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.02) 38%) 58% 12% / 26% 36% no-repeat,
      radial-gradient(circle at 24% 28%, rgba(216,168,95,0.14), transparent 0 14%);
  }

  .gallery-side-bottom::before {
    width: 30%;
    height: 34%;
    left: 12%;
    top: 18%;
    border-radius: 18px;
  }

  .gallery-side-bottom::after {
    background:
      radial-gradient(circle at 76% 28%, rgba(255,255,255,0.08), transparent 0 14%),
      radial-gradient(circle at 70% 26%, transparent 0 16%, rgba(255,255,255,0.08) 16%, rgba(255,255,255,0.08) 16.8%, transparent 17.4%),
      linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 38%) 58% 20% / 24% 28% no-repeat,
      linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 38%) 70% 50% / 18% 18% no-repeat,
      radial-gradient(circle at 28% 74%, rgba(216,168,95,0.08), transparent 0 16%);
  }

  .gallery-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .gallery-label strong {
    font-size: 17px;
  }

  .gallery-label span {
    font-size: 12px;
    line-height: 1.5;
  }

  .split-grid,
  .gallery-grid,
  .gallery-side,
  .industries-grid,
  .workflow-list,
  .lead-form,
  .faq-grid,
  .formats-grid,
  .contact-group,
  .footer-line {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.04;
  }

  .section-copy {
    font-size: 15px;
    line-height: 1.58;
  }

  .quote-card blockquote {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.08;
  }

  .workflow-step {
    min-height: auto;
    padding: 52px 16px 18px;
  }

  .field input,
  .field select,
  .field-full textarea {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .field-full textarea {
    min-height: 120px;
  }

  .form-bottom {
    align-items: stretch;
  }

  .form-bottom .btn {
    width: 100%;
  }

  .form-meta {
    max-width: none;
    font-size: 12px;
  }

  .cta-block {
    gap: 14px;
  }

  .cta-block .btn {
    width: 100%;
  }

  .contact-value {
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 12px;
  }
}

@media (max-width: 390px) {
  h1 {
    margin: -6px auto 0;
    text-align: center;
    font-size: 28px;
    line-height: 1;
  }

  .hero-left {
    padding: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .nav-actions .btn {
    padding: 0 12px;
    font-size: 12px;
  }
}