/* ============================================================================
   THE BEST RECEPTIONIST design system
   Aesthetic brief: look like a trusted, established service business from
   *before* the AI era, an old-fashioned telephone answering bureau or a
   established business reception. Warm cream paper, deep slate ink, burgundy + brass,
   serif display type, hairline rules, real photography. No neon gradients,
   no glassmorphism, no "AI startup" purple glow.
   ========================================================================= */

:root {
  --paper: #f6efe2;
  --paper-2: #fbf6ec;
  --paper-3: #f0e7d4;
  --ink: #1a2730;
  --ink-soft: #46535d;
  --ink-faint: #6f7a82;
  --navy: #1f3a52;
  --burgundy: #802635;
  --burgundy-dark: #5d1925;
  --brass: #ac7f2c;
  --gold: #caa552;
  --forest: #2c4a3e;
  --line: #ddd0b4;
  --line-soft: rgba(26, 39, 48, 0.12);
  --shadow-sm: 0 1px 2px rgba(40, 30, 12, 0.08);
  --shadow-md: 0 14px 34px rgba(40, 30, 12, 0.14);
  --shadow-lg: 0 28px 70px rgba(28, 22, 10, 0.28);

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  --accent: "Lora", Georgia, serif;

  --maxw: 1180px;
  --gut: clamp(18px, 4vw, 40px);
  --radius: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 82px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.1rem; }
