/* ─── Variables ─── */
:root {
  --orange: #E86208;
  --orange-light: #F57C2A;
  --dark: #161210;
  --mid: #2C2420;
  --cream: #FAF7F2;
  --warm-gray: #C8BFB5;
  --text: #1E1A17;
  --text-muted: #7A6E66;
  --border: rgba(30,26,23,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Lora', serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

/* ─── Custom cursor ─── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s;
  opacity: 0.5;
}
body.cursor-hover .cursor { width: 18px; height: 18px; }
body.cursor-hover .cursor-ring { width: 54px; height: 54px; opacity: 0.3; }

/* ─── Grain overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span:first-child { color: var(--dark); }
.logo span:last-child  { color: var(--orange); }
.logo-img { height: 32px; width: auto; display: block; }
.footer-logo-img { height: 28px; width: auto; display: block; }

/* Nav text links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--orange); }

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 52;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--dark);
  border: none;
  padding: 11px 24px;
  cursor: none;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); }

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

.lang-switch {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.lang-link:hover { color: var(--orange); }
.lang-link.active { color: var(--dark); font-weight: 700; }

.lang-divider {
  color: var(--warm-gray);
  user-select: none;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  padding: 140px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Diagonal accent stripe */
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 60px;
  width: 420px;
  height: 420px;
  background: var(--orange);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 600;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--orange);
  border: none;
  padding: 16px 36px;
  cursor: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--orange); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card {
  background: var(--dark);
  color: var(--cream);
  padding: 52px 48px;
  position: relative;
  max-width: 380px;
  width: 100%;
  animation: floatCard 5s ease-in-out infinite;
}

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

.hero-card::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 1.5px solid var(--orange);
  opacity: 0.4;
  pointer-events: none;
}

.hero-card-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}
.price-row:last-child { border-bottom: none; }

.price-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,247,242,0.6);
  flex: 1;
}

.price-value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  text-align: right;
}

.price-note {
  font-size: 11px;
  color: rgba(250,247,242,0.35);
  font-family: var(--font-display);
  display: block;
  margin-top: 2px;
  text-align: right;
}

/* ─── Services ─── */
.services {
  padding: 120px 5vw;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--dark);
}

.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: none;
  border: 1px solid var(--border);
  margin-top: -1px;
  margin-left: -1px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  transition: width 0.35s ease;
}

.service-card:hover { background: #F5F0EA; }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 20px;
  flex-shrink: 0;
}

.service-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Pricing ─── */
.pricing {
  padding: 120px 5vw;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: var(--orange);
  opacity: 0.04;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.pricing .section-eyebrow { color: var(--orange); }
.pricing .section-title { color: var(--cream); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.pricing-card {
  border: 1px solid rgba(250,247,242,0.08);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  cursor: none;
}

.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--orange);
  background: rgba(232,98,8,0.05);
}

.pricing-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--orange);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 28px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.2vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 24px 0 8px;
}

.pricing-unit {
  font-size: 13px;
  color: rgba(250,247,242,0.35);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.pricing-note {
  font-size: 13px;
  color: rgba(250,247,242,0.45);
  font-family: var(--font-body);
  font-style: italic;
  line-height: 1.6;
}

/* ─── Contact / CTA ─── */
.contact {
  padding: 140px 5vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.contact-text .section-title { margin-bottom: 28px; }

.contact-text p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-highlight {
  font-style: italic;
  color: var(--orange);
}

.contact-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  background: var(--dark);
  color: var(--cream);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.2s;
  cursor: none;
}
.contact-block:hover { transform: translateX(8px); }

.contact-block:first-child { margin-left: 0; }
.contact-block:last-child  { margin-left: 40px; }

.contact-block-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 6px;
}

.contact-block-value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
}

