/* ─── ONBOARD FORM ─── */
.form-section {
  min-height: calc(100vh - 65px);
  background: var(--bg);
  padding: 3rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.form-container {
  width: 100%;
  max-width: 680px;
}

.form-header { margin-bottom: 2.5rem; }
.form-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-light);
  font-weight: 500;
}
.form-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.95rem;
  color: var(--fg-light);
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.onboard-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.label-hint {
  font-weight: 400;
  color: var(--fg-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--surface);
  color: var(--fg);
  transition: border-color 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(26,61,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }

.form-divider {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-light);
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.form-actions { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--fg-light);
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-mid); }

/* ─── SUCCESS ─── */
.success-container {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}
.success-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.success-body {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.success-footnote {
  font-size: 0.75rem;
  color: var(--fg-light);
  margin-top: 1rem;
}

/* ─── DEMO SITE SHARED ─── */
.demo-nav {
  padding: 1rem 2rem;
  background: var(--bg-dark);
  color: var(--bg);
  border-bottom: none;
}
.demo-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg);
  letter-spacing: -0.02em;
}
.demo-logo span { color: var(--accent); }
.demo-nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.demo-nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.demo-nav-links a:hover { color: var(--bg); background: rgba(255,255,255,0.08); }
.demo-nav-links a.active { color: var(--accent); }
.demo-nav-cta {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  font-weight: 600;
}
.demo-nav-cta:hover { background: var(--accent-dark) !important; }

/* ─── DEMO HERO ─── */
.demo-hero {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.demo-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.demo-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.demo-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin-bottom: 1rem;
}
.demo-hero h1 em { font-style: italic; color: var(--accent); }
.demo-hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.7);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.demo-hero-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.demo-hero-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.6);
  font-size: 0.875rem;
}
.demo-hero-phone strong { color: var(--accent); }

/* ─── DEMO BUTTONS ─── */
.demo-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.demo-btn-primary:hover { background: var(--accent-dark); }
.demo-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(245,240,232,0.75);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(245,240,232,0.2);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.demo-btn-outline:hover { border-color: rgba(245,240,232,0.5); color: var(--bg); }

/* ─── DEMO STATS BAR ─── */
.demo-stats {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem 2rem;
}
.demo-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.demo-stat { text-align: center; }
.demo-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.demo-stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.55); margin-top: 0.15rem; }
.demo-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ─── DEMO SERVICES PREVIEW ─── */
.demo-services-preview {
  padding: 4rem 2rem;
  background: var(--bg);
}
.demo-section-inner { max-width: 1100px; margin: 0 auto; }
.demo-section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.demo-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.demo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.demo-service-card {
  background: var(--surface);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.demo-service-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1.1rem;
}
.demo-service-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}
.demo-service-desc { font-size: 0.8rem; color: var(--fg-light); line-height: 1.5; }
.demo-service-price { font-size: 0.75rem; color: var(--green-mid); font-weight: 600; margin-top: auto; }

/* ─── DEMO TESTIMONIAL ─── */
.demo-testimonial {
  background: var(--bg-dark);
  padding: 4rem 2rem;
  color: var(--bg);
}
.demo-testimonial blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(245,240,232,0.9);
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.demo-testimonial cite {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ─── DEMO CTA ─── */
.demo-cta {
  padding: 4rem 2rem;
  background: var(--surface);
  text-align: center;
}
.demo-cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.demo-cta-sub {
  font-size: 0.95rem;
  color: var(--fg-light);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.demo-cta-urgency {
  font-size: 0.75rem;
  color: var(--fg-light);
  margin-top: 0.75rem;
}

/* ─── DEMO FOOTER ─── */
.demo-footer {
  background: var(--fg);
  color: rgba(245,240,232,0.45);
  padding: 2rem;
}
.demo-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.demo-footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
}
.demo-footer-info { font-size: 0.75rem; }

/* ─── DEMO SERVICES PAGE ─── */
.demo-services-page {
  background: var(--bg);
  min-height: 100vh;
}
.demo-services-grid-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.demo-service-row {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.demo-service-row h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.demo-service-row p { font-size: 0.875rem; color: var(--fg-light); line-height: 1.6; }
.demo-service-row-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.demo-service-row-price { font-size: 0.875rem; font-weight: 700; color: var(--green-mid); }
.demo-service-row-time { font-size: 0.75rem; color: var(--fg-light); }
.demo-service-row-badge {
  font-size: 0.7rem;
  background: var(--bg-dark);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-weight: 600;
}

/* ─── DEMO CONTACT PAGE ─── */
.demo-contact-page { background: var(--bg); min-height: 100vh; }
.demo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.demo-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.demo-info-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}
.demo-info-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.demo-info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.demo-info-row .info-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.demo-form-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.demo-form-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.demo-form-group { margin-bottom: 1rem; }
.demo-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.demo-form-group input,
.demo-form-group textarea,
.demo-form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s;
}
.demo-form-group input:focus,
.demo-form-group textarea:focus,
.demo-form-group select:focus {
  outline: none;
  border-color: var(--bg-dark);
  background: var(--surface);
}
.demo-form-group textarea { resize: vertical; min-height: 80px; }
.demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.demo-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.demo-submit-btn:hover { background: var(--green-mid); }

