@font-face {
  font-family: "Organical";
  src: url("../assets/fonts/Organical.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #faf9f7;
  --ink: #121722;
  --muted: #777c86;
  --faint: #a5a5a5;
  --line: #efefef;
  --accent: #0068f9;
  --accent-hover: #024bb1;
  --violet: #6736eb;
  --violet-soft: #f4f0ff;
  --white: #ffffff;
  --radius: 16px;
  --pill: 48px;
  --shadow-card: rgba(0, 0, 0, 0.04) 0 20px 20px -8px;
  --shadow-accent: 0 0 6px 3px rgba(0, 104, 249, 0.07), 0 2px 18px rgba(0, 104, 249, 0.2);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

img {
  max-width: 100%;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo-data {
  display: inline-flex;
  align-items: center;
  font-family: Organical, cursive;
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-ghost {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
}

.btn-lg {
  font-size: 16px;
  padding: 15px 32px;
}

.btn-lg.btn-ghost {
  padding: 14px 30px;
}

.btn-primary.glow {
  box-shadow: var(--shadow-accent);
}

.btn-primary.glow-strong {
  box-shadow: 0 10px 34px 6px rgba(0, 104, 249, 0.45), 0 2px 12px rgba(0, 104, 249, 0.3);
}

/* Top offer bar */
.offer-bar {
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.offer-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--accent);
}

.offer-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offer-bar a:hover {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 24px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  flex: 1;
  min-width: 0;
  justify-content: center;
  margin-left: clamp(0px, 3vw, 80px);
}

.nav-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--pill);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--bg);
  color: var(--ink);
}

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

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}

.icon-btn:hover {
  background: var(--bg);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 100px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 8px;
  border-radius: 16px;
}

.mobile-nav a:hover {
  background: var(--bg);
  color: var(--ink);
}

.mobile-nav .btn-ghost {
  margin-top: 6px;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--pill);
}

@media (max-width: 1080px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex;
  }

  .header-mobile-actions {
    margin-left: auto;
    align-items: center;
    gap: 8px;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf9f7 0%, #faf9f7 42%, #eaf3ff 78%, #f4f0ff 100%);
  padding: 66px clamp(16px, 4vw, 24px) 104px;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.077em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 7px 16px;
  border-radius: 100px;
}

.mp-logo {
  height: 33px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.077em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: 100px;
}

.pill-accent {
  border-color: #d6e4f1;
  box-shadow: var(--shadow-accent);
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 6.4vw, 50px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 960px;
  text-wrap: balance;
  min-height: 2.2em;
  opacity: 1;
  transition: opacity 1s linear;
}

.hero-title.is-fading {
  opacity: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.product-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
  text-align: left;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-sm {
  padding: clamp(16px, 2vw, 22px);
  gap: 14px;
}

.widget-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.widget-tools img {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.5;
}

.chip {
  font-size: 11px;
  font-weight: 500;
  padding: 8px 17px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.chip-dark {
  color: var(--white);
  background: var(--ink);
  border: none;
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row .mono {
  margin-right: 6px;
}

.filter-row .chip-dark {
  margin-left: 25px;
}

.filter-selects {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.select-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--pill);
  white-space: nowrap;
}

.select-chip .caret {
  color: var(--faint);
}

.money-chart {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.axis-btns {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.axis-btn {
  font-size: 11px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.axis-btn.rub {
  color: var(--accent);
  padding: 14px 5px;
}

.axis-btn.pcs {
  color: var(--ink);
  padding: 10px 5px;
}

.money-bar {
  display: flex;
  flex: 1;
  min-width: 0;
  height: 104px;
  border-radius: 10px;
  overflow: hidden;
}

.money-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 0;
  min-width: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--ink);
  white-space: nowrap;
}

.swatch {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 20px;
  align-items: stretch;
}

.grid-dash {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 20px;
  align-items: start;
}

/* BCG */
.bcg-wrap {
  display: flex;
  gap: 10px;
  flex: 1;
}

.bcg-axis-y {
  font-size: 12px;
  color: var(--faint);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: center;
}

.bcg-matrix {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.bcg-q {
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
}

.bcg-q.q1 {
  background: #fdf6ec;
  border-right: 1px dashed #d9d9d9;
  border-bottom: 1px dashed #d9d9d9;
  color: #d98510;
}

.bcg-q.q2 {
  background: #eef1fb;
  border-bottom: 1px dashed #d9d9d9;
  color: #2c5fd6;
}

.bcg-q.q3 {
  background: #fdefef;
  border-right: 1px dashed #d9d9d9;
  color: #d63a35;
}

.bcg-q.q4 {
  background: #edf7ee;
  color: #1f7a35;
}

.bcg-dot {
  position: absolute;
  border-radius: 100px;
}

.bcg-tooltip {
  position: absolute;
  left: 52%;
  top: 24%;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: rgba(0, 0, 0, 0.18) 0 10px 24px -8px;
  text-align: left;
}

.bcg-tooltip strong {
  font-size: 14px;
  font-weight: 600;
}

.bcg-tooltip span {
  font-size: 12px;
  color: #d6e4f1;
}

.axis-x {
  font-size: 12px;
  color: var(--faint);
  text-align: center;
}

/* Treemap */
.treemap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 3px;
  height: clamp(420px, 34vw, 520px);
}

.tm-cell {
  border-radius: 3px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
}

.tm-cell strong {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tm-cell span {
  font-size: 12px;
  opacity: 0.9;
}

/* Clusters */
.elastic {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 320px;
  background: linear-gradient(45deg, #4da3ff 0 9%, #34a853 9% 22%, #f0a020 22% 40%, #ef4444 40% 100%);
}

.elastic-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#121722 1px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.5;
}

.elastic-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.elastic-point i {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #1636d8;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.elastic-point span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* Dashboards */
.dash-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-tab {
  font-size: 11px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--pill);
  white-space: nowrap;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.dash-tab.is-active {
  background: var(--accent);
  color: var(--white);
  border: none;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

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

.chart-svg {
  width: 100%;
  height: 190px;
  display: block;
}

.chart-x {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--faint);
}

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

.data-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0 0 10px;
}

.data-table th.center,
.data-table td.center {
  text-align: center;
}

.data-table th.right,
.data-table td.right {
  text-align: right;
}

.data-table td {
  font-size: 12px;
  color: var(--ink);
  padding: 7px 0;
}

.data-table.detail td {
  padding: 9px 0;
  border-top: 1px solid #f5f5f5;
}

.data-table .right {
  text-align: right;
}

.cell-pill {
  display: inline-block;
  min-width: 74px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
}

.cell-a {
  background: #fdeacc;
}

.cell-b {
  background: #fbd7d2;
}

.cell-c {
  background: #ef4444;
  color: var(--white);
}

.day-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.day-badge i {
  width: 8px;
  height: 8px;
  border-radius: 100px;
}

.hero-demo-note {
  margin-top: -16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.hero .btn-lg {
  margin-top: 21px;
}

/* Pricing */
.pricing {
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 24px);
  background: var(--white);
}

.pricing-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.09;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 560px;
}

.billing-toggle {
  display: flex;
  justify-content: center;
}

.billing-toggle-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--pill);
  background: var(--bg);
  border: 1px solid var(--line);
}

.billing-toggle button {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
}

.billing-toggle button.is-active {
  background: var(--accent);
  color: var(--white);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  align-items: stretch;
}

.plan {
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.plan.is-hot {
  background: #fbfaf7;
  border-color: var(--accent);
}

.plan.is-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
}

.plan-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.077em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
}

.plan.is-dark .plan-tag {
  background: #2d2d2d;
  color: #d6e4f1;
}

