/* ── Token compat: guide.css on the landing.css palette (single source) ── */
:root{
  --border:#E2E3F0;
  --green:#16a34a;
  --r-sm:8px; --r-md:14px; --r-lg:20px; --r-xl:28px;
  --sh-sm:0 1px 3px rgba(13,8,7,.06),0 1px 2px rgba(13,8,7,.04);
  --sh-md:0 4px 20px rgba(13,8,7,.09);
  --sh-lg:0 16px 48px rgba(13,8,7,.13);
  --sh-xl:0 24px 80px rgba(13,8,7,.18);
}

/* ── GUIDE HERO ── (inset rounded scene, matches landing .hero) */
.guide-hero {
  position: relative;
  margin: 14px 16px 0;
  border-radius: var(--r-panel, 28px);
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 58%, #211A4A 100%);
  padding: 84px 0 76px;
  color: #fff;
  overflow: hidden;
}

/* aurora glow */
.guide-hero::before {
  content: '';
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(38% 48% at 16% 22%, rgba(99,102,241,.58) 0%, transparent 62%),
    radial-gradient(34% 44% at 84% 16%, rgba(139,92,246,.46) 0%, transparent 60%),
    radial-gradient(26% 36% at 78% 90%, rgba(34,211,238,.24) 0%, transparent 58%),
    radial-gradient(22% 30% at 34% 88%, rgba(192,132,252,.24) 0%, transparent 55%);
  filter: blur(52px);
  animation: aurora 18s ease-in-out infinite alternate;
  pointer-events: none;
}

/* glass edge */
.guide-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.guide-hero-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.guide-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.guide-hero-lead {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}

.guide-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.68;
  margin-bottom: 10px;
  max-width: 680px;
}
.guide-hero-desc strong { color: rgba(255,255,255,.9); }

/* Quick wins box */
.guide-hero-wins {
  margin-top: 28px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--r-md);
  padding: 16px 20px;
  max-width: 520px;
}

.guide-hero-wins-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.guide-hero-wins-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-hero-wins-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.guide-hero-wins-check {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero actions */
.guide-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 32px;
}

/* Stats bar */
.guide-hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 18px 0;
}

.guide-hero-stat {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.guide-hero-stat-num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.guide-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.48);
}

.guide-hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── GUIDE LAYOUT ── */
.guide-layout { background: var(--white); }

.guide-layout-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  padding-top: 52px;
  padding-bottom: 96px;
}

/* ── SIDEBAR ── */
.guide-sidebar {
  /* column stretches full height of grid row — gives sticky room to work */
}

.guide-toc {
  position: sticky;
  top: 96px; /* below sticky header (~64px) + 32px gap */
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid var(--border);
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  scroll-behavior: smooth;
  transition: opacity .25s ease, visibility .25s;
}
.guide-toc--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.guide-toc-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 6px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.guide-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.guide-toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: background .12s, color .12s;
  line-height: 1.4;
}

.guide-toc-item:hover {
  background: rgba(18,34,86,.06);
  color: var(--ink);
}

.guide-toc-item.active {
  background: rgba(18,34,86,.1);
  color: var(--indigo);
  font-weight: 600;
}

.guide-toc-num {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  font-size: 0;
  color: transparent;
  flex-shrink: 0;
  margin-left: 7px;
  transition: background .12s;
}

.guide-toc-item:hover .guide-toc-num { background: var(--muted); }

.guide-toc-item.active .guide-toc-num {
  background: var(--indigo);
}

.guide-toc-item--next {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.guide-toc-num--more {
  width: auto;
  height: auto;
  background: none;
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
}

/* ── STEP STRUCTURE ── */
.guide-content { min-width: 0; }

.guide-step {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
  scroll-margin-top: 90px;
}

.guide-step--last {
  border-bottom: none;
  margin-bottom: 48px;
}

.guide-step-header { margin-bottom: 26px; }

.guide-step-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: var(--indigo);
  color: var(--white);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.guide-step-badge--gradient {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.guide-step-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}

.guide-step-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* Direct child p — broad selector is scoped to direct children only to avoid cascade pollution */
.guide-step-body > p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
}

.guide-step-body > p.guide-bold-p   { font-weight: 600; }
.guide-step-body > p.guide-section-label { font-weight: 600; margin: 24px 0 12px; }

/* ── OPTIONS (Step 1) ── */
.guide-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.guide-option {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .15s, transform .15s;
}

.guide-option:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.guide-option-icon { font-size: 26px; flex-shrink: 0; }

.guide-option-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.guide-option-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── TABLE (Step 2) ── */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.guide-table thead tr { background: var(--indigo); }

.guide-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.guide-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  line-height: 1.55;
  vertical-align: top;
}

.guide-table td:first-child {
  width: 160px;
  white-space: nowrap;
  background: rgba(18,34,86,.03);
}

.guide-table tbody tr:last-child td { border-bottom: none; }
.guide-table tbody tr:hover td { background: rgba(18,34,86,.025); }
.guide-table tbody tr:hover td:first-child { background: rgba(18,34,86,.05); }

/* ── CALLOUTS ── */
.guide-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 24px 0;
}

.guide-callout--spaced { margin-top: 24px; }

.guide-callout-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.guide-callout-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.guide-callout p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  color: inherit;
}

.guide-callout-p2 { margin-top: 10px; }