/* ─── DEMO SALES BANNER ─── */
.demo-sales-banner {
  background: var(--bg-dark);
  color: rgba(245,240,232,0.85);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.01em;
}
.demo-sales-banner-link {
  color: var(--accent);
  font-weight: 600;
  margin-left: 0.5rem;
  text-decoration: none;
}
.demo-sales-banner-link:hover { text-decoration: underline; }

/* ─── AI CHATBOT WIDGET ─── */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.chatbot-trigger {
  width: 56px;
  height: 56px;
  background: var(--bg-dark);
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s;
  position: relative;
}
.chatbot-trigger:hover { transform: scale(1.05); }
.chatbot-unread {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  background: var(--surface);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  display: none;
  overflow: hidden;
  flex-direction: column;
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.chatbot-header-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.chatbot-header-sub { font-size: 0.7rem; color: rgba(245,240,232,0.6); }
.chatbot-close {
  background: none;
  border: none;
  color: rgba(245,240,232,0.6);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  line-height: 1;
}
.chatbot-body {
  padding: 1rem;
  max-height: 240px;
  overflow-y: auto;
  flex: 1;
  overflow: hidden auto;
}
.chatbot-msg {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.55;
  clear: both;
  overflow: hidden;
}
.chatbot-msg.bot > span,
.chatbot-msg.bot {
  display: block;
  background: var(--bg);
  color: var(--fg);
  border-radius: 10px 10px 10px 2px;
  padding: 0.5rem 0.75rem;
  max-width: 88%;
  float: left;
}
.chatbot-msg.user > span,
.chatbot-msg.user {
  display: block;
  background: var(--bg-dark);
  color: var(--bg);
  border-radius: 10px 10px 2px 10px;
  padding: 0.5rem 0.75rem;
  max-width: 88%;
  float: right;
}
/* Typing indicator */
.chatbot-typing { background: var(--bg) !important; padding: 0.55rem 0.85rem !important; float: left; border-radius: 10px 10px 10px 2px; }
.chatbot-typing span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg-light);
  margin: 0 1.5px;
  animation: typing-bounce 1s infinite ease-in-out;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-5px); opacity: 1; }
}
/* Suggested prompts */
.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chatbot-suggestion {
  font-size: 0.7rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color 0.15s, background 0.15s;
}
.chatbot-suggestion:hover { border-color: var(--accent); background: rgba(212,168,83,0.1); }
/* Booking inside chat */
.chatbot-booking {
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  flex-shrink: 0;
}
.chatbot-booking-title { font-size: 0.8rem; font-weight: 700; color: var(--bg); margin-bottom: 0.5rem; }
.chatbot-booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.chatbot-booking-note { font-size: 0.65rem; color: rgba(245,240,232,0.5); }
/* Input row */
.chatbot-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  align-items: center;
}
.chatbot-input-row input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}
.chatbot-input-row input:focus { border-color: var(--bg-dark); }
.chatbot-input-row button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-dark);
  border: none;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.chatbot-input-row button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── BOOKING WIDGET ─── */
.booking-widget {
  background: var(--bg-dark);
  color: var(--bg);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}
.booking-widget h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--bg);
}
.booking-widget p { font-size: 0.85rem; color: rgba(245,240,232,0.65); margin-bottom: 1.5rem; }
.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.booking-slot {
  padding: 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.booking-slot:hover { border-color: var(--accent); background: rgba(212,168,83,0.1); }
.booking-slot .slot-date { font-weight: 700; color: var(--bg); display: block; }
.booking-slot .slot-time { color: rgba(245,240,232,0.5); font-size: 0.65rem; display: block; }
.booking-note { font-size: 0.7rem; color: rgba(245,240,232,0.4); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .form-group-row { grid-template-columns: 1fr; }
  .demo-services-grid { grid-template-columns: 1fr; }
  .demo-services-grid-page { grid-template-columns: 1fr; }
  .demo-contact-grid { grid-template-columns: 1fr; }
  .booking-slots { grid-template-columns: repeat(3, 1fr); }
  .demo-form-row { grid-template-columns: 1fr; }
  .chatbot-panel { width: calc(100vw - 48px); right: -20px; }
}