:root {
  --paper: #F4F6EC;
  --sage: #E9EDDE;
  --ink: #16261D;
  --ink2: #46584C;
  --green: #1F6B4E;
  --green-d: #16513B;
  --lime: #CDF463;
  --lime-d: #B4E34A;
  --tang: #FF7A45;
  --rose: #FFD3DC;
  --sky: #C7E3FF;
  --sun: #FFE08A;
  --mint: #CDEED7;
  --white: #FFFDF7;
  --line: rgba(22, 38, 29, .14);
  --sh: 6px 6px 0 var(--ink);
  --sh-sm: 4px 4px 0 var(--ink);
  --r: 18px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Golos Text', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 38, 29, .07) 1.3px, transparent 1.3px);
  background-size: 26px 26px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

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

h1, h2, h3, .disp {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.01em;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--tang);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: 600 15px/1 'Golos Text';
  padding: 14px 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-lime {
  background: var(--lime);
}

.btn-ink {
  background: var(--ink);
  color: var(--lime);
}

.btn-ghost {
  background: transparent;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
  box-shadow: 3px 3px 0 var(--ink);
}

.btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--sh-sm);
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 2px solid transparent;
  transition: .25s;
}

header.scrolled {
  border-color: var(--ink);
  box-shadow: 0 6px 0 rgba(22, 38, 29, .05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 19px;
}

.logo .mk {
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--lime);
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
}

.logo .mk svg {
  width: 18px;
  height: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 0;
  background: var(--tang);
  border-radius: 2px;
  transition: width .25s;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- OVERLINE / HEADS ---------- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font: 600 12px/1 'Golos Text';
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: ping 1.6s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.shead {
  max-width: 760px;
  margin-bottom: 42px;
}

.shead h2 {
  font-size: clamp(27px, 3.7vw, 46px);
  margin: 18px 0 14px;
}

.shead .lead {
  font-size: 17px;
  color: var(--ink2);
  max-width: 620px;
}

.shead.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.shead.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.hl {
  position: relative;
  white-space: nowrap;
  z-index: 0;
}

.hl::after {
  content: '';
  position: absolute;
  left: -5px;
  right: -7px;
  bottom: 8%;
  height: 36%;
  background: var(--lime);
  z-index: -1;
  transform: skew(-9deg) rotate(-1deg);
  border-radius: 5px;
}

.hl.t::after {
  background: var(--tang);
}

/* ---------- HERO ---------- */
.hero {
  padding: 54px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 46px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5.1vw, 62px);
  font-weight: 800;
  margin: 20px 0 22px;
}

.hero .lead {
  font-size: 18px;
  color: var(--ink2);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  padding: 0 26px;
  border-left: 2px solid var(--line);
}

.stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat b {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 26px;
  display: block;
}

.stat span {
  font-size: 13px;
  color: var(--ink2);
}

/* hero visual */
.hero-vis {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.blob-c {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: translate(7%, -4%);
  z-index: 0;
}

.blob-s {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--tang);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  bottom: 6%;
  left: 2%;
  z-index: 0;
}

.spark {
  position: absolute;
  font-family: 'Unbounded';
  font-weight: 800;
  color: var(--ink);
  z-index: 0;
}

.spark.a {
  top: 6%;
  left: 8%;
  font-size: 30px;
  animation: spin 9s linear infinite;
}

.spark.b {
  bottom: 14%;
  right: 6%;
  font-size: 22px;
  color: var(--tang);
  animation: spin 7s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* phone mock */
.phone {
  position: relative;
  z-index: 2;
  width: 300px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 40px;
  box-shadow: 12px 12px 0 var(--ink);
  padding: 14px 14px 18px;
  transform: rotate(-2deg);
}

.phone .notch {
  width: 96px;
  height: 7px;
  background: var(--ink);
  border-radius: 99px;
  margin: 2px auto 14px;
}

.ph-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 12px;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 12px;
}

.ph-ava {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: var(--rose);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.ph-head b {
  font-family: 'Unbounded';
  font-size: 13px;
  display: block;
}

.ph-head small {
  color: var(--ink2);
  font-size: 11px;
}

.ph-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink2);
  margin: 0 4px 8px;
}

.ph-dates {
  display: flex;
  gap: 7px;
  margin: 0 2px 14px;
}

.ph-date {
  flex: 1;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 7px 0;
  text-align: center;
  transition: .25s;
}

.ph-date small {
  display: block;
  font-size: 9px;
  color: var(--ink2);
  text-transform: uppercase;
}

.ph-date b {
  font-family: 'Unbounded';
  font-size: 15px;
}

.ph-date.on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--lime);
  transform: translateY(-3px);
}

.ph-date.on small {
  color: var(--lime);
}

.ph-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 0 2px 14px;
}

.ph-slot {
  border: 2px solid var(--line);
  border-radius: 10px;
  text-align: center;
  padding: 8px 0;
  font-weight: 700;
  font-size: 12px;
  transition: .25s;
}

.ph-slot.on {
  background: var(--lime);
  border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.ph-confirm {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--lime);
  padding: 13px;
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 14px;
  cursor: default;
  transition: .2s;
  text-align: center;
}

.ph-confirm.press {
  transform: scale(.96);
  background: var(--tang);
}

.ph-success {
  position: absolute;
  inset: 3px;
  border-radius: 37px;
  background: var(--white);
  display: grid;
  place-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  text-align: center;
  padding: 30px;
}

.ph-success.show {
  opacity: 1;
}

.ph-success .ck {
  width: 74px;
  height: 74px;
}

.ph-success .ck circle {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .5s ease .1s;
}

.ph-success .ck path {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset .4s ease .5s;
}

.ph-success.show .ck circle {
  stroke-dashoffset: 0;
}

.ph-success.show .ck path {
  stroke-dashoffset: 0;
}

.ph-success b {
  font-family: 'Unbounded';
  font-size: 16px;
}

.ph-success span {
  font-size: 13px;
  color: var(--ink2);
}

.chip-f {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  gap: 7px;
  animation: bob 5s ease-in-out infinite;
}

.chip-f.c1 {
  top: 2%;
  left: -26px;
  animation-delay: 0s;
}

.chip-f.c2 {
  top: 34%;
  right: -34px;
  background: var(--sky);
  animation-delay: .8s;
}

.chip-f.c3 {
  bottom: 10%;
  left: -44px;
  background: var(--tang);
  color: var(--ink);
  animation-delay: 1.6s;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- TICKER ---------- */
.ticker-wrap {
  overflow: hidden;
  padding: 18px 0;
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-1deg);
  margin: -6px -3% 0;
  width: 106%;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: mq 38s linear infinite;
}

.ticker-track span {
  font-family: 'Unbounded';
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 34px;
}

.ticker-track span::after {
  content: '✦';
  color: var(--ink);
}

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

/* ---------- CATEGORIES ---------- */
.sec {
  padding: 96px 0;
}

.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat {
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  padding: 20px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative;
  box-shadow: var(--sh-sm);
  text-align: left;
}

.cat:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--tint);
}

.cat .em {
  font-size: 28px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--tint);
  border: 2px solid var(--ink);
  border-radius: 14px;
  transform: rotate(-4deg);
  margin-bottom: 14px;
}

.cat h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cat p {
  font-size: 13px;
  color: var(--ink2);
}

.cat .ar {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  opacity: .4;
  transition: .2s;
}

.cat:hover .ar {
  opacity: 1;
  transform: translate(3px, -3px);
}

.cat.wide {
  grid-column: span 2;
}

/* ---------- DEMO ---------- */
.band {
  background: var(--sage);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--sh);
  padding: 24px;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.steps {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.stp {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  min-width: 0;
}

.stp i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font: 700 12px/1 'Unbounded';
  font-style: normal;
  flex-shrink: 0;
  transition: .25s;
}

.stp.act {
  color: var(--ink);
}

.stp.act i {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

.stp.done i {
  background: var(--lime);
  border-color: var(--ink);
  color: var(--ink);
}

.stp .tx {
  display: none;
}

.panel {
  display: none;
  animation: fadeUp .35s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.panel.act {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.panel h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.panel .sub {
  font-size: 14px;
  color: var(--ink2);
  margin-bottom: 16px;
}

/* business cards */
.biz-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biz {
  display: flex;
  gap: 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  transition: .18s;
  background: var(--white);
}

.biz:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}

.biz.sel {
  border-color: var(--ink);
  box-shadow: var(--sh-sm);
  background: #F2FBDF;
}

.biz img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}

.biz .info {
  flex: 1;
  min-width: 0;
}

.biz .info .top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.biz h4 {
  font-family: 'Unbounded';
  font-size: 15px;
  font-weight: 700;
}

.biz .tag {
  font-size: 11px;
  font-weight: 700;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 9px;
  white-space: nowrap;
}

.biz .meta {
  font-size: 12.5px;
  color: var(--ink2);
  margin: 6px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.biz .star {
  color: var(--tang);
  font-weight: 700;
}

/* services */
.srv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: .18s;
  background: var(--white);
  margin-bottom: 10px;
}

.srv:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}

.srv.sel {
  border-color: var(--ink);
  background: #F2FBDF;
  box-shadow: var(--sh-sm);
}

.srv .l b {
  display: block;
  font-weight: 700;
  font-size: 15px;
}

.srv .l span {
  font-size: 13px;
  color: var(--ink2);
}

.srv .pr {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}

.srv .pr small {
  font-family: 'Golos Text';
  font-weight: 600;
  font-size: 12px;
  color: var(--ink2);
  display: block;
  text-align: right;
}

/* dates */
.dates {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
}

.date-pill {
  flex-shrink: 0;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 9px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: .18s;
  min-width: 60px;
}

.date-pill:hover {
  border-color: var(--ink);
}

.date-pill.sel {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  box-shadow: var(--sh-sm);
}

.date-pill .dw {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink2);
  font-weight: 700;
}

.date-pill.sel .dw {
  color: var(--lime);
}

.date-pill b {
  font-family: 'Unbounded';
  font-size: 18px;
  display: block;
  line-height: 1.2;
}

.date-pill .dm {
  display: block;
  font-size: 11px;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 9px;
  margin-top: 6px;
}

.slot {
  border: 2px solid var(--line);
  border-radius: 12px;
  text-align: center;
  padding: 11px 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  background: var(--white);
  transition: .15s;
}

.slot:hover:not(.taken):not(.past) {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.slot.sel {
  background: var(--lime);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.slot.taken {
  opacity: .4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.slot.past {
  opacity: .25;
  cursor: not-allowed;
}

/* form */
.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 13px 15px;
  font: 500 15px 'Golos Text';
  background: var(--white);
  color: var(--ink);
}

.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 3px 3px 0 var(--green);
}

.field .err {
  color: #C0392B;
  font-size: 12.5px;
  margin-top: 5px;
  display: none;
  font-weight: 600;
}

.field.invalid .err {
  display: block;
}

.field.invalid input {
  border-color: #C0392B;
}

.panel-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
}

/* summary */
.summary {
  position: sticky;
  top: 96px;
}

.summary h3 {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}

.sum-row .k {
  color: var(--ink2);
}

.sum-row .v {
  font-weight: 600;
  text-align: right;
}

.sum-row.empty {
  justify-content: center;
  color: var(--ink2);
  border: 0;
  padding: 18px 0;
}

.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.sum-total .k {
  font-weight: 700;
}

.sum-total .v {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 24px;
}

.mybook {
  margin-top: 22px;
}

.mybook h3 {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mybook h3 .cnt {
  background: var(--ink);
  color: var(--lime);
  font-family: 'Unbounded';
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.mb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mb {
  display: flex;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 11px 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  animation: fadeUp .3s ease;
}

.mb .bar {
  width: 6px;
  border-radius: 6px;
  background: var(--tint, var(--lime));
  flex-shrink: 0;
}

.mb .body {
  flex: 1;
  min-width: 0;
}

.mb .body b {
  font-size: 13.5px;
  display: block;
}

.mb .body span {
  font-size: 12px;
  color: var(--ink2);
}

.mb .x {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink2);
  padding: 2px 4px;
  border-radius: 6px;
  align-self: flex-start;
}

.mb .x:hover {
  color: #C0392B;
  background: var(--rose);
}

.mb-empty {
  font-size: 13px;
  color: var(--ink2);
  text-align: center;
  padding: 14px;
  border: 2px dashed var(--line);
  border-radius: 14px;
}

/* success overlay inside card */
.success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 34px;
  z-index: 5;
}

.success.show {
  display: flex;
  animation: fadeUp .4s ease;
}

