:root {
  /* ─── Brand palette (from NovaWave reference) ─── */
  --blue: #2f4bff;
  --blue-600: #2138e6;
  --blue-100: #e8ecff;
  --ink: #0a0e1a;
  --ink-2: #141a2e;
  --slate: #4a5268;
  --muted: #8b93a7;
  --line: #e7e9f0;
  --bg: #f4f6fb;
  --card: #ffffff;
  --white: #ffffff;
  --green: #17b26a;
  --amber: #f79009;
  --red: #f04438;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(20, 26, 46, 0.22);
  --shadow-soft: 0 6px 24px -12px rgba(20, 26, 46, 0.10);
  --font-head: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #f6f7fc;
  background-image:
    radial-gradient(at 12% 0%, rgba(47,75,255,.055), transparent 46%),
    radial-gradient(at 88% 18%, rgba(139,92,246,.05), transparent 42%);
  background-attachment: fixed;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.06; letter-spacing: -0.035em; }
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--blue); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease;
}
.btn span, .btn svg { transition: transform .35s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(10,14,26,.5); }
.btn-blue { background: linear-gradient(110deg, var(--blue), #6d28d9); color: #fff; box-shadow: 0 8px 22px -10px rgba(47,75,255,.55); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(47,75,255,.7); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-white { background: #fff; color: var(--ink); }
.btn-wa { background: #25D366; color: #fff; font-weight: 700; box-shadow: 0 8px 22px -10px rgba(37,211,102,.7); }
.btn-wa:hover { background: #1eb855; transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(37,211,102,.8); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ─── Pills / tags ─── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600;
  background: var(--blue-100); color: var(--blue-600); text-transform: uppercase; letter-spacing: .06em;
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.on { background: var(--green); box-shadow: 0 0 0 4px rgba(23,178,106,.15); }
.dot.off { background: var(--muted); }

/* ─── Cards ─── */
.card {
  background: var(--card); border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(20,26,46,.04);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s ease;
}
.card--hover:hover { transform: translateY(-5px) scale(1.005); border-color: #cdd6ff; box-shadow: var(--shadow); }
/* image shine sweep on hover */
.shine { position: relative; overflow: hidden; }
.shine::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; left: -100px; z-index: 2;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg);
  transition: left .8s var(--ease); pointer-events: none; }
.shine:hover::after { left: calc(100% + 60px); }

/* ─── Sections ─── */
.section { padding: 110px 0; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--blue); }
.section-title { font-size: clamp(32px, 4.2vw, 52px); margin: 18px 0 16px; }
.section-sub { color: var(--slate); font-size: 16.5px; max-width: 540px; line-height: 1.7; }

/* ─── Word-reveal (Framer-style) ─── */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .w > span { display: inline-block; transform: translateY(112%); will-change: transform; }

/* ─── Utility ─── */
.grid { display: grid; gap: 22px; }
.row { display: flex; }
.spread { justify-content: space-between; align-items: center; }
.center { align-items: center; }
.muted { color: var(--muted); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 34px; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { height: 10px; width: 10px; }
::-webkit-scrollbar-thumb { background: #cfd4e4; border-radius: 999px; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
}
/* ══════════════ NAVBAR (floating glass capsule) ══════════════ */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; transition: transform .5s var(--ease), top .3s ease; }
.nav--hidden { transform: translateY(-130%); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(231,233,240,.9); border-radius: 999px;
  padding: 10px 12px 10px 22px;
  box-shadow: 0 12px 40px -18px rgba(20,26,46,.25);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav--onhero .nav__inner { background: rgba(12,16,34,.42); border-color: rgba(255,255,255,.14); box-shadow: 0 12px 40px -18px rgba(0,0,0,.5); }
.nav--solid .nav__inner { box-shadow: 0 16px 44px -18px rgba(20,26,46,.32); }

.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.nav__logo b { color: var(--blue); font-weight: 800; }
.nav__mark { width: 34px; height: 34px; border-radius: 10px; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; }
.nav__logoimg { width: 38px; height: 38px; object-fit: contain; border-radius: 50%; background: #fff; padding: 2px; box-shadow: 0 2px 8px rgba(20,26,46,.12); }
.nav__logoimg--footer { background: #fff; }
.footer__tagline { color: #aab8ff; font-size: 14px; font-weight: 600; margin-top: 14px; font-style: italic; }

.nav__links { display: flex; gap: 6px; font-weight: 500; font-size: 14.5px; }
.nav__links a { color: var(--slate); padding: 9px 16px; border-radius: 999px; position: relative; transition: color .25s, background .25s; }
.nav__links a:hover { color: var(--ink); background: rgba(47,75,255,.07); }
.nav__links a.active { color: var(--blue-600); background: var(--blue-100); font-weight: 600; }
.nav--onhero .nav__links a { color: rgba(255,255,255,.75); }
.nav--onhero .nav__links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav--onhero .nav__links a.active { color: #fff; background: rgba(255,255,255,.16); }
.nav--onhero .nav__logo { color: #fff; }
.nav--onhero .nav__logo b { color: #aab8ff; }

/* login button — quiet, outlined, fills on hover */
.nav__login {
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
  transition: all .35s var(--ease);
}
.nav__login:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-1px); }
.nav--onhero .nav__login { color: #fff; border-color: rgba(255,255,255,.35); }
.nav--onhero .nav__login:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* book CTA — gradient capsule with shine sweep */
.nav__cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: linear-gradient(110deg, var(--blue), #6d28d9); color: #fff;
  box-shadow: 0 8px 22px -8px rgba(47,75,255,.6);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__cta span { transition: transform .35s var(--ease); }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(47,75,255,.75); }
.nav__cta:hover span { transform: translateX(4px); }
.nav__cta::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 46px; left: -70px;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.nav__cta:hover::after { left: 130%; }

@media (max-width: 780px) { .nav__links { display: none; } .nav__inner { padding-left: 14px; } }

/* ══════════════ HERO ══════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero__video.is-active { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(105deg, rgba(8,11,26,.92) 0%, rgba(10,14,30,.72) 42%, rgba(30,42,120,.45) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding-top: 90px; }
.hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.hero__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 8px 16px; backdrop-filter: blur(8px); }
.hero__copy h1 { color: #fff; font-size: clamp(42px, 5.6vw, 72px); margin: 26px 0 0; }
.accent-soft .w > span { color: #aab8ff; }
.hero__sub { color: rgba(255,255,255,.78); font-size: 17px; max-width: 480px; line-height: 1.7; margin-top: 22px; }
.hero__cta { display: flex; gap: 14px; margin: 34px 0 48px; flex-wrap: wrap; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.hero__stats { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; gap: 2px; }
.hero__stats b { font-family: var(--font-head); font-size: 24px; color: #fff; letter-spacing: -0.02em; }
.hero__stats span { color: rgba(255,255,255,.55); font-size: 12px; }
.hero__stats i { width: 1px; height: 34px; background: rgba(255,255,255,.18); }
.hero__panel { display: flex; justify-content: flex-end; }
.quickpick { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(20px); border-radius: 24px; padding: 34px; width: 420px; }
.quickpick__title { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 18px; }
.quickpick__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.quickpick__tile { background: rgba(255,255,255,.92); border-radius: 16px; padding: 22px 12px; display: flex; flex-direction: column; align-items: center; gap: 5px; transition: transform .35s var(--ease), background .25s; }
.quickpick__tile:hover { transform: translateY(-4px); background: #fff; }
.quickpick__emoji { font-size: 30px; }
.quickpick__name { font-weight: 700; font-size: 14.5px; font-family: var(--font-head); color: var(--ink); }
.quickpick__from { font-size: 11px; color: var(--muted); }
.quickpick__foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.75); font-size: 13px; display: flex; align-items: center; gap: 8px; }

/* marquee */
.marquee { background: var(--ink); overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; gap: 38px; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { color: rgba(255,255,255,.8); font-family: var(--font-head); font-weight: 600; font-size: 15px; white-space: nowrap; display: flex; align-items: center; gap: 38px; }
.marquee__track em { color: var(--blue); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* section head */
.sechead { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }

/* category cards — editorial style */
.catgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 900px) { .catgrid { grid-template-columns: 1fr; } }
.catcard { cursor: pointer; }
.catcard__img { position: relative; aspect-ratio: 4 / 4.6; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 44px -22px rgba(20,26,46,.28); }
.catcard__img img { width: 100%; height: 106%; object-fit: cover; transition: transform 1.1s var(--ease); }
.catcard:hover .catcard__img img { transform: scale(1.05); }
.catcard__num { position: absolute; top: 14px; left: 14px; z-index: 3; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; letter-spacing: .04em; }
.catcard__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-top: 22px; }
.catcard__row h3 { font-size: 24px; letter-spacing: -0.02em; transition: color .25s; }
.catcard:hover .catcard__row h3 { color: var(--blue-600); }
.catcard__price { font-size: 13.5px; color: var(--slate); font-weight: 600; white-space: nowrap; }
.catcard__tags { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--blue); margin-top: 7px; }
.catcard__desc { color: var(--slate); font-size: 14.5px; line-height: 1.65; margin-top: 12px; }
.catcard__explore { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: color .25s, border-color .25s; }
.catcard__explore i { font-style: normal; transition: transform .35s var(--ease); }
.catcard:hover .catcard__explore { color: var(--blue-600); border-color: var(--blue-600); }
.catcard:hover .catcard__explore i { transform: translate(3px, -3px); }
.hero__dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero__dots button { width: 26px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.35); transition: all .3s; }
.hero__dots button.on { background: #fff; width: 40px; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__panel { display: none; } }

/* ══════════════ SHOWCASE (arrow slider) ══════════════ */
.showcase { background: var(--bg); overflow: hidden; padding: 100px 0; }
.showcase__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; max-width: var(--maxw); margin-left: auto; margin-right: auto; width: 100%; }
.showcase__nav { display: flex; gap: 10px; }
.showcase__nav button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 18px; color: var(--ink); transition: all .35s var(--ease); }
.showcase__nav button:hover { background: linear-gradient(110deg, var(--blue), #6d28d9); border-color: transparent; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(47,75,255,.5); }
.showcase__viewport {
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 10px 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.showcase__viewport::-webkit-scrollbar { display: none; }
.showcase__track { display: flex; gap: 24px; width: max-content; padding: 0 max(24px, calc((100vw - var(--maxw)) / 2 + 24px)); }
.showcase__track > * { scroll-snap-align: start; }
.showcase__hint { color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.bigcard { width: 400px; flex-shrink: 0; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s; }
.bigcard:hover { transform: translateY(-6px); border-color: #cdd6ff; box-shadow: var(--shadow); }
.bigcard__img { height: 250px; background-size: cover; background-position: center; position: relative; padding: 16px; display: flex; align-items: flex-start; }
.bigcard__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 55%); z-index: 0; }
.bigcard__avail { position: relative; z-index: 1; background: rgba(255,255,255,.92); color: var(--ink); padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.bigcard__body { padding: 26px; }
.bigcard__cat { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--blue); text-transform: uppercase; }
.bigcard__body h3 { font-size: 24px; margin-top: 8px; }
.bigcard__body p { color: var(--slate); margin: 10px 0 20px; line-height: 1.65; font-size: 14.5px; }
.bigcard__foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 18px; }
.bigcard__foot b { font-size: 20px; font-family: var(--font-head); }
.bigcard__go { color: var(--blue); font-weight: 700; }
.bigcard--cta { width: 300px; background: linear-gradient(150deg, var(--blue), #1e2fb8); border: none; color: #fff; display: grid; place-items: center; position: relative; overflow: hidden; }
.bigcard--cta::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.08); }
.bigcard--cta__inner { text-align: center; padding: 40px; position: relative; }
.bigcard--cta__inner h3 { color: #fff; font-size: 28px; margin-bottom: 22px; line-height: 1.15; }

/* ══════════════ HOW IT WORKS (stacking cards) ══════════════ */
.howto--dark { background: linear-gradient(180deg, var(--ink) 0%, #121a3c 100%); position: relative; }
.howto--dark::before { content: ''; position: absolute; top: 8%; right: 0; width: 420px; height: 420px; background: radial-gradient(circle at 70% 40%, rgba(47,75,255,.26), transparent 62%); pointer-events: none; }
.howto--dark .section-title { color: #fff; }
.howto--dark .section-sub { color: rgba(255,255,255,.65); }
.howto--dark .eyebrow { color: #aab8ff; }
.howto--dark .eyebrow::before { background: #aab8ff; }
.howto--dark .stack__card { border: none; box-shadow: 0 -18px 60px -24px rgba(0,0,0,.55); }
.stack { display: flex; flex-direction: column; gap: 34vh; padding-bottom: 12vh; }
.stack__card {
  position: sticky; min-height: 380px;
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  box-shadow: 0 -12px 50px -24px rgba(20,26,46,.25);
  padding: clamp(34px, 5vw, 70px);
  display: flex; align-items: center; overflow: hidden;
  will-change: transform, opacity;
}
.stack__card:nth-child(even) { background: linear-gradient(140deg, #fff 55%, #f0f3ff); }
.stack__watermark {
  position: absolute; right: 30px; top: -20px;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(160px, 22vw, 300px);
  line-height: 1; pointer-events: none;
  background: linear-gradient(160deg, var(--blue) 0%, #6d28d9 55%, var(--ink) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .9;
}
.stack__card:nth-child(even) .stack__watermark { background: linear-gradient(160deg, var(--ink) 0%, #2138e6 60%, #6d28d9 100%); -webkit-background-clip: text; background-clip: text; }
.stack__content { position: relative; max-width: 640px; }
.stack__n { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.stack__content h3 { font-size: clamp(32px, 4vw, 52px); margin: 16px 0 18px; letter-spacing: -0.03em; }
.stack__content p { color: var(--slate); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7; }
@media (max-width: 720px) { .stack { gap: 24vh; } .stack__card { min-height: 320px; } }

/* ══════════════ SOCIAL PROOF (bento wall) ══════════════ */
.quotes { position: relative; }
.quotes::before { content: ''; position: absolute; left: -160px; top: 20%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(47,75,255,.08), transparent 65%); pointer-events: none; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(200px, auto); gap: 20px; position: relative; }
.bento__tile { padding: 28px; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.quote__stars { color: #fbbf24; font-size: 13px; letter-spacing: 3px; }

.bento__quote blockquote { font-family: var(--font-head); font-weight: 500; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); border: none; margin: 14px 0; }
.bento__quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.bento__quote img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.bento__quote figcaption b { display: block; font-size: 13.5px; }
.bento__quote figcaption span { font-size: 12px; color: var(--muted); }

.bento__quote--big { grid-column: span 2; grid-row: span 1; background: linear-gradient(140deg, #fff 55%, #eef2ff); }
.bento__quote--big blockquote { font-size: clamp(18px, 1.8vw, 23px); line-height: 1.55; max-width: 88%; }
.bento__mark { position: absolute; right: 18px; top: -34px; font-family: var(--font-head); font-weight: 800; font-size: 190px; color: rgba(47,75,255,.08); pointer-events: none; }

.bento__big { font-family: var(--font-head); font-weight: 800; font-size: clamp(44px, 4.6vw, 64px); letter-spacing: -0.03em; line-height: 1; }
.bento__rating { gap: 10px; align-items: flex-start; }
.bento__rating .bento__big { color: var(--blue); }
.bento__rating p { color: var(--slate); font-size: 13.5px; line-height: 1.5; }
.bento__rating .avatars { margin-top: auto; }
.bento__rating .avatars img { width: 30px; height: 30px; }

.bento__photo { padding: 0; }
.bento__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bento__photo:hover img { transform: scale(1.05); }
.bento__photo-cap { position: absolute; left: 14px; right: 14px; bottom: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 12px; padding: 10px 14px; font-size: 12.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; }

.bento__stat { background: linear-gradient(150deg, var(--ink), #1a2450); border: none; color: #fff; justify-content: center; gap: 10px; }
.bento__stat .bento__big { color: #aab8ff; }
.bento__stat p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.5; }
.bento__stat-glow { position: absolute; right: -50px; bottom: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(47,75,255,.5), transparent 70%); }

.bento__chat { grid-column: span 2; justify-content: center; gap: 12px; background: linear-gradient(140deg, #f7f9ff, #fff); }
.bento__bubble { max-width: 78%; padding: 12px 16px; border-radius: 16px; font-size: 13.5px; line-height: 1.5; }
.bento__bubble--in { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.bento__bubble--out { background: #dcf8c6; border-bottom-right-radius: 4px; align-self: flex-end; color: #1a3a1a; }
.bento__bubble--out span { color: #34b7f1; font-size: 12px; margin-left: 6px; }
.bento__chat-cap { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; }

@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento__quote--big, .bento__chat { grid-column: span 2; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .bento__quote--big, .bento__chat { grid-column: span 1; } .bento__mark { font-size: 130px; } }

/* ══════════════ GUARANTEES + BRAND STRIP ══════════════ */
.assure { padding: 40px 0 0; }
.assure__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.assure__item { border-radius: 22px; padding: 34px 28px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); will-change: transform; }
.assure__item:nth-child(1) { background: linear-gradient(150deg, #e8ecff, #f5f7ff); }
.assure__item:nth-child(2) { background: linear-gradient(150deg, #0a0e1a, #1d2650); color: #fff; }
.assure__item:nth-child(3) { background: linear-gradient(150deg, #e7f9f0, #f4fdf8); }
.assure__item:nth-child(4) { background: linear-gradient(150deg, #f3efff, #faf7ff); }
.assure__item:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow); }
.assure__item:nth-child(2) h4 { color: #fff; }
.assure__item:nth-child(2) p { color: rgba(255,255,255,.7); }
.assure__icon { font-size: 24px; display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: #fff; box-shadow: 0 6px 18px -8px rgba(20,26,46,.2); margin-bottom: 18px; }
.assure__item h4 { font-size: 18px; margin-bottom: 8px; }
.assure__item p { color: var(--slate); font-size: 13.5px; line-height: 1.65; }
@media (max-width: 980px) { .assure__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .assure__grid { grid-template-columns: 1fr; } }

.bigword { padding: 64px 0 8px; overflow: hidden; }
.bigword__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.bigword__track span {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(64px, 9vw, 130px);
  letter-spacing: -0.02em; white-space: nowrap; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px #d5dbee;
}
.bigword:hover .bigword__track { animation-play-state: paused; }

/* ══════════════ BOOKING FORM (end) ══════════════ */
.bookend { padding-bottom: 60px; }
.bookend__grid { background: linear-gradient(135deg, var(--ink) 40%, #1a2450); border-radius: 28px; padding: 64px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; position: relative; overflow: hidden; }
.bookend__grid::before { content: ''; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(47,75,255,.4), transparent 70%); }
@media (max-width: 860px) { .bookend__grid { grid-template-columns: 1fr; padding: 40px 28px; } }
.eyebrow--light { color: #aab8ff; }
.eyebrow--light::before { background: #aab8ff; }
.bookend__copy h2 { color: #fff; font-size: clamp(32px, 3.8vw, 46px); margin: 18px 0; }
.bookend__copy p { color: rgba(255,255,255,.72); line-height: 1.7; font-size: 15.5px; max-width: 420px; }
.bookend__meta { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; color: rgba(255,255,255,.85); font-size: 14px; }
.bookend__form { display: flex; flex-direction: column; gap: 14px; position: relative; }
.bookend__form input, .bookend__form select { padding: 15px 18px; border-radius: 13px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); color: #fff; font-size: 15px; font-family: inherit; outline: none; transition: border .25s, background .25s; }
.bookend__form input::placeholder { color: rgba(255,255,255,.45); }
.bookend__form select { color: #fff; }
.bookend__form select option { color: var(--ink); }
.bookend__form input:focus, .bookend__form select:focus { border-color: #aab8ff; background: rgba(255,255,255,.12); }
.bookend__submit { justify-content: center; margin-top: 6px; }
.bookend__error { color: #ffb4ab; font-size: 14px; }
.bookend__done { text-align: center; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 30px 0; }
.bookend__done span { width: 64px; height: 64px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: 28px; font-weight: 800; }
.bookend__done p { color: rgba(255,255,255,.75); }
.bookend__done b { color: #aab8ff; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 70px 0 30px; margin-top: 40px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin-top: 18px; line-height: 1.6; max-width: 300px; font-size: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 780px) { .footer__inner { grid-template-columns: 1fr 1fr; } }

/* ══════════════ INNER PAGES ══════════════ */
.page { min-height: 100vh; }
.page__hero { padding: 130px 0 20px; background: linear-gradient(180deg, #eef1fb, var(--bg)); }
/* dark hero variant — deep navy band with glows */
.page__hero--dark { position: relative; overflow: hidden; background: linear-gradient(135deg, #0a0e1a 0%, #141d42 60%, #1d1440 100%); padding-bottom: 46px; }
.page__hero--dark::before { content: ''; position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(47,75,255,.35), transparent 65%); pointer-events: none; }
.page__hero--dark::after { content: ''; position: absolute; bottom: -200px; left: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(139,92,246,.25), transparent 65%); pointer-events: none; }
.page__hero--dark .page__title { color: #fff; }
.page__hero--dark .section-sub { color: rgba(255,255,255,.72); }
.page__hero--dark .eyebrow { color: #aab8ff; }
.page__hero--dark .eyebrow::before { background: #aab8ff; }
.page__hero--dark .searchbar__meta { color: rgba(255,255,255,.6); }
.page__hero--dark .track__recent { color: rgba(255,255,255,.7); }
.page__hero--dark .container { position: relative; z-index: 1; }
.page__title { font-size: clamp(34px, 5vw, 54px); margin: 14px 0 14px; }

/* search */
.searchbar { margin-top: 30px; padding: 16px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.searchbar__input { flex: 1; min-width: 240px; display: flex; align-items: center; gap: 10px; background: var(--bg); border-radius: 12px; padding: 12px 16px; }
.searchbar__input input { border: none; background: none; outline: none; width: 100%; font-size: 15px; }
.searchbar__cats { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 9px 16px; border-radius: 999px; background: var(--bg); color: var(--slate); font-weight: 600; font-size: 14px; border: 1px solid transparent; transition: all .2s; }
.chip--on { background: var(--ink); color: #fff; }
.switch { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--slate); cursor: pointer; }
.switch input { width: 18px; height: 18px; accent-color: var(--blue); }
.searchbar__meta { margin-top: 14px; color: var(--muted); font-size: 14px; }

/* ── simple service grid ── */
.svcgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .svcgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svcgrid { grid-template-columns: 1fr; } }
.svccard { overflow: hidden; display: flex; flex-direction: column; }
.svccard__img { position: relative; height: 210px; overflow: hidden; }
.svccard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svccard:hover .svccard__img img { transform: scale(1.05); }
.svccard__avail { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.svccard__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svccard__body h3 { font-size: 21px; }
.svccard__body p { color: var(--slate); font-size: 13.5px; line-height: 1.6; }
.svccard__facts { display: flex; gap: 16px; font-size: 13px; color: var(--slate); border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }
.svccard__facts b { font-family: var(--font-head); color: var(--ink); font-size: 15px; }
.svccard__btn { justify-content: center; margin-top: 6px; }

/* ── services scroll-showcase (legacy) ── */
.svcshow { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; padding-top: 50px; padding-bottom: 110px; align-items: start; }
.svcshow__list { display: flex; flex-direction: column; gap: 34px; }
.svcshow__card { position: relative; height: 440px; border-radius: 20px; overflow: hidden; cursor: pointer; border: 1px solid var(--line);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), opacity .4s ease; opacity: .55; transform: scale(.985); }
.svcshow__card.is-active { opacity: 1; transform: scale(1); box-shadow: var(--shadow); }
.svcshow__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svcshow__card:hover img { transform: scale(1.045); }
.svcshow__card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  background: linear-gradient(200deg, transparent 45%, rgba(8,11,26,.72)); }
.svcshow__card-cat { color: #aab8ff; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.svcshow__card-overlay h3 { color: #fff; font-size: 28px; }
.svcshow__card-mobile { display: none; }

.svcshow__sticky { position: sticky; top: 110px; }
.svcshow__panel { padding: 36px; }
.svcshow__panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.svcshow__panel h2 { font-size: 32px; margin-bottom: 14px; }
.svcshow__desc { color: var(--slate); font-size: 15.5px; line-height: 1.75; }
.svcshow__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 26px 0; }
.svcshow__facts div { background: var(--bg); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.svcshow__facts span { font-size: 11.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.svcshow__facts b { font-family: var(--font-head); font-size: 20px; }
.svcshow__staff { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.svcshow__staff .muted { font-size: 13px; }
.svcshow__book { width: 100%; justify-content: center; }
.svcshow__count { text-align: right; margin-top: 18px; font-family: var(--font-head); font-weight: 700; color: #c9cfe2; font-size: 14px; letter-spacing: .1em; }

@media (max-width: 900px) {
  .svcshow { grid-template-columns: 1fr; }
  .svcshow__sticky { display: none; }
  .svcshow__card { height: auto; opacity: 1; transform: none; }
  .svcshow__card img { height: 240px; }
  .svcshow__card-overlay { position: relative; inset: auto; background: none; padding: 20px 20px 0; }
  .svcshow__card-overlay h3 { color: var(--ink); font-size: 22px; }
  .svcshow__card-cat { color: var(--blue); }
  .svcshow__card-mobile { display: block; padding: 10px 20px 20px; }
  .svcshow__card-mobile p { color: var(--slate); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
  .svcshow__card-mrow { display: flex; justify-content: space-between; align-items: center; }
  .svcshow__card-mrow b { font-family: var(--font-head); font-size: 18px; }
  .svcshow__card-mrow small { color: var(--muted); font-weight: 500; font-size: 12px; }
}

/* service cards */
.services__grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }
.svc { overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc__img { height: 190px; background-size: cover; background-position: center; padding: 14px; }
.svc__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc__body h3 { font-size: 21px; }
.svc__body > p { color: var(--slate); font-size: 14px; line-height: 1.55; }
.avail { font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.avail.ok { color: var(--green); }
.avail.no { color: var(--muted); }
.svc__staff { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.svc__staff .muted { font-size: 13px; }
.svc__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 16px; }
.svc__price { font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.svc__price small { font-weight: 500; font-size: 12px; color: var(--muted); }
.empty { text-align: center; padding: 60px; color: var(--muted); }

/* ══════════════ MODAL ══════════════ */
.modal { position: fixed; inset: 0; z-index: 100; background: rgba(8,11,26,.6); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } }
.modal__card { position: relative; width: 100%; max-width: 560px; padding: 34px; max-height: 92vh; overflow-y: auto; animation: pop .3s cubic-bezier(.2,.9,.3,1.2); }
@keyframes pop { from { transform: translateY(20px) scale(.97); opacity: 0; } }
.modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg); font-size: 15px; }
.modal__title { margin: 14px 0 6px; font-size: 26px; }
.modal__price { font-size: 13px; margin-bottom: 18px; }

/* forms */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 600; color: var(--slate); }
.form input, .track__form input, .admin__loginCard input, .assign select {
  padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line); font-size: 15px; font-family: inherit; outline: none; background: #fff; transition: border .2s, box-shadow .2s;
}
.form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,75,255,.12); }
.form__error { background: #fef2f2; color: var(--red); padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.form__note { font-size: 12px; color: var(--muted); text-align: center; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

/* success */
.success { text-align: center; padding: 10px; }
.success__check { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: #fff; font-size: 34px; display: grid; place-items: center; margin: 0 auto 18px; }
.success h2 { font-size: 28px; }
.success p { color: var(--slate); margin: 12px auto 24px; line-height: 1.6; max-width: 400px; }
.code { background: var(--blue-100); color: var(--blue-600); padding: 3px 10px; border-radius: 8px; font-family: var(--font-head); letter-spacing: .04em; }
.success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.link { background: none; color: var(--muted); margin-top: 18px; text-decoration: underline; }

/* ══════════════ TRACK ══════════════ */
.trackpage__hero { position: relative; overflow: hidden; }
.trackpage__hero::before { content: ''; position: absolute; top: -140px; right: -140px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(47,75,255,.16), transparent 65%); pointer-events: none; }
.trackpage__hero::after { content: ''; position: absolute; bottom: -180px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,.12), transparent 65%); pointer-events: none; }

.track__form { display: flex; gap: 12px; margin-top: 28px; max-width: 480px; padding: 10px 10px 10px 20px; align-items: center; position: relative; z-index: 1; }
.track__form-icon { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--blue); }
.track__form input { flex: 1; text-transform: uppercase; border: none; outline: none; font-size: 18px; font-family: var(--font-head); font-weight: 700; letter-spacing: .08em; color: var(--ink); background: transparent; min-width: 0; }
.track__form input::placeholder { color: #c3c9da; }
.track__recent { display: flex; align-items: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; font-size: 13px; position: relative; z-index: 1; }
.track__error { margin-top: 16px; max-width: 480px; }

.trackpage__result { padding: 26px 24px 90px; display: flex; flex-direction: column; gap: 22px; }
.cardtitle { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 18px; }

/* status banner */
.trackbanner { display: flex; align-items: center; gap: 24px; padding: 28px 32px; position: relative; overflow: hidden; }
.trackbanner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(47,75,255,.05), transparent 45%); pointer-events: none; }
.trackbanner__badge { width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center; font-size: 36px; flex-shrink: 0; box-shadow: 0 14px 30px -12px rgba(47,75,255,.5); }
.trackbanner__text { flex: 1; min-width: 0; }
.trackbanner__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trackbanner__row h2 { font-size: 26px; }
.trackbanner__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 8px 0 3px; color: var(--blue-600); }
.trackbanner__code { text-align: right; border-left: 1px dashed var(--line); padding-left: 24px; flex-shrink: 0; display: flex; flex-direction: column; gap: 4px; }
.trackbanner__code span { font-size: 12px; }
.trackbanner__code b { font-family: var(--font-head); font-size: 24px; letter-spacing: .06em; color: var(--ink); }
.trackbanner--cancelled .trackbanner__title { color: var(--red); }
@media (max-width: 720px) { .trackbanner { flex-direction: column; align-items: flex-start; } .trackbanner__code { border: none; padding: 0; text-align: left; } }

/* progress stepper */
.stepper { padding: 34px 38px 26px; position: relative; }
.stepper__bar { position: absolute; top: 51px; left: 68px; right: 68px; height: 4px; background: var(--line); border-radius: 999px; }
.stepper__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), #8b5cf6); transition: width .8s cubic-bezier(.4,0,.2,1); }
.stepper__steps { display: flex; justify-content: space-between; position: relative; }
.stepper__step { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 64px; }
.stepper__dot { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-size: 15px; transition: all .4s; }
.stepper__step.done .stepper__dot { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 800; }
.stepper__step.now .stepper__dot { border-color: var(--blue); box-shadow: 0 0 0 6px rgba(47,75,255,.14); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(47,75,255,.14); } 50% { box-shadow: 0 0 0 10px rgba(47,75,255,.06); } }
.stepper__label { font-size: 12px; font-weight: 600; color: var(--muted); text-align: center; white-space: nowrap; }
.stepper__step.done .stepper__label, .stepper__step.now .stepper__label { color: var(--ink); }
@media (max-width: 640px) { .stepper { padding: 26px 16px 20px; } .stepper__bar { left: 40px; right: 40px; } .stepper__label { font-size: 10px; } }

.track__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 860px) { .track__grid { grid-template-columns: 1fr; } }
.track__left { display: flex; flex-direction: column; gap: 22px; }

/* booking details */
.detailcard { padding: 28px 32px; }
.detailgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
.detailgrid > div { display: flex; flex-direction: column; gap: 4px; }
.detail--wide { grid-column: 1 / -1; }
.detail__k { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.detail__v { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.45; }
@media (max-width: 520px) { .detailgrid { grid-template-columns: 1fr; } }

/* professional card */
.procard { padding: 28px 32px; }
.procard__body { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.procard__photo { position: relative; flex-shrink: 0; }
.procard__photo img { width: 84px; height: 84px; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow-soft); }
.procard__verified { position: absolute; bottom: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; border: 3px solid #fff; }
.procard__info { flex: 1; min-width: 150px; }
.procard__info h3 { font-size: 22px; margin-bottom: 4px; }
.procard__stars { display: flex; align-items: center; gap: 2px; font-size: 15px; color: #d8dcea; margin-bottom: 4px; }
.procard__stars .on { color: #fbbf24; }
.procard__stars b { margin-left: 8px; font-family: var(--font-head); color: var(--ink); }
.procard__call { flex-shrink: 0; }

/* bill card */
.billcard { padding: 28px 32px; background: linear-gradient(150deg, #fff 55%, #f2f5ff); }
.billcard__head { display: flex; justify-content: space-between; align-items: center; }
.billcard__paidtag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: var(--blue-100); color: var(--blue-600); padding: 5px 12px; border-radius: 999px; }
.billcard__rows { display: flex; flex-direction: column; gap: 12px; padding-bottom: 18px; border-bottom: 1px dashed var(--line); }
.billcard__rows div { display: flex; justify-content: space-between; font-size: 14px; }
.billcard__rows span { color: var(--slate); }
.billcard__total { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; }
.billcard__total span { font-weight: 600; color: var(--slate); }
.billcard__total b { font-family: var(--font-head); font-size: 34px; color: var(--blue); }

/* timeline */
.track__timeline { padding: 28px 32px; position: sticky; top: 100px; }
.track__timeline ul { list-style: none; display: flex; flex-direction: column; }
.track__timeline li { display: flex; gap: 16px; position: relative; padding-bottom: 22px; }
.track__timeline li:not(:last-child)::before { content: ''; position: absolute; left: 17px; top: 38px; bottom: 4px; width: 2px; background: var(--line); }
.tl__icon { width: 36px; height: 36px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.track__timeline li.latest .tl__icon { background: var(--blue-100); box-shadow: 0 0 0 4px rgba(47,75,255,.1); }
.track__timeline b { font-size: 13px; letter-spacing: .04em; }
.track__timeline li.latest b { color: var(--blue-600); }
.track__timeline p { color: var(--slate); font-size: 14px; margin: 3px 0; line-height: 1.5; }
.track__timeline small { color: var(--muted); font-size: 12px; }
.track__live { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; }

/* empty state */
.trackpage__empty { padding: 40px 24px 110px; }
.emptytrack { text-align: center; max-width: 460px; margin: 0 auto; padding: 50px 30px; border: 2px dashed var(--line); border-radius: 26px; }
.emptytrack__icons { display: flex; justify-content: center; gap: 14px; font-size: 34px; margin-bottom: 18px; }
.emptytrack__icons span { width: 64px; height: 64px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); display: grid; place-items: center; }
.emptytrack__icons span:nth-child(2) { transform: translateY(-8px); }
.emptytrack h3 { font-size: 22px; margin-bottom: 10px; }
.emptytrack p { line-height: 1.65; font-size: 14.5px; }

/* status badges */
.status { padding: 7px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.status--PENDING { background: #fff7ed; color: var(--amber); }
.status--ACCEPTED { background: var(--blue-100); color: var(--blue-600); }
.status--ASSIGNED { background: #eef2ff; color: #4f46e5; }
.status--IN_PROGRESS { background: #ecfdf5; color: #059669; }
.status--COMPLETED { background: #ecfdf5; color: var(--green); }
.status--CANCELLED { background: #fef2f2; color: var(--red); }

/* ══════════════ ADMIN ══════════════ */
.admin__login { min-height: 100vh; display: grid; place-items: center; padding-top: 80px; }
.admin__loginCard { padding: 40px; max-width: 400px; width: 100%; text-align: center; }
.admin__loginCard h2 { margin: 14px 0 6px; }
.admin__loginCard .form { margin-top: 20px; }
.admin { padding-top: 120px; }
.admin__head { margin-bottom: 26px; }
.admin__stats { grid-template-columns: repeat(4, 1fr); margin-bottom: 26px; }
.statcard { padding: 24px; }
.statcard .stat-num { font-size: 40px; }
.statcard span { color: var(--muted); font-size: 14px; }
.statcard--amber .stat-num { color: var(--amber); }
.statcard--blue .stat-num { color: var(--blue); }
.statcard--green .stat-num { color: var(--green); }
@media (max-width: 720px) { .admin__stats { grid-template-columns: repeat(2, 1fr); } }
.admin__filters { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.admin__list { display: flex; flex-direction: column; gap: 16px; }
.reqrow { padding: 24px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
@media (max-width: 780px) { .reqrow { grid-template-columns: 1fr; } }
.reqrow__top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.reqrow h3 { font-size: 20px; margin-bottom: 8px; }
.reqrow__meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--slate); font-size: 14px; }
.reqrow__staff { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 14px; }
.reqrow__staff img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.reqrow__times { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; font-size: 13px; color: var(--slate); }
.reqrow__actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 190px; }
.assign { display: flex; flex-direction: column; gap: 8px; }
.assign select { width: 100%; cursor: pointer; }

/* ── staff management ── */
.staffpanel { display: flex; flex-direction: column; gap: 26px; }
.staffform { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.staffform h3 { font-size: 21px; }
.staffform__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .staffform__grid { grid-template-columns: 1fr 1fr; } }
.staffform label, .staffform__bio { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 600; color: var(--slate); }
.staffform input, .staffform select { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); font-size: 14.5px; font-family: inherit; outline: none; background: #fff; }
.staffform input:focus, .staffform select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,75,255,.12); }
.staffform input[type="file"] { padding: 9px 12px; }
.staffform__preview { display: flex; align-items: center; gap: 14px; }
.staffform__preview img { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; border: 1px solid var(--line); }
.staffform__preview .link { margin: 0; font-size: 13px; }
.staffform__services > span { font-size: 13px; font-weight: 600; color: var(--slate); display: block; margin-bottom: 10px; }
.staffform__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.staffform__ok { background: #ecfdf5; color: var(--green); padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; }
.staffform .btn { align-self: flex-start; }

.staffgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .staffgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .staffgrid { grid-template-columns: 1fr; } }
.staffcard { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.staffcard__head { display: flex; gap: 14px; align-items: flex-start; }
.staffcard__head img { width: 56px; height: 56px; border-radius: 16px; object-fit: cover; }
.staffcard__head h4 { font-size: 17px; }
.staffcard__head .muted { font-size: 13px; }
.staffcard__head .avail { margin-left: auto; }
.staffcard__meta { font-size: 12px; }
.staffcard__bio { color: var(--slate); font-size: 13.5px; line-height: 1.55; }
.staffcard__services { display: flex; flex-wrap: wrap; gap: 6px; }
.staffcard__services span { background: var(--blue-100); color: var(--blue-600); font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.staffcard__actions { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.staffcard__del { color: var(--red); }

/* ══════════════ AUTH (split layout) ══════════════ */
.authsplit { display: grid; grid-template-columns: 1fr minmax(400px, 42%); min-height: 100vh; background: #fff; }
@media (max-width: 860px) { .authsplit { grid-template-columns: 1fr; } }

.authsplit__form { display: flex; align-items: center; justify-content: center; padding: 120px 40px 60px; min-width: 0; }
/* inputs carry an intrinsic ~20-character width; without this the column
   refuses to shrink below ~330px on very narrow phones */
.authform input { min-width: 0; }
.authform { width: 100%; max-width: 400px; display: flex; flex-direction: column; gap: 18px; text-align: center; }
/* single, safe entrance — layout is static from frame one */
.authform { animation: authrise .8s var(--ease) backwards .1s; }
@keyframes authrise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.authform__logo { width: 64px; height: 64px; object-fit: contain; margin: 0 auto; }
.authform__title { font-size: 30px; letter-spacing: -0.02em; margin-bottom: 4px; }
.authform__fields { display: flex; flex-direction: column; gap: 13px; }
.authfield { background: #f4f6fb; border: 1.5px solid transparent; border-radius: 13px; padding: 15px 18px; font-size: 15px; font-family: inherit; outline: none; width: 100%; transition: border .25s, background .25s, box-shadow .25s; }
.authfield:focus, .authfield:focus-within { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,75,255,.1); }
.authfield::placeholder { color: #9aa1b5; }
.authfield--pw { display: flex; align-items: center; padding: 0; }
.authfield--pw input { flex: 1; background: transparent; border: none; outline: none; padding: 15px 0 15px 18px; font-size: 15px; font-family: inherit; min-width: 0; }
.authfield--pw input::placeholder { color: #9aa1b5; }
.authfield--pw button { background: none; padding: 0 16px; font-size: 16px; opacity: .6; }
.authfield--pw button:hover { opacity: 1; }
.authform__row { display: flex; justify-content: center; font-size: 13px; }
.authform__submit { background: linear-gradient(100deg, var(--blue), #6d28d9); color: #fff; border-radius: 13px; padding: 16px; font-size: 16px; font-weight: 600; font-family: var(--font-head); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.authform__submit:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(47,75,255,.55); }
.authform__submit:disabled { opacity: .6; }
.authform__switch { font-size: 14px; color: var(--slate); margin-top: 10px; }
.authform__switch button { background: none; color: var(--blue); font-weight: 600; padding: 0; font-size: 14px; }
.authform__switch button:hover { text-decoration: underline; }
.authform__forgot { background: none; color: var(--blue); font-size: 13px; font-weight: 600; align-self: flex-end; padding: 2px 0; margin-top: -4px; }
.authform__forgot:hover { text-decoration: underline; }
.authform__secure { font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
@media (max-width: 860px) { .authsplit__form { order: -1; } }
/* small phones: the 40px gutter alone pushed the column past a 360px screen */
@media (max-width: 520px) {
  .authsplit__form { padding: 96px 18px 44px; }
  .authform { gap: 16px; }
  .authform__title { font-size: 27px; }
  .authsteps { flex-wrap: wrap; row-gap: 6px; }
}

/* right art panel */
.authart { position: relative; overflow: hidden; display: flex; align-items: center; background: linear-gradient(160deg, #f7f8fd, #eef1fb); border-right: 1px solid var(--line); }
.authart__inner { position: relative; z-index: 2; padding: 140px 7% 60px; width: 100%; max-width: 720px; margin: 0 auto; }
.authart__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
@media (max-width: 860px) { .authart { display: none; } }
.authart__title { font-size: clamp(40px, 4vw, 62px); line-height: 1.1; letter-spacing: -0.03em; margin-top: 16px; }
.authart__accent .w > span { background: linear-gradient(100deg, var(--blue), #8b5cf6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.authart__sub { margin-top: 18px; color: var(--slate); font-size: 16px; line-height: 1.7; max-width: 440px; }

/* floating info cards inside the frame */
.authart__cards { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; margin-top: 38px; max-width: 560px; }
.authart__card { background: rgba(255,255,255,.85); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: 0 14px 36px -18px rgba(20,26,46,.2); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.authart__card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(20,26,46,.28); }
.authart__card--review { grid-row: span 2; display: flex; flex-direction: column; gap: 12px; }
.authart__stars { color: #fbbf24; letter-spacing: 2px; font-size: 13px; }
.authart__card--review p { font-family: var(--font-head); font-weight: 500; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.authart__reviewer { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.authart__reviewer img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.authart__reviewer b { color: var(--ink); }
.authart__card--live { display: flex; align-items: flex-start; gap: 10px; }
.authart__card--live b { display: block; font-size: 13px; font-family: var(--font-head); }
.authart__card--live span { font-size: 12px; color: var(--muted); }
.authart__card--stat b { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--blue); display: block; }
.authart__card--stat span { font-size: 12.5px; color: var(--slate); line-height: 1.5; }
.authart__card--offer { grid-column: span 2; display: flex; align-items: center; gap: 12px; font-size: 20px; background: linear-gradient(110deg, var(--blue), #6d28d9); border: none; color: #fff; }
.authart__card--offer b { display: block; font-size: 15px; font-family: var(--font-head); }
.authart__card--offer span { font-size: 12.5px; color: rgba(255,255,255,.8); }

.authart__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.authart__tags span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: 0 4px 14px -8px rgba(20,26,46,.15); }

.authart__shape { position: absolute; pointer-events: none; z-index: 1; opacity: .8; animation: authdrift 9s ease-in-out infinite; }
@keyframes authdrift { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(4deg); } }
.authart__shape--halfblue { width: 220px; height: 110px; border-radius: 0 0 220px 220px; background: linear-gradient(140deg, #aab8ff, var(--blue)); top: -10px; right: 16%; animation-delay: .4s; }
.authart__shape--circle { width: 150px; height: 150px; border-radius: 50%; background: linear-gradient(140deg, #8b5cf6, #6d28d9); top: 10%; left: -50px; opacity: .85; }
.authart__shape--tri { width: 130px; height: 130px; clip-path: polygon(50% 0, 100% 100%, 0 88%); background: linear-gradient(140deg, #c7d0ff, #aab8ff); bottom: 16%; right: 8%; animation-delay: 1.2s; }
.authart__shape--halfnavy { width: 190px; height: 95px; border-radius: 190px 190px 0 0; background: linear-gradient(140deg, var(--ink), #1a2450); bottom: -4px; left: 18%; animation-delay: .8s; }
.authart__shape--blob { width: 120px; height: 120px; border-radius: 58% 42% 60% 40% / 50% 55% 45% 50%; background: linear-gradient(140deg, #5b8cff, #2f4bff); top: 56%; left: 6%; opacity: .9; animation-delay: 1.6s; }
.authart__shape--ring { width: 90px; height: 90px; border-radius: 50%; border: 14px solid #e8ecff; background: transparent; top: 20%; right: 4%; animation-delay: 2s; }
.authart__dots { position: absolute; width: 150px; height: 110px; top: 26%; right: 24%; opacity: .8;
  background-image: radial-gradient(#cfd6ee 2px, transparent 2px); background-size: 18px 18px; }
.authart__dots--2 { top: auto; bottom: 12%; right: auto; left: 30%; }

/* ══════════════ DASHBOARD ══════════════ */
.dash { padding: 130px 0 110px; }
.dash__head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 30px 0 34px; }
.dash__who { display: flex; gap: 18px; align-items: center; }
.dash__avatar { width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(140deg, var(--blue), #6d28d9); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 26px; }
.dash__who h1 { font-size: 30px; margin: 4px 0 2px; }
.dash__actions { display: flex; gap: 10px; }
.dash__sectiontitle { font-size: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; }
.dash__sectiontitle em { font-style: normal; color: var(--green); font-size: 12px; }
.dash__empty { padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.dash__empty p { color: var(--slate); }
.dash__list { display: flex; flex-direction: column; gap: 16px; }

.dashreq { padding: 24px 26px; }
.dashreq--compact { opacity: .8; }
.dashreq__main { display: flex; gap: 18px; }
.dashreq__icon { width: 52px; height: 52px; border-radius: 15px; background: var(--blue-100); display: grid; place-items: center; font-size: 24px; flex-shrink: 0; }
.dashreq__info { flex: 1; min-width: 0; }
.dashreq__toprow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dashreq__toprow h4 { font-size: 18px; }
.dashreq__meta { font-size: 13px; margin-top: 4px; }

.ministep { display: flex; gap: 0; margin: 18px 0 4px; position: relative; max-width: 560px; }
.ministep__bar { position: absolute; top: 5px; left: 8%; right: 8%; height: 3px; background: var(--line); border-radius: 99px; z-index: 0; }
.ministep__bar div { height: 100%; background: linear-gradient(90deg, var(--blue), #8b5cf6); border-radius: 99px; transition: width .6s var(--ease); }
.ministep__s { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; }
.ministep__dot { width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2.5px solid var(--line); }
.ministep__s.on .ministep__dot { background: var(--blue); border-color: var(--blue); }
.ministep__s.now .ministep__dot { box-shadow: 0 0 0 5px rgba(47,75,255,.15); animation: pulse 2s infinite; }
.ministep__lbl { font-size: 11px; font-weight: 600; color: var(--muted); }
.ministep__s.on .ministep__lbl { color: var(--ink); }

.dashreq__staff { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 12px 16px; background: var(--bg); border-radius: 13px; width: fit-content; }
.dashreq__staff img { width: 38px; height: 38px; border-radius: 12px; object-fit: cover; }
.dashreq__staff span { font-size: 14px; }
.dashreq__toggle { background: none; color: var(--blue-600); font-size: 13px; font-weight: 600; margin-top: 14px; padding: 0; }
.dashreq__timeline { list-style: none; margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.dashreq__timeline b { font-size: 12.5px; color: var(--blue-600); }
.dashreq__timeline p { font-size: 13.5px; color: var(--slate); margin: 2px 0; }
.dashreq__timeline small { color: var(--muted); font-size: 11.5px; }

/* ── dashboard dark hero band ── */
.dashero { position: relative; overflow: hidden; border-radius: 26px; padding: 38px 42px 32px; margin-bottom: 34px;
  background: linear-gradient(130deg, #0a0e1a 0%, #17204a 55%, #241a52 100%); color: #fff;
  box-shadow: 0 30px 70px -30px rgba(10,14,26,.5); }
.dashero__orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.dashero__orb--1 { width: 320px; height: 320px; background: rgba(47,75,255,.4); top: -120px; right: -60px; }
.dashero__orb--2 { width: 260px; height: 260px; background: rgba(139,92,246,.3); bottom: -120px; left: 20%; }
.dashero__top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; position: relative; }
.dashero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #aab8ff; }
.dashero h1 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); margin: 6px 0 6px; }
.dashero__meta { color: rgba(255,255,255,.65); font-size: 13.5px; }
.dashero .dash__avatar { box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
.dashero__cta { background: #fff; color: var(--ink); border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: 14px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.dashero__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }
.dashero__logout { background: transparent; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 11px 20px; font-weight: 600; font-size: 13.5px; transition: all .3s; }
.dashero__logout:hover { background: rgba(255,255,255,.1); color: #fff; }
.dashero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; position: relative; }
@media (max-width: 720px) { .dashero__stats { grid-template-columns: 1fr 1fr; } }
.dashero__stats div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); border-radius: 16px; padding: 16px 20px; }
.dashero__stats b { font-family: var(--font-head); font-size: 24px; display: block; letter-spacing: -0.02em; }
.dashero__stats span { font-size: 12px; color: rgba(255,255,255,.6); }
.dashreq__img { width: 62px; height: 62px; border-radius: 16px; object-fit: cover; flex-shrink: 0; }

/* ── new-user welcome board ── */
.welcome { display: flex; flex-direction: column; gap: 30px; }
.welcome__hero { padding: 44px 46px; background: linear-gradient(120deg, #eef1ff 0%, #fff 55%, #f3efff 100%); position: relative; overflow: hidden; }
.welcome__hero::after { content: '✨'; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); font-size: 120px; opacity: .12; }
.welcome__wave { font-size: 34px; }
.welcome__hero h2 { font-size: clamp(24px, 2.6vw, 34px); margin: 12px 0 12px; }
.welcome__hero p { color: var(--slate); line-height: 1.7; max-width: 560px; font-size: 15.5px; }
.welcome__cta { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.welcome__offer { font-size: 14px; color: var(--slate); background: #fff; border: 1px dashed #b9c4ff; border-radius: 999px; padding: 10px 18px; }
.welcome__offer b { color: var(--blue); font-family: var(--font-head); }

.welcome__cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .welcome__cats { grid-template-columns: 1fr; } }
.welcome__cat { padding: 28px; text-align: left; display: flex; flex-direction: column; gap: 10px; cursor: pointer; background: #fff; }
.welcome__cat-emoji { width: 52px; height: 52px; border-radius: 15px; background: var(--blue-100); display: grid; place-items: center; font-size: 24px; }
.welcome__cat h4 { font-size: 19px; }
.welcome__cat p { color: var(--slate); font-size: 13.5px; line-height: 1.6; }
.welcome__cat-go { color: var(--blue-600); font-weight: 600; font-size: 13.5px; margin-top: 6px; }

.welcome__steps { display: flex; justify-content: space-between; gap: 20px; padding: 26px 32px; flex-wrap: wrap; }
.welcome__step { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 220px; }
.welcome__step-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--bg); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.welcome__step b { font-size: 14px; font-family: var(--font-head); display: block; }
.welcome__step p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.welcome__step-arrow { color: #c9cfe2; font-size: 18px; margin-left: auto; padding: 0 6px; }
.welcome__step:last-child .welcome__step-arrow { display: none; }

/* contact page */
.contact__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: start; padding-bottom: 110px; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .contact__tiles { grid-template-columns: 1fr; } }
.contact__tile { border-radius: 22px; padding: 30px 26px; display: flex; flex-direction: column; gap: 8px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.contact__tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact__tile--blue { background: linear-gradient(150deg, #e8ecff, #f5f7ff); }
.contact__tile--dark { background: linear-gradient(150deg, #0a0e1a, #1d2650); color: #fff; }
.contact__tile--dark p { color: rgba(255,255,255,.7); }
.contact__tile--mint { background: linear-gradient(150deg, #e7f9f0, #f4fdf8); }
.contact__tile--violet { background: linear-gradient(150deg, #f3efff, #faf7ff); }
.contact__icon { width: 50px; height: 50px; border-radius: 15px; background: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: 0 6px 18px -8px rgba(20,26,46,.2); margin-bottom: 6px; }
.contact__tile b { font-family: var(--font-head); font-size: 17px; }
.contact__tile p { color: var(--slate); font-size: 13.5px; line-height: 1.6; }
.contact__go { color: var(--blue-600); font-weight: 700; font-size: 13px; margin-top: 6px; }
.contact__tile--dark .contact__go { color: #aab8ff; }
.contact__form { padding: 34px; display: flex; flex-direction: column; gap: 14px; }
.contact__form h3 { font-size: 22px; }
.contact__msg { resize: vertical; font-family: inherit; }

/* terms page */
.terms { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.terms__item { display: flex; gap: 20px; padding: 26px 30px; }
.terms__num { font-family: var(--font-head); font-weight: 800; color: var(--blue); font-size: 20px; flex-shrink: 0; }
.terms__item h3 { font-size: 17px; margin-bottom: 7px; }
.terms__item p { color: var(--slate); font-size: 14.5px; line-height: 1.7; }
.tickrow__link { color: var(--blue-600); font-weight: 600; text-decoration: underline; }

/* terms tick */
.tickrow { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--slate); cursor: pointer; user-select: none; }
.tickrow input { width: 17px; height: 17px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.tickrow span { line-height: 1.4; }
.tickrow--center { justify-content: center; }
.tickrow--dark { color: rgba(255,255,255,.78); }
.tickrow--dark input { accent-color: #fff; }

/* promo banner + customer actions + reviews */
.promobanner { display: flex; width: fit-content; align-items: center; gap: 8px; background: linear-gradient(120deg, var(--blue), #6d28d9); color: #fff; padding: 10px 20px; border-radius: 999px; font-size: 14.5px; font-weight: 600; margin: 16px 0 6px; box-shadow: 0 12px 30px -12px rgba(47,75,255,.5); animation: promopulse 3s ease-in-out infinite; }
.promobanner b { font-family: var(--font-head); font-size: 16px; }
@keyframes promopulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.025); } }

.dashreq__act { margin-top: 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dashreq__act .muted { font-size: 12.5px; max-width: 280px; }
.dashreq__act--running { background: linear-gradient(120deg, #f0fdf6, #f4f6fb); border: 1px solid #d3f1e0; border-radius: 14px; padding: 14px 18px; justify-content: space-between; }
.dashreq__timer { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-2); }
.dashreq__timer b { font-family: var(--font-head); font-variant-numeric: tabular-nums; color: var(--green); font-size: 17px; }

.reviewbox { margin-top: 16px; background: var(--bg); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.reviewbox__title { font-size: 13.5px; font-weight: 600; color: var(--slate); }
.reviewbox__stars { display: flex; gap: 4px; }
.reviewbox__stars button { background: none; font-size: 30px; color: #d8dcea; padding: 0 2px; transition: transform .2s var(--ease), color .15s; }
.reviewbox__stars button:hover { transform: scale(1.2) rotate(-6deg); }
.reviewbox__stars button.on { color: #fbbf24; }
.reviewbox input { padding: 12px 14px; border-radius: 11px; border: 1px solid var(--line); font-size: 14px; font-family: inherit; outline: none; }
.reviewbox input:focus { border-color: var(--blue); }
.reviewbox .btn { align-self: flex-start; }
.dashreq__rated { margin-top: 14px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.dashreq__rated em { color: var(--slate); }

/* navbar user chip */
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__user { display: flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; border-radius: 999px; border: 1px solid var(--line); background: #fff; transition: box-shadow .3s; }
.nav__user:hover { box-shadow: var(--shadow-soft); }
.nav--onhero .nav__user { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }
.nav__useravatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), #6d28d9); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.nav__username { font-size: 13.5px; font-weight: 600; }
.nav--onhero .nav__username { color: #fff; }
.modal__lockicon { font-size: 44px; }
.modal__userline, .bookend__userline { font-size: 13.5px; color: var(--slate); background: var(--bg); border-radius: 10px; padding: 10px 14px; margin-bottom: 14px; }
.bookend__userline { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }

/* live toasts */
.toasts { position: fixed; top: 90px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--ink); color: #fff; padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 3px; animation: slidein .35s cubic-bezier(.2,.9,.3,1.2); max-width: 320px; }
.toast b { font-size: 14px; }
.toast span { font-size: 13px; color: rgba(255,255,255,.75); }
@keyframes slidein { from { transform: translateX(40px); opacity: 0; } }

/* ── PHP: scroll reveal (replaces GSAP) ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal, .reveal.hero { opacity: 1; transform: none; }
/* stacking cards render as normal stacked cards in PHP (no scroll-scrub) */
.howto--dark .stack { gap: 22px; }
.howto--dark .stack__card { position: relative !important; top: 0 !important; }

/* ─────────────────────────────────────────────────────────────
   ADMIN · SERVICES & PRICING
   ───────────────────────────────────────────────────────────── */

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

.svcadmin__flash { margin-bottom: 18px; }

.svcadmin__alert {
  padding: 24px 26px;
  margin-bottom: 22px;
  border-left: 4px solid var(--amber);
  display: grid;
  gap: 10px;
  justify-items: start;
}
.svcadmin__alert h3 { font-family: var(--font-head); font-size: 19px; }
.svcadmin__alert code {
  background: var(--bg);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 13px;
}

.svcadmin__new,
.svcadmin__setup { padding: 26px 28px; display: grid; gap: 16px; }
.svcadmin__new h3,
.svcadmin__setup h3 { font-family: var(--font-head); font-size: 21px; }

.svcadmin__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .svcadmin__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svcadmin__grid { grid-template-columns: 1fr; } }

.svcadmin label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--slate); }
.svcadmin label.tickrow { display: flex; }
.svcadmin input[type=text],
.svcadmin input[type=number],
.svcadmin input[type=file],
.svcadmin input:not([type]),
.svcadmin select,
.svcadmin textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.svcadmin textarea { resize: vertical; line-height: 1.5; }
.svcadmin input:focus,
.svcadmin select:focus,
.svcadmin textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-100);
}

.svcadmin__price input { font-variant-numeric: tabular-nums; font-weight: 700; }

.svcadmin__list { display: grid; gap: 18px; }

.svcadmin__item { padding: 22px 24px; display: grid; gap: 16px; }
.svcadmin__item.is-hidden { opacity: .62; border-style: dashed; }

.svcadmin__itemhead {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.svcadmin__thumb {
  width: 84px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg);
}
.svcadmin__itemtitle h4 { font-family: var(--font-head); font-size: 18px; }
.svcadmin__itemtitle code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 12px;
}

.svcadmin__order { display: flex; gap: 6px; }
.svcadmin__order button { min-width: 38px; }
.svcadmin__order button[disabled] { opacity: .35; cursor: not-allowed; }

.svcadmin__form { display: grid; gap: 16px; }

.svcadmin__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.svcadmin__status { font-size: 14px; font-weight: 600; }
.svcadmin__status.is-ok { color: var(--green); }
.svcadmin__status.is-err { color: var(--red); }

.svcadmin__rowactions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Setup report */
.setupstate, .setuplog { list-style: none; display: grid; gap: 9px; }
.setupstate li, .setuplog li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
}
.setupstate li.is-ok span:first-child { color: var(--green); font-weight: 800; }
.setupstate li.is-missing { color: var(--muted); }
.setuplog__badge { font-weight: 800; width: 16px; display: inline-block; }
.setuplog__done .setuplog__badge { color: var(--green); }
.setuplog__skip .setuplog__badge { color: var(--muted); }
.setuplog__fail .setuplog__badge { color: var(--red); }
.setuplog__fail { color: var(--red); }

/* Request row: staff count */
.reqrow__staffcount { font-weight: 700; color: var(--ink); }
.reqrow__hint { font-size: 12.5px; max-width: 240px; line-height: 1.45; }

/* Booking modal: live estimate */
.modal__estimate {
  background: var(--blue-100);
  border: 1px solid #ccd5ff;
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.modal__estimate b { font-size: 20px; font-family: var(--font-head); }
.modal__estimate span { font-size: 12.5px; color: var(--slate); font-weight: 500; line-height: 1.5; }


/* ══════════════ PASSWORDS ══════════════ */
/* Shared bits: strength meter + match line, used by the login reset step
   and the dashboard change-password form. Built by assets/js/password.js. */
.pwmeter { display: grid; gap: 7px; text-align: left; }
.pwmeter__bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.pwmeter__bars span { height: 5px; border-radius: 999px; background: var(--line); transition: background .3s var(--ease), transform .3s var(--ease); }
.pwmeter__bars span.on { transform: scaleY(1.15); }
.pwmeter__label { font-size: 12px; font-weight: 600; color: var(--muted); }
.pwmeter--s0 .pwmeter__bars span.on, .pwmeter--s1 .pwmeter__bars span.on { background: var(--red); }
.pwmeter--s2 .pwmeter__bars span.on { background: var(--amber); }
.pwmeter--s3 .pwmeter__bars span.on { background: #3b82f6; }
.pwmeter--s4 .pwmeter__bars span.on { background: var(--green); }
.pwmeter--s0 .pwmeter__label, .pwmeter--s1 .pwmeter__label { color: var(--red); }
.pwmeter--s2 .pwmeter__label { color: #b45309; }
.pwmeter--s3 .pwmeter__label { color: var(--blue-600); }
.pwmeter--s4 .pwmeter__label { color: var(--green); }

.pwmatch { font-size: 12.5px; font-weight: 600; text-align: left; min-height: 16px; }
.pwmatch.is-ok { color: var(--green); }
.pwmatch.is-bad { color: var(--red); }

/* ── login: forgot / reset steps ── */
.authsteps { display: flex; align-items: center; justify-content: center; gap: 10px; list-style: none; margin: -4px 0 2px; }
.authsteps__s { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.authsteps__n { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: #eceff7; color: var(--muted); font-size: 12px; font-weight: 700; flex: none; }
.authsteps__s.is-on { color: var(--ink); }
.authsteps__s.is-on .authsteps__n { background: linear-gradient(120deg, var(--blue), #6d28d9); color: #fff; box-shadow: 0 6px 16px -6px rgba(47,75,255,.6); }
.authsteps__s.is-done { color: var(--slate); }
.authsteps__s.is-done .authsteps__n { background: var(--green); color: #fff; }
.authsteps__line { flex: 0 0 30px; height: 2px; border-radius: 2px; background: var(--line); }

.authform__lead { font-size: 13.5px; line-height: 1.65; color: var(--slate); text-align: left; }
.authlabel { font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--slate); text-align: left; margin-top: 4px; }
.authnote { display: flex; gap: 10px; align-items: flex-start; text-align: left; background: var(--blue-100); color: var(--blue-600); border-radius: 12px; padding: 12px 14px; font-size: 12.5px; line-height: 1.6; }
.authnote b { word-break: break-all; }
.authform__switch a { color: var(--blue); font-weight: 600; }
.authform__switch a:hover { text-decoration: underline; }
.authform .form__error, .authform .staffform__ok { line-height: 1.55; }

/* ── dashboard: change password ── */
.password-page { padding: 130px 0 110px; }
.password-page__wrap { max-width: 1020px; margin: 0 auto; }
.password-page__intro { margin-bottom: 26px; }
.password-page__intro h1 { font-size: clamp(30px, 4vw, 42px); margin: 8px 0 10px; }
.password-page__intro p { max-width: 700px; color: var(--slate); line-height: 1.7; font-size: 14.5px; }
.password-page__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; align-items: start; }
/* grid items default to min-width:auto, which kept the card wider than a
   320px screen instead of letting its text wrap */
.password-page__grid > *, .password-form, .password-form > label { min-width: 0; }
.password-form__hint, .password-aside__foot { overflow-wrap: anywhere; }
.password-card { padding: 30px; }
.password-card .form__error { margin-bottom: 18px; }
.password-form { display: flex; flex-direction: column; gap: 18px; }
.password-form > label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--slate); }
.password-form .authfield { width: 100%; }
.password-form__hint { color: var(--muted); font-size: 12.5px; line-height: 1.6; background: #f6f7fc; border-radius: 12px; padding: 12px 14px; }
.password-form__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

.password-done { text-align: center; display: grid; gap: 12px; justify-items: center; padding: 12px 0 4px; }
.password-done__tick { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 27px; color: #fff; background: linear-gradient(140deg, var(--green), #0e9f6e); box-shadow: 0 14px 30px -12px rgba(23,178,106,.6); }
.password-done h2 { font-size: 23px; }
.password-done p { color: var(--slate); font-size: 14px; line-height: 1.7; max-width: 430px; }
.password-done .password-form__actions { justify-content: center; margin-top: 6px; }

.password-aside { padding: 26px; display: grid; gap: 14px; }
.password-aside h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-family: var(--font-body); font-weight: 700; }
.password-aside h3 + * { margin-top: -4px; }
.password-aside__who { display: flex; align-items: center; gap: 12px; }
.password-aside__who > div { display: grid; gap: 2px; min-width: 0; }
.password-aside__who b { font-size: 15px; }
.password-aside__who span { font-size: 12.5px; color: var(--muted); overflow-wrap: anywhere; }
.password-aside__who .dash__avatar { flex: none; }
.password-tips { list-style: none; display: grid; gap: 9px; }
.password-tips li { position: relative; padding-left: 24px; font-size: 13.5px; line-height: 1.55; color: var(--slate); }
.password-tips li::before { content: '✓'; position: absolute; left: 0; top: -1px; width: 17px; height: 17px; border-radius: 50%; background: #ecfdf5; color: var(--green); font-size: 10px; font-weight: 700; display: grid; place-items: center; }
.password-aside__foot { border-top: 1px solid var(--line); padding-top: 14px; font-size: 12.5px; line-height: 1.65; color: var(--muted); }
.password-aside__foot a { color: var(--blue); font-weight: 600; }
.password-aside__foot a:hover { text-decoration: underline; }

.dashero__password { background: transparent; color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 11px 18px; font-weight: 600; font-size: 13.5px; transition: all .3s; }
.dashero__password:hover { background: rgba(255,255,255,.1); color: #fff; }

.dashflash { display: flex; align-items: center; gap: 10px; background: #ecfdf5; border: 1px solid #b6f0d4; color: #0e7c53; border-radius: 14px; padding: 13px 16px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }

@media (max-width: 900px) { .password-page__grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .password-page { padding-top: 105px; }
  .password-card, .password-aside { padding: 22px; }
  .password-form__actions .btn { width: 100%; justify-content: center; }
  .dashero__password { padding: 10px 15px; }
}
