/* ============================================================
   Xander Workflow — shared demo design system  v2
   Component library for the 10 industry demo sites.
   Each demo sets its own --accent/--bg/--ink/fonts and composes
   these components in its own order. Vanilla CSS, no deps.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: var(--on-accent, #fff); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--accent) 55%, var(--bg)); border-radius: 4px; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { padding: clamp(72px, 9vw, 136px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.center::before { display: none; }
h1, h2, h3, .font-head { font-family: var(--font-head); }
.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: var(--head-weight, 700);
  letter-spacing: var(--head-tracking, -0.02em); line-height: 1.08; margin-bottom: 18px; max-width: 680px;
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-sub { font-size: 1.06rem; color: var(--muted); max-width: 580px; line-height: 1.75; margin-bottom: 3rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.included-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-tint, rgba(0,0,0,.05)); color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px; margin-bottom: 16px;
}
.included-tag::before { content: '✦'; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-scale { opacity: 0; transform: scale(.94) translateY(14px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ---------- nav ---------- */
.xnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; transition: background .35s, box-shadow .35s, padding .35s;
}
.xnav.scrolled { background: var(--nav-bg, rgba(255,255,255,.88)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line), 0 8px 30px -18px rgba(0,0,0,.2); padding: 12px 24px; }
.xnav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; text-decoration: none; color: var(--ink); }
.xnav.on-hero:not(.scrolled) .xnav-logo, .xnav.on-hero:not(.scrolled) .xnav-links a { color: var(--hero-nav-ink, #fff); }
.xnav-logo .mark { width: 36px; height: 36px; border-radius: 11px; background: var(--accent); color: var(--on-accent, #fff); display: grid; place-items: center; font-size: 1rem; box-shadow: 0 6px 18px -6px var(--accent-shadow, rgba(0,0,0,.3)); }
.xnav-links { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 650; }
.xnav-links a { text-decoration: none; opacity: .85; transition: opacity .2s; position: relative; }
.xnav-links a::after { content:''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width .25s; }
.xnav-links a:hover { opacity: 1; }
.xnav-links a:hover::after { width: 100%; }
.xnav-cta { background: var(--accent); color: var(--on-accent,#fff); padding: 11px 21px; border-radius: 11px; font-weight: 750; font-size: .875rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 22px -8px var(--accent-shadow, rgba(0,0,0,.35)); }
.xnav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--accent-shadow, rgba(0,0,0,.4)); }
.xnav-burger { display: none; width: 42px; height: 42px; border-radius: 11px; background: var(--card); border: 1px solid var(--line); position: relative; z-index: 320; }
.xnav-burger span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .3s, top .3s; }
.xnav-burger span:nth-child(1) { top: 14px; } .xnav-burger span:nth-child(2) { top: 20px; } .xnav-burger span:nth-child(3) { top: 26px; }
body.nav-open .xnav-burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.nav-open .xnav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .xnav-burger span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
.xnav-drawer { position: fixed; inset: 0; z-index: 310; background: var(--bg); display: none; flex-direction: column; justify-content: center; padding: 90px 34px 40px; gap: 6px; }
body.nav-open .xnav-drawer { display: flex; }
body.nav-open { overflow: hidden; }
.xnav-drawer a { font-family: var(--font-head); font-size: 2rem; font-weight: 750; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.xnav-drawer a::after { content: '→'; color: var(--accent); }
.xnav-drawer .drawer-cta { margin-top: 22px; background: var(--accent); color: var(--on-accent,#fff); border-radius: 14px; padding: 16px 22px; border-bottom: none; justify-content: center; font-size: 1.1rem; }
.xnav-drawer .drawer-cta::after { content: ''; }
@media (max-width: 820px) { .xnav-links { display: none; } .xnav-burger { display: block; } .xnav-cta { display: none; } }

/* ---------- buttons ---------- */
.xbtn { display: inline-flex; align-items: center; gap: 9px; padding: 16px 30px; border-radius: 13px; font-weight: 750; font-size: .96rem; text-decoration: none; transition: transform .22s, box-shadow .22s, background .22s; border: none; cursor: pointer; }
.xbtn-primary { background: var(--accent); color: var(--on-accent, #fff); box-shadow: 0 12px 32px -8px var(--accent-shadow, rgba(0,0,0,.35)); }
.xbtn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px var(--accent-shadow, rgba(0,0,0,.42)); }
.xbtn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.xbtn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); }
.xbtn-white { background: #fff; color: var(--ink-dark, #14140f); }
.xbtn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.2); }
.xbtn-glass { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.xbtn-glass:hover { transform: translateY(-3px); background: rgba(255,255,255,.22); }

/* ---------- hero A: full-bleed photo ---------- */
.hero-photo { min-height: 100svh; display: flex; align-items: flex-end; position: relative; padding: 150px 0 90px; }
.hero-photo-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--ink-dark, #111); }
.hero-photo-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroKen 24s ease-in-out infinite alternate; }
@keyframes heroKen { from { transform: scale(1.08) translate(0,0);} to { transform: scale(1.16) translate(-1.5%, -1.5%);} }
.hero-photo-bg::after { content:''; position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-photo-inner { position: relative; z-index: 1; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 8px 17px; border-radius: 100px; font-size: .8rem; font-weight: 700; margin-bottom: 24px; }
.hero-photo h1 { color: #fff; font-size: clamp(2.7rem, 6.2vw, 5.2rem); font-weight: var(--head-weight,700); line-height: 1.02; letter-spacing: var(--head-tracking,-0.03em); max-width: 820px; margin-bottom: 22px; text-wrap: balance; }
.hero-photo h1 em { font-style: normal; color: var(--accent-light, var(--accent)); }
.hero-photo p { color: rgba(255,255,255,.88); font-size: 1.16rem; max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: clamp(20px, 4vw, 52px); margin-top: 46px; flex-wrap: wrap; }
.hero-stats .hs { color: #fff; }
.hero-stats .hs b { display: block; font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.1; }
.hero-stats .hs span { font-size: .78rem; opacity: .82; font-weight: 600; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px; z-index: 2; }
.scroll-cue::after { content: ''; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: #fff; animation: cueDrop 1.8s ease-in-out infinite; }
@keyframes cueDrop { 0% { opacity: 0; transform: translateY(0);} 35% { opacity: 1;} 100% { opacity: 0; transform: translateY(14px);} }

/* floating stat card on hero */
.float-card {
  position: absolute; z-index: 2; background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-radius: 18px; padding: 18px 22px; box-shadow: 0 26px 60px -12px rgba(0,0,0,.38);
  transform: perspective(900px) rotateX(6deg) rotateY(-10deg);
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: perspective(900px) rotateX(6deg) rotateY(-10deg) translateY(0); } 50% { transform: perspective(900px) rotateX(3deg) rotateY(-6deg) translateY(-14px); } }
.float-card .fc-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--ink-dark,#14140f); line-height: 1; }
.float-card .fc-label { font-size: .78rem; color: #5c6570; font-weight: 600; margin-top: 4px; max-width: 170px; }
@media (max-width: 900px) { .float-card { display: none; } }

/* ---------- hero B: split text + tilt photo stack ---------- */
.hero-split { min-height: 94svh; display: flex; align-items: center; padding: 155px 0 70px; }
.hero-split .wrap { display: grid; grid-template-columns: 1.08fr 1fr; gap: 64px; align-items: center; }
.hero-split h1 { font-size: clamp(2.5rem, 4.8vw, 4rem); font-weight: var(--head-weight,700); letter-spacing: var(--head-tracking,-0.02em); line-height: 1.06; margin-bottom: 22px; text-wrap: balance; }
.hero-split h1 em { font-style: normal; color: var(--accent); }
.hero-split p.lede { color: var(--muted); font-size: 1.1rem; max-width: 470px; margin-bottom: 32px; line-height: 1.75; }
.hero-split .hero-stats .hs, .hero-split .hero-stats .hs b { color: var(--ink); }
.hero-split .hero-stats .hs span { color: var(--muted); opacity: 1; }
.hero-split .hero-stats { margin-top: 40px; }
.tilt-stack { position: relative; perspective: 1400px; height: 480px; }
.tilt-stack img { position: absolute; border-radius: 22px; object-fit: cover; box-shadow: 0 30px 70px -16px rgba(0,0,0,.35); transition: transform .35s ease; }
.tilt-stack .t1 { width: 64%; height: 76%; top: 0; right: 0; transform: perspective(1400px) rotateY(-8deg) rotateX(4deg); z-index: 2; }
.tilt-stack .t2 { width: 46%; height: 52%; bottom: 0; left: 0; transform: perspective(1400px) rotateY(6deg) rotateX(-3deg); z-index: 1; }
.tilt-badge { position: absolute; z-index: 3; right: 4%; bottom: 8%; background: #fff; border-radius: 16px; padding: 13px 17px; box-shadow: 0 20px 44px -10px rgba(0,0,0,.3); display: flex; align-items: center; gap: 10px; animation: floatY2 4.5s ease-in-out infinite; }
.tilt-badge .tb-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--accent); color: var(--on-accent,#fff); display: grid; place-items: center; font-size: 1.05rem; }
.tilt-badge b { font-family: var(--font-head); font-size: .95rem; display: block; line-height: 1.2; color: #14140f; }
.tilt-badge span { font-size: .72rem; color: #6b7480; font-weight: 600; }
@media (max-width: 900px) { .hero-split .wrap { grid-template-columns: 1fr; } .tilt-stack { height: 340px; margin-top: 10px; } }

/* ---------- marquee strip ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); padding: 16px 0; position: relative; }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marqueeX 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee .mq { display: inline-flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 750; color: var(--muted); white-space: nowrap; }
.marquee .mq .stars { color: #f5a524; letter-spacing: 1px; }
.marquee .mq b { color: var(--ink); }
.marquee .mq::after { content: '·'; margin-left: 36px; color: var(--accent); font-size: 1.2rem; }

/* ---------- trust bar (legacy, still supported) ---------- */
.trust-bar { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; font-size: .875rem; font-weight: 600; color: var(--muted); }
.trust-inner span.stars { color: #f5a524; letter-spacing: 1px; }

/* ---------- bento services ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento .card { grid-column: span 2; background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 32px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s; position: relative; overflow: hidden; }
.bento .card.wide { grid-column: span 3; }
.bento .card.tall { grid-row: span 2; }
.bento .card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -18px rgba(0,0,0,.2); border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); }
.bento .card .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-tint, rgba(0,0,0,.06)); display: grid; place-items: center; font-size: 1.45rem; margin-bottom: 18px; }
.bento .card h3 { font-size: 1.18rem; font-weight: 750; margin-bottom: 8px; }
.bento .card p { color: var(--muted); font-size: .93rem; line-height: 1.65; }
.bento .card .from { position: absolute; top: 26px; right: 26px; font-size: .75rem; font-weight: 800; color: var(--accent); background: var(--accent-tint, rgba(0,0,0,.05)); padding: 5px 11px; border-radius: 100px; }
.bento .card.photo { padding: 0; min-height: 240px; }
.bento .card.photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s; }
.bento .card.photo:hover img { transform: scale(1.06); }
.bento .card.photo .ph-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 24px 20px; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); color: #fff; font-weight: 750; font-family: var(--font-head); }
.bento .card.accent { background: var(--accent); border-color: var(--accent); color: var(--on-accent,#fff); }
.bento .card.accent h3 { color: var(--on-accent,#fff); }
.bento .card.accent p { color: color-mix(in srgb, var(--on-accent,#fff) 80%, transparent); }
.bento .card.accent .ic { background: rgba(255,255,255,.18); }
.bento .card.stat .big { font-family: var(--font-head); font-size: 2.9rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.bento .card.stat .big small { font-size: 1.2rem; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2,1fr); } .bento .card, .bento .card.wide, .bento .card.tall { grid-column: span 2; grid-row: auto; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .g-item { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1/1.1; cursor: pointer; }
.gallery .g-item.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery .g-item:hover img { transform: scale(1.08); }
.gallery .g-item .g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 15px; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); color: #fff; font-size: .84rem; font-weight: 750; }
@media (min-width: 901px) {
  .gallery .g-item .g-cap { opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
  .gallery .g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2,1fr); } .gallery .g-item.big { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; } }

/* ---------- before / after slider ---------- */
.ba-wrap { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16/9.5; box-shadow: 0 30px 70px -20px rgba(0,0,0,.35); --cut: 50%; user-select: none; }
.ba-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-wrap .ba-after { clip-path: inset(0 0 0 var(--cut)); }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--cut); width: 3px; background: #fff; box-shadow: 0 0 18px rgba(0,0,0,.45); z-index: 2; pointer-events: none; }
.ba-line::after { content: '◂ ▸'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; color: #14140f; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; box-shadow: 0 8px 26px rgba(0,0,0,.35); letter-spacing: -1px; }
.ba-wrap input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 3; -webkit-appearance: none; }
.ba-tag { position: absolute; top: 16px; z-index: 2; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .12em; padding: 6px 13px; border-radius: 100px; pointer-events: none; }
.ba-tag.before { left: 16px; } .ba-tag.after { right: 16px; background: var(--accent); color: var(--on-accent,#fff); }

/* ============================================================
   QUOTE CALCULATOR
   ============================================================ */
.calc-shell { display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: clamp(22px, 3vw, 40px); box-shadow: 0 30px 70px -30px rgba(0,0,0,.22); }
.calc-step { margin-bottom: 26px; }
.calc-step:last-child { margin-bottom: 0; }
.calc-step .cs-label { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.calc-step .cs-label .n { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-tint, rgba(0,0,0,.06)); color: var(--accent); display: inline-grid; place-items: center; font-size: .72rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 12px 19px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--bg); font-weight: 700; font-size: .9rem; transition: all .22s; display: inline-flex; align-items: center; gap: 8px; }
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.chip.on { background: var(--accent); border-color: var(--accent); color: var(--on-accent,#fff); box-shadow: 0 8px 22px -8px var(--accent-shadow, rgba(0,0,0,.35)); }
.chip small { font-weight: 650; opacity: .72; font-size: .78rem; }
.calc-out { background: var(--ink-dark, #14140f); color: #fff; border-radius: 20px; padding: clamp(24px, 2.6vw, 36px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.calc-out::before { content: ''; position: absolute; top: -60px; right: -60px; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle, var(--accent-shadow, rgba(255,255,255,.2)), transparent 70%); opacity: .8; }
.calc-out .co-label { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .65; margin-bottom: 8px; }
.calc-out .co-price { font-family: var(--font-head); font-size: clamp(2.6rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.calc-out .co-price.bump { animation: pricePop .45s ease; }
@keyframes pricePop { 0% { transform: scale(.94); } 55% { transform: scale(1.04); } 100% { transform: scale(1); } }
.calc-out .co-range { font-size: .9rem; opacity: .72; margin: 8px 0 18px; min-height: 1.4em; }
.calc-out .co-note { font-size: .78rem; opacity: .55; line-height: 1.55; margin-top: 16px; }
.calc-out .xbtn { justify-content: center; }
@media (max-width: 900px) { .calc-shell { grid-template-columns: 1fr; } }

/* ============================================================
   BOOKING SLOT PICKER
   ============================================================ */
.slots-shell { background: var(--card); border: 1px solid var(--line); border-radius: 26px; padding: clamp(22px, 3vw, 40px); box-shadow: 0 30px 70px -30px rgba(0,0,0,.22); max-width: 760px; margin: 0 auto; }
.slots-label { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 22px 0 12px; }
.slots-label:first-child { margin-top: 0; }
.slot-days { display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; }
.slot-day { border: 1.5px solid var(--line); background: var(--bg); border-radius: 14px; padding: 11px 6px; text-align: center; transition: all .2s; }
.slot-day b { display: block; font-family: var(--font-head); font-size: 1.15rem; }
.slot-day span { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.slot-day:hover { border-color: var(--accent); transform: translateY(-2px); }
.slot-day.on { background: var(--accent); border-color: var(--accent); color: var(--on-accent,#fff); }
.slot-day.on span { color: color-mix(in srgb, var(--on-accent,#fff) 78%, transparent); }
.slot-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 9px; }
.slot-time { border: 1.5px solid var(--line); background: var(--bg); border-radius: 11px; padding: 11px 4px; font-weight: 750; font-size: .875rem; text-align: center; transition: all .2s; font-variant-numeric: tabular-nums; }
.slot-time:hover { border-color: var(--accent); transform: translateY(-2px); }
.slot-time.taken { opacity: .32; text-decoration: line-through; pointer-events: none; }
.slot-time.on { background: var(--accent); border-color: var(--accent); color: var(--on-accent,#fff); }
.slots-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.slots-foot .sf-note { font-size: .8rem; color: var(--muted); max-width: 300px; }
.slot-confirm { display: none; text-align: center; padding: 26px 10px 10px; }
.slots-shell.confirmed .slot-confirm { display: block; }
.slots-shell.confirmed .slots-body { display: none; }
.slot-confirm .ok-ring { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); color: var(--on-accent,#fff); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px; animation: okPop .5s cubic-bezier(.2,1.4,.4,1); box-shadow: 0 16px 40px -10px var(--accent-shadow, rgba(0,0,0,.4)); }
@keyframes okPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.slot-confirm h3 { font-size: 1.5rem; margin-bottom: 8px; }
.slot-confirm p { color: var(--muted); font-size: .93rem; max-width: 380px; margin: 0 auto 18px; }
.slot-confirm .again { font-size: .82rem; font-weight: 750; color: var(--accent); background: none; border: none; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   BACK OFFICE — "what you're actually buying" dashboard
   Deliberately light UI even on dark pages (it's an app window).
   ============================================================ */
.backoffice { --bo-bg: #fbfbfa; --bo-card: #ffffff; --bo-line: #e7e7e2; --bo-ink: #191c1e; --bo-muted: #6d7580; }
.bo-window { background: var(--bo-bg); border: 1px solid var(--bo-line); border-radius: 24px; overflow: hidden; box-shadow: 0 40px 90px -34px rgba(0,0,0,.4); color: var(--bo-ink); }
.bo-head { display: flex; align-items: center; gap: 12px; padding: 15px 20px; background: var(--bo-card); border-bottom: 1px solid var(--bo-line); }
.bo-dots { display: flex; gap: 6px; }
.bo-dots i { width: 11px; height: 11px; border-radius: 50%; }
.bo-dots i:nth-child(1) { background: #ff5f57; } .bo-dots i:nth-child(2) { background: #febc2e; } .bo-dots i:nth-child(3) { background: #28c840; }
.bo-title { font-weight: 750; font-size: .875rem; color: var(--bo-muted); display: flex; align-items: center; gap: 8px; font-family: var(--font-body); }
.bo-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; background: #e8f7ee; color: #147d43; font-size: .68rem; font-weight: 800; letter-spacing: .08em; padding: 5px 12px; border-radius: 100px; }
.bo-live i { width: 7px; height: 7px; border-radius: 50%; background: #22a55c; animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,165,92,.5);} 60% { box-shadow: 0 0 0 6px rgba(34,165,92,0);} }
.bo-body { display: grid; grid-template-columns: 1fr 268px; }
.bo-main { padding: 20px; min-width: 0; }
.bo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.bo-stat { background: var(--bo-card); border: 1px solid var(--bo-line); border-radius: 15px; padding: 14px 16px; }
.bo-stat .bs-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--bo-muted); margin-bottom: 6px; }
.bo-stat .bs-num { font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.bo-stat .bs-delta { font-size: .7rem; font-weight: 750; margin-top: 5px; color: #147d43; }
.bo-stat .bs-delta.down { color: #c0392b; }
.xtabs { display: flex; gap: 7px; margin-bottom: 14px; flex-wrap: wrap; }
.xtab { padding: 9px 17px; border-radius: 100px; font-size: .82rem; font-weight: 750; color: var(--bo-muted); background: transparent; border: 1.5px solid var(--bo-line); transition: all .2s; }
.xtab:hover { border-color: var(--accent); color: var(--bo-ink); }
.xtab.on { background: var(--accent); border-color: var(--accent); color: var(--on-accent,#fff); }
.bo-pane { display: none; animation: paneIn .4s ease; }
.bo-pane.on { display: block; }
@keyframes paneIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
.bo-tablewrap { background: var(--bo-card); border: 1px solid var(--bo-line); border-radius: 16px; overflow-x: auto; }
.bo-table { width: 100%; border-collapse: collapse; font-size: .84rem; min-width: 560px; }
.bo-table th { text-align: left; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--bo-muted); padding: 12px 16px; border-bottom: 1px solid var(--bo-line); background: var(--bo-bg); white-space: nowrap; }
.bo-table td { padding: 12px 16px; border-bottom: 1px solid var(--bo-line); font-variant-numeric: tabular-nums; white-space: nowrap; }
.bo-table tr:last-child td { border-bottom: none; }
.bo-table tbody tr { transition: background .2s; }
.bo-table tbody tr:hover { background: color-mix(in srgb, var(--accent) 4%, var(--bo-card)); }
.bo-table td.num { font-weight: 750; }
.bo-table tr.row-new { animation: rowIn .6s ease; }
@keyframes rowIn { from { opacity: 0; transform: translateY(-8px); background: var(--accent-tint,#fdf6e3);} to { opacity: 1; transform: none; } }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 800; padding: 4px 11px; border-radius: 100px; letter-spacing: .02em; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill.ok { background: #e8f7ee; color: #147d43; }
.pill.warn { background: #fdf3e2; color: #a96a10; }
.pill.info { background: #e9f1fd; color: #2660c4; }
.pill.due { background: #fdecec; color: #c0392b; }
.pill.mut { background: #eef0f3; color: #4a5560; }
.bo-note { font-size: .78rem; color: var(--bo-muted); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.bo-note::before { content: '🤖'; }
/* chart pane */
.bo-chart { background: var(--bo-card); border: 1px solid var(--bo-line); border-radius: 16px; padding: 22px 20px 14px; }
.bo-chart .ch-bars { display: flex; align-items: flex-end; gap: 8px; height: 190px; }
.bo-chart .ch-col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; height: 100%; min-width: 0; }
.bo-chart .ch-bar { width: 100%; max-width: 42px; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #fff)); position: relative; transition: transform .25s, filter .25s; transform-origin: bottom; animation: barGrow .9s cubic-bezier(.2,.8,.2,1) backwards; }
.bo-chart .ch-col:nth-child(2) .ch-bar { animation-delay: .06s; } .bo-chart .ch-col:nth-child(3) .ch-bar { animation-delay: .12s; } .bo-chart .ch-col:nth-child(4) .ch-bar { animation-delay: .18s; } .bo-chart .ch-col:nth-child(5) .ch-bar { animation-delay: .24s; } .bo-chart .ch-col:nth-child(6) .ch-bar { animation-delay: .3s; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bo-chart .ch-bar:hover { filter: brightness(1.08); transform: scaleY(1.02); }
.bo-chart .ch-bar .v { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); font-size: .68rem; font-weight: 800; color: var(--bo-ink); opacity: 0; transition: opacity .2s; white-space: nowrap; }
.bo-chart .ch-bar:hover .v { opacity: 1; }
.bo-chart .ch-col.hot .ch-bar .v { opacity: 1; }
.bo-chart .ch-lbl { font-size: .68rem; font-weight: 750; color: var(--bo-muted); }
/* live feed rail */
.bo-feed { border-left: 1px solid var(--bo-line); background: var(--bo-card); padding: 18px; display: flex; flex-direction: column; min-width: 0; }
.bo-feed .bf-title { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--bo-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.bo-feed .bf-title i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: livePulse 1.6s infinite; }
.feed-item { display: flex; gap: 11px; padding: 11px 10px; border-radius: 12px; align-items: flex-start; }
.feed-item + .feed-item { margin-top: 2px; }
.feed-item .fi-ic { width: 32px; height: 32px; border-radius: 10px; background: var(--bo-bg); border: 1px solid var(--bo-line); display: grid; place-items: center; font-size: .95rem; flex-shrink: 0; }
.feed-item .fi-txt { font-size: .78rem; line-height: 1.45; color: var(--bo-ink); }
.feed-item .fi-txt b { font-weight: 750; }
.feed-item .fi-time { display: block; font-size: .68rem; color: var(--bo-muted); margin-top: 2px; }
.feed-item.fresh { animation: feedIn .5s ease; background: color-mix(in srgb, var(--accent) 7%, var(--bo-card)); }
@keyframes feedIn { from { opacity: 0; transform: translateY(-10px);} to { opacity: 1; transform: none; } }
@media (max-width: 900px) { .bo-body { grid-template-columns: 1fr; } .bo-feed { border-left: none; border-top: 1px solid var(--bo-line); } .bo-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- menu (restaurant price lists) ---------- */
.menu-pane { display: none; }
.menu-pane.on { display: block; animation: paneIn .4s ease; }
.menu-list { max-width: 720px; margin: 0 auto; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 17px 6px; border-bottom: 1px dashed var(--line); }
.menu-item .mi-name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; display: flex; align-items: baseline; gap: 10px; }
.menu-item .mi-name .tag { font-family: var(--font-body); font-size: .62rem; font-weight: 800; letter-spacing: .08em; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 100px; padding: 2px 8px; }
.menu-item .mi-price { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--accent); font-variant-numeric: tabular-nums; }
.menu-item .mi-desc { grid-column: 1 / -1; color: var(--muted); font-size: .875rem; line-height: 1.6; }

/* ---------- automation showcase: 3D phone ---------- */
.automation { background: var(--auto-bg, var(--card)); border-radius: 32px; padding: clamp(34px,5vw,68px); overflow: hidden; position: relative; }
.automation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.automation h2 { color: var(--auto-ink, var(--ink)); }
.automation .section-sub { color: var(--auto-muted, var(--muted)); margin-bottom: 2rem; }
.auto-list { display: grid; gap: 14px; margin-top: 8px; }
.auto-list .ai { display: flex; gap: 14px; align-items: flex-start; background: var(--auto-card, rgba(255,255,255,.06)); border: 1px solid var(--auto-line, rgba(255,255,255,.1)); border-radius: 16px; padding: 17px 19px; transition: transform .25s, border-color .25s; }
.auto-list .ai:hover { transform: translateX(6px); border-color: color-mix(in srgb, var(--accent) 60%, transparent); }
.auto-list .ai .ic { font-size: 1.35rem; }
.auto-list .ai b { color: var(--auto-ink, var(--ink)); font-family: var(--font-head); }
.auto-list .ai p { color: var(--auto-muted, var(--muted)); font-size: .87rem; margin-top: 2px; }
.phone3d-wrap { perspective: 1600px; display: flex; justify-content: center; position: relative; }
.phone3d {
  width: 272px; height: 556px; border-radius: 42px; background: #0d0d10; border: 6px solid #1c1c20;
  box-shadow: 0 50px 90px -20px rgba(0,0,0,.55);
  transform: rotateY(-16deg) rotateX(4deg);
  animation: phoneFloat 6s ease-in-out infinite;
  position: relative; overflow: hidden;
}
@keyframes phoneFloat { 0%,100% { transform: rotateY(-16deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-11deg) rotateX(2deg) translateY(-16px); } }
.phone3d .notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; background: #0d0d10; border-radius: 12px; z-index: 5; }
.phone3d .screen { position: absolute; inset: 0; background: var(--phone-bg, #f3f4f8); display: flex; flex-direction: column; }
.phone3d .p-head { background: var(--accent); color: var(--on-accent,#fff); padding: 34px 16px 14px; font-family: var(--font-head); font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 10px; }
.phone3d .p-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.3); }
.phone3d .bubbles { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.phone3d .bub { max-width: 84%; padding: 10px 14px; border-radius: 16px; font-size: .78rem; line-height: 1.45; opacity: 0; animation: bubIn .5s ease forwards; position: relative; }
.phone3d .bub.in { align-self: flex-start; background: #fff; color: #222; border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.phone3d .bub.out { align-self: flex-end; background: var(--accent); color: var(--on-accent,#fff); border-bottom-right-radius: 4px; }
.phone3d .bub.out .ticks { font-size: .6rem; opacity: .75; margin-left: 6px; }
@keyframes bubIn { from { opacity: 0; transform: translateY(10px) scale(.96);} to { opacity: 1; transform: translateY(0) scale(1);} }
.phone3d .p-typing { align-self: flex-start; display: flex; gap: 4px; padding: 10px 14px; background: #fff; border-radius: 16px; border-bottom-left-radius: 4px; }
.phone3d .p-typing span { width: 6px; height: 6px; border-radius: 50%; background: #b8b8c0; animation: typingDot 1.2s infinite ease-in-out; }
.phone3d .p-typing span:nth-child(2) { animation-delay: .2s; } .phone3d .p-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }
.review-float { position: absolute; z-index: 3; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 20px 44px -10px rgba(0,0,0,.3); display: flex; align-items: center; gap: 10px; animation: floatY2 4.5s ease-in-out infinite; }
@keyframes floatY2 { 0%,100% { transform: translateY(0) rotate(-2deg);} 50% { transform: translateY(-10px) rotate(1deg);} }
.review-float .stars { color: #f5a524; font-size: 1rem; letter-spacing: 1px; }
.review-float b { font-family: var(--font-head); font-size: 1rem; color: #14140f; }
.review-float .rf-sub { font-size: .72rem; color: #6b7480; }
@media (max-width: 900px) { .automation-grid { grid-template-columns: 1fr; } .phone3d { width: 250px; height: 512px; } }

/* social feed mockup */
.social-feed { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.social-feed .s-item { position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden; }
.social-feed .s-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.social-feed .s-item:hover img { transform: scale(1.08); }
.social-feed .s-item .heart { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.45); color: #fff; font-size: .68rem; padding: 3px 8px; border-radius: 20px; display: flex; align-items: center; gap: 4px; }
@media (max-width: 700px) { .social-feed { grid-template-columns: repeat(2,1fr); } }

/* ---------- steps rail ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 30px; position: relative; transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -18px rgba(0,0,0,.18); }
.step .sn { counter-increment: step; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--on-accent,#fff); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; box-shadow: 0 10px 24px -8px var(--accent-shadow, rgba(0,0,0,.35)); }
.step .sn::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; line-height: 1.65; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 28px; transition: transform .3s, box-shadow .3s; }
.testi:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -14px rgba(0,0,0,.16); }
.testi .stars { color: #f5a524; margin-bottom: 13px; letter-spacing: 2px; }
.testi p.q { font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.testi .who { display: flex; align-items: center; gap: 11px; }
.testi .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: var(--on-accent,#fff); display: grid; place-items: center; font-weight: 750; font-size: .8rem; font-family: var(--font-head); }
.testi .who b { font-size: .86rem; } .testi .who span { display: block; font-size: .75rem; color: var(--muted); }
.testi .via { margin-left: auto; font-size: .68rem; font-weight: 750; color: var(--muted); background: var(--bg); border: 1px solid var(--line); padding: 4px 10px; border-radius: 100px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- pricing / packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pkg { background: var(--card); border: 1.5px solid var(--line); border-radius: 22px; padding: 32px; transition: transform .3s, box-shadow .3s, border-color .3s; display: flex; flex-direction: column; }
.pkg.featured { border-color: var(--accent); background: var(--accent-tint, var(--card)); position: relative; transform: scale(1.03); }
.pkg.featured::before { content: attr(data-flag); position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--on-accent,#fff); font-size: .65rem; font-weight: 800; letter-spacing: .09em; padding: 6px 15px; border-radius: 100px; white-space: nowrap; }
.pkg:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -16px rgba(0,0,0,.18); }
.pkg.featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg h3 { font-size: 1.2rem; margin-bottom: 4px; }
.pkg .sub { font-size: .8rem; color: var(--muted); }
.pkg .price { font-family: var(--font-head); font-size: 2.3rem; font-weight: 800; margin: 12px 0 2px; letter-spacing: -.02em; }
.pkg .price span { font-size: .9rem; font-weight: 550; color: var(--muted); letter-spacing: 0; }
.pkg ul { list-style: none; display: grid; gap: 10px; margin: 18px 0 26px; }
.pkg ul li { font-size: .875rem; display: flex; gap: 9px; align-items: flex-start; color: var(--muted); }
.pkg ul li::before { content: '✓'; color: var(--accent); font-weight: 800; }
.pkg .xbtn { margin-top: auto; justify-content: center; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } .pkg.featured { transform: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 0 24px; transition: border-color .25s; }
.faq details[open] { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 19px 0; font-weight: 750; font-size: .98rem; font-family: var(--font-head); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform .3s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 20px; color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--cta-bg, var(--ink-dark, #14140f)); color: #fff; text-align: center; border-radius: 32px; padding: clamp(52px,7vw,96px) 24px; margin: 0 24px; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 560px; height: 300px; background: radial-gradient(ellipse, var(--accent-shadow, rgba(255,255,255,.16)), transparent 70%); pointer-events: none; }
.cta-band h2 { color: #fff; margin: 0 auto 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,.68); max-width: 480px; margin: 0 auto 32px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- map ---------- */
.map-band { position: relative; height: 340px; }
.map-band iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.04); }
.map-card { position: absolute; top: 24px; left: 24px; background: #fff; border-radius: 16px; padding: 17px 21px; box-shadow: 0 20px 44px -12px rgba(0,0,0,.28); max-width: 250px; color: #14140f; }
.map-card b { font-family: var(--font-head); display: block; margin-bottom: 4px; }
.map-card span { font-size: .82rem; color: #5c6570; display: block; }
.map-card .hours { margin-top: 8px; padding-top: 8px; border-top: 1px solid #eee; font-size: .75rem; color: #147d43; font-weight: 750; }

/* ---------- footer ---------- */
footer.xfoot { background: var(--foot-bg, var(--ink-dark, #14140f)); color: rgba(255,255,255,.7); padding: 64px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid .brand { color: #fff; font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.foot-grid h4 { color: #fff; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.foot-grid a { display: block; text-decoration: none; color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: 9px; transition: color .2s; }
.foot-grid a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; }
.foot-bottom a { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 2px; }
.foot-bottom a:hover { color: #fff; }
@media (max-width: 767px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- sticky mobile CTA + WhatsApp ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: var(--card); border-top: 1px solid var(--line); box-shadow: 0 -6px 26px rgba(0,0,0,.1); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--on-accent,#fff); padding: 14px; border-radius: 13px; font-weight: 800; text-decoration: none; }
@media (max-width: 768px) { .mobile-cta { display: block; } body { padding-bottom: 82px; } }
.wa-fab { position: fixed; right: 20px; bottom: 96px; z-index: 260; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,.42); transition: transform .2s; }
.wa-fab:hover { transform: scale(1.1); }
@media (min-width: 769px) { .wa-fab { bottom: 24px; } }

/* ---------- demo ribbon ---------- */
.demo-ribbon { position: fixed; top: 0; left: 0; right: 0; z-index: 400; background: #101014; color: #fff; text-align: center; font-size: .78rem; font-weight: 600; padding: 9px 14px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.demo-ribbon a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.demo-ribbon .db { background: linear-gradient(100deg, #6d5df6, #b44df0); padding: 3px 11px; border-radius: 100px; font-weight: 800; letter-spacing: .04em; }
body.has-ribbon { padding-top: 38px; }
body.has-ribbon .xnav { top: 38px; }
body.has-ribbon .xnav.scrolled { top: 0; }
body.has-ribbon .xnav-drawer { padding-top: 120px; }
@media (max-width: 600px) { body.has-ribbon { padding-top: 56px; } body.has-ribbon .xnav { top: 56px; } body.has-ribbon .xnav.scrolled { top: 0; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .hero-photo-bg img, .phone3d, .float-card, .tilt-badge, .review-float, .marquee-track, .scroll-cue::after { animation: none; }
  .bo-chart .ch-bar { animation: none; }
}