.contact-area {
  padding: 20px 0 0;
}
.contact-area-pin {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-area-detail {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.6;
}

/* ─── Footer ─── */
footer {
  background: var(--dark);
  padding: 48px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo span:first-child { color: rgba(250,247,242,0.8); }
.footer-logo span:last-child  { color: var(--orange); }

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-area {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.3);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-privacy {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-privacy:hover { color: var(--orange); }

.footer-copy {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.25);
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */

/* Tablet landscape and below (≤1024px) */
@media (max-width: 1024px) {
  .hero { gap: 40px; }
  .hero-card { padding: 40px 36px; }
  .contact { gap: 48px; }
}

/* Tablet portrait and below (≤900px) — single-column layouts */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; gap: 40px; }
  .hero-visual { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; padding: 80px 5vw; }
  .contact-block:last-child { margin-left: 0; }
  .services { padding: 80px 5vw; }
  .pricing { padding: 80px 5vw; }
}

/* Small tablet / large phone (≤768px) */
@media (max-width: 768px) {
  nav { padding: 16px 4vw; flex-wrap: wrap; }
  .nav-hamburger { display: flex; }
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .nav-right.open { display: flex; }
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    width: 100%;
  }
  .lang-switch { padding: 12px 0; }
  .nav-cta {
    padding: 12px 16px;
    font-size: 12px;
    text-align: center;
    width: 100%;
    margin-top: 4px;
  }
  .nav-cta-contact { display: flex; }
  .hero { padding: 100px 4vw 60px; }
  .hero-lead { margin-bottom: 32px; }
  .hero-card::before { top: -10px; right: -10px; bottom: 10px; left: 10px; }
  .contact-block { padding: 24px 28px; }
  .pricing-card { padding: 32px 28px; }
  .service-card { padding: 32px 28px; }
  .footer-right { gap: 16px; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-card { padding: 32px 24px; }
  .hero-card::before { display: none; }
  .hero-actions { gap: 12px; }
  .btn-primary { padding: 14px 28px; font-size: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .section-header { margin-bottom: 48px; }
  .pricing-cards { gap: 16px; }
  .contact { padding: 60px 4vw; gap: 32px; }
  .contact-text p { margin-bottom: 24px; }
  footer { padding: 32px 4vw; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Very small mobile (≤375px) */
@media (max-width: 375px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 90px 4vw 40px; }
  .nav-right { gap: 6px; }
  .nav-cta { padding: 7px 10px; font-size: 10px; letter-spacing: 0.03em; }
  .lang-switch { font-size: 11px; }
  .logo { font-size: 22px; }
  .pricing-name { font-size: 18px; }
  .pricing-amount { font-size: 2rem; }
  .contact-block { padding: 20px 20px; gap: 16px; }
  .contact-block-value { font-size: 15px; }
}

/* ─── Contact form ─── */
.contact-form {
  margin-top: 32px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-group {
  margin-bottom: 16px;
}
.cf-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
}
.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.cf-group textarea {
  resize: vertical;
  min-height: 100px;
}
.cf-error {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  min-height: 16px;
}
.cf-submit {
  margin-top: 8px;
}
.cf-status {
  margin-top: 16px;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  min-height: 20px;
}
.cf-success { color: #059669; }
.cf-error-msg { color: #dc2626; }

/* Contact form pulse highlight (used by chatbot handoff) */
.contact-form.pulse {
  animation: contactPulse 2s ease;
}
@keyframes contactPulse {
  0%, 100% { box-shadow: none; }
  25%, 75% { box-shadow: 0 0 0 3px var(--orange); }
}

@media (max-width: 768px) {
  .cf-row { grid-template-columns: 1fr; }
}

/* ─── Chatbot widget ─── */
#chatbot { --cb-orange: #E86208; --cb-dark: #161210; --cb-cream: #FAF7F2; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

.cb-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--cb-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,98,8,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cb-trigger:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(232,98,8,0.45); }
.cb-trigger.hidden { display: none; }

.cb-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 91;
  width: 380px;
  height: 520px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.cb-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--cb-dark);
  color: #fff;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}
.cb-header-left { display: flex; align-items: center; gap: 12px; }
.cb-header-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.cb-reset {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  transition: color 0.15s, border-color 0.15s;
}
.cb-reset:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.cb-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
}
.cb-close:hover { color: #fff; }

.cb-gdpr {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  background: var(--cb-dark);
  padding: 0 18px 8px;
  line-height: 1.3;
  flex-shrink: 0;
}

.cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cb-msg { max-width: 85%; }
.cb-msg-user {
  align-self: flex-end;
  background: var(--cb-orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  font-size: 14px;
  line-height: 1.5;
}
.cb-msg-bot { align-self: flex-start; }
.cb-bubble {
  background: #f3f0ec;
  color: var(--cb-dark);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 14px;
  line-height: 1.55;
}

/* Typing dots */
.cb-dots {
  display: inline-flex;
  gap: 4px;
  padding: 4px 0;
}
.cb-dots span {
  width: 7px;
  height: 7px;
  background: var(--cb-orange);
  border-radius: 50%;
  animation: cbBounce 1.2s infinite;
}
.cb-dots span:nth-child(2) { animation-delay: 0.15s; }
.cb-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes cbBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Feedback */
.cb-feedback {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  padding-left: 4px;
}
.cb-fb-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.15s, transform 0.15s;
  padding: 2px;
}
.cb-fb-btn:hover { opacity: 1; transform: scale(1.2); }
.cb-fb-thanks {
  font-size: 11px;
  color: #7a6e66;
  font-style: italic;
}

/* Handoff CTA */
.cb-handoff {
  margin-top: 8px;
  padding: 12px 14px;
  background: #fff7ed;
  border: 1px solid rgba(232,98,8,0.2);
  border-radius: 8px;
}
.cb-handoff-text {
  font-size: 13px;
  color: #7a6e66;
  margin-bottom: 6px;
}
.cb-handoff-link {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cb-orange);
  text-decoration: none;
}
.cb-handoff-link:hover { text-decoration: underline; }
.cb-handoff-wa {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #25d366;
  text-decoration: none;
  margin-top: 4px;
}
.cb-handoff-wa:hover { text-decoration: underline; }

/* Online indicator */
.cb-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.cb-online-dot.online { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.cb-online-dot.offline { background: rgba(255,255,255,0.25); }
.cb-online-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: 'Syne', sans-serif;
}
.cb-header-right { display: flex; align-items: center; gap: 8px; }

/* System messages */
.cb-msg-system {
  align-self: center;
  max-width: 90%;
  text-align: center;
  font-size: 12px;
  color: #7a6e66;
  font-style: italic;
  padding: 4px 0;
}

/* Admin messages (left-aligned, distinct from user) */
.cb-msg-admin { align-self: flex-start; }
.cb-bubble-admin {
  background: #fff;
  color: var(--cb-dark);
  border: 1.5px solid rgba(232,98,8,0.2);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 14px;
  line-height: 1.55;
}

/* Topic chips */
.cb-topic-chip {
  background: #fff;
  border: 1.5px solid rgba(30,26,23,0.1);
  color: var(--cb-dark);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  text-align: left;
  line-height: 1.4;
  width: 100%;
}
.cb-topic-chip:hover { border-color: var(--cb-orange); background: #fff7ed; }

/* Hint chips */
.cb-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px;
  flex-shrink: 0;
}
.cb-hints:empty { padding: 0; }
.cb-hint-chip {
  background: #fff7ed;
  border: 1px solid rgba(232,98,8,0.2);
  color: var(--cb-dark);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  text-align: left;
  line-height: 1.3;
}
.cb-hint-chip:hover { background: #ffedd5; }

/* Input area */
.cb-input-wrap {
  display: flex;
  padding: 12px;
  border-top: 1px solid #eee;
  gap: 8px;
  flex-shrink: 0;
}
.cb-input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.cb-input:focus { border-color: var(--cb-orange); }
.cb-send {
  background: var(--cb-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cb-send:hover { background: #d15607; }

/* Chatbot: slightly smaller on tablets */
@media (max-width: 768px) {
  .cb-panel { width: 340px; height: 480px; }
}

/* Mobile: full-screen chatbot */
@media (max-width: 600px) {
  .cb-panel {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
  .cb-header { border-radius: 0; padding: 12px 14px; }
  .cb-header-left { gap: 6px; }
  .cb-header-title { font-size: 15px; }
  .cb-online-label { display: none; }
  .cb-trigger { bottom: 16px; right: 16px; }
  .cb-gdpr { font-size: 10px; padding: 0 14px 6px; }
  .cb-messages { padding: 12px; }
  .cb-input-wrap { padding: 10px; }
}

/* 375px: tighter chatbot input */
@media (max-width: 375px) {
  .cb-send { padding: 10px 12px; font-size: 12px; }
  .cb-input { padding: 9px 10px; font-size: 13px; }
}

/* Disable custom cursor on touch */
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .service-card, .pricing-card, .contact-block,
  .nav-cta, .btn-primary, .btn-ghost, .cb-trigger { cursor: auto; }
}

/* ─── Booking modal ─── */
.booking-modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  width: 95vw;
  max-width: 1060px;
  height: 90vh;
  max-height: 750px;
  overflow: hidden;
  background: #FAF7F2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  z-index: 200;
}
.booking-modal::backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.booking-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(30,26,23,0.06);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 201;
  line-height: 1;
  transition: all 0.15s ease;
}
.booking-close:hover { color: var(--dark); background: rgba(30,26,23,0.12); }
.booking-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 600px) {
  .booking-modal {
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
  }
}