.plan-price {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.plan-note {
  font-size: 14px;
  color: var(--muted);
}

.plan.is-dark .plan-note,
.plan.is-dark .plan-summary {
  color: var(--faint);
}

.plan-summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.plan-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.plan .btn {
  text-align: center;
  font-size: 16px;
  padding: 14px 24px;
}

.plan .btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.plan .btn-outline:hover {
  opacity: 0.88;
  color: var(--ink);
}

.pricing-footnote {
  margin: 0;
  font-size: 14px;
  color: var(--faint);
  text-align: left;
}

.pricing-offer {
  background: var(--ink);
  color: var(--white);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: calc(-1 * clamp(48px, 7vw, 80px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pricing-offer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact */
.contact {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 24px) clamp(64px, 8vw, 104px);
  background: linear-gradient(135deg, #faf9f7 0%, #c8dcf5 62%, #0068f9 130%);
  display: flex;
  align-items: center;
}

.contact-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 48px;
  align-items: center;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 40px);
  line-height: 1.09;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 520px;
  text-wrap: balance;
}

.contact-copy .logo-data {
  font-size: 1.5em;
  transform: translateY(0.06em);
}

.contact-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 460px;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}

.bullet i {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #046645;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.form-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
}

.form-success {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 32px 8px;
  text-align: center;
}

.form-success.is-visible {
  display: flex;
}

.form-success strong {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 600;
}

.form-success span {
  font-size: 16px;
  color: var(--muted);
}

.form-body.is-hidden {
  display: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.field .req {
  color: #b4232a;
}

.field input[type="tel"],
.slot-trigger {
  font-size: 16px;
  color: var(--ink);
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--bg);
  outline: none;
  font-family: inherit;
}

.field input:focus,
.slot-trigger:focus {
  border-color: var(--accent);
  background: var(--white);
}

.field input.is-error {
  border-color: #b4232a;
}

.field-error {
  display: none;
  font-size: 12px;
  font-weight: 400;
  color: #b4232a;
  padding-left: 18px;
}

.field-error.is-visible {
  display: block;
}

.slot-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.slot-wrap > span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.slot-wrap .opt {
  color: var(--faint);
  font-weight: 400;
}

.slot-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  color: var(--faint);
}

.slot-trigger.has-value {
  color: var(--ink);
}

.slot-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  z-index: 20;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  flex-direction: column;
  gap: 14px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 20px 30px -10px;
}

.slot-panel.is-open {
  display: flex;
}

.now-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
}

.now-btn.is-active {
  background: #eaf3ff;
  color: var(--accent);
}

.now-btn i {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--faint);
}

.now-btn.is-active i {
  background: var(--accent);
}

.slot-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.077em;
  text-transform: uppercase;
  color: var(--faint);
}

.days,
.times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.day-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 56px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
}

.day-btn small {
  font-size: 11px;
  opacity: 0.7;
}

.day-btn strong {
  font-size: 15px;
  font-weight: 600;
}

.day-btn.is-active,
.time-btn.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.time-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
}

.slot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.slot-footer .reset {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 40px clamp(16px, 4vw, 24px);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  height: 24px;
  width: auto;
  display: block;
}

.footer-brand .logo {
  font-size: 18px;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.footer-brand .logo-data {
  font-size: 27px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}

.footer-links a {
  color: var(--muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--faint);
}

.footer-legal {
  max-width: var(--max);
  margin: 16px auto 0;
  font-size: 10px;
  color: var(--faint);
}

.footer-legal + .footer-legal {
  margin-top: 6px;
}

.footer-legal a {
  color: var(--faint);
  text-decoration: underline;
}

@media (max-width: 720px) {
  .filter-row .chip-dark {
    margin-left: 0;
  }

  .filter-selects {
    margin-left: 0;
    width: 100%;
  }

  .money-bar {
    height: 72px;
  }

  .money-seg {
    font-size: 11px;
  }
}
