:root {
  --bg: #f7f4ee;
  --panel: #ffffff;
  --panel-soft: #f9fbfa;
  --ink: #18222f;
  --ink-soft: #354457;
  --muted: #5f6f7e;
  --line: #dbe3df;
  --line-strong: #c7d5d0;
  --accent: #0f766e;
  --accent-dark: #0b5953;
  --accent-soft: #e7f3f1;
  --blue-soft: #edf5f8;
  --cream: #fbf7ef;
  --warning: #9a6a1f;
  --danger: #a64646;
  --shadow: 0 18px 44px rgba(37, 52, 64, 0.09);
  --shadow-soft: 0 8px 22px rgba(37, 52, 64, 0.06);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.07), transparent 34rem),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
  color: var(--ink);
  font-weight: 400;
}

button,
input,
select {
  font: inherit;
}

button {
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

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

.site-header {
  width: 100%;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-header-inner {
  width: min(1468px, calc(100% - 32px));
  min-height: 40px;
  margin: 0 auto;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 2px solid rgba(15, 118, 110, 0.28);
  border-radius: 10px;
  background: #f3faf8;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav-link:hover {
  background: #d9eee9;
  color: var(--accent-dark);
}

.site-nav-link.active {
  border-color: rgba(15, 118, 110, 0.32);
  background: #d9eee9;
  color: var(--accent-dark);
  font-weight: 800;
}

.site-account-soon {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  cursor: default;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.site-account-soon small {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.app {
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 48px;
}

.site-header + .app,
.app > .hero:first-child {
  margin-top: 0;
}

.app > .hero:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.site-footer {
  width: min(1460px, calc(100% - 40px));
  margin: 18px auto 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.site-footer p {
  margin: 0 0 4px;
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 118, 110, 0.24);
}

.site-footer a:hover {
  color: var(--accent);
  border-bottom-color: rgba(15, 118, 110, 0.44);
}

.faq-body {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.09), transparent 30rem),
    linear-gradient(180deg, #eef9f6 0%, #f5fbf9 52%, #edf7f4 100%);
}

.faq-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 56px;
}

.faq-hero,
.faq-section {
  border: 1px solid #cfe7e1;
  border-radius: 10px;
  background: rgba(250, 255, 253, 0.9);
  box-shadow: 0 10px 28px rgba(37, 52, 64, 0.05);
}

.faq-hero {
  background: rgba(250, 255, 253, 0.86);
  padding: 24px;
}

.faq-hero .eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.faq-notice {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.faq-notice p {
  margin: 0 0 12px;
}

.faq-notice p:last-child {
  margin-bottom: 0;
}

.faq-section {
  margin-top: 18px;
  padding: 20px;
  background: rgba(248, 253, 251, 0.84);
}

.faq-section h2 {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 22px;
  line-height: 1.2;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dcefeb;
  color: var(--accent-dark);
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  background: #e8f6f3;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  max-width: 800px;
  padding: 15px 16px 17px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.66;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.hero {
  min-height: clamp(220px, 18vw, 260px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 32px 22px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 45, 58, 0.92), rgba(15, 118, 110, 0.56)),
   url("./hero-analytics.png?v=20260518");
  background-size: cover;
  background-position: center 48%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 10px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

.hero h1,
.hero strong {
  color: #fff;
}

h1 {
  max-width: 790px;
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-button,
.ghost-button,
.tab-button,
.mini-button {
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
}

.primary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: #f6fbfa;
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.ghost-button {
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.mini-button {
  padding: 0 16px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.test-launch-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 14px 0 18px;
  padding: 16px 18px;
  border: 1px solid #d7e5e1;
  border-radius: 8px;
  background: #f3faf8;
  color: #244d4a;
}

.quick-feedback {
  position: relative;
}

.quick-feedback-trigger {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px;
  border: 1px solid var(--accent-dark);
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.12);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.quick-feedback-trigger-title {
  font-size: 12.5px;
  font-weight: 780;
  line-height: 1.15;
  white-space: nowrap;
}

.quick-feedback-trigger-emojis {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
}

.quick-feedback-trigger:hover,
.quick-feedback.open .quick-feedback-trigger,
.quick-feedback:focus-within .quick-feedback-trigger {
  border-color: var(--accent-dark);
  background: #16877d;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
  transform: translateY(-1px);
}

.quick-feedback-card {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  width: min(320px, calc(100vw - 44px));
  padding: 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(15, 42, 40, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.quick-feedback.open .quick-feedback-card,
.quick-feedback:focus-within .quick-feedback-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  .quick-feedback:hover .quick-feedback-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}

.quick-feedback-hint {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
}

.quick-feedback-emojis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.quick-feedback-emojis button {
  min-height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 6px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: #f5fbf9;
  color: var(--ink-soft);
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.quick-feedback-emojis small {
  color: inherit;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.05;
}

.quick-feedback-emojis button:hover,
.quick-feedback-emojis button.active {
  border-color: rgba(15, 118, 110, 0.38);
  background: rgba(187, 242, 230, 0.42);
  box-shadow: 0 7px 16px rgba(15, 118, 110, 0.08);
  transform: translateY(-1px);
}

.quick-feedback-emojis button.active {
  color: #0f5f58;
  box-shadow:
    inset 0 0 0 1px rgba(15, 118, 110, 0.12),
    0 7px 16px rgba(15, 118, 110, 0.08);
}

.quick-feedback-details {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.quick-feedback-details button {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

.quick-feedback-details button:hover {
  border-color: rgba(15, 118, 110, 0.28);
  background: #f5fbf9;
}

.quick-feedback-thanks {
  margin: 12px 0 0 !important;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(187, 242, 230, 0.28);
  color: #23615b !important;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.35 !important;
}

.test-launch-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.test-launch-banner .mini-button {
  margin-left: auto;
}

.marketplace-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.marketplace-card {
  min-height: 152px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  overflow: hidden;
}

.marketplace-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 28px rgba(37, 52, 64, 0.09);
}

.marketplace-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13.5px;
  font-weight: 800;
}

.marketplace-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 760;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.marketplace-card small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
}

.marketplace-card.active {
  border-color: rgba(15, 118, 110, 0.46);
  background: #f2faf8;
  box-shadow:
    inset 0 0 0 1px rgba(15, 118, 110, 0.12),
    0 14px 30px rgba(15, 118, 110, 0.13);
}

.marketplace-card[data-marketplace="Ozon"] {
  background: #fbfdff;
}

.marketplace-card[data-marketplace="Яндекс Маркет"],
.marketplace-card[data-marketplace="РЇРЅРґРµРєСЃ РњР°СЂРєРµС‚"] {
  background: #fffdf8;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.metric-card,
.calculator,
.result-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(37, 52, 64, 0.07);
}

.metric-card {
  min-height: 128px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
}

.metric-card span,
.result-grid span,
.price-row span,
.details-list dt,
.progress-label span,
.plan-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.summary-grid .metric-card > span {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.32;
  font-weight: 650;
}

.metric-card strong {
  display: block;
  margin: 12px 0 7px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 830;
  line-height: 1.05;
  letter-spacing: 0;
}

.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
}

.roi-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.roi-card-values {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
}

.roi-card-row {
  display: grid;
  grid-template-columns: minmax(82px, max-content) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 2px 0;
}

.roi-card-row + .roi-card-row {
  border-top: 1px solid #e2eae6;
}

.roi-card-row strong {
  margin: 0;
  font-size: clamp(27px, 2.4vw, 33px);
}

.roi-card-row small {
  justify-self: end;
  text-align: right;
  font-weight: 560;
  line-height: 1.35;
}

.metric-card.good {
  border-color: rgba(15, 118, 110, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
}

.metric-card.warn {
  border-color: rgba(154, 106, 31, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.metric-card.bad {
  border-color: rgba(166, 70, 70, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: 18px;
  align-items: start;
}

.calculator,
.result-panel {
  min-width: 0;
  padding: 30px;
  overflow: hidden;
}

.result-panel {
  position: sticky;
  top: 18px;
  padding: 32px;
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 16px 36px rgba(26, 74, 82, 0.095);
}

.form-header,
.result-header,
.price-row,
.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.form-header h2,
.result-header h2 {
  margin-bottom: 6px;
  font-size: 25px;
  line-height: 1.18;
}

.calculator .form-header h2 {
  font-size: clamp(25px, 1.9vw, 28px);
  font-weight: 760;
  line-height: 1.15;
}

.result-panel .result-header h2 {
  font-size: 34px;
  font-weight: 780;
  line-height: 1.12;
}

.result-panel .eyebrow {
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1.2;
}

.form-header p,
.ad-header p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.calculator .form-header p {
  font-size: 16.5px;
  line-height: 1.55;
}

.select-label {
  min-width: 230px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

select,
input {
  width: 100%;
  height: 48px;
  margin-top: 9px;
  padding: 0 14px;
  border: 1px solid #d4dfda;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(24, 34, 47, 0.02),
    0 1px 0 rgba(37, 52, 64, 0.02);
}

input[type="number"] {
  font-variant-numeric: tabular-nums;
}

input[type="checkbox"] {
  width: 21px;
  height: 21px;
  min-width: 21px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--accent);
}

input:focus,
select:focus {
  outline: 3px solid rgba(15, 118, 110, 0.13);
  border-color: rgba(15, 118, 110, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(24, 34, 47, 0.02),
    0 0 0 1px rgba(15, 118, 110, 0.08);
}

.mode-panel {
  display: grid;
  gap: 9px;
  margin: 20px 0 18px;
  padding: 14px;
  border: 1px solid #d7e5e1;
  border-radius: 12px;
  background: #f7fbfa;
}

.mode-switcher {
  display: inline-flex;
  width: fit-content;
  gap: 4px;
  padding: 4px;
  border: 1px solid #dfe8e5;
  border-radius: 999px;
  background: #ffffff;
}

.mode-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.15;
  white-space: nowrap;
}

.mode-button.active {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 8px 16px rgba(15, 118, 110, 0.16);
}

.mode-button:not(.active):hover {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.mode-panel p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.calculator.beginner-mode .advanced-field {
  display: none;
}

.section-tabs {
  display: flex;
  gap: 6px;
  margin: 24px 0 25px;
  padding: 5px;
  border: 1px solid #e4ebe8;
  border-radius: 8px;
  background: #f6faf8;
  overflow-x: auto;
}

.tab-button {
  min-width: max-content;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(15, 118, 110, 0);
  color: var(--muted);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.tab-button:hover {
  background: #ffffff;
  border-color: #dce7e2;
}

.tab-button.active,
.tab-button.accent-tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 7px 14px rgba(15, 118, 110, 0.16);
}

.tab-button.accent-tab {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: rgba(15, 118, 110, 0.18);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  padding-top: 4px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.calculator .field-grid {
  grid-template-columns: 1fr;
  gap: 17px;
}

.calculator label,
.calculator .select-label {
  color: var(--ink-soft);
  font-size: 1.04rem;
  font-weight: 680;
  line-height: 1.4;
}

.calculator input:not([type="checkbox"]),
.calculator select {
  height: 51px;
  margin-top: 11px;
  padding: 0 14px;
}

.logistics-card,
.model-cost-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 19px;
  border: 1px solid #d9e6e2;
  border-radius: 8px;
  background: #f7fbfa;
}

.logistics-card-header,
.model-cost-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.logistics-card h3,
.model-cost-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.logistics-card p,
.model-cost-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.logistics-mode-label {
  min-width: 220px;
}

.logistics-summary,
.tariff-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.logistics-summary div,
.tariff-result {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.logistics-summary span,
.tariff-result span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.logistics-summary strong,
.tariff-result strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.1;
}

.logistics-summary small {
  display: block;
  margin-top: 6px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.tariff-fields {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.tariff-result {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #f3faf8;
}

.panel-note,
.subscription-teaser,
.aside-subscription,
.ad-help,
.note {
  border-radius: 8px;
  line-height: 1.5;
}

.panel-note,
.ad-help {
  margin-bottom: 18px;
  padding: 17px 18px;
  border: 1px solid #d9e6e2;
  background: #f3faf8;
  color: #325c59;
}

.subscription-teaser {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #d7e5e1;
  background: #f3faf8;
}

.subscription-teaser strong,
.subscription-teaser span {
  display: block;
}

.subscription-teaser span,
.aside-subscription span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.import-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #d7e5e1;
  border-radius: 8px;
  background: #f3faf8;
}

.import-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.import-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e4f5f1;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.15;
}

.import-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.import-controls {
  flex: 0 0 auto;
}

.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;
}

.import-upload-button,
.import-clear-button {
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.import-upload-button {
  padding: 0 17px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: var(--accent);
  color: #fff;
  font-weight: 780;
  box-shadow: 0 8px 16px rgba(15, 118, 110, 0.12);
}

.import-upload-button:hover {
  background: var(--accent-dark);
}

.import-preview button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.import-preview button:disabled:hover {
  transform: none;
}

.import-clear-button {
  padding: 0 15px;
  border: 1px solid #cddbd6;
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 720;
}

.import-preview {
  display: grid;
  gap: 9px;
  padding-top: 11px;
  border-top: 1px solid #dce9e5;
}

.import-preview strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.import-found-list,
.import-issue-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.import-found-list li,
.import-issue-list li {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid #dfe9e5;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.import-found-list span,
.import-issue-list span {
  color: var(--ink);
  font-weight: 740;
}

.import-found-list small,
.import-issue-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.import-warning {
  color: #6f5319 !important;
  font-size: 13px !important;
}

.import-preview-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.hidden {
  display: none;
}

.ad-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.ad-header h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

#adBadge,
#marketplaceBadge {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.15;
  white-space: nowrap;
}

.ad-help strong {
  display: block;
  margin-bottom: 10px;
  color: #244d4a;
  font-size: 16px;
  font-weight: 800;
}

.ad-help ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 18px;
}

.ad-help li {
  color: #4f6572;
  line-height: 1.45;
}

.ad-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.ad-plan-warning {
  grid-column: 1 / -1;
  padding: 13px 15px;
  border: 1px solid rgba(154, 106, 31, 0.26);
  border-radius: 8px;
  background: #fffaf0;
  color: #6d511b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.plan-tile {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.plan-tile strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.plan-tile small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.plan-tile.good {
  border-color: rgba(15, 118, 110, 0.28);
  background: #f1faf8;
}

.plan-tile.warn {
  border-color: rgba(154, 106, 31, 0.3);
  background: #fffaf0;
}

.plan-tile.risk {
  border-color: rgba(166, 70, 70, 0.28);
  background: #fff5f5;
}

.plan-tile.status-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
}

.plan-tile.status-card.good strong {
  color: var(--accent-dark);
}

.plan-tile.status-card.warn strong {
  color: #74551a;
}

.plan-tile.status-card.risk strong {
  color: #7d3535;
}

.ad-header,
.ad-header h3,
.ad-header p,
.ad-help,
.ad-help strong,
.ad-help li,
.ad-plan,
.plan-tile,
.plan-tile span,
.plan-tile strong,
.plan-tile small {
  letter-spacing: normal;
}

.ad-header h3 {
  font-size: 21px;
  line-height: 1.3;
}

.ad-header p {
  font-size: 15px;
  line-height: 1.5;
}

.ad-help {
  margin-bottom: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.45;
}

.ad-help strong {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.ad-help p {
  max-width: 900px;
  margin: 0 0 14px;
  color: #47656f;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: normal;
}

.ad-help ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding-left: 20px;
}

.ad-help li {
  max-width: 620px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.plan-tile {
  padding: 14px;
}

.plan-tile span {
  font-size: 13px;
  line-height: 1.35;
}

.plan-tile strong {
  margin-top: 6px;
  font-size: 21px;
  line-height: 1.15;
}

.plan-tile small {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.45;
}

.plan-tile.status-card strong {
  font-size: 15px;
  line-height: 1.45;
}

.price-row {
  margin: 18px 0 24px;
  padding: 17px 19px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #f2faf8 0%, #ffffff 100%);
}

.result-panel .price-row span {
  font-size: 18px;
  font-weight: 720;
  line-height: 1.32;
}

.result-panel .progress-label span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.32;
}

.price-row strong {
  color: var(--accent-dark);
  font-size: 25px;
  font-weight: 760;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.progress-track {
  height: 9px;
  margin: 12px 0 22px;
  border-radius: 99px;
  background: #e3ebe8;
  overflow: hidden;
}

.progress-track div {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #3f9b8e);
  transition: width 0.2s ease;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 26px;
}

.result-grid div {
  min-height: 116px;
  padding: 21px 19px;
  border: 1px solid #d9e3df;
  border-radius: 8px;
  background: #fbfdfc;
  box-shadow: 0 5px 14px rgba(37, 52, 64, 0.03);
}

.result-panel .result-grid span {
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.4;
}

.result-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.28rem;
  font-weight: 740;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

h3 {
  margin: 19px 0 11px;
  font-size: 17px;
  line-height: 1.25;
}

.result-panel h3 {
  margin: 27px 0 15px;
  font-size: 18px;
  font-weight: 730;
}

.cost-bars {
  display: grid;
  gap: 17px;
}

.bar-item {
  display: grid;
  gap: 8px;
}

.bar-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 13px;
}

.bar-top span {
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.4;
}

.bar-top strong {
  font-size: 1.02rem;
  font-weight: 660;
  line-height: 1.35;
}

.bar-bg {
  height: 8px;
  border-radius: 99px;
  background: #e5ece9;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--accent) !important;
}

.details-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.details-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf1ef;
}

.details-list dt {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.34;
}

.details-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 660;
  line-height: 1.34;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.details-list div:nth-child(14) {
  display: block;
  padding: 11px 13px 12px;
  border: 1px solid #e3ebe8;
  border-radius: 8px;
  background: #f7fbfa;
}

.details-list div:nth-child(14) dt {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.28;
}

.details-list div:nth-child(14) dd {
  color: var(--accent-dark);
  max-width: 58ch;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.48;
  text-align: left;
  font-variant-numeric: normal;
  white-space: normal;
}

.note {
  margin-top: 20px;
  padding: 24px 26px;
  border: 1px solid #d9e6e2;
  border-radius: 8px;
  color: #244d4a;
  background: #f3faf8;
}

.note.good {
  border-color: rgba(15, 118, 110, 0.26);
  color: #244d4a;
  background: #f1faf8;
}

.note.bad {
  border-color: rgba(166, 70, 70, 0.22);
  color: #733333;
  background: #fff5f5;
}

.note.warn {
  border-color: rgba(154, 106, 31, 0.18);
  color: #634b18;
  background: #fffbf4;
}

#recommendation.note {
  margin-top: 24px;
  padding: 28px 30px;
  border-width: 1px;
  box-shadow: 0 18px 40px rgba(154, 106, 31, 0.08);
}

#recommendation.note.warn {
  border-color: rgba(154, 106, 31, 0.24);
  background: #fff8ec;
}

.verdict {
  display: grid;
  gap: 22px;
}

.verdict-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-dark);
  font-size: 15.5px;
  font-weight: 760;
  line-height: 1.25;
}

.note.warn .verdict-status {
  background: rgba(154, 106, 31, 0.12);
  color: #6f5319;
}

.note.bad .verdict-status {
  background: rgba(166, 70, 70, 0.12);
  color: #7d3535;
}

.verdict-summary > span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.verdict-list {
  display: grid;
  gap: 10px;
}

.verdict-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1.1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 15px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.note.warn .verdict-item {
  border-color: rgba(154, 106, 31, 0.16);
  background: rgba(255, 255, 255, 0.56);
}

.note.bad .verdict-item {
  border-color: rgba(166, 70, 70, 0.14);
  background: rgba(255, 255, 255, 0.6);
}

.verdict-item.positive {
  border-color: rgba(15, 118, 110, 0.13);
  background: rgba(255, 255, 255, 0.64);
}

.verdict-item.reason-only {
  grid-template-columns: minmax(0, 1fr);
}

.verdict-signal,
.verdict-action {
  min-width: 0;
}

.verdict-signal span,
.verdict-action span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
}

.verdict-signal strong,
.verdict-action strong {
  display: block;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.42;
}

.note.good .verdict-signal strong,
.note.good .verdict-action strong {
  color: #244d4a;
}

.note.warn .verdict-signal strong,
.note.warn .verdict-action strong {
  color: #5f4a1d;
}

.note.bad .verdict-signal strong,
.note.bad .verdict-action strong {
  color: #653636;
}

.verdict-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: rgba(15, 118, 110, 0.54);
  font-size: 18px;
  font-weight: 720;
  line-height: 1;
}

.aside-subscription {
  display: none;
  margin-bottom: 18px;
  padding: 15px 16px;
  border: 1px solid #d7e5e1;
  background: #f3faf8;
  color: #244d4a;
}

.aside-subscription.visible {
  display: block;
}

.aside-subscription strong,
.aside-subscription span {
  display: block;
}

.subscription-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}

.subscription-layout h3 {
  margin-top: 0;
  font-size: 26px;
  line-height: 1.2;
}

.subscription-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.check-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  cursor: pointer;
  font-weight: 400;
  overflow: hidden;
}