a { color: var(--burgundy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--ink { background: var(--ink); color: #ece4d3; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }
.mx-auto { margin-inline: auto; }

/* Eyebrow / small caps label. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 18px;
}
.eyebrow.center { justify-content: center; }
.section--ink .eyebrow { color: var(--gold); }

.lede {
  font-family: var(--accent);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.section--ink .lede { color: #cfc6b4; }

/* Brass hairline divider */
.rule { border: 0; height: 1px; background: var(--line); margin: 0; }
.rule-brass { height: 2px; width: 64px; background: var(--brass); border: 0; margin: 22px 0; }
.center .rule-brass { margin-inline: auto; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--burgundy);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--burgundy); color: #fff; }
.btn--solid:hover { background: var(--burgundy-dark); }
.btn--gold { background: var(--brass); color: #2a1d05; }
.btn--gold:hover { background: #946b1f; color: #fff; }
.btn--outline { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 0;
  color: var(--burgundy);
  flex: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}
.brand__logo-img {
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  mix-blend-mode: normal;
}
.brand--footer { gap: 12px; justify-content: flex-start; }
.brand__mark--footer,
.brand__mark--footer .brand__logo-img { width: 72px; height: 72px; }
.brand--footer .brand__sub { color: #8797a3; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: 0.01em; line-height: 1; white-space: nowrap; }
.brand__sub { display: block; font-family: var(--body); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  font-family: var(--body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none; padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--brass); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.header-phone svg { width: 16px; height: 16px; color: var(--burgundy); }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: var(--radius); width: 44px; height: 40px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ---- Hero (cinematic montage) ------------------------------------------ */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__stage { position: absolute; inset: 0; z-index: -2; background: #11202c; }
.hero__scene {
  position: absolute; inset: 0;
  background-size: cover;
  opacity: 0;
  z-index: 0;
  transform: scale(1.00);
  transition: opacity 2.0s ease-in-out;
  will-change: opacity, transform;
}
.hero__scene.is-active {
  opacity: 1;
  z-index: 2;
  animation: kenburns 8.5s linear forwards;
}
.hero__scene.is-outgoing {
  opacity: 0;
  z-index: 1;
  animation: kenburns 8.5s linear forwards;
  transition: opacity 2.0s ease-in-out;
}
/* Custom alignments for each receptionist image to ensure faces are centered and zoom anchors to them */
.hero__scene[data-index="0"] {
  background-position: 25% top;
  transform-origin: 25% top;
}
.hero__scene[data-index="1"] {
  background-position: center top;
  transform-origin: center top;
}
.hero__scene[data-index="2"] {
  background-position: 70% top;
  transform-origin: 70% top;
}
@keyframes kenburns {
  from { transform: scale(1.00); }
  to { transform: scale(1.10); }
}
/* Editorial darkening so the type stays legible and the imagery feels timeless. */
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,20,28,0.55) 0%, rgba(12,20,28,0.35) 38%, rgba(12,20,28,0.78) 100%),
    radial-gradient(120% 90% at 18% 30%, rgba(12,20,28,0.10), rgba(12,20,28,0.66));
}
.hero__veil::after { /* faint film grain feel via repeating hairlines */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 3px; opacity: 0.5; mix-blend-mode: overlay;
}
.hero__inner { position: relative; padding-block: clamp(80px, 12vh, 140px); max-width: 760px; }
.hero__powered {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px; padding: 7px 16px 7px 12px;
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  color: #f3ead6; margin-bottom: 26px; backdrop-filter: blur(3px);
}
.hero__powered img { width: 18px; height: 18px; border-radius: 50%; }
.hero__powered a { color: inherit; font-weight: 800; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero h1 em { font-style: italic; color: #f1d488; font-weight: 800; }
.hero__sub { font-family: var(--accent); font-size: clamp(1.1rem, 1.7vw, 1.34rem); color: #ece3d2; max-width: 56ch; margin-bottom: 30px; }
.hero__btns { margin-top: 6px; }
.hero__scroll { position: absolute; bottom: 22px; right: var(--gut); z-index: 2; color: rgba(255,255,255,0.8); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }

/* Trust strip under hero */
.trustbar { background: var(--ink); color: #d8cfbe; border-top: 3px solid var(--brass); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 30px; text-align: center; }
.trustbar__num { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; line-height: 1; }
.trustbar__lab { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }

/* ---- Generic grids & cards --------------------------------------------- */
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.card--feature { padding-top: 34px; }
.card__num { font-family: var(--display); font-size: 0.95rem; color: var(--brass); font-weight: 700; letter-spacing: 0.1em; }
.card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--paper-3); border: 1px solid var(--line); color: var(--burgundy);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.98rem; }

.framed { border: 1px solid var(--line); padding: 10px; background: var(--paper-2); box-shadow: var(--shadow-md); }
.framed img { border-radius: 1px; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.img-caption { font-family: var(--accent); font-style: italic; color: var(--ink-faint); font-size: 0.9rem; margin-top: 12px; text-align: center; }

/* Lists with clear outcome marks */
.ticklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticklist li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: #2f7d4f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.ticklist li strong { color: var(--ink); }
.plainlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; color: var(--ink-soft); }
.plainlist li { position: relative; padding-left: 34px; }
.plainlist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: #b3443d;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---- Flow diagram (how it works) --------------------------------------- */
.flow { display: grid; gap: 18px; }
.flow__track { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; align-items: stretch; }
.flow__step {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 22px;
  text-align: center;
}
.flow__step + .flow__step { margin-left: 26px; }
.flow__step::after {
  content: ""; position: absolute; right: -27px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 2px; background: var(--brass); z-index: 1;
}
.flow__step:last-child::after { display: none; }
.flow__step .flow__node {
  width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; background: var(--ink); color: var(--gold);
  border: 2px solid var(--brass);
}
.flow__step .flow__node svg { width: 23px; height: 23px; }
.flow__step h4 { font-family: var(--body); font-weight: 700; font-size: 1rem; margin: 0 0 6px; letter-spacing: 0.01em; }
.flow__step p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.flow__step .flow__k { position: absolute; top: 10px; left: 12px; font-family: var(--display); font-size: 0.8rem; color: var(--brass); font-weight: 700; }

/* Vertical flow for narrow screens / detailed lanes */
.flowv { display: grid; gap: 0; }
.flowv__row { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; padding-bottom: 26px; position: relative; }
.flowv__row::before { content: ""; position: absolute; left: 31px; top: 56px; bottom: -6px; width: 2px; background: var(--line); }
.flowv__row:last-child::before { display: none; }
.flowv__node { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--gold); border: 2px solid var(--brass); position: relative; z-index: 1; }
.flowv__node svg { width: 26px; height: 26px; }
.flowv__body h4 { font-family: var(--body); font-weight: 700; font-size: 1.08rem; margin: 6px 0 6px; }
.flowv__body p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.flowv__body .tag { display: inline-block; margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--burgundy); border: 1px solid var(--line); border-radius: 100px; padding: 3px 11px; font-weight: 700; }

/* ---- Testimonials ------------------------------------------------------- */
.quote { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; position: relative; }
.quote::before { content: "\201C"; font-family: var(--display); font-size: 4.6rem; line-height: 0.7; color: var(--brass); opacity: 0.5; position: absolute; top: 22px; left: 22px; }
.quote p { font-family: var(--accent); font-style: italic; font-size: 1.08rem; color: var(--ink); position: relative; padding-top: 26px; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.quote__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.quote__who b { display: block; font-family: var(--body); font-size: 0.95rem; }
.quote__who span { color: var(--ink-faint); font-size: 0.85rem; }

/* ---- FAQ accordion ------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  padding: 24px 4px; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink);
}
.faq__q:hover { color: var(--burgundy); }
.faq__sign { flex: none; width: 30px; height: 30px; border: 1px solid var(--brass); border-radius: 50%; position: relative; color: var(--burgundy); transition: transform 0.25s ease; }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; inset: 0; margin: auto; background: currentColor; }
.faq__sign::before { width: 12px; height: 2px; }
.faq__sign::after { width: 2px; height: 12px; transition: transform 0.25s ease; }
.faq__item.open .faq__sign::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq__a > div { padding: 0 4px 26px; color: var(--ink-soft); max-width: 70ch; }
.faq__item.open .faq__a { max-height: 460px; }

/* ---- Demo dashboard ----------------------------------------------------- */
.dash { background: var(--ink); color: #d9d0bf; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid #2c3b46; }
.dash__bar { display: flex; align-items: center; gap: 10px; padding: 13px 18px; background: #14222d; border-bottom: 1px solid #2c3b46; }
.dash__dot { width: 11px; height: 11px; border-radius: 50%; background: #3a4954; }
.dash__dot.r { background: #b6483f; } .dash__dot.y { background: #c79a3a; } .dash__dot.g { background: #4f8a5c; }
.dash__title { margin-left: 10px; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8fa0ac; }
.dash__body { display: grid; grid-template-columns: 200px 1fr; min-height: 460px; }
.dash__side { background: #16242f; border-right: 1px solid #2c3b46; padding: 16px 12px; }
.dash__nav { display: grid; gap: 3px; }
.dash__nav a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 4px; color: #a9b7c1; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.dash__nav a svg { width: 17px; height: 17px; opacity: 0.85; }
.dash__nav a.active, .dash__nav a:hover { background: #21333f; color: #fff; }
.dash__nav a.active { box-shadow: inset 3px 0 0 var(--gold); }
.dash__main { padding: 22px; }
.dash__statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.dash, .dash__body, .dash__main, .dpanel, .dstat { min-width: 0; }
.dstat { background: #18272f; border: 1px solid #2c3b46; border-radius: 5px; padding: 16px; }
.dstat__lab { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #8a9aa6; display: flex; align-items: center; gap: 7px; }
.dstat__lab svg { width: 14px; height: 14px; color: var(--gold); }
.dstat__num { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: #fff; margin-top: 6px; line-height: 1; }
.dstat__delta { font-size: 0.76rem; margin-top: 6px; color: #6fae7f; }
.dpanel { background: #18272f; border: 1px solid #2c3b46; border-radius: 5px; padding: 16px 18px; }
.dpanel h4 { font-family: var(--body); color: #fff; font-size: 0.95rem; margin: 0 0 14px; letter-spacing: 0.04em; }
.dpanelview { display: none; }
.dpanelview.active { display: block; }
.dtable { width: 100%; border-collapse: collapse; font-size: .9rem; }
.dtable th { text-align: left; color: #8a9aa6; font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 0 10px 10px; border-bottom: 1px solid #2c3b46; }
.dtable td { padding: 12px 10px; border-bottom: 1px solid #233039; color: #d4dbe1; }
.dtable tr:last-child td { border-bottom: 0; }
.dthread { background: #14222d; border: 1px solid #2c3b46; border-radius: 6px; padding: 14px 16px; margin-bottom: 14px; max-height: 320px; overflow-y: auto; }
.dmsg { max-width: 82%; padding: 9px 12px; border-radius: 10px; font-size: .88rem; margin: 7px 0; line-height: 1.45; }
.dmsg.v { background: #233039; color: #e7edf1; border-bottom-left-radius: 3px; }
.dmsg.a { background: #21323d; color: #cfe0ea; margin-left: auto; border-bottom-right-radius: 3px; border: 1px solid #2c3b46; }
.sample-flag { display:inline-flex; align-items:center; gap:8px; background:var(--paper-3); border:1px solid var(--line); border-radius:100px; padding:7px 16px; font-size:.8rem; color:var(--ink-soft); font-weight:600; }
.sample-flag i { width:8px;height:8px;border-radius:50%;background:var(--forest);display:inline-block; }
.drow { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 11px 0; border-top: 1px solid #233039; }
.drow:first-of-type { border-top: 0; }
.drow__av { width: 34px; height: 34px; border-radius: 50%; background: #233039; display: grid; place-items: center; color: var(--gold); font-weight: 700; font-family: var(--display); font-size: 0.9rem; }
.drow__main b { color: #eef3f6; font-size: 0.92rem; font-weight: 600; }
.drow__main span { display: block; color: #93a3ae; font-size: 0.82rem; }
.drow__tag { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 9px; border-radius: 100px; font-weight: 700; }
.tag-lead { background: rgba(80,138,92,0.18); color: #8ed09c; border: 1px solid rgba(80,138,92,0.4); }
.tag-book { background: rgba(199,154,58,0.16); color: #e3c074; border: 1px solid rgba(199,154,58,0.4); }
.tag-call { background: rgba(64,120,170,0.18); color: #88b6e0; border: 1px solid rgba(64,120,170,0.4); }
.dnote { font-family: var(--accent); font-style: italic; color: #b9c6cf; font-size: 0.9rem; background: #14222d; border-left: 2px solid var(--gold); padding: 10px 14px; border-radius: 3px; margin-top: 4px; }
[data-dash-demo] { position: relative; }
.dbars { display: flex; align-items: flex-end; gap: 8px; height: 124px; padding-top: 10px; position: relative; }
.dbars .b { flex: 1; background: linear-gradient(180deg, var(--gold), #8a6a22); border: 0; border-radius: 3px 3px 0 0; min-height: 8px; position: relative; cursor: pointer; transition: filter .15s ease, transform .15s ease; }
.dbars .b:hover, .dbars .b:focus-visible { filter: brightness(1.15); transform: translateY(-2px); outline: 1px solid rgba(255,255,255,.45); }
.dbars .b span { position: absolute; bottom: -22px; left: 0; right: 0; text-align: center; font-size: .66rem; color: #8a9aa6; }
.chart-tip { position: absolute; z-index: 4; background: #f7edda; color: #16242f; border: 1px solid var(--gold); border-radius: 4px; padding: 5px 9px; font-size: .76rem; font-weight: 700; box-shadow: var(--shadow-md); pointer-events: none; opacity: 0; transform: translateY(4px); transition: opacity .12s ease, transform .12s ease; white-space: nowrap; }
.chart-tip.show { opacity: 1; transform: translateY(0); }

/* ---- Live call demo card ------------------------------------------------ */
.calldemo { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow-md); }
.calldemo__left { background: var(--ink); color: #e9e0cf; padding: clamp(28px, 4vw, 44px); position: relative; }
.calldemo__left[data-call-demo] { cursor: pointer; }
.calldemo__left[data-call-demo]:hover .calldemo__phone { color: #f3d884; }
.calldemo__phone { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; letter-spacing: 0.01em; margin: 6px 0 4px; }
.calldemo__ring { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(202,165,82,0.15); border: 1px solid rgba(202,165,82,0.5); color: var(--gold); margin-bottom: 18px; }
.calldemo__ring svg { width: 28px; height: 28px; }
.calldemo__ring { animation: softpulse 2.4s ease-in-out infinite; }
@keyframes softpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(202,165,82,0.35);} 50% { box-shadow: 0 0 0 12px rgba(202,165,82,0);} }
.calldemo__right { padding: clamp(28px, 4vw, 44px); }
.calldemo__right h4 { font-family: var(--display); }
.tryline { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; color: var(--ink-soft); font-family: var(--accent); font-style: italic; }
.tryline svg { width: 16px; height: 16px; color: var(--burgundy); flex: none; margin-top: 4px; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: #14202a; color: #aeb9c1; padding-block: 56px 30px; border-top: 3px solid var(--brass); }
.site-footer a { color: #cdd6dc; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #94a2ab; font-size: 0.94rem; max-width: 34ch; }
.footcol h5 { font-family: var(--body); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.74rem; color: var(--gold); margin: 4px 0 16px; }
.footcol ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.93rem; }
.footer-powered { display: flex; justify-content: center; margin-top: 34px; }
.powered-lockup { display: inline-flex; align-items: center; gap: 11px; background: #1b2a35; border: 1px solid #2c3b46; border-radius: 100px; padding: 9px 18px 9px 11px; margin-top: 6px; text-decoration: none; }
.powered-lockup img { width: 26px; height: 26px; border-radius: 50%; }
.powered-lockup span { font-size: 0.82rem; color: #c7d0d6; }
.powered-lockup b { color: #fff; }
.footer-base { display: flex; justify-content: center; text-align: center; gap: 18px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid #25323c; font-size: 0.84rem; color: #7e8c95; }

/* ---- Chat widget (custom UI, shared QEW brain) -------------------------- */
.qa-launch {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--burgundy); color: #fff; border: 1px solid var(--burgundy-dark);
  border-radius: 100px; padding: 12px 20px 12px 14px; cursor: pointer;
  box-shadow: var(--shadow-lg); font-family: var(--body); font-weight: 700; font-size: 0.95rem;
  transition: transform 0.15s ease;
}
.qa-launch:hover { transform: translateY(-2px); }
.qa-launch__ic { width: 30px; height: 30px; border-radius: 50%; background: var(--brass); display: grid; place-items: center; color: #2a1d05; }
.qa-launch__ic svg { width: 17px; height: 17px; }
.qa-launch.hidden { display: none; }

.qa-panel {
  position: fixed; right: 24px; bottom: 24px; z-index: 61;
  width: 390px; max-width: calc(100vw - 28px);
  height: min(620px, calc(100dvh - 60px));
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-lg); display: none; flex-direction: column; overflow: hidden;
}
.qa-panel.open { display: flex; animation: qaIn 0.34s cubic-bezier(.16,1,.3,1); }
@keyframes qaIn { from { opacity: 0; transform: translateY(18px) scale(0.98);} to { opacity: 1; transform: none; } }
.qa-head { display: flex; align-items: center; gap: 12px; padding: 15px 16px; background: var(--ink); color: #fff; }
.qa-head img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.qa-head__t { font-family: var(--display); font-weight: 700; font-size: 1.02rem; line-height: 1.15; }
.qa-head__s { font-size: 0.76rem; color: #b9c6cf; display: flex; align-items: center; gap: 7px; }
.qa-head__s i { width: 7px; height: 7px; border-radius: 50%; background: #4f8a5c; display: inline-block; }
.qa-close { margin-left: auto; background: transparent; border: 0; color: #c5d0da; font-size: 26px; line-height: 1; cursor: pointer; width: 34px; height: 34px; border-radius: 5px; }
.qa-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.qa-msgs { flex: 1; min-height: 0; overflow-y: auto; padding: 18px 15px; background: var(--paper); display: flex; flex-direction: column; gap: 12px; }
.qa-b { max-width: 86%; padding: 11px 14px; border-radius: 12px; font-size: 0.95rem; line-height: 1.5; white-space: pre-wrap; overflow-wrap: anywhere; }
.qa-b.bot { align-self: flex-start; background: var(--paper-2); border: 1px solid var(--line); border-bottom-left-radius: 3px; color: var(--ink); }
.qa-b.me { align-self: flex-end; background: var(--ink); color: #f4eede; border-bottom-right-radius: 3px; }
.qa-b.typing { color: var(--ink-faint); font-style: italic; }
.qa-b a, .qa-foot a, .footer-base a { color: inherit; font-weight: 700; }
.qa-form { display: flex; gap: 9px; padding: 12px; border-top: 1px solid var(--line); background: var(--paper-2); }
.qa-input { flex: 1; min-width: 0; resize: none; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); padding: 11px 12px; font: inherit; font-size: 0.95rem; color: var(--ink); outline: none; max-height: 100px; }
.qa-input:focus { border-color: var(--brass); }
.qa-send { flex: none; width: 46px; border: 0; border-radius: 6px; background: var(--burgundy); color: #fff; cursor: pointer; display: grid; place-items: center; }
.qa-send:disabled { opacity: 0.5; cursor: default; }
.qa-send svg { width: 19px; height: 19px; }
.qa-foot { text-align: center; font-size: 0.72rem; color: var(--ink-faint); padding: 7px; background: var(--paper-2); border-top: 1px solid var(--line); }
.qa-foot b { color: var(--ink-soft); }

/* ---- Page hero (interior pages) ---------------------------------------- */
.pagehero { background: var(--ink); color: #ece4d3; padding-block: clamp(56px, 9vw, 96px) clamp(40px, 6vw, 64px); border-bottom: 3px solid var(--brass); position: relative; overflow: hidden; }
.pagehero h1 { color: #fff; }
.pagehero .lede { color: #c9bfac; }
.pagehero__crumb { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

/* Blog and SEO article pages */
.blog-shell { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(28px, 5vw, 60px); align-items: start; }
.blog-article { max-width: 780px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--ink-faint); font-size: 0.92rem; margin: 0 0 24px; }
.blog-article h2 { margin-top: 1.35em; }
.blog-article h3 { font-family: var(--body); font-size: 1.1rem; margin-top: 1.4em; }
.blog-article p { color: var(--ink-soft); }
.blog-article a { font-weight: 700; }
.blog-side { position: sticky; top: 112px; display: grid; gap: 18px; }
.blog-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.blog-card h3 { font-family: var(--body); font-size: 1rem; margin-bottom: 10px; }
.blog-card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.blog-card li + li { margin-top: 8px; }
.blog-figure { margin: 28px 0; background: var(--paper-2); border: 1px solid var(--line); padding: 10px; box-shadow: var(--shadow-md); }
.blog-figure img { width: 100%; border-radius: 1px; }
.blog-figure figcaption { color: var(--ink-faint); font-size: 0.9rem; text-align: center; margin-top: 10px; font-family: var(--accent); font-style: italic; }
.pullquote { margin: 32px 0; padding: 24px 28px; border-left: 3px solid var(--brass); background: var(--paper-2); font-family: var(--accent); font-size: 1.2rem; line-height: 1.55; color: var(--ink); }
.keyword-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.keyword-pill { background: var(--paper-2); border: 1px solid var(--line); padding: 14px 16px; border-radius: var(--radius); color: var(--ink-soft); }
.keyword-pill b { color: var(--ink); display: block; margin-bottom: 4px; }
.seo-cta { margin-top: 36px; background: var(--ink); color: #ece4d3; border-radius: var(--radius); padding: clamp(26px, 4vw, 38px); border: 1px solid #2c3b46; }
.seo-cta h2 { color: #fff; margin-top: 0; }
.seo-cta p { color: #c9bfac; }

/* ---- Misc --------------------------------------------------------------- */
.kicker-band { background: var(--burgundy); color: #fff; }
.kicker-band .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; flex-wrap: wrap; }
.kicker-band h3 { color: #fff; margin: 0; font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.badge-est { display: inline-grid; place-items: center; text-align: center; width: 92px; height: 92px; border: 2px solid var(--brass); border-radius: 50%; color: var(--burgundy); font-family: var(--display); line-height: 1.05; background: var(--paper-2); }
.badge-est b { font-size: 1.4rem; display: block; }
.badge-est span { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* ---- WhatsApp button (bottom-left on every page) ------------------------- */
.wa-btn {
  position: fixed; left: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 26px rgba(18, 60, 30, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-btn svg { width: 30px; height: 30px; }
.wa-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 32px rgba(18, 60, 30, 0.45); }

/* ---- Chat attachments ----------------------------------------------------- */
.qa-attach {
  flex: none; width: 40px; height: 44px; border: 0; border-radius: 6px;
  background: transparent; color: var(--ink-faint); cursor: pointer;
  display: grid; place-items: center;
}
.qa-attach:hover { color: var(--burgundy); background: var(--paper-3); }
.qa-attach svg { width: 20px; height: 20px; }
.qa-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 12px 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.qa-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper-3); border: 1px solid var(--line); border-radius: 100px;
  padding: 4px 6px 4px 11px; font-size: 0.78rem; color: var(--ink-soft); max-width: 240px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.qa-chip__x { border: 0; background: transparent; color: var(--ink-faint); font-size: 15px; line-height: 1; cursor: pointer; padding: 2px 5px; border-radius: 50%; }
.qa-chip__x:hover { color: var(--burgundy); background: var(--paper); }
.qa-b img.qa-img { display: block; max-width: 210px; max-height: 240px; border-radius: 8px; }

/* Sticky side column on wide screens only (mobile unsets it). */
.sticky-col { position: sticky; top: 96px; }

/* WhatsApp deep link inside chat replies */
.qa-b .qa-wa-link { color: #1d8f4f; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* Mobile dashboard pinch-zoom */
.dash { position: relative; }
.dash__zoom { transform-origin: 0 0; will-change: transform; }
.dash.zoom-fit { overflow: hidden; }
.dash__hint {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  background: rgba(20, 32, 42, 0.85); color: #e8e0cf;
  font-size: 0.72rem; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 100px;
  pointer-events: none; opacity: 1; transition: opacity 0.6s ease;
  display: none;
}
.dash__hint.hide { opacity: 0; }
@media (max-width: 940px) { .dash__hint { display: block; } }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 940px) {
  .nav { gap: 18px; }
  .brand__name { font-size: 1.05rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  /* On one-column layouts, lead with the imagery where marked. */
  .split .split-media { order: -1; }
  .sticky-col { position: static !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* The owner-dashboard demo keeps its desktop rectangle on phones: it scrolls
     sideways smoothly instead of collapsing into a squeezed stack. */
  .dash { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; overscroll-behavior-x: contain; scrollbar-width: thin; scrollbar-color: var(--brass) transparent; }
  .dash__bar, .dash__body { min-width: 900px; }
  .calldemo { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .flow__track { grid-auto-flow: row; grid-auto-columns: auto; }
  .flow__step + .flow__step { margin-left: 0; margin-top: 30px; }
  .flow__step::after { right: 50%; top: auto; bottom: -28px; transform: translateX(50%) rotate(90deg); }
  .blog-shell { grid-template-columns: 1fr; }
  .blog-side { position: static; }
}
@media (max-width: 760px) {
  body { padding-top: 70px; }
  .nav, .header-phone { display: none; }
  .site-header__bar { height: 70px; }
  .brand__mark,
  .brand__logo-img { width: 58px; height: 58px; }
  .brand__name { font-size: 1rem; }
  .brand__sub { font-size: 0.54rem; letter-spacing: 0.16em; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header.open .nav { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 8px 0; box-shadow: var(--shadow-md); }
  .site-header.open .nav a { padding: 15px var(--gut); width: 100%; border-bottom: 1px solid var(--line-soft); text-align: center; transition: background 0.15s ease, color 0.15s ease; }
  .site-header.open .nav a:hover, .site-header.open .nav a:active { background: var(--paper-3); color: var(--ink); border-bottom-color: var(--line-soft); }
  /* Action buttons sit centered on small screens. */
  .btn-row { justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer, .footer-brand p { text-align: center; }
  .footer-brand p { margin-inline: auto; }
  .site-footer .brand { justify-content: center; }
  .footcol ul { justify-items: center; }
  .footer-base { justify-content: center; text-align: center; }
  .keyword-grid { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__btns .btn { width: 100%; }
  .hero__scroll { display: none; }
  .qa-launch { right: 14px; bottom: 14px; padding: 10px; width: 52px; height: 52px; justify-content: center; }
  .qa-launch > span:not(.qa-launch__ic) { display: none; }
  .qa-launch__ic { width: 30px; height: 30px; }
  .wa-btn { left: 14px; bottom: 14px; width: 52px; height: 52px; }
  .wa-btn svg { width: 27px; height: 27px; }
}


@media (prefers-reduced-motion: reduce) {
  .hero__scene.is-active { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .calldemo__ring { animation: none; }
  html { scroll-behavior: auto; }
}