.guide-callout--blue  { background: rgba(37,99,235,.06);  border: 1px solid rgba(37,99,235,.18); color: #1e3a8a; }
.guide-callout--green { background: rgba(22,163,74,.06);  border: 1px solid rgba(22,163,74,.2);  color: #14532d; }
.guide-callout--yellow{ background: rgba(234,179,8,.07);  border: 1px solid rgba(234,179,8,.22); color: #713f12; }
.guide-callout--navy  { background: rgba(18,34,86,.05);   border: 1px solid rgba(18,34,86,.15);  color: var(--indigo); }

/* ── FEATURE LIST ── */
.guide-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.guide-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.guide-feature-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Numbered variant (Step 8) — visually distinct from checkmarks */
.guide-feature-mark--num {
  background: #7c3aed;
  font-size: 13px;
}

.guide-feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.guide-feature-item span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── URL CELEBRATE (Step 4) ── */
.guide-url-celebrate {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--r-lg);
  padding: 24px 26px;
  margin: 24px 0;
}

.guide-url-celebrate-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.guide-url-celebrate-emoji {
  font-size: 32px;
  flex-shrink: 0;
}

.guide-url-celebrate-title {
  font-size: 16px;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 3px;
}

.guide-url-celebrate-sub {
  font-size: 13px;
  color: #166534;
  opacity: .75;
}

.guide-url-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--indigo);
  font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
  word-break: break-all;
  margin-bottom: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 8px;
  padding: 10px 14px;
}

.guide-url-slug {
  color: #7c3aed;
  background: rgba(124,58,237,.1);
  border-radius: 4px;
  padding: 0 4px;
}

.guide-url-hint {
  font-size: 13px;
  color: #166534;
  opacity: .8;
}

.guide-url-hint code {
  background: rgba(255,255,255,.6);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 12px;
}

.guide-where-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.guide-where-list span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* ── FLOW (Step 5) ── */
.guide-flow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 24px 0;
}

.guide-flow-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.guide-flow-icon { font-size: 22px; flex-shrink: 0; }

.guide-flow-arrow {
  text-align: center;
  font-size: 18px;
  color: rgba(18,34,86,.3);
  line-height: 1;
  padding: 2px 0;
}

/* ── DEVICES (Step 6) ── */
.guide-devices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.guide-device-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}

.guide-device-icon { font-size: 24px; flex-shrink: 0; }

.guide-device-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.guide-device-item span { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── STATUSES (Step 6) ── */
.guide-statuses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.guide-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid;
}

.guide-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.guide-status strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.guide-status span   { font-size: 13px; color: var(--muted); line-height: 1.4; }