.success .ck {
  width: 96px;
  height: 96px;
}

.success .ck circle {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw .6s ease forwards .1s;
}

.success .ck path {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: draw .4s ease forwards .6s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.success h3 {
  font-size: 24px;
}

.success p {
  color: var(--ink2);
  max-width: 340px;
}

.success .det {
  background: var(--sage);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
  text-align: left;
  width: 100%;
  max-width: 340px;
}

.success .det b {
  display: block;
  font-family: 'Unbounded';
  font-size: 15px;
  margin-bottom: 4px;
}

.success .acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- HOW IT WORKS ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.flow::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 5%;
  right: 5%;
  border-top: 3px dashed var(--line);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step:nth-child(even) {
  margin-top: 38px;
}

.step .num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--sh-sm);
  display: grid;
  place-items: center;
  font: 800 24px 'Unbounded';
  margin-bottom: 16px;
}

.step:nth-child(1) .num {
  background: var(--lime);
}

.step:nth-child(2) .num {
  background: var(--tang);
}

.step:nth-child(3) .num {
  background: var(--sky);
}

.step:nth-child(4) .num {
  background: var(--rose);
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--ink2);
}

/* ---------- BIZ (DARK) ---------- */
.bizsec {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.bizsec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(205, 244, 99, .10) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
  pointer-events: none;
}

.bizsec .overline {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.bizsec h2 {
  font-size: clamp(27px, 3.6vw, 44px);
  margin: 18px 0 16px;
}

.bizsec h2 .hl::after {
  background: var(--lime);
}

.bizsec .lead {
  color: rgba(244, 246, 236, .78);
  margin-bottom: 26px;
  max-width: 480px;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefits .ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 2px solid var(--lime);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(205, 244, 99, .12);
}

.benefits b {
  display: block;
  font-size: 15px;
}

.benefits span {
  font-size: 13.5px;
  color: rgba(244, 246, 236, .7);
}

.biz-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 430px;
}

.bc {
  border: 2px solid rgba(244, 246, 236, .22);
  border-radius: 16px;
  padding: 16px 18px;
}

.bc b {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 30px;
  color: var(--lime);
  display: block;
}

.bc span {
  font-size: 13px;
  color: rgba(244, 246, 236, .72);
}

/* dashboard mock */
.dash {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .35);
  padding: 22px;
  transform: rotate(1.4deg);
  transition: transform .3s;
}

.dash:hover {
  transform: rotate(0);
}

.dash .dh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dash .dh b {
  font-family: 'Unbounded';
  font-size: 15px;
}

.dash .dh .live {
  font-size: 11px;
  font-weight: 700;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash .live .pulse {
  background: var(--green);
}

.upc {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.upc .row {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 9px 11px;
}

.upc .tm {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 13px;
  background: var(--tint);
  border: 2px solid var(--ink);
  border-radius: 9px;
  padding: 4px 8px;
  min-width: 54px;
  text-align: center;
}

.upc .who b {
  font-size: 13.5px;
  display: block;
}

.upc .who span {
  font-size: 12px;
  color: var(--ink2);
}

.chart-t {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink2);
  margin-bottom: 10px;
}

.bars {
  display: flex;
  gap: 9px;
  align-items: flex-end;
  height: 120px;
}

.bar {
  flex: 1;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 8px 8px 4px 4px;
  height: 6%;
  transition: height 1s cubic-bezier(.2, .7, .2, 1);
  position: relative;
}

.bar.hot {
  background: var(--tang);
}

.bar::after {
  content: attr(data-d);
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: var(--ink2);
  font-weight: 700;
}

.bars-wrap {
  padding-bottom: 22px;
}

.dash-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed var(--line);
  padding-top: 14px;
  font-size: 13px;
}

.dash-foot .up {
  color: var(--green);
  font-weight: 700;
}

/* ---------- PRICING ---------- */
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--sh-sm);
  margin-bottom: 36px;
}

.toggle label {
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}

.toggle input {
  display: none;
}

.toggle label.on {
  background: var(--ink);
  color: var(--lime);
}

.toggle .save {
  font-size: 11px;
  font-weight: 700;
  background: var(--tang);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 2px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan {
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  transition: transform .25s;
  position: relative;
}

.plan:hover {
  transform: translateY(-7px);
}

.plan .pn {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 18px;
}

.plan .pd {
  font-size: 13.5px;
  color: var(--ink2);
  margin: 6px 0 18px;
  min-height: 38px;
}

.plan .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.plan .price .num {
  font-family: 'Unbounded';
  font-weight: 800;
  font-size: 42px;
}

.plan .price .per {
  font-size: 14px;
  color: var(--ink2);
  font-weight: 600;
}

.plan .bill-note {
  font-size: 12.5px;
  color: var(--ink2);
  margin-bottom: 20px;
  min-height: 18px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
}

.plan li .ck {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.plan .btn {
  width: 100%;
}

.plan.feat {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.04);
  z-index: 2;
}

.plan.feat:hover {
  transform: scale(1.04) translateY(-7px);
}

.plan.feat .pd,
.plan.feat .price .per,
.plan.feat .bill-note {
  color: rgba(244, 246, 236, .72);
}

.plan.feat li .ck {
  color: var(--lime);
}

.plan.feat .btn {
  background: var(--lime);
  color: var(--ink);
}

.badge {
  position: absolute;
  top: -15px;
  right: 24px;
  background: var(--tang);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 5px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  transform: rotate(3deg);
  box-shadow: 3px 3px 0 var(--ink);
}

/* ---------- TESTIMONIALS ---------- */
.t-wrap {
  overflow: hidden;
  padding: 6px 0;
}

.t-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: mq 50s linear infinite;
}

.t-wrap:hover .t-track {
  animation-play-state: paused;
}

.t-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--sh-sm);
}

.t-card .stars {
  color: var(--tang);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.t-card p {
  font-size: 15px;
  margin-bottom: 18px;
}

.t-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-card .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 16px;
  background: var(--tint);
}

.t-card .who b {
  font-size: 14px;
  display: block;
}

.t-card .who span {
  font-size: 12.5px;
  color: var(--ink2);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  margin-bottom: 13px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}

.faq-q .ic {
  font-size: 24px;
  transition: transform .3s;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .ic {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--ink2);
  font-size: 15px;
}

/* ---------- CTA ---------- */
.cta-sec {
  padding: 30px 0 96px;
}

.cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: 30px;
  padding: 74px 44px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 10px 10px 0 rgba(22, 38, 29, .25);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(205, 244, 99, .10) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
}

.cta .bigck {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 240px;
  height: 240px;
  opacity: .08;
}

.cta .bigck path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  position: relative;
  margin-bottom: 16px;
}

.cta h2 .hl::after {
  background: var(--lime);
}

.cta p {
  position: relative;
  color: rgba(244, 246, 236, .8);
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.cta .acts {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 28px;
  position: relative;
  z-index: 1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 44px;
}

.foot-brand .logo {
  color: var(--paper);
  margin-bottom: 14px;
}

.foot-brand .logo .mk {
  box-shadow: 3px 3px 0 var(--lime);
}

.foot-brand p {
  color: rgba(244, 246, 236, .66);
  font-size: 14px;
  max-width: 280px;
}

.foot-col h4 {
  font-family: 'Unbounded';
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  color: rgba(244, 246, 236, .72);
  font-size: 14px;
  padding: 5px 0;
  transition: .2s;
}

.foot-col a:hover {
  color: var(--lime);
  transform: translateX(3px);
}

.foot-bot {
  border-top: 2px solid rgba(244, 246, 236, .16);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(244, 246, 236, .6);
}

.foot-bot a:hover {
  color: var(--lime);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 90px);
  background: var(--ink);
  color: var(--lime);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  z-index: 120;
  box-shadow: var(--sh);
  border: 2px solid var(--lime);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  align-items: center;
  gap: 9px;
}

.toast.show {
  transform: translate(-50%, 0);
}

/* ---------- REVEAL ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ---------- CATALOG HEADER & SEARCH ---------- */
.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.catalog-top .add-biz-btn {
  flex-shrink: 0;
}