.check-row span {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.check-row input[type="checkbox"] {
  margin: 0;
}

.check-row:hover {
  border-color: var(--line-strong);
  background: #ffffff;
}

.check-row strong,
.check-row small {
  display: block;
}

.check-row strong {
  margin-bottom: 0;
  font-size: clamp(19px, 1.35vw, 22px);
  font-weight: 760;
  line-height: 1.18;
  overflow-wrap: normal;
}

.check-row small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.price-box {
  min-width: 0;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b5953, #21867d);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.2);
}

.price-box span,
.price-box small {
  display: block;
  color: rgba(255, 255, 255, 0.83);
}

.price-box strong {
  display: block;
  margin: 12px 0;
  color: #fff;
  font-size: clamp(31px, 3.2vw, 42px);
  font-weight: 850;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.feedback-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #d7e5e1;
  border-radius: 8px;
  background: #f3faf8;
  color: #244d4a;
}

.feedback-card span,
.feedback-card small {
  display: block;
  color: var(--muted);
}

.feedback-card strong {
  display: block;
  margin: 9px 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 820;
  line-height: 1.12;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.feedback-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.feedback-grid h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.feedback-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.feedback-grid li + li {
  margin-top: 6px;
}

.feedback-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.14);
}

.feedback-button:hover {
  background: var(--accent-dark);
}

