/* ===========================================
   STROY BURO — Landing v2 (Sales-optimized)
   Mobile-first, refined minimal
   =========================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Палитра */
  --bg: #F0EBE0;
  --surface: #F7F4EC;
  --surface-2: #E8E2D4;
  --surface-3: #DDD5C2;
  --ink: #1A1815;
  --ink-soft: #4A453E;
  --ink-muted: #7A7569;
  --ink-light: #ABA597;
  --accent: #7A4F3A;
  --accent-soft: #A47358;
  --accent-bg: rgba(122, 79, 58, 0.08);
  --success: #5A7A4A;
  --success-soft: #7A9A6A;
  --danger: #9B5050;
  --hairline: rgba(26, 24, 21, 0.12);
  --hairline-strong: rgba(26, 24, 21, 0.2);
  --shadow-sm: 0 1px 2px rgba(26, 24, 21, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 24, 21, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 24, 21, 0.08);

  /* Типографика */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Размеры */
  --container-max: 1280px;
  --container-pad-mob: 20px;
  --container-pad-tab: 32px;
  --container-pad-des: 64px;

  /* Скругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Анимации */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: #F0EBE0;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  background-color: #F0EBE0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  color-scheme: light;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad-mob);
  padding-right: var(--container-pad-mob);
}

/* ---------- TYPOGRAPHY ---------- */
.hero-title,
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-title em,
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
}

.section-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 40px;
  max-width: 720px;
}
.section-lead {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 600px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 235, 224, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad-mob);
  padding-right: var(--container-pad-mob);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark {
  width: 22px;
  height: 22px;
  color: var(--ink);
}
.brand-mark rect[fill="currentColor"] {
  fill: var(--accent);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'opsz' 14, 'SOFT' 20;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.header-cta:hover {
  background: var(--accent);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.1s;
  min-height: 56px;
  width: auto;
}
.btn-primary:hover { background: var(--accent); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-block { width: 100%; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-align: center;
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-secondary-light {
  border-color: var(--hairline-strong);
  color: var(--ink-soft);
}
.btn-secondary-light:hover {
  background: var(--ink-soft);
  color: var(--bg);
  border-color: var(--ink-soft);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-secondary {
  color: var(--ink-muted);
  border-bottom-color: transparent;
  font-weight: 400;
}
.link-secondary:hover { color: var(--ink-soft); border-bottom-color: var(--ink-muted); }

/* ---------- HERO ---------- */
.hero {
  padding-top: 32px;
  padding-bottom: 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(40px, 9vw, 84px);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-anchors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hero-anchors li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-anchors strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-anchors span {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ---------- HERO FORM ---------- */
.hero-form {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.field .optional {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-light);
  font-weight: 400;
}
.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s;
  border-radius: 0;
}
.field input[type="text"]:focus,
.field input[type="tel"]:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field input::placeholder { color: var(--ink-light); }
.field input.error { border-bottom-color: var(--danger); }

.form-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-muted);
}
.form-note a { color: var(--ink-soft); border-bottom: 1px solid var(--hairline); }
.form-note a:hover { color: var(--accent); }

.hero-secondary-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-photo-frame {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.photo-placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      var(--surface-2) 0px,
      var(--surface-2) 18px,
      var(--surface-3) 18px,
      var(--surface-3) 36px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--hairline-strong);
}
.photo-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-align: center;
  text-transform: uppercase;
  padding: 16px;
  background: rgba(247, 244, 236, 0.85);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}
.hero-photo-meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 8px;
}
.meta-num { color: var(--accent); font-weight: 500; }

/* ---------- BLOCK 02. TRUST ---------- */
.trust {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.trust-owner {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
}
.owner-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.owner-photo .photo-label {
  font-size: 8px;
  padding: 4px;
  line-height: 1.3;
}
.owner-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 24;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.owner-role {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.owner-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 14, 'SOFT' 100;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.trust-creds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.creds-block {
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
}
.creds-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.creds-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 24;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.rating-star {
  color: var(--accent);
  font-size: 20px;
}
.creds-meta-inline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
}
.creds-meta {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.creds-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.creds-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.creds-link svg { width: 12px; height: 12px; }

/* ---------- BLOCK 03. COMPARE ---------- */
/* На мобильном — карточки вместо таблицы */
.compare-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-table-wrap {
  display: none;
}
.ccard {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ccard-us {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  position: relative;
  box-shadow: var(--shadow-md);
}
.ccard-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.ccard-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.ccard-us .ccard-head {
  border-bottom-color: rgba(240, 235, 224, 0.15);
}
.ccard-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.ccard-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 24;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
}
.ccard-us .ccard-name {
  color: var(--bg);
}
.ccard-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-muted);
}
.ccard-us .ccard-meta {
  color: rgba(240, 235, 224, 0.6);
}
.ccard-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ccard-list li {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  line-height: 1.4;
  align-items: baseline;
}
.ccard-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ccard-us .ccard-list li {
  border-bottom-color: rgba(240, 235, 224, 0.1);
}
.ccard-key {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.ccard-us .ccard-key {
  color: rgba(240, 235, 224, 0.5);
}
.ccard-val {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.val-x {
  color: var(--ink-muted);
}
.val-x::before {
  content: '—';
  color: var(--ink-light);
  flex-shrink: 0;
}
.val-ok {
  color: var(--ink-soft);
  font-weight: 500;
}
.val-ok::before {
  content: '✓';
  color: var(--success-soft);
  font-weight: 600;
  flex-shrink: 0;
}
.val-strong {
  color: var(--bg);
  font-weight: 600;
}
.val-strong::before {
  content: '✓';
  color: var(--accent-soft);
  font-weight: 700;
  flex-shrink: 0;
}

.compare {
  padding: 80px 0;
}
.section-title {
  font-size: clamp(28px, 5.5vw, 56px);
  margin-bottom: 0;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
}
.compare-table thead th {
  background: var(--surface-2);
  border-bottom: 1px solid var(--hairline-strong);
  vertical-align: bottom;
  padding-top: 20px;
  padding-bottom: 20px;
}
.th-param {
  width: 22%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.th-col { width: 26%; }
.th-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 14;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.th-meta {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1.4;
}
.compare-table thead th.th-us {
  background: var(--ink);
}
.th-us .th-name { color: var(--bg) !important; }
.th-us .th-meta { color: rgba(240, 235, 224, 0.7) !important; }

.compare-table tbody th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
  background: var(--surface-2);
}
.compare-table .td-us {
  background: rgba(122, 79, 58, 0.06);
  border-right: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.compare-table tbody tr:last-child .td-us {
  border-bottom: 1px solid var(--accent);
}
.compare-table tbody tr:first-child .td-us {
  border-top: 1px solid var(--accent);
}

.cell-x, .cell-ok, .cell-strong {
  font-size: 13px;
  line-height: 1.4;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}
.cell-x {
  color: var(--ink-muted);
  font-weight: 400;
}
.cell-x::before {
  content: '—';
  color: var(--ink-light);
  font-weight: 500;
  flex-shrink: 0;
}
.cell-ok {
  color: var(--ink-soft);
  font-weight: 500;
}
.cell-ok::before {
  content: '✓';
  color: var(--success-soft);
  font-weight: 600;
  flex-shrink: 0;
}
.cell-strong {
  color: var(--ink);
  font-weight: 600;
}
.cell-strong::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.compare-note {
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 14, 'SOFT' 100;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BLOCK 04. SMETA ---------- */
.smeta {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.smeta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.smeta-content .section-title { margin-bottom: 24px; }
.smeta-text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.smeta-text strong { color: var(--ink); font-weight: 600; }

.smeta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

/* Smeta document mockup */
.smeta-doc {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
  box-shadow: var(--shadow-md);
}
.smeta-doc-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
  background: var(--surface-2);
}
.smeta-doc-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 14;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.smeta-doc-meta {
  display: block;
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.smeta-doc-table {
  padding: 8px 0;
}
.smeta-row {
  display: grid;
  grid-template-columns: 32px 1fr 36px 44px 70px;
  gap: 8px;
  padding: 6px 16px;
  align-items: baseline;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.smeta-row > span:first-child {
  color: var(--ink-muted);
  font-weight: 500;
}
.smeta-row-name { color: var(--ink); }
.smeta-row-unit, .smeta-row-qty {
  text-align: right;
  color: var(--ink-muted);
}
.smeta-row-sum {
  text-align: right;
  color: var(--ink);
  font-weight: 500;
}
.smeta-row-head {
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-muted) !important;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 8px !important;
  padding-top: 4px !important;
  margin-bottom: 4px;
}
.smeta-row-head > * { color: var(--ink-muted) !important; font-weight: 500 !important; }
.smeta-section-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 14;
  font-size: 12px;
  color: var(--accent);
  padding: 12px 16px 6px;
  letter-spacing: -0.005em;
}
.smeta-row-dim { color: var(--ink-light); font-style: italic; }
.smeta-row-dim > span:first-child,
.smeta-row-dim .smeta-row-name { color: var(--ink-light); }
.smeta-doc-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 20px;
  border-top: 1px solid var(--hairline);
  background: var(--surface-2);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.smeta-doc-foot strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'opsz' 14;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}
.smeta-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- BLOCK 05. PROCESS ---------- */
.process {
  padding: 80px 0;
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.2s;
}
.process-item:hover {
  background: var(--surface);
  margin: 0 calc(var(--container-pad-mob) * -1);
  padding-left: var(--container-pad-mob);
  padding-right: var(--container-pad-mob);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding-top: 4px;
}
.process-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 24;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--ink);
}
.process-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.process-time {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- BLOCK 06. FAQ ---------- */
.faq {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.faq-list {
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s;
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 24;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--ink-muted);
  transition: transform 0.3s var(--ease), color 0.2s;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-item[open] summary { color: var(--accent); }
.faq-answer {
  padding-bottom: 22px;
  padding-right: 36px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 600; }

/* ---------- BLOCK 07. CTA-FINAL ---------- */
.cta-final {
  padding: 80px 0;
  background: var(--bg);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.cta-content .section-title {
  margin-top: 0;
  margin-bottom: 20px;
}
.cta-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.channel-link {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding 0.2s, color 0.2s;
}
.channel-link:hover {
  padding-left: 8px;
  color: var(--accent);
}
.channel-link svg {
  width: 24px;
  height: 24px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.channel-link:hover svg { color: var(--accent); }
.channel-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 14;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 2px;
}
.channel-link:hover .channel-name { color: var(--accent); }
.channel-meta {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
}

/* CTA form */
.cta-form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
}
.cta-form-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 24;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink);
}
.cta-form .field {
  margin-bottom: 20px;
}
.field-files .file-drop {
  margin-top: 8px;
  position: relative;
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-align: center;
}
.file-drop.is-dragover {
  border-color: var(--accent);
  background: var(--accent-bg);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-drop-content {
  pointer-events: none;
}
.file-drop-content svg {
  width: 28px;
  height: 28px;
  color: var(--ink-muted);
  margin: 0 auto 10px;
}
.file-drop-text {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.file-drop-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.file-drop-hint {
  font-size: 11px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.file-list {
  margin-top: 12px;
}
.file-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  font-size: 13px;
}
.file-list li button {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: color 0.2s, background 0.2s;
}
.file-list li button:hover {
  color: var(--danger);
  background: var(--surface-2);
}
.file-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
}
.file-size {
  font-size: 11px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 60px 0 32px;
  background: var(--ink);
  color: rgba(240, 235, 224, 0.85);
  font-size: 13px;
  line-height: 1.65;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(240, 235, 224, 0.12);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(240, 235, 224, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(240, 235, 224, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.footer-col a:hover {
  color: var(--bg);
  border-bottom-color: rgba(240, 235, 224, 0.4);
}
.footer-meta {
  font-size: 12px;
  color: rgba(240, 235, 224, 0.55);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(240, 235, 224, 0.5);
  text-transform: uppercase;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

/* Tablet (≥720px) */
@media (min-width: 720px) {
  .container {
    padding-left: var(--container-pad-tab);
    padding-right: var(--container-pad-tab);
  }
  .nav {
    padding-left: var(--container-pad-tab);
    padding-right: var(--container-pad-tab);
  }
  .nav-links { display: flex; }

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

  /* Compare: cards → table */
  .compare-cards { display: none; }
  .compare-table-wrap { display: block; }

  .hero {
    padding-top: 56px;
    padding-bottom: 100px;
  }

  .hero-anchors {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .trust-creds {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .trust-creds .creds-block:first-child {
    grid-column: span 2;
  }

  .smeta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .smeta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-item {
    grid-template-columns: 80px 1fr auto;
    align-items: baseline;
  }
  .process-time {
    grid-column: 3;
    grid-row: 1;
    margin-top: 4px;
  }

  .faq-grid {
    grid-template-columns: 320px 1fr;
    gap: 56px;
  }

  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }

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

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  .container {
    padding-left: var(--container-pad-des);
    padding-right: var(--container-pad-des);
  }
  .nav {
    padding-left: var(--container-pad-des);
    padding-right: var(--container-pad-des);
  }

  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-photo-frame {
    aspect-ratio: 4 / 5;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .compare,
  .smeta,
  .process,
  .faq,
  .cta-final {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .trust { padding: 80px 0; }

  .trust-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 80px;
  }

  .smeta-grid {
    gap: 80px;
  }

  .cta-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

/* Large desktop (≥1440px) */
@media (min-width: 1440px) {
  .hero-title {
    font-size: clamp(56px, 6vw, 96px);
  }
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.7s var(--ease-out),
      transform 0.7s var(--ease-out);
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal-delay="1"] { transition-delay: 0.05s; }
  [data-reveal-delay="2"] { transition-delay: 0.10s; }
  [data-reveal-delay="3"] { transition-delay: 0.15s; }
  [data-reveal-delay="4"] { transition-delay: 0.20s; }
}

/* ===========================================
   PORTFOLIO SECTION
   =========================================== */
.portfolio {
  padding: 80px 0;
  background: var(--surface);
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pf-btn {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.pf-btn:hover { border-color: var(--accent); color: var(--accent); }
.pf-btn.pf-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.pcard {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.pcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pcard.pcard-hidden { display: none; }

/* Photos */
.pcard-photos {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.pcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pcard-img.pcard-img-active { opacity: 1; }

.pcard-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,24,21,0.55);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-photos:hover .pcard-nav { opacity: 1; }
.pcard-prev { left: 10px; }
.pcard-next { right: 10px; }

.pcard-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(26,24,21,0.55);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 3px 8px;
  border-radius: 20px;
}
.pcard-current { font-weight: 600; }

/* Card body */
.pcard-body { padding: 20px 22px 24px; }

.pcard-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pcard-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 3px 10px;
  border-radius: 20px;
}
.pcard-area {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--ink-muted);
}

.pcard-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.pcard-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 16px;
}

.pcard-stats {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.pcard-stat { display: flex; flex-direction: column; gap: 2px; }
.pcard-stat-label {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pcard-stat-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
}

/* More */
.portfolio-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  gap: 20px;
  flex-wrap: wrap;
}
.portfolio-more-text {
  color: var(--ink-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-more {
    flex-direction: column;
    align-items: flex-start;
  }
}