.guide-status--pending   { background: #fffbeb; border-color: #fde68a; }
.guide-status--pending   .guide-status-dot { background: #f59e0b; }
.guide-status--pending   strong { color: #92400e; }

.guide-status--confirmed { background: #eff6ff; border-color: #bfdbfe; }
.guide-status--confirmed .guide-status-dot { background: #3b82f6; }
.guide-status--confirmed strong { color: #1e40af; }

.guide-status--done      { background: #f0fdf4; border-color: #bbf7d0; }
.guide-status--done      .guide-status-dot { background: #22c55e; }
.guide-status--done      strong { color: #166534; }

.guide-status--cancelled { background: #fff1f2; border-color: #fecdd3; }
.guide-status--cancelled .guide-status-dot { background: #f43f5e; }
.guide-status--cancelled strong { color: #9f1239; }

/* ── NEXT CARDS ── */
.guide-next-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.guide-next-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}

.guide-next-icon { font-size: 32px; margin-bottom: 12px; }

.guide-next-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.guide-next-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── DONE CHECKLIST ── */
.guide-done {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  margin-bottom: 28px;
  text-align: center;
}

.guide-done-badge {
  display: inline-block;
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #86efac;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.guide-done-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}

.guide-done-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.guide-done-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.guide-done-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.guide-done-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FINAL CTA ── */
.guide-final-cta {
  background: linear-gradient(135deg, var(--dark-2) 0%, #1e3a8a 100%);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

.guide-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 15%, rgba(99,102,241,.22) 0%, transparent 60%);
  pointer-events: none;
}

.guide-final-cta-inner {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  text-align: center;
}

.guide-final-cta h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.guide-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  margin-bottom: 28px;
}

/* ── GUIDE LINK ── */
.guide-link {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s;
}

.guide-link:hover { text-decoration-color: rgba(255,255,255,.8); }

.guide-step-body .guide-link,
.guide-step-header .guide-link {
  color: var(--indigo);
  text-decoration-color: rgba(18,34,86,.3);
}

.guide-step-body .guide-link:hover,
.guide-step-header .guide-link:hover { text-decoration-color: var(--indigo); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .guide-layout-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 36px;
  }

  .guide-sidebar { display: none; }

  .guide-options,
  .guide-devices,
  .guide-statuses,
  .guide-next-cards { grid-template-columns: 1fr; }

  .guide-done-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .guide-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .guide-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .guide-hero-stats {
    display: flex;
    width: 100%;
    flex-direction: column;
    border-radius: var(--r-md);
    padding: 0;
  }
  .guide-hero-stat     { padding: 16px 24px; }
  .guide-hero-stat-sep { width: 80%; height: 1px; }
  .guide-hero-wins     { max-width: 100%; }

  .guide-final-cta-inner { padding: 40px 24px; }

  .guide-done { padding: 32px 20px; }
  .guide-done-list { grid-template-columns: 1fr; }
}

/* ── PRACTICAL TIPS SECTION ── */
.guide-step-badge--tips {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.guide-toc-num--tips {
  font-size: 14px;
  background: #fef3c7;
  color: #92400e;
}

.guide-tip-block {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  background: var(--white);
}

.guide-tip-block:last-child { margin-bottom: 0; }

.guide-tip-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.guide-tip-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
}

.guide-tip-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* Script block */
.guide-script {
  background: #f8faff;
  border: 1px dashed #a5b4fc;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 14px 0;
}

.guide-script-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #6366f1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.guide-script-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
}

/* Do/Don't grid */
.guide-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 12px 0;
}

.guide-tip-card {
  border-radius: 12px;
  padding: 16px 18px;
}

.guide-tip-card--do {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.guide-tip-card--dont {
  background: #fff1f2;
  border: 1px solid #fda4af;
}

.guide-tip-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-tip-card--do .guide-tip-card-label { color: #16a34a; }
.guide-tip-card--dont .guide-tip-card-label { color: #e11d48; }

.guide-tip-card ul {
  margin: 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guide-tip-card li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

/* Compare table */
.guide-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 14px 0;
}

.guide-compare-col { display: flex; flex-direction: column; }
.guide-compare-col:first-child { border-right: 1px solid var(--border); }

.guide-compare-header {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.guide-compare-header--bad  { background: #fff1f2; color: #e11d48; }
.guide-compare-header--good { background: #f0fdf4; color: #16a34a; }

.guide-compare-item {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink);
  border-top: 1px solid var(--border);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .guide-tips-grid    { grid-template-columns: 1fr; }
  .guide-compare      { grid-template-columns: 1fr; }
  .guide-compare-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .guide-tip-block    { padding: 20px 16px; }
}

/* ── TAB SWITCHER ── */
.guide-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.guide-tabs {
  display: flex;
  gap: 6px;
  padding: 10px 0;
}

.guide-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
}

.guide-tab:hover {
  color: var(--ink);
}

.guide-tab:focus,
.guide-tab:focus-visible {
  outline: none;
}

.guide-tab:active { color: var(--muted); }

.guide-tab--active,
.guide-tab--active:hover,
.guide-tab--active:active,
.guide-tab--active:focus,
.guide-tab--active:focus-visible {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
}

/* ── TIPS PANE ── */
.guide-tips-pane { padding: 48px 0 64px; }

.guide-tips-pane-inner {
  max-width: 780px;
  margin: 0 auto;
}

.guide-tips-pane .guide-step-header {
  margin-bottom: 28px;
}

.guide-tips-pane .guide-step-badge--tips {
  display: inline-flex;
  margin-bottom: 12px;
}

@media (max-width: 800px) {
  .guide-tabs-wrap { top: 56px; }
  .guide-tab { padding: 8px 16px; font-size: 13px; }
}

/* ── Step screenshots ── */
.guide-step-shot {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  margin: 24px 0;
  display: block;
}
.guide-step-shot--phone {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.guide-shot-caption {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 24px 0 0;
}
.guide-shot-caption + .guide-step-shot { margin-top: 6px; }

/* ── Phone lifestyle photo (Step 4) ── */
.guide-phone-photo {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 24px auto;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(18, 34, 86, .22);
}
.guide-shot-caption + .guide-phone-photo { margin-top: 8px; }

@media (max-width: 640px) {
  .guide-phone-photo { max-width: 280px; border-radius: 18px; }
}

/* ── Link showcase (Step 4): phone left + indigo panel right ── */
.guide-link-showcase {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 24px 0;
}
.guide-link-showcase .guide-phone-photo {
  margin: 0;
  flex-shrink: 0;
  max-width: 260px;
}
.guide-link-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(99, 102, 241, .07);
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: var(--r-lg);
  padding: 26px 28px;
}
.guide-link-panel p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.guide-link-panel .guide-where-list { margin: 16px 0; }
.guide-link-panel .guide-bold-p { font-weight: 600; margin-top: 16px; }

@media (max-width: 720px) {
  .guide-link-showcase {
    flex-direction: column;
    align-items: center;
  }
  .guide-link-showcase .guide-phone-photo { max-width: 280px; }
  .guide-link-panel { width: 100%; }
}

/* ── Link panel tip (Step 4) ── */
.guide-link-tip {
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(99, 102, 241, .2);
}
.guide-link-tip-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 10px;
}
.guide-link-tip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-link-tip li {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.45;
  padding-left: 20px;
  position: relative;
}
.guide-link-tip li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   Demo calendar (.gcal) — faithful to the real admin Appointments UI
   (real STATUS_COLORS, white cells, #e4e4f0 grid, left status border)
   ════════════════════════════════════════════════════════════════ */
.gcal{ position:relative; background:#fff; border:1px solid #e4e4f0; border-radius:14px;
  box-shadow:0 1px 3px rgba(17,24,39,.05), 0 8px 28px rgba(80,70,229,.07); padding:14px; margin:18px 0;
  font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gcal-bar{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.gcal-bar-l{ display:flex; align-items:center; gap:8px; font-size:15px; font-weight:700; color:#111827; }
.gcal-bar-l small{ font-weight:500; font-size:11px; color:#9ca3af; margin-left:2px; }
.gcal-livedot{ width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 3px rgba(34,197,94,.18); }
.gcal-new{ border:none; border-radius:9px; padding:9px 14px; font-family:inherit; font-size:13px; font-weight:600;
  color:#fff; cursor:pointer; background:linear-gradient(135deg,#5046e5 0%,#7c3aed 100%);
  box-shadow:0 2px 8px rgba(80,70,229,.32); transition:filter .15s; }
.gcal-new:hover{ filter:brightness(1.07); }

.gcal-grid{ display:grid; grid-template-columns:42px 1fr 1fr 1fr 1fr; gap:1px; background:#eef0f6;
  border:1px solid #e4e4f0; border-radius:10px; overflow:hidden; }
.gcal-gh{ background:#f4f5fb; }
.gcal-day{ background:#f4f5fb; text-align:center; font-size:11px; font-weight:600; color:#6b7280; padding:8px 2px; }
.gcal-day b{ display:inline; font-size:12px; color:#111827; font-weight:700; }
.gcal-day.today{ color:#5046e5; } .gcal-day.today b{ color:#5046e5; }
.gcal-tm{ background:#fff; font-size:10px; color:#9ca3af; display:flex; align-items:center; justify-content:flex-end; padding:0 6px 0 0; }

.gcal-slot{ background:#fff; min-height:48px; display:flex; align-items:center; justify-content:center;
  color:#d1d5db; font-size:18px; cursor:pointer; transition:background .12s, color .12s; }
.gcal-slot:hover{ background:#f5f3ff; color:#7c3aed; }

.gcal-ev{ position:relative; background:#fff; min-height:48px; padding:6px 8px 6px 9px; cursor:pointer; overflow:hidden;
  display:flex; flex-direction:column; justify-content:center; gap:1px; border-left:3px solid transparent; }
.gcal-ev .ev-sv{ font-size:11px; font-weight:700; line-height:1.15; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gcal-ev .ev-nm{ font-size:10px; opacity:.85; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gcal-ev.pending  { background:#fffbeb; border-left-color:#f59e0b; color:#78350f; }
.gcal-ev.confirmed{ background:#eff6ff; border-left-color:#3b82f6; color:#1e3a8a; }
.gcal-ev.done     { background:#f0fdf4; border-left-color:#22c55e; color:#14532d; }
.gcal-ev.cancelled{ background:#fff1f2; border-left-color:#f43f5e; color:#9f1239; }
.gcal-ev.cancelled .ev-sv{ text-decoration:line-through; }

.gcal-acts{ position:absolute; inset:0; display:none; align-items:center; justify-content:center; gap:8px;
  background:rgba(255,255,255,.82); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px); }
.gcal-ev.open .gcal-acts{ display:flex; }
.gcal-act{ width:28px; height:28px; border-radius:50%; border:none; cursor:pointer; font-size:13px; font-weight:800;
  color:#fff; display:flex; align-items:center; justify-content:center; transition:transform .12s; box-shadow:0 2px 6px rgba(0,0,0,.15); }
.gcal-act:hover{ transform:scale(1.12); }
.gcal-act.ok{ background:#16a34a; } .gcal-act.no{ background:#e11d48; }

.gcal-pop{ position:absolute; z-index:6; width:210px; display:none; flex-direction:column; gap:8px; padding:13px;
  border-radius:14px; background:#fff; border:1px solid #e4e4f0; box-shadow:0 16px 44px rgba(17,24,39,.18); }
.gcal-pop.show{ display:flex; animation:gcpop .18s cubic-bezier(.16,1,.3,1) both; }
.gcal-pop-ttl{ font-size:12.5px; font-weight:700; color:#111827; }
.gcal-pop-ttl span{ color:#5046e5; }
.gcal-in, .gcal-sel{ width:100%; height:36px; border-radius:9px; border:1.5px solid #e4e4f0; background:#fff;
  color:#111827; font-family:inherit; font-size:13px; padding:0 11px; outline:none; }
.gcal-in:focus, .gcal-sel:focus{ border-color:#5046e5; box-shadow:0 0 0 3px rgba(80,70,229,.12); }
.gcal-pop-btns{ display:flex; gap:7px; }
.gcal-add{ flex:1; height:36px; border:none; border-radius:9px; color:#fff; font-family:inherit; font-weight:700; font-size:13px;
  cursor:pointer; background:linear-gradient(135deg,#5046e5 0%,#7c3aed 100%); }
.gcal-add:hover{ filter:brightness(1.07); }
.gcal-x{ height:36px; padding:0 13px; border:1.5px solid #e4e4f0; border-radius:9px; background:#fff; color:#6b7280;
  font-family:inherit; font-size:13px; cursor:pointer; }

.gcal-toast{ position:absolute; left:14px; right:14px; bottom:12px; z-index:5; padding:11px 15px; border-radius:11px;
  background:#16a34a; color:#fff; font-size:12.5px; font-weight:600; box-shadow:0 12px 30px rgba(22,163,74,.3);
  opacity:0; transform:translateY(12px); pointer-events:none; transition:.28s cubic-bezier(.16,1,.3,1); }
.gcal-toast.show{ opacity:1; transform:translateY(0); }
.gcal-toast.bad{ background:#e11d48; box-shadow:0 12px 30px rgba(225,29,72,.3); }

@keyframes gcpop{ from{ opacity:0; transform:scale(.95) translateY(-4px); } to{ opacity:1; transform:none; } }

/* ════════════════════════════════════════════════════════════════
   Demo services (.gsvc) — faithful to the real admin Services screen
   ════════════════════════════════════════════════════════════════ */
.gsvc{ position:relative; margin:18px 0; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gsvc-bar{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.gsvc-ttl{ display:flex; align-items:center; gap:8px; font-size:15px; font-weight:700; color:#111827; }
.gsvc-ttl small{ font-weight:500; font-size:11px; color:#9ca3af; }
.gsvc-livedot{ width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 3px rgba(34,197,94,.18); }
.gsvc-new{ border:none; border-radius:9px; padding:9px 14px; font-family:inherit; font-size:13px; font-weight:600; color:#fff; cursor:pointer;
  background:linear-gradient(135deg,#5046e5 0%,#7c3aed 100%); box-shadow:0 2px 8px rgba(80,70,229,.32); transition:filter .15s; }
.gsvc-new:hover{ filter:brightness(1.07); }

.gsvc-form{ background:#f9fafb; border:1px solid #e4e4f0; border-radius:12px; padding:12px; margin-bottom:12px; display:flex; flex-direction:column; gap:9px; }
.gsvc-form[hidden]{ display:none; }
.gsvc-in, .gsvc-sel{ height:38px; border-radius:9px; border:1.5px solid #e4e4f0; background:#fff; color:#111827; font-family:inherit; font-size:13px; padding:0 11px; outline:none; width:100%; }
.gsvc-in:focus, .gsvc-sel:focus{ border-color:#5046e5; box-shadow:0 0 0 3px rgba(80,70,229,.12); }
.gsvc-form-row{ display:grid; grid-template-columns:1fr 92px 92px; gap:8px; }
.gsvc-form-btns{ display:flex; gap:8px; }
.gsvc-save{ flex:1; height:38px; border:none; border-radius:9px; color:#fff; font-family:inherit; font-weight:700; font-size:13px; cursor:pointer;
  background:linear-gradient(135deg,#5046e5 0%,#7c3aed 100%); }
.gsvc-save:hover{ filter:brightness(1.07); }
.gsvc-cancel{ height:38px; padding:0 16px; border:1.5px solid #e4e4f0; border-radius:9px; background:#fff; color:#6b7280; font-family:inherit; font-size:13px; cursor:pointer; }

.gsvc-list{ display:flex; flex-direction:column; gap:8px; }
.gsvc-row{ display:flex; align-items:center; justify-content:space-between; gap:12px; background:#fff; border:1px solid #e4e4f0; border-radius:12px;
  padding:13px 15px; box-shadow:0 1px 2px rgba(17,24,39,.04); animation:gsvcin .25s cubic-bezier(.16,1,.3,1) both; }
.gsvc-row-l{ min-width:0; }
.gsvc-name{ font-size:14px; font-weight:700; color:#111827; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.gsvc-cat{ font-size:12px; color:#9ca3af; margin-top:1px; }
.gsvc-row-r{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.gsvc-meta{ font-size:13px; color:#6b7280; white-space:nowrap; }
.gsvc-meta b{ color:#111827; font-weight:700; }
.gsvc-edit, .gsvc-del{ height:32px; padding:0 13px; border-radius:8px; font-family:inherit; font-size:12.5px; font-weight:600; cursor:pointer; background:#fff; transition:border-color .12s, color .12s, background .12s; }
.gsvc-edit{ border:1.5px solid #e4e4f0; color:#374151; }
.gsvc-edit:hover{ border-color:#5046e5; color:#5046e5; }
.gsvc-del{ border:1.5px solid #fecaca; color:#dc2626; }
.gsvc-del:hover{ background:#fef2f2; }

.gsvc-toast{ position:absolute; left:0; bottom:0; z-index:5; padding:11px 15px; border-radius:11px; background:#16a34a; color:#fff;
  font-size:12.5px; font-weight:600; box-shadow:0 12px 30px rgba(22,163,74,.3); opacity:0; transform:translateY(calc(100% + 16px));
  pointer-events:none; transition:.28s cubic-bezier(.16,1,.3,1); }
.gsvc-toast.show{ opacity:1; transform:translateY(calc(100% + 8px)); }
.gsvc-toast.bad{ background:#e11d48; box-shadow:0 12px 30px rgba(225,29,72,.3); }

@keyframes gsvcin{ from{ opacity:0; transform:translateY(-6px); } to{ opacity:1; transform:none; } }

@media (max-width:560px){
  .gsvc-form-row{ grid-template-columns:1fr 1fr; }
  .gsvc-row{ flex-direction:column; align-items:flex-start; gap:8px; }
  .gsvc-row-r{ width:100%; }
  .gsvc-row-r .gsvc-meta{ margin-right:auto; }
}

/* ════════════════════════════════════════════════════════════════
   Demo automation (.gauto) — new booking -> confirm -> Telegram reminder
   ════════════════════════════════════════════════════════════════ */
.gauto{ position:relative; margin:18px 0; max-width:440px; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gauto-card{ background:#fff; border:1px solid #e4e4f0; border-radius:14px; padding:15px 16px;
  box-shadow:0 1px 3px rgba(17,24,39,.05), 0 8px 28px rgba(80,70,229,.07); transition:opacity .2s; }
.gauto-card.off{ opacity:.55; }
.gauto-head{ display:flex; align-items:center; gap:8px; font-size:14px; font-weight:700; color:#111827; margin-bottom:9px; }
.gauto-bell{ font-size:15px; }
.gauto-badge{ margin-left:auto; font-size:11px; font-weight:700; padding:3px 10px; border-radius:999px; }
.gauto-badge.pending{ background:#fffbeb; color:#b45309; border:1px solid #fde68a; }
.gauto-badge.confirmed{ background:#f0fdf4; color:#15803d; border:1px solid #bbf7d0; }
.gauto-badge.cancelled{ background:#fff1f2; color:#be123c; border:1px solid #fecdd3; }
.gauto-name{ font-size:14.5px; font-weight:700; color:#111827; }
.gauto-name span{ font-weight:500; color:#4b5563; }
.gauto-meta{ font-size:12.5px; color:#6b7280; margin-top:3px; }
.gauto-meta b{ color:#111827; }
.gauto-src{ font-size:11px; font-weight:600; color:#5046e5; background:#ede9fe; padding:1px 8px; border-radius:999px; }
.gauto-acts{ display:flex; gap:9px; margin-top:13px; }
.gauto-acts[hidden]{ display:none; }
.gauto-ok{ flex:1; height:38px; border:none; border-radius:9px; background:#16a34a; color:#fff; font-family:inherit; font-weight:700; font-size:13px; cursor:pointer; }
.gauto-ok:hover{ filter:brightness(1.06); }
.gauto-no{ height:38px; padding:0 16px; border:1.5px solid #fecaca; border-radius:9px; background:#fff; color:#dc2626; font-family:inherit; font-weight:600; font-size:13px; cursor:pointer; }
.gauto-no:hover{ background:#fef2f2; }

.gauto-tg{ margin-top:14px; animation:gauin .35s cubic-bezier(.16,1,.3,1) both; }
.gauto-tg[hidden]{ display:none; }
.gauto-tg-bubble{ background:#fff; border:1px solid #e4e4f0; border-radius:14px; border-top-left-radius:4px; padding:12px 14px; box-shadow:0 6px 20px rgba(37,99,235,.08); }
.gauto-tg-top{ display:flex; align-items:center; gap:8px; margin-bottom:7px; }
.gauto-tg-av{ width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,#5046e5,#7c3aed); color:#fff; font-weight:800; font-size:13px; display:flex; align-items:center; justify-content:center; }
.gauto-tg-top b{ font-size:13px; color:#111827; }
.gauto-tg-t{ margin-left:auto; font-size:11px; color:#9ca3af; }
.gauto-tg-text{ font-size:13px; line-height:1.55; color:#1f2937; }
.gauto-tg-text b{ color:#111827; }
.gauto-tg-cap{ font-size:11.5px; color:#9ca3af; margin-top:8px; padding-left:2px; }

.gauto-reset{ margin-top:12px; border:1.5px solid #e4e4f0; border-radius:9px; background:#fff; color:#6b7280; font-family:inherit; font-size:12.5px; font-weight:600; padding:8px 14px; cursor:pointer; }
.gauto-reset[hidden]{ display:none; }
.gauto-reset:hover{ border-color:#5046e5; color:#5046e5; }

.gauto-toast{ position:absolute; left:0; bottom:0; z-index:5; padding:11px 15px; border-radius:11px; background:#16a34a; color:#fff;
  font-size:12.5px; font-weight:600; box-shadow:0 12px 30px rgba(22,163,74,.3); opacity:0; transform:translateY(calc(100% + 16px));
  pointer-events:none; transition:.28s cubic-bezier(.16,1,.3,1); }
.gauto-toast.show{ opacity:1; transform:translateY(calc(100% + 8px)); }
.gauto-toast.bad{ background:#e11d48; box-shadow:0 12px 30px rgba(225,29,72,.3); }
@keyframes gauin{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }

/* ════════════════════════════════════════════════════════════════
   Step demos: registration / profile / link / gcal / telegram / clients / dashboard
   ════════════════════════════════════════════════════════════════ */
@keyframes gpulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(22,163,74,.32);} 50%{ box-shadow:0 0 0 5px rgba(22,163,74,0);} }

/* — Step 1: registration — */
.greg{ max-width:380px; margin:18px auto; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.greg-card,.greg-done{ background:#fff; border:1px solid #e4e4f0; border-radius:16px; padding:24px 22px;
  box-shadow:0 1px 3px rgba(17,24,39,.05),0 14px 40px rgba(80,70,229,.08); text-align:center; }
.greg-logo{ display:flex; align-items:center; justify-content:center; gap:8px; font-weight:800; font-size:16px; color:#111827; margin-bottom:14px; }
.greg-logo img{ border-radius:6px; }
.greg-h{ font-size:15px; font-weight:700; color:#111827; margin-bottom:16px; }
.greg-google{ width:100%; height:44px; display:flex; align-items:center; justify-content:center; gap:10px; border:1.5px solid #e4e4f0;
  border-radius:11px; background:#fff; color:#1f2937; font-family:inherit; font-weight:600; font-size:14px; cursor:pointer; transition:.15s; }
.greg-google:hover{ background:#f9fafb; border-color:#d1d5db; box-shadow:0 2px 8px rgba(17,24,39,.06); }
.greg-or{ display:flex; align-items:center; gap:10px; margin:16px 0; color:#9ca3af; font-size:12px; }
.greg-or::before,.greg-or::after{ content:""; flex:1; height:1px; background:#ececf3; }
.greg-form{ display:flex; flex-direction:column; gap:10px; }
.greg-in{ height:44px; border:1.5px solid #e4e4f0; border-radius:11px; padding:0 14px; font-family:inherit; font-size:14px; color:#111827; background:#fff; }
.greg-in:focus{ outline:none; border-color:#5046e5; box-shadow:0 0 0 3px rgba(80,70,229,.12); }
.greg-submit{ height:44px; border:none; border-radius:11px; background:linear-gradient(135deg,#5046e5,#7c3aed); color:#fff;
  font-family:inherit; font-weight:700; font-size:14px; cursor:pointer; box-shadow:0 6px 18px rgba(80,70,229,.28); transition:.15s; }
.greg-submit:hover{ filter:brightness(1.05); transform:translateY(-1px); }
.greg-done{ animation:gauin .4s; }
.greg-done-ic{ width:52px; height:52px; margin:0 auto 14px; border-radius:50%; background:#f0fdf4; color:#16a34a; font-size:26px; font-weight:800;
  display:flex; align-items:center; justify-content:center; border:2px solid #bbf7d0; }
.greg-done-t{ font-size:18px; font-weight:800; color:#111827; }
.greg-done-s{ font-size:14px; color:#6b7280; margin-top:6px; }
.greg-reset{ margin-top:18px; border:1.5px solid #e4e4f0; border-radius:9px; background:#fff; color:#6b7280; font-family:inherit; font-size:12.5px; font-weight:600; padding:8px 16px; cursor:pointer; }
.greg-reset:hover{ border-color:#5046e5; color:#5046e5; }

/* — Step 2: profile editor + live preview — */
.gprof{ display:grid; grid-template-columns:1fr 0.85fr; gap:16px; margin:18px 0; align-items:start; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gprof-form{ background:#fff; border:1px solid #e4e4f0; border-radius:14px; padding:16px 16px 18px; box-shadow:0 1px 3px rgba(17,24,39,.05); }
.gprof-livedot-row{ display:flex; align-items:center; gap:7px; font-size:12px; font-weight:600; color:#6b7280; margin-bottom:14px; }
.gprof-livedot{ width:8px; height:8px; border-radius:50%; background:#16a34a; animation:gpulse 1.8s infinite; }
.gprof-l{ display:block; font-size:11px; font-weight:700; color:#6b7280; text-transform:uppercase; letter-spacing:.03em; margin:12px 0 5px; }
.gprof-l:first-of-type{ margin-top:0; }
.gprof-in,.gprof-sel{ width:100%; height:40px; border:1.5px solid #e4e4f0; border-radius:10px; padding:0 12px; font-family:inherit; font-size:13.5px; color:#111827; background:#fff; }
.gprof-in:focus,.gprof-sel:focus{ outline:none; border-color:#5046e5; box-shadow:0 0 0 3px rgba(80,70,229,.12); }
.gprof-prev{ position:sticky; top:14px; }
.gprof-prev-cap{ font-size:11px; font-weight:700; color:#9ca3af; text-transform:uppercase; letter-spacing:.04em; margin-bottom:8px; text-align:center; }
.gprof-card{ background:#fff; border:1px solid #e4e4f0; border-radius:16px; padding:22px 18px; text-align:center; box-shadow:0 10px 34px rgba(80,70,229,.1); }
.gprof-card-ava{ width:60px; height:60px; margin:0 auto 12px; border-radius:18px; background:linear-gradient(135deg,#5046e5,#7c3aed); color:#fff;
  font-size:26px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.gprof-card-name{ font-size:18px; font-weight:800; color:#111827; }
.gprof-card-type{ display:inline-block; margin-top:6px; font-size:12px; font-weight:600; color:#5046e5; background:#ede9fe; padding:2px 10px; border-radius:999px; }
.gprof-card-city{ font-size:12.5px; color:#6b7280; margin-top:8px; }
.gprof-card-desc{ font-size:13px; color:#4b5563; margin-top:8px; line-height:1.5; min-height:18px; }
.gprof-card-btn{ width:100%; height:42px; margin-top:16px; border:none; border-radius:11px; background:linear-gradient(135deg,#5046e5,#7c3aed); color:#fff;
  font-family:inherit; font-weight:700; font-size:13.5px; cursor:default; box-shadow:0 6px 18px rgba(80,70,229,.26); }

/* — Step 4: copy link — */
.glink{ position:relative; margin:18px 0; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.glink-cap{ font-size:12.5px; font-weight:700; color:#6b7280; margin-bottom:8px; }
.glink-bar{ display:flex; align-items:center; gap:10px; background:#fff; border:1.5px solid #e4e4f0; border-radius:13px; padding:8px 8px 8px 14px; box-shadow:0 1px 3px rgba(17,24,39,.05); }
.glink-ic{ font-size:16px; }
.glink-url{ flex:1; font-size:14.5px; font-weight:700; color:#111827; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.glink-copy{ flex-shrink:0; height:38px; padding:0 18px; border:none; border-radius:10px; background:linear-gradient(135deg,#5046e5,#7c3aed); color:#fff;
  font-family:inherit; font-weight:700; font-size:13px; cursor:pointer; transition:.15s; box-shadow:0 4px 14px rgba(80,70,229,.26); }
.glink-copy:hover{ filter:brightness(1.05); }
.glink-copy.is-ok{ background:#16a34a; box-shadow:0 4px 14px rgba(22,163,74,.28); }
.glink-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.glink-chips span{ font-size:12px; font-weight:600; color:#4b5563; background:#fff; border:1px solid #e4e4f0; padding:5px 11px; border-radius:999px; }
.glink-toast{ position:absolute; right:0; top:-6px; transform:translateY(-100%); background:#16a34a; color:#fff; font-size:12.5px; font-weight:600;
  padding:8px 14px; border-radius:10px; box-shadow:0 10px 26px rgba(22,163,74,.3); opacity:0; pointer-events:none; transition:.25s; }
.glink-toast.show{ opacity:1; }

/* — Step 7: Google Calendar toggle — */
.ggc{ margin:18px 0; max-width:460px; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.ggc-row{ display:flex; align-items:center; gap:13px; background:#fff; border:1px solid #e4e4f0; border-radius:14px; padding:15px 16px; box-shadow:0 1px 3px rgba(17,24,39,.05); }
.ggc-ic{ width:42px; height:42px; border-radius:11px; background:#f4f5fb; display:flex; align-items:center; justify-content:center; font-size:20px; }
.ggc-info{ flex:1; display:flex; flex-direction:column; }
.ggc-info b{ font-size:14.5px; color:#111827; }
.ggc-info span{ font-size:12.5px; color:#6b7280; margin-top:2px; }
.ggc-toggle{ flex-shrink:0; width:50px; height:28px; border-radius:999px; border:none; background:#d1d5db; position:relative; cursor:pointer; transition:.22s; }
.ggc-toggle.on{ background:#16a34a; }
.ggc-knob{ position:absolute; top:3px; left:3px; width:22px; height:22px; border-radius:50%; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.25); transition:.22s; }
.ggc-toggle.on .ggc-knob{ transform:translateX(22px); }
.ggc-sync{ margin-top:12px; animation:gauin .35s; }
.ggc-sync-row{ display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color:#15803d; margin-bottom:6px; }
.ggc-dot{ width:8px; height:8px; border-radius:50%; background:#16a34a; animation:gpulse 1.8s infinite; }
.ggc-ev{ display:flex; align-items:center; gap:11px; background:#fff; border:1px solid #e4e4f0; border-radius:11px; padding:11px 13px; margin-top:8px; }
.ggc-ev-bar{ width:4px; align-self:stretch; border-radius:4px; background:#5046e5; }
.ggc-ev--personal .ggc-ev-bar{ background:#9ca3af; }
.ggc-ev-body{ flex:1; display:flex; flex-direction:column; }
.ggc-ev-body b{ font-size:13.5px; color:#111827; }
.ggc-ev-body span{ font-size:12px; color:#6b7280; margin-top:2px; }
.ggc-ev-tag{ font-size:10.5px; font-weight:700; color:#5046e5; background:#ede9fe; padding:3px 8px; border-radius:999px; white-space:nowrap; }

/* — Step 8: Telegram reminder preview — */
.gtg{ margin:18px 0; max-width:420px; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gtg-tabs{ display:inline-flex; gap:4px; background:#eef0f7; border-radius:11px; padding:4px; margin-bottom:14px; }
.gtg-tab{ border:none; background:transparent; font-family:inherit; font-size:13px; font-weight:600; color:#6b7280; padding:8px 16px; border-radius:8px; cursor:pointer; transition:.15s; }
.gtg-tab.is-on{ background:#fff; color:#111827; box-shadow:0 1px 4px rgba(17,24,39,.1); }
.gtg-phone{ background:linear-gradient(160deg,#cfe3f5,#e9f0f7); border-radius:18px; padding:18px 16px; }
.gtg-bubble{ background:#fff; border-radius:14px; border-top-left-radius:5px; padding:13px 15px; box-shadow:0 4px 16px rgba(37,99,235,.1); max-width:330px; }
.gtg-top{ display:flex; align-items:center; gap:8px; margin-bottom:9px; }
.gtg-av{ width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,#5046e5,#7c3aed); color:#fff; font-weight:800; font-size:13px; display:flex; align-items:center; justify-content:center; }
.gtg-top b{ font-size:13.5px; color:#0088cc; }
.gtg-time{ margin-left:auto; font-size:11px; color:#9ca3af; }
.gtg-text{ font-size:13.5px; line-height:1.6; color:#1f2937; }
.gtg-text b{ color:#111827; }

/* — Step 9: clients table + search — */
.gcli{ margin:18px 0; background:#fff; border:1px solid #e4e4f0; border-radius:14px; overflow:hidden;
  box-shadow:0 1px 3px rgba(17,24,39,.05),0 10px 30px rgba(80,70,229,.06); font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gcli-bar{ display:flex; align-items:center; gap:12px; padding:13px 15px; border-bottom:1px solid #f0f0f6; }
.gcli-search{ flex:1; height:38px; border:1.5px solid #e4e4f0; border-radius:10px; padding:0 13px; font-family:inherit; font-size:13.5px; color:#111827; }
.gcli-search:focus{ outline:none; border-color:#5046e5; box-shadow:0 0 0 3px rgba(80,70,229,.12); }
.gcli-count{ font-size:12.5px; font-weight:600; color:#6b7280; white-space:nowrap; }
.gcli-tblwrap{ overflow-x:auto; }
.gcli-tbl{ width:100%; border-collapse:collapse; font-size:13.5px; }
.gcli-tbl th{ text-align:left; font-size:11px; font-weight:700; color:#9ca3af; text-transform:uppercase; letter-spacing:.03em; padding:11px 15px; background:#fafafe; }
.gcli-tbl th.gcli-c{ text-align:center; }
.gcli-tbl th.gcli-r{ text-align:right; }
.gcli-tbl td{ padding:10px 15px; border-top:1px solid #f0f0f6; color:#1f2937; vertical-align:middle; }
.gcli-tbl tbody tr:hover{ background:#faf9ff; }
.gcli-tbl td:first-child{ display:flex; align-items:center; gap:10px; font-weight:600; color:#111827; }
.gcli-ava{ width:30px; height:30px; border-radius:50%; color:#fff; font-size:13px; font-weight:700; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.gcli-tbl td.gcli-c{ text-align:center; }
.gcli-tbl td.gcli-r{ text-align:right; font-weight:700; color:#111827; }
.gcli-empty{ padding:26px; text-align:center; color:#9ca3af; font-size:13.5px; }

/* — Step 10: mini dashboard — */
.gdash{ margin:18px 0; font-family:'Manrope',ui-sans-serif,system-ui,sans-serif; }
.gdash-cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.gdash-card{ background:#fff; border:1px solid #e4e4f0; border-radius:14px; padding:15px 14px; box-shadow:0 1px 3px rgba(17,24,39,.05); }
.gdash-ic{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:10px; }
.gdash-ic--v{ background:#ede9fe; } .gdash-ic--g{ background:#dcfce7; } .gdash-ic--y{ background:#fef3c7; } .gdash-ic--b{ background:#dbeafe; }
.gdash-num{ font-size:24px; font-weight:800; color:#111827; letter-spacing:-.02em; }
.gdash-lbl{ font-size:12px; color:#6b7280; margin-top:3px; }
.gdash-chart{ background:#fff; border:1px solid #e4e4f0; border-radius:14px; padding:16px 18px; margin-top:12px; box-shadow:0 1px 3px rgba(17,24,39,.05); }
.gdash-chart-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.gdash-chart-ttl{ font-size:13.5px; font-weight:700; color:#111827; }
.gdash-chart-trend{ font-size:12.5px; font-weight:700; color:#16a34a; background:#f0fdf4; padding:3px 9px; border-radius:999px; }
.gdash-bars{ display:flex; align-items:flex-end; gap:14px; height:120px; }
.gdash-bar{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; gap:8px; }
.gdash-bar i{ display:block; width:100%; max-width:46px; height:0; border-radius:8px 8px 0 0; background:linear-gradient(180deg,#a5b4fc,#6366f1); transition:height .9s cubic-bezier(.16,1,.3,1); }
.gdash-bar--now i{ background:linear-gradient(180deg,#7c3aed,#5046e5); }
.gdash-bar span{ font-size:11.5px; font-weight:600; color:#9ca3af; }

@media (max-width:640px){
  .gprof{ grid-template-columns:1fr; }
  .gprof-prev{ position:static; }
  .gdash-cards{ grid-template-columns:repeat(2,1fr); }
}

/* ════════════════════════════════════════════════════════════════
   Redesign shell harmonization — Unbounded display type + glass capsule header
   (keeps styles.css tokens; mirrors the landing.css premium feel)
   ════════════════════════════════════════════════════════════════ */
.guide-hero-title,
.guide-hero-stat-num,
.guide-step-title,
.guide-done-title {
  font-family: 'Unbounded', 'Manrope', ui-sans-serif, sans-serif;
  letter-spacing: -0.02em;
}
.guide-hero-title { font-weight: 600; line-height: 1.12; }
.guide-step-title { font-weight: 600; }
.guide-hero-stat-num { font-weight: 600; }
.guide-done-title { font-weight: 600; }


/* ── Merged sub-step (e.g. Google Calendar inside the Calendar step) ── */
.guide-substep {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.guide-substep-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #5046e5;
  background: #ede9fe;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.guide-substep-title {
  font-family: 'Unbounded', 'Manrope', ui-sans-serif, sans-serif;
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 8px;
}
.guide-substep-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── Native <select> dropdown polish (demo widgets) ── */
.gprof-sel, .gsvc-sel, .gcal-sel { color-scheme: light; accent-color: #5046e5; }
.gprof-sel option, .gsvc-sel option, .gcal-sel option { background-color: #fff; color: #1f2937; font-weight: 500; }
.gprof-sel option:checked, .gsvc-sel option:checked, .gcal-sel option:checked { background-color: #ede9fe; color: #5046e5; }
.gprof-sel option:hover, .gsvc-sel option:hover, .gcal-sel option:hover { background-color: #ede9fe; color: #5046e5; }

/* Guide footer sits in the landing's dark finale-footer wrapper (no CTA above) */
.finale-footer { padding-top: 28px; }