.feedback-caption {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tariff-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.tariff-grid span,
.tariff-grid small {
  display: block;
  color: var(--muted);
}

.tariff-grid strong {
  display: block;
  margin: 9px 0;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 820;
  line-height: 1.08;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1180px) {
  .summary-grid,
  .marketplace-switcher,
  .tariff-grid,
  .ad-plan {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .result-panel {
    position: static;
  }

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

  .subscription-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header-inner {
    width: min(100% - 20px, 640px);
    min-height: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 5px 7px;
    border-radius: 10px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav-link {
    min-height: 28px;
    padding: 0 9px;
    font-size: 13px;
  }

  .site-account-soon {
    min-height: 28px;
    margin-left: auto;
    padding: 0 9px;
    font-size: 13px;
  }

  .app {
    width: min(100% - 20px, 640px);
    padding: 0 0 34px;
  }

  .site-footer {
    width: min(100% - 20px, 640px);
    margin: 8px auto 24px;
    font-size: 14px;
  }

  .faq-page {
    width: min(100% - 20px, 640px);
    padding: 10px 0 38px;
  }

  .faq-hero,
  .faq-section {
    border-radius: 9px;
  }

  .faq-hero {
    padding: 18px;
  }

  .faq-hero h1 {
    font-size: 30px;
  }

  .faq-notice {
    font-size: 15px;
  }

  .faq-section {
    margin-top: 14px;
    padding: 14px;
  }

  .faq-section h2 {
    font-size: 19px;
  }

  .faq-item summary {
    min-height: 46px;
    padding: 12px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 13px 12px 14px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .hero-actions button {
    width: 100%;
  }

  .summary-grid,
  .marketplace-switcher,
  .field-grid,
  .result-grid,
  .logistics-summary,
  .tariff-result,
  .subscription-options,
  .feedback-grid,
  .tariff-grid,
  .ad-plan,
  .ad-help ul,
  .verdict-item {
    grid-template-columns: 1fr;
  }

  .verdict-arrow {
    display: none;
  }

  .calculator,
  .result-panel {
    padding: 20px;
  }

  .mode-panel {
    padding: 12px;
  }

  .mode-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .mode-button {
    width: 100%;
  }

  .form-header,
  .result-header,
  .price-row,
  .logistics-card-header,
  .model-cost-header,
  .subscription-teaser,
  .ad-header {
    align-items: stretch;
    flex-direction: column;
  }

  .test-launch-banner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  .quick-feedback-trigger {
    min-height: 46px;
    padding: 7px 10px;
  }

  .quick-feedback-trigger-title {
    font-size: 12px;
  }

  .quick-feedback-trigger-emojis {
    font-size: 16px;
  }

  .quick-feedback-card {
    left: 0;
    width: min(300px, calc(100vw - 30px));
  }

  .test-launch-banner .mini-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  .import-card-main,
  .import-preview-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .import-controls,
  .import-upload-button,
  .import-preview-actions button {
    width: 100%;
  }

  .select-label,
  .logistics-mode-label {
    min-width: 0;
  }

  .section-tabs {
    margin: 20px -2px;
  }

  .tab-button {
    min-height: 40px;
  }

  .marketplace-card,
  .check-row {
    min-height: auto;
  }

  .price-row strong {
    text-align: left;
  }

  .check-row {
    align-items: start;
  }

  .check-row span {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.hero {
 min-height: clamp(220px, 18vw, 260px);
  align-items: flex-end;
  gap: 28px;
  padding: 24px 32px 22px;
  background:
    linear-gradient(90deg, rgba(18, 45, 58, 0.94), rgba(15, 118, 110, 0.58)),
    url("./hero-analytics.png?v=20260518");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 48%;
}

.hero > div:first-child {
  max-width: 860px;
  transform: translateY(4px);
}

.hero > div:first-child::before {
  content: "Statveil";
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 850;
  line-height: 1;
}

.hero .eyebrow {
  margin: 0 0 9px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 0.98;
}

.hero .lead {
  max-width: 820px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.hero .lead::before {
  content: "Для Wildberries, Ozon и Яндекс Маркета. Считайте прибыль, комиссии, логистику, рекламу, налоги, возвраты и план запуска.";
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions {
  align-self: flex-end;
  padding-bottom: 16px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 320px;
    background-position: 58% 50%;
  }

  .hero > div:first-child {
    transform: none;
  }

  .hero .lead::before {
    font-size: 16px;
  }

  .hero-actions {
    padding-bottom: 0;
  }
}