.search-box {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.search-ic {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.search-input-wrap input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 42px 13px 44px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font: 500 15px 'Golos Text', sans-serif;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 4px 4px 0 var(--green);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--ink2);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.search-clear-btn:hover {
  color: var(--ink);
  background: var(--line);
}

.cat-filter-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cat-filter-strip::-webkit-scrollbar {
  display: none;
}

.cfp {
  flex-shrink: 0;
  font: 600 13px/1 'Golos Text', sans-serif;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 2px 2px 0 var(--ink);
  box-sizing: border-box;
}

.cfp:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.cfp.act {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

.search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink2);
  font-weight: 600;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.empty-search {
  text-align: center;
  padding: 36px 16px;
  border: 2px dashed var(--line);
  border-radius: 16px;
  color: var(--ink2);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ---------- MODAL: ADD BUSINESS ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 38, 29, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  display: grid;
  opacity: 1;
}

.modal-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 12px 12px 0 var(--ink);
  max-width: 540px;
  width: 100%;
  padding: 28px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

.modal-head h3 {
  font-size: 20px;
}

.modal-close {
  background: none;
  border: 2px solid var(--ink);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.15s ease;
}

.modal-close:hover {
  transform: translate(-1px, -1px);
  background: var(--rose);
}

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.select-field {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 13px 15px;
  font: 600 14px 'Golos Text', sans-serif;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-vis {
    order: -1;
    min-height: 480px;
  }
  .biz-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dash {
    transform: rotate(0);
    max-width: 440px;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .summary {
    position: static;
  }
  .flow {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .flow::before {
    display: none;
  }
  .step:nth-child(even) {
    margin-top: 0;
  }
  .cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat.wide {
    grid-column: span 2;
  }
  .plans {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .plan.feat {
    transform: none;
  }
  .plan.feat:hover {
    transform: translateY(-7px);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    box-shadow: var(--sh);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 8px 4px;
    width: 100%;
  }
  .nav-cta .btn-ghost {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-cta {
    gap: 10px;
  }
  .sec {
    padding: 60px 0;
  }
  .bizsec {
    padding: 60px 0;
  }
  .chip-f {
    display: none;
  }
  
  /* Constrain Ticker & Hero Visual from pushing viewport */
  .ticker-wrap {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    transform: none;
    border-left: none;
    border-right: none;
  }
  .hero-vis {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    min-height: 380px;
  }
  .blob-c {
    width: 260px;
    height: 260px;
    transform: none;
  }
  .phone {
    width: 270px;
    max-width: calc(100vw - 40px);
    transform: none;
  }

  /* Catalog & Search on Tablet / Mobile */
  .catalog-top {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .catalog-top .add-biz-btn {
    align-self: flex-start;
  }
  .modal-card {
    padding: 20px 16px;
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--ink);
    max-width: calc(100vw - 28px);
  }
  .modal-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 12px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .stats {
    gap: 14px 0;
  }
  .stat {
    padding: 0 14px;
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .cats {
    grid-template-columns: 1fr;
  }
  .cat.wide {
    grid-column: span 1;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 44px 18px;
  }
  .steps .tx {
    display: none;
  }

  /* Compact Card & Mobile Search */
  .card {
    padding: 14px 12px;
    border-radius: 16px;
    box-shadow: 3px 3px 0 var(--ink);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .catalog-top {
    margin-bottom: 10px;
    gap: 6px;
  }
  .catalog-top h3 {
    font-size: 15.5px;
  }
  .catalog-top .sub {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .catalog-top .add-biz-btn {
    width: 100%;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .search-box {
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .search-input-wrap {
    margin-bottom: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .search-input-wrap input {
    padding: 9px 28px 9px 32px;
    font-size: 13px;
    border-radius: 10px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .search-ic {
    left: 9px;
    width: 15px;
    height: 15px;
  }
  .search-clear-btn {
    right: 5px;
    font-size: 13px;
    padding: 2px 4px;
  }
  
  /* Wrap categories so they fit 100% within the screen width */
  .cat-filter-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 0;
    margin-bottom: 6px;
  }
  .cfp {
    padding: 5px 9px;
    font-size: 11.5px;
    border-radius: 999px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .search-meta {
    font-size: 11.5px;
    margin-top: 4px;
  }
  .empty-search {
    padding: 20px 10px;
    gap: 6px;
  }
  .empty-search b {
    font-size: 13.5px;
  }
  .empty-search p {
    font-size: 11.5px;
  }
  .biz {
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .biz img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
  .biz h4 {
    font-size: 13px;
  }
  .biz .tag {
    font-size: 9.5px;
    padding: 1px 6px;
  }
  .biz .meta {
    font-size: 11px;
    gap: 3px 6px;
    margin-top: 3px;
  }
}

@media (max-width: 380px) {
  .search-input-wrap input {
    font-size: 12px;
    padding: 8px 26px 8px 30px;
  }
  .search-ic {
    left: 8px;
    width: 14px;
    height: 14px;
  }
  .cfp {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* ===================================================
   BUSINESS CABINET & EMPTY CATALOG STATES
   =================================================== */

.empty-catalog-box {
  background: var(--white);
  border: 2px dashed var(--ink);
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-catalog-icon {
  font-size: 46px;
  line-height: 1;
}

.empty-catalog-box h3 {
  font-size: 18px;
  color: var(--ink);
}

.empty-catalog-box p {
  font-size: 13.5px;
  color: var(--ink2);
  max-width: 440px;
  line-height: 1.55;
}

.empty-catalog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Business Cabinet Modal & Elements */
.modal-card.cabinet-card {
  max-width: 760px;
  width: 95%;
  background: var(--paper);
  padding: 24px 22px;
}

.cabinet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.cab-biz-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cab-biz-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
}

.cab-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cab-tab {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 8px 14px;
  font: 600 13px 'Golos Text', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .15s, background .15s, box-shadow .15s;
}

.cab-tab:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.cab-tab.active {
  background: var(--lime);
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(1px, 1px);
}

.cab-pane {
  display: none;
}

.cab-pane.active {
  display: block;
  animation: modalIn .2s ease;
}

/* Share link & QR */
.biz-link-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--sh-sm);
  margin-bottom: 16px;
}

.biz-link-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.biz-link-card p {
  font-size: 12.5px;
  color: var(--ink2);
}

.biz-link-input-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.biz-link-input {
  flex: 1;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 9px 12px;
  font: 600 13px 'Golos Text', monospace;
  color: var(--ink);
}

.biz-qr-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}

.biz-qr-img {
  width: 110px;
  height: 110px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  box-shadow: 2px 2px 0 var(--ink);
}

/* Bookings list in Cabinet */
.biz-bookings-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}

.biz-book-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.biz-book-card.done {
  opacity: 0.75;
  background: #f7f9f2;
}

.biz-book-info b {
  font-size: 14.5px;
  display: block;
}

.biz-book-info .meta-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--ink2);
  margin-top: 3px;
  flex-wrap: wrap;
}

.biz-book-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green-d);
  font-weight: 600;
  text-decoration: underline;
}

.biz-book-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.biz-status-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  text-transform: uppercase;
}

.biz-status-tag.confirmed {
  background: var(--lime);
}

.biz-status-tag.completed {
  background: var(--mint);
}

.biz-status-tag.cancelled {
  background: var(--rose);
}

/* Services list in Cabinet */
.biz-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  max-height: 320px;
  overflow-y: auto;
}

.biz-service-row {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.biz-service-row .title {
  font-weight: 600;
  font-size: 14px;
}

.biz-service-row .meta {
  font-size: 12px;
  color: var(--ink2);
}

.biz-service-row .price {
  font-weight: 700;
  font-size: 14.5px;
  margin-left: auto;
  white-space: nowrap;
}

.biz-service-del {
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 3px 7px;
  font-size: 12px;
  cursor: pointer;
  transition: .15s;
}

.biz-service-del:hover {
  background: var(--rose);
}

.add-service-box {
  background: var(--sage);
  border: 2px dashed var(--ink);
  border-radius: 14px;
  padding: 14px;
}

.add-service-box h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.add-service-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 8px;
  align-items: end;
}

.add-service-form input {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px 10px;
  font: 500 13px 'Golos Text', sans-serif;
  width: 100%;
}

@media (max-width: 600px) {
  .add-service-form {
    grid-template-columns: 1fr;
  }
}

/* Stats in Cabinet */
.biz-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.biz-stat-item {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 2px 2px 0 var(--ink);
}

.biz-stat-item b {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  display: block;
}

.biz-stat-item span {
  font-size: 11.5px;
  color: var(--ink2);
}

@media (max-width: 520px) {
  .biz-stats-grid {
    grid-template-columns: 1fr;
  }
  .modal-card.cabinet-card {
    padding: 16px 12px;
  }
}

