:root {
  --bg: #ffffff;
  --ink: #101b20;
  --muted: #63727b;
  --soft: #f4f8f7;
  --soft-2: #eef5f2;
  --line: #dce7e5;
  --dark: #10232b;
  --dark-2: #18323b;
  --green: #19a779;
  --green-dark: #0f745d;
  --blue: #2f63d4;
  --coral: #f2765d;
  --yellow: #f1bd43;
  --shadow: 0 24px 70px rgba(16, 35, 43, 0.12);
  --shadow-soft: 0 12px 38px rgba(16, 35, 43, 0.08);
  --radius: 8px;
  --max: 1190px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(220, 231, 229, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.brand-mark.large {
  width: 58px;
  height: 58px;
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314148;
  font-size: 14px;
  font-weight: 780;
}

.main-nav a,
.phone-link,
.footer-links a,
.text-link {
  transition: color 0.16s ease;
}

.main-nav a:hover,
.phone-link:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  font-size: 14px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(25, 167, 121, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-dark {
  color: #fff;
  background: var(--dark);
}

.btn-dark:hover {
  background: #0a181e;
}

.btn-light {
  color: var(--dark);
  background: #fff;
  border-color: var(--line);
}

.btn-light:hover {
  border-color: #b8cbc8;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 118px) 0 42px;
  background:
    linear-gradient(180deg, #f8fbfa 0%, #fff 48%, #f4f8f7 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg span {
  position: absolute;
  display: block;
  border: 1px solid rgba(16, 35, 43, 0.08);
  background:
    linear-gradient(135deg, rgba(25, 167, 121, 0.1), rgba(47, 99, 212, 0.08)),
    rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transform: rotate(-8deg);
}

.hero-bg span:first-child {
  width: 360px;
  height: 180px;
  right: 5%;
  top: 72px;
}

.hero-bg span:last-child {
  width: 260px;
  height: 130px;
  left: -80px;
  bottom: 52px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 7.8vw, 116px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 710px;
  margin: 26px 0 0;
  color: #33464e;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.2;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 680px;
}

.hero-facts div {
  min-height: 112px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-facts strong {
  display: block;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.hero-facts span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 780;
}

.hero-terminal {
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(16, 35, 43, 0.18);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.8);
  background: #0c1b21;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 50%;
}

.dot.green {
  background: var(--green);
}

.dot.yellow {
  background: var(--yellow);
}

.dot.red {
  background: var(--coral);
}

.terminal-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.marketplace-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.marketplace-row span,
.strip-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.marketplace-row span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ledger-card {
  padding: 18px;
  color: #dce8ea;
  background: #132a33;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.ledger-title,
.ledger-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.ledger-title {
  padding-bottom: 14px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.ledger-title strong {
  color: #5ee0b4;
  font-size: 12px;
  text-transform: uppercase;
}

.ledger-line {
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ledger-line b {
  color: #fff;
  white-space: nowrap;
}

.ledger-line.total {
  color: #fff;
  border-bottom: 0;
  font-size: 18px;
  font-weight: 900;
}

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

.tax-grid div {
  min-height: 82px;
  padding: 13px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.tax-grid b {
  display: block;
  margin-top: 7px;
  color: #fff;
}

.market-strip {
  overflow: hidden;
  background: var(--dark);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px 0 14px 14px;
  animation: ticker 36s linear infinite;
}

.strip-track span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(74px, 8vw, 112px) 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head.wide {
  max-width: 940px;
}

.section-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 920;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.section-head p,
.proof-copy p,
.accounting-copy p,
.risk-layout > div > p,
.lead-copy p,
.expert-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.proof-section,
.platforms-section,
.lead-section {
  background: var(--soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.proof-panel {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.proof-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
}

.proof-item + .proof-item {
  border-top: 1px solid var(--line);
}

.proof-item span {
  color: var(--green-dark);
  font-weight: 950;
}

.proof-item strong {
  font-size: 19px;
  line-height: 1.18;
}

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

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-builder,
.pricing-result,
.unit-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.pricing-builder {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.builder-head p,
.unit-head p,
.pricing-result p {
  margin-top: 8px;
  color: var(--muted);
}

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

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

.check-row {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.pricing-result {
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 167, 121, 0.16), rgba(47, 99, 212, 0.08)),
    var(--dark);
  border-color: var(--dark);
}

.pricing-result > span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.pricing-result > strong {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 950;
}

.pricing-result p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-result .btn {
  margin-top: auto;
}

.breakdown {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.breakdown-row b {
  color: #fff;
  white-space: nowrap;
}

.unit-section {
  margin-top: 18px;
  padding: 24px;
}

.unit-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.unit-head p {
  max-width: 600px;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.unit-card {
  min-height: 154px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.unit-card span {
  display: block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.unit-card strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.1;
}

.unit-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.tariff-card {
  position: relative;
  display: flex;
  min-height: 512px;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(16, 35, 43, 0.06);
}

.tariff-card.featured {
  border-color: rgba(25, 167, 121, 0.48);
  box-shadow: 0 26px 58px rgba(25, 167, 121, 0.16);
}

.tariff-card.recovery {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.tariff-card.recovery h3,
.tariff-card.recovery .price,
.tariff-card.recovery li,
.tariff-card.recovery .tariff-desc {
  color: #fff;
}

.tariff-card.recovery .tariff-desc,
.tariff-card.recovery li {
  opacity: 0.8;
}

.tariff-card .tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--soft-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.tariff-card.recovery .tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.tariff-card h3 {
  min-height: 50px;
}

.tariff-desc {
  min-height: 70px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin: 18px 0 20px;
  color: var(--dark);
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.tariff-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.tariff-card li {
  position: relative;
  padding-left: 21px;
  color: #3e4e56;
  font-size: 14px;
}

.tariff-card li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.tariff-card .btn {
  width: 100%;
  margin-top: auto;
}

.tariff-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.tariff-note strong,
.tariff-note span {
  display: block;
}

.tariff-note span {
  margin-top: 5px;
  color: var(--muted);
}

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

.platform-card {
  min-height: 280px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(16, 35, 43, 0.05);
}

.platform-card h3 {
  margin-bottom: 16px;
}

.platform-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--dark);
  background: var(--soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.accounting-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 920;
}

.flow-board {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.flow-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.flow-row + .flow-row {
  border-top: 1px solid var(--line);
}

.flow-row > span {
  color: var(--green-dark);
  font-weight: 950;
}

.flow-row p {
  margin-top: 8px;
  color: var(--muted);
}

.risk-section {
  padding: clamp(74px, 8vw, 112px) 0;
  color: #fff;
  background: var(--dark);
}

.risk-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.86fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.risk-layout h2,
.risk-layout > div > p {
  color: #fff;
}

.risk-layout > div > p {
  color: rgba(255, 255, 255, 0.76);
}

.risk-cards {
  display: grid;
  gap: 12px;
}

.risk-cards article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.risk-cards strong {
  display: block;
  font-size: 20px;
}

.risk-cards span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.timeline article {
  min-height: 300px;
  padding: 24px;
}

.timeline article + article {
  border-left: 1px solid var(--line);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
}

.timeline p {
  margin-top: 14px;
  color: var(--muted);
}

.expert-section {
  padding: clamp(74px, 8vw, 112px) 0;
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 20px;
}

.expert-card {
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 167, 121, 0.22), rgba(47, 99, 212, 0.12)),
    var(--dark);
  border-radius: 10px;
}

.expert-card h2 {
  margin-top: 34px;
  color: #fff;
}

.expert-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.expert-list {
  display: grid;
  gap: 14px;
}

.expert-list div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.expert-list strong,
.expert-list span {
  display: block;
}

.expert-list span {
  margin-top: 8px;
  color: var(--muted);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.lead-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.lead-mini span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: #45545b;
  font-size: 13px;
  font-weight: 900;
}

.field-help {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.base-summary {
  display: block;
  margin-top: 8px;
  color: #16313a;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(25, 167, 121, 0.15);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 21px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 920;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #0c1b21;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
}

.footer-brand {
  color: #fff;
}

.site-footer .brand-mark,
.admin-sidebar .brand-mark {
  color: var(--dark);
  background: #fff;
}

.footer-grid p {
  margin-top: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.admin-shell {
  min-height: 100vh;
  background: #f4f7fa;
}

.admin-shell:not([hidden]) {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
}

.admin-shell.login-required {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 24px;
}

.admin-shell.login-required [data-admin-protected] {
  display: none;
}

.admin-login {
  width: min(100%, 460px);
}

.admin-login-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(8, 25, 31, 0.12);
}

.admin-login-card .brand-mark {
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--dark);
}

.admin-login-card h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
}

.admin-login-card p {
  margin: 0;
  color: var(--muted);
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: #30454f;
  font-size: 15px;
  font-weight: 850;
}

.admin-login-card input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.password-toggle::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 8px;
  width: 20px;
  height: 14px;
  border: 2px solid #536872;
  border-radius: 50%;
}

.password-toggle::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 17px;
  width: 6px;
  height: 6px;
  background: #536872;
  border-radius: 50%;
}

.password-toggle.active {
  background: rgba(32, 170, 124, 0.12);
}

.password-toggle.active::before {
  border-color: var(--green);
}

.password-toggle.active::after {
  background: var(--green);
}

.admin-login-card input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(32, 170, 124, 0.18);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px;
  color: #fff;
  background: var(--dark);
}

.admin-brand {
  color: #fff;
  cursor: default;
  user-select: none;
}

.admin-logo-frame {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
}

.admin-logo {
  display: block;
  width: 32px;
  height: 32px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-weight: 850;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.admin-sidebar .btn {
  margin-top: auto;
}

.admin-main {
  padding: 28px;
}

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

.admin-header h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.admin-header p,
.admin-help {
  color: var(--muted);
}

.admin-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(16, 35, 43, 0.08);
}

.admin-panel h2 {
  margin-bottom: 22px;
  font-size: 31px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tariff-editor,
.platform-editor {
  display: grid;
  gap: 16px;
}

.tariff-editor {
  grid-template-columns: 1fr;
}

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

.admin-editor-group {
  display: grid;
  gap: 14px;
}

.admin-editor-group h3 {
  font-size: 22px;
}

.tariff-editor-grid {
  display: grid;
  gap: 16px;
}

.tariff-edit-card,
.platform-edit-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-table-wrap {
  margin-top: 18px;
  overflow: auto;
}

.lead-status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.lead-status-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #30454f;
  background: #f8fbfb;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.lead-status-tab b {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  color: #fff;
  background: #82909a;
  font-size: 12px;
}

.lead-status-tab.active {
  color: #fff;
  border-color: var(--dark);
  background: var(--dark);
}

.lead-status-tab.active b {
  color: var(--dark);
  background: #fff;
}

.lead-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 14px;
}

.lead-table th,
.lead-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.lead-table th {
  color: #4c5a62;
  font-size: 12px;
  text-transform: uppercase;
}

.empty-row {
  color: var(--muted);
}

.lead-cards {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.lead-card-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.lead-status-select {
  min-width: 150px;
  height: 38px;
  padding: 0 34px 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.admin-lead-card,
.empty-lead-card {
  padding: 18px;
  background: #f8fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-lead-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.admin-lead-card h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.1;
}

.lead-source-badge,
.lead-consent {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.lead-source-badge {
  color: #0f6f58;
  background: rgba(29, 171, 126, 0.12);
}

.lead-consent.ok {
  color: #0f6f58;
  background: rgba(29, 171, 126, 0.14);
}

.lead-consent.warn {
  color: #9a5a00;
  background: rgba(245, 166, 35, 0.16);
}

.admin-lead-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-lead-meta div {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-lead-meta span,
.lead-source-mini {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-lead-meta strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.admin-lead-details {
  margin-top: 12px;
  padding: 14px;
  color: #263842;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.lead-comment {
  max-width: 420px;
  color: #3d4a51;
  line-height: 1.45;
}

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

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

  .timeline article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .timeline article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .pricing-layout,
  .proof-grid,
  .accounting-grid,
  .risk-layout,
  .expert-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-terminal {
    max-width: 680px;
  }

  .platform-grid,
  .calc-grid,
  .option-grid,
  .tariff-editor,
  .tariff-editor-grid,
  .platform-editor,
  .admin-form {
    grid-template-columns: 1fr;
  }

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

  .admin-shell:not([hidden]) {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 35px;
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.32;
  }

  .hero-bg span:first-child {
    right: -160px;
    top: 88px;
  }

  .hero-terminal {
    width: 100%;
  }

  .terminal-body {
    padding: 14px;
  }

  .terminal-top {
    gap: 10px;
  }

  .terminal-top strong {
    font-size: 12px;
  }

  .marketplace-row span,
  .strip-track span {
    min-height: 30px;
    font-size: 12px;
  }

  .ledger-card {
    padding: 14px;
  }

  .ledger-title,
  .ledger-line {
    gap: 10px;
  }

  .ledger-line {
    align-items: flex-start;
    flex-direction: column;
    padding: 11px 0;
  }

  .ledger-line b {
    white-space: normal;
  }

  .hero-actions .btn,
  .header-actions .btn,
  .tariff-note .btn {
    width: 100%;
  }

  .header-actions,
  .tariff-note,
  .admin-header,
  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-lead-card-head {
    flex-direction: column;
  }

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

  .hero-facts,
  .tax-grid,
  .tariff-grid,
  .unit-grid,
  .timeline,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .timeline article + article,
  .timeline article:nth-child(3),
  .timeline article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  h2 {
    font-size: 36px;
  }

  .section {
    padding-block: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .strip-track {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* v4 visual correction: closer to the first dark service-style version, with the v3 calculator kept intact. */
html {
  scroll-padding-top: 92px;
}

#tariffs,
#platforms,
#accounting,
#workflow,
#faq,
#lead {
  scroll-margin-top: 92px;
}

body {
  font-family:
    "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  font-weight: 500;
}

.site-header {
  box-shadow: 0 10px 28px rgba(16, 35, 43, 0.05);
}

.brand {
  font-size: 17px;
}

.main-nav {
  font-size: 15px;
}

.hero-section {
  min-height: min(780px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  padding: clamp(68px, 8vw, 106px) 0 50px;
  background:
    linear-gradient(90deg, rgba(12, 27, 33, 0.92) 0%, rgba(12, 27, 33, 0.83) 46%, rgba(12, 27, 33, 0.34) 100%),
    linear-gradient(180deg, rgba(12, 27, 33, 0.1), rgba(12, 27, 33, 0.55)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
}

.hero-bg {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
}

.hero-copy h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.24;
}

.hero-actions .btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-facts {
  max-width: 650px;
}

.hero-facts div {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-facts strong {
  color: #5ee0b4;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-terminal {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.32);
}

.proof-section,
.platforms-section,
.lead-section {
  background: #f5f9f8;
}

.section {
  padding: clamp(70px, 7vw, 98px) 0;
}

h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
}

.section-head {
  margin-bottom: 34px;
}

.pricing-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.44fr);
}

.pricing-builder,
.pricing-result,
.unit-section,
.proof-panel,
.platform-card,
.flow-board,
.lead-form,
.faq-list details,
.expert-list div {
  border-radius: 8px;
}

.pricing-builder {
  padding: clamp(20px, 3vw, 30px);
}

.pricing-result {
  background:
    linear-gradient(135deg, rgba(25, 167, 121, 0.18), rgba(242, 118, 93, 0.08)),
    #10232b;
}

.pricing-result > strong {
  font-size: clamp(40px, 4.6vw, 58px);
}

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

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

.unit-card {
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 35, 43, 0.05);
}

.unit-card strong {
  font-size: 19px;
}

input,
select,
textarea {
  font-size: 15px;
  font-weight: 650;
}

label {
  font-size: 14px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero-terminal {
    max-width: 680px;
  }

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

@media (max-width: 920px) {
  .hero-section {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(12, 27, 33, 0.92), rgba(12, 27, 33, 0.76)),
      url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80");
    background-position: center;
    background-size: cover;
  }

  .calc-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 150px;
  }

  .site-header {
    gap: 14px;
  }

  .hero-section {
    padding: 46px 0 38px;
  }

  .hero-copy h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-facts div {
    min-height: 86px;
  }

  .hero-terminal {
    margin-top: 4px;
  }

  .market-strip {
    display: none;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .section-head p,
  .proof-copy p,
  .accounting-copy p,
  .risk-layout > div > p,
  .lead-copy p,
  .expert-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .proof-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .proof-item strong {
    font-size: 18px;
  }

  .pricing-builder,
  .pricing-result,
  .unit-section {
    padding: 18px;
  }

  .pricing-result > strong {
    font-size: 42px;
  }

  .unit-grid,
  .platform-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .unit-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .admin-main {
    padding: 18px;
  }
}

.consult-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consult-card strong {
  font-size: 16px;
}

.consult-card span {
  color: var(--muted);
  font-size: 14px;
}

.task-strip {
  overflow: hidden;
  background: #f4faf7;
  border-bottom: 1px solid var(--line);
}

.task-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px 0 14px 14px;
  animation: ticker-reverse 42s linear infinite;
}

.task-track span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 15px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #d3e8e0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes ticker-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.pro-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.pro-rail div {
  min-height: 96px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 35, 43, 0.05);
}

.pro-rail span,
.pro-rail strong {
  display: block;
}

.pro-rail span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pro-rail strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.team-work-section {
  background: #fff;
}

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

.done-grid article {
  min-height: 260px;
  padding: 22px;
  background: #f5f9f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.done-grid span {
  color: var(--green-dark);
  font-weight: 950;
}

.done-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 22px;
  line-height: 1.12;
}

.done-grid p {
  margin-top: 14px;
  color: var(--muted);
}

/* v5: closer to the Moedelo outsourcing reference while keeping marketplace accounting content. */
.hero-section {
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.72) 100%),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1900&q=82");
  background-position: center right;
  background-size: cover;
}

.hero-copy h1 {
  color: var(--ink);
}

.hero-price {
  margin-top: 18px;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}

.hero-price strong {
  color: var(--green-dark);
  font-size: 1.16em;
}

.hero-lead {
  color: #3b4f58;
}

.hero-actions .btn-light {
  color: var(--dark);
  background: #fff;
  border-color: var(--dark);
}

.hero-facts div {
  color: var(--dark);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 16px 44px rgba(16, 35, 43, 0.09);
  backdrop-filter: none;
}

.hero-facts strong {
  color: var(--green-dark);
}

.hero-facts span {
  color: var(--muted);
}

.hero-terminal {
  box-shadow: 0 22px 64px rgba(16, 35, 43, 0.16);
}

.market-strip {
  background: #fff;
  border-block: 1px solid var(--line);
}

.strip-track span {
  color: var(--dark);
  background: #f4f8f7;
  border: 1px solid var(--line);
}

.proof-section {
  background: #f4f8f7;
}

.tariffs-section {
  background: #fff;
}

.pricing-result {
  background:
    linear-gradient(135deg, rgba(25, 167, 121, 0.12), rgba(25, 167, 121, 0.04)),
    #10232b;
}

@media (max-width: 1120px) {
  .done-grid,
  .pro-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
      url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=900&q=80");
    background-position: center;
    background-size: cover;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-price {
    font-size: 25px;
  }

  .market-strip {
    display: block;
  }

  .task-track span,
  .strip-track span {
    min-height: 32px;
    font-size: 12px;
  }

  .done-grid,
  .pro-rail {
    grid-template-columns: 1fr;
  }

  .done-grid article {
    min-height: auto;
  }
}

html {
  scroll-padding-top: 0;
}

#tariffs,
#platforms,
#accounting,
#workflow,
#faq,
#lead {
  scroll-margin-top: 0;
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 165px;
  }

  #tariffs,
  #platforms,
  #accounting,
  #workflow,
  #faq,
  #lead {
    scroll-margin-top: 165px;
  }
}

/* Professional tariff constructor */
.tariff-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 24px;
  margin: 4px 0 34px;
  border-bottom: 1px solid var(--line);
}

.tariff-tab {
  min-height: 64px;
  padding: 0 10px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 5px solid transparent;
  font: inherit;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.tariff-tab.active {
  border-color: var(--dark);
}

.tariff-tabs a {
  padding-bottom: 25px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.pricing-layout-pro {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.72fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.pricing-builder-pro,
.pricing-result-pro {
  border-radius: 0;
  box-shadow: none;
}

.pricing-builder-pro {
  padding: 0;
  border: 0;
}

.pricing-builder-pro .builder-head {
  margin-bottom: 6px;
}

.calc-grid-main {
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.wide-field {
  grid-column: 1 / -1;
}

.calc-grid-numbers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.calc-grid-main label,
.calc-grid-numbers label {
  gap: 8px;
  color: #111f27;
  font-size: 15px;
  font-weight: 850;
}

.field-hint {
  display: block;
  margin-top: -3px;
  color: #97a4aa;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
}

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

.custom-select,
.platform-multi {
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.custom-select-toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.custom-select-toggle i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-right: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.18s ease;
}

.custom-select.open .custom-select-toggle i,
.platform-multi.open .custom-select-toggle i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.custom-select-menu,
.platform-multi-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  width: 100%;
  display: none;
  padding: 0;
  background: #fff;
  border: 1px solid #cfd9de;
  box-shadow: 0 18px 40px rgba(16, 35, 43, 0.12);
}

.custom-select.open .custom-select-menu,
.platform-multi.open .platform-multi-menu {
  display: block;
}

.custom-select-menu button {
  position: relative;
  width: 100%;
  min-height: 44px;
  padding: 0 44px 0 14px;
  color: var(--ink);
  background: #fff;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.custom-select-menu button:hover,
.custom-select-menu button.selected {
  background: #ececec;
}

.custom-select-menu button.selected::after {
  content: "\2713";
  position: absolute;
  right: 16px;
  top: 50%;
  color: #68767e;
  font-size: 20px;
  font-weight: 950;
  transform: translateY(-50%);
}

.platform-multi-menu {
  max-height: 320px;
  overflow: auto;
  padding: 8px 0;
}

.platform-multi-menu label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.platform-multi-menu label:hover {
  background: #f4f8f7;
}

.platform-multi-menu input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.calc-grid-main select,
.calc-grid-numbers input {
  min-height: 46px;
  border-radius: 0;
  border-color: #e4e9eb;
  box-shadow: none;
  font-size: 18px;
  font-weight: 800;
}

.calc-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.calc-pill {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 42px 13px 18px;
  color: #0e1f27;
  background: #fff;
  border: 1px solid #e7ecef;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(16, 35, 43, 0.02);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.calc-pill::after {
  content: "?";
  position: absolute;
  right: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #9aa7ad;
  background: #f2f4f5;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 950;
}

.calc-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-pill:has(input:checked) {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.calc-pill:has(input:checked)::after {
  content: "✓";
  color: var(--dark);
  background: #fff;
}

.calc-actions-line {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.mini-action {
  padding: 0;
  color: #9aa7ad;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.pricing-result-pro {
  width: 100%;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #ff4f32;
  border: 0;
}

.period-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
}

.period-tab {
  min-height: 110px;
  color: var(--ink);
  background: #fff;
  border: 0;
  font: inherit;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 850;
  cursor: pointer;
}

.period-tab.active {
  color: #fff;
  background: #ff4f32;
}

.result-card-top {
  padding: 34px 38px 12px;
}

.result-card-top > span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 900;
}

.result-card-top > strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(46px, 5.4vw, 74px);
  line-height: 0.95;
  font-weight: 950;
}

.result-card-top > small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 850;
}

.result-card-top p,
.result-card-top em {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 850;
}

.pricing-result-pro .breakdown {
  max-height: 245px;
  margin: 10px 38px 26px;
  padding-right: 6px;
  overflow: auto;
}

.pricing-result-pro .breakdown-row {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.26);
}

.pricing-result-pro .breakdown-row span {
  min-width: 0;
}

.result-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 38px;
}

.pricing-result-pro .btn {
  margin: 0;
  border-radius: 0;
  justify-content: center;
}

.result-primary {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.result-secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.pricing-result-pro .tariff-note {
  margin: 28px 38px 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .tariff-tabs,
  .pricing-layout-pro {
    grid-template-columns: 1fr;
  }

  .tariff-tabs {
    gap: 0;
  }

  .tariff-tabs a {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .tariff-tabs {
    margin-bottom: 24px;
  }

  .tariff-tab {
    min-height: 54px;
    padding-bottom: 15px;
    font-size: 18px;
  }

  .calc-grid-main,
  .calc-grid-numbers,
  .calc-pills,
  .result-cta-row {
    grid-template-columns: 1fr;
  }

  .pricing-result-pro {
    min-height: 0;
  }

  .period-tab {
    min-height: 72px;
    font-size: 18px;
  }

  .result-card-top,
  .result-cta-row {
    padding-inline: 22px;
  }

  .pricing-result-pro .breakdown,
  .pricing-result-pro .tariff-note {
    margin-inline: 22px;
  }

  .admin-lead-meta {
    grid-template-columns: 1fr;
  }
}

.question-widget {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 60;
  display: flex;
  justify-content: flex-end;
}

.question-widget[hidden] {
  display: none;
}

.question-widget-pill {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 20px 7px 8px;
  color: #fff;
  background: var(--dark);
  border: 1px solid rgba(25, 167, 121, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(16, 35, 43, 0.18);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.question-widget-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 167, 121, 0.62);
  box-shadow: 0 20px 48px rgba(16, 35, 43, 0.24);
}

.question-widget-pill:focus-visible {
  outline: 3px solid rgba(25, 167, 121, 0.24);
  outline-offset: 4px;
}

.question-widget-pill i {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(25, 167, 121, 0.14);
}

.question-widget-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.site-chat {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 70;
  width: min(456px, calc(100vw - 32px));
  min-height: 520px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.site-chat[hidden] {
  display: none;
}

.site-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-chat-head span,
.site-chat-head strong {
  display: block;
}

.site-chat-head span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.site-chat-head strong {
  font-size: 18px;
  font-weight: 950;
}

.site-chat-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-chat-body {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 10px;
  padding: 18px;
  min-height: 430px;
  background: #fff;
}

.site-chat-messages {
  min-height: 286px;
  max-height: 360px;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow: auto;
  padding-right: 4px;
}

.chat-message {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(16, 35, 43, 0.06);
}

.chat-message span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.chat-message p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.chat-message.visitor {
  justify-self: end;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.chat-message.visitor span,
.chat-message.visitor p {
  color: #fff;
}

.chat-message.admin {
  justify-self: start;
  background: #fff;
}

.chat-message.system {
  max-width: 100%;
  justify-self: start;
  color: var(--ink);
  background: var(--soft);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.site-chat-contact {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.site-chat-contact[hidden] {
  display: none;
}

.site-chat-contact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.site-chat-contact strong {
  font-size: 15px;
  font-weight: 950;
}

.site-chat-contact p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.site-chat-contact-close {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.site-chat-contact-close:hover {
  color: var(--dark);
  border-color: rgba(25, 167, 121, 0.45);
}

.site-chat-contact input,
.site-chat-form input {
  min-height: 56px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  border-radius: 8px;
}

.site-chat-contact input::placeholder,
.site-chat-form input::placeholder {
  color: rgba(99, 114, 123, 0.76);
}

.site-chat-contact input:focus,
.site-chat-form input:focus {
  border-color: rgba(25, 167, 121, 0.78);
  box-shadow: 0 0 0 3px rgba(25, 167, 121, 0.14);
}

.site-chat-contact .btn {
  min-height: 48px;
}

.chat-consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.chat-consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--green);
}

.site-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
}

.site-chat-form button {
  min-height: 56px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}

.admin-chat-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  min-height: 540px;
}

.admin-chat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.admin-chat-filters button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.admin-chat-filters button.active {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.admin-chat-filters span {
  min-width: 24px;
  padding: 2px 7px;
  color: var(--dark);
  background: var(--soft);
  border-radius: 999px;
  text-align: center;
}

.admin-chat-filters button.active span {
  color: var(--dark);
  background: #fff;
}

.admin-chat-threads,
.admin-chat-dialog {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-chat-threads {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  overflow: auto;
}

.admin-chat-thread {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.admin-chat-thread.status-new {
  border-color: rgba(25, 167, 121, 0.38);
  background: #f3fbf8;
}

.admin-chat-thread.active,
.admin-chat-thread:hover {
  background: var(--soft);
  border-color: rgba(25, 167, 121, 0.42);
}

.admin-chat-thread-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-chat-thread strong {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-size: 15px;
  font-weight: 950;
}

.admin-chat-number {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.admin-chat-thread em,
.admin-chat-dialog-status {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.admin-chat-thread.status-answered em,
.admin-chat-dialog-status.status-answered {
  color: var(--muted);
  background: #edf3f2;
}

.admin-chat-thread span,
.admin-chat-thread small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-chat-dialog {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.admin-chat-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-chat-dialog-head strong,
.admin-chat-dialog-head span {
  display: block;
}

.admin-chat-dialog-head strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 950;
}

.admin-chat-dialog-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: auto;
  background: #f8fbfb;
}

.admin-chat-message {
  max-width: 78%;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-chat-message.admin {
  justify-self: end;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.admin-chat-message.visitor {
  justify-self: start;
}

.admin-chat-message.system {
  max-width: 100%;
  justify-self: center;
  color: var(--muted);
  background: #eef5f2;
}

.admin-chat-message span,
.admin-chat-message small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.admin-chat-message.admin span,
.admin-chat-message.admin small,
.admin-chat-message.admin p {
  color: #fff;
}

.admin-chat-message p {
  color: var(--ink);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.admin-chat-reply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.admin-chat-empty {
  padding: 14px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 27, 0.64);
  backdrop-filter: blur(8px);
}

.lead-modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(310px, 1fr);
  gap: 26px;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(16, 35, 43, 0.3);
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #6b7980;
  background: #f3f7f7;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-copy span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-modal-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.lead-modal-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.lead-modal-form {
  display: grid;
  gap: 14px;
}

.lead-modal-form label {
  color: #263842;
  font-weight: 900;
}

.lead-modal-form input[type="text"],
.lead-modal-form input[type="tel"] {
  min-height: 58px;
  margin-top: 8px;
  font-size: 17px;
}

.modal-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.modal-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--green);
}

.lead-modal-form .form-note {
  margin: 0;
}

.calc-fix-card {
  width: min(960px, 100%);
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 1.08fr);
  gap: clamp(22px, 3vw, 34px);
}

.calc-fix-summary {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  color: #fff;
  background: #10232b;
  border-radius: 8px;
}

.calc-fix-summary strong {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.calc-fix-summary small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.calc-fix-summary div {
  display: grid;
  gap: 6px;
  max-height: 118px;
  margin-top: 8px;
  overflow: auto;
}

.calc-fix-summary span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.3;
  text-transform: none;
  overflow-wrap: anywhere;
}

.calc-fix-card .lead-modal-copy h2 {
  max-width: 360px;
  font-size: clamp(34px, 4vw, 52px);
}

.calc-fix-card .lead-modal-copy p {
  max-width: 360px;
  font-size: 16px;
}

.calc-fix-card .lead-modal-form {
  min-width: 0;
}

.calc-fix-card .lead-modal-form input[type="text"],
.calc-fix-card .lead-modal-form input[type="tel"] {
  width: 100%;
}

@media (max-width: 760px) {
  .question-widget {
    right: 14px;
    bottom: 14px;
  }

  .question-widget-pill {
    max-width: calc(100vw - 28px);
    min-height: 58px;
    padding-right: 18px;
    font-size: 15px;
  }

  .question-widget-icon {
    width: 42px;
    height: 42px;
  }

  .lead-modal {
    align-items: end;
    padding: 12px;
  }

  .lead-modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    overflow: auto;
    gap: 18px;
    padding: 24px 18px 18px;
  }

  .lead-modal-copy h2 {
    font-size: 34px;
  }

  .calc-fix-card .lead-modal-copy h2,
  .calc-fix-card .lead-modal-copy p {
    max-width: none;
  }

  .lead-modal-copy p {
    font-size: 15px;
  }

  .calc-legal-grid {
    grid-template-columns: 1fr;
  }

  .site-chat {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    min-height: min(520px, calc(100vh - 108px));
    border-radius: 18px;
  }

  .site-chat-messages {
    max-height: 240px;
  }

  .site-chat-form {
    grid-template-columns: minmax(0, 1fr) 122px;
  }

  .admin-chat-reply {
    grid-template-columns: 1fr;
  }

  .admin-chat-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .admin-chat-threads {
    max-height: 260px;
  }

  .admin-chat-dialog {
    min-height: 480px;
  }

  .admin-chat-message {
    max-width: 92%;
  }
}
