/* ==========================================================================
   dashready — Design System
   Clinical-modern: trust (deep ocean blue, whitespace) + tech (aqua glow, mockups)
   + marketing (bold CTAs, gold accent)
   ========================================================================== */

:root {
  --bg: #F7FAFB;
  --surface: #FFFFFF;
  --surface-alt: #EEF4F8;
  --ink: #0A2A45;
  --ink-soft: #33506B;
  --muted: #61758A;
  --primary: #0B4C7A;
  --primary-dark: #062A45;
  --primary-light: #E4EEF5;
  --accent-gold: #C9A66B;
  --accent-gold-light: #F5EDE0;
  --accent-mint: #22B8D9;
  --border: #DCE6ED;
  --danger: #D14343;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-panel: 32px;
  --shadow-sm: 0 2px 8px rgba(10, 42, 69, 0.05);
  --shadow: 0 14px 36px rgba(10, 42, 69, 0.10);
  --shadow-lg: 0 32px 70px rgba(10, 42, 69, 0.16);
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1180px;
  --dot-grid: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  --dot-grid-dark: radial-gradient(circle at 1px 1px, rgba(10,42,69,0.055) 1px, transparent 0);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.6rem, 5.4vw, 4.5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 118px 0; }
@media (max-width: 780px) { section { padding: 68px 0; } }

.section-alt { background: var(--surface-alt); }

/* Contained rounded panel (InventorSoft-style feature band) */
.section-dark { background: transparent; padding: 54px 0; }
.panel, .section-dark > .container {
  background-color: var(--primary-dark);
  background-image: var(--dot-grid);
  background-size: 26px 26px;
  border-radius: var(--radius-panel);
  padding: 84px 64px;
  color: #E6EEF5;
}
.panel h2, .panel h3, .section-dark h2, .section-dark h3 { color: #fff; }
.panel p, .section-dark p { color: #B7C9D6; }
@media (max-width: 1240px) {
  .section-dark > .container { margin-left: 24px; margin-right: 24px; width: auto; }
}
@media (max-width: 720px) {
  .panel, .section-dark > .container { padding: 52px 24px; border-radius: 22px; }
  .section-dark > .container { margin-left: 16px; margin-right: 16px; }
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  border-radius: 0;
  background: var(--accent-mint);
  box-shadow: none;
}
.section-dark .eyebrow, .panel .eyebrow, .hero-dark .eyebrow,
.cta-banner .eyebrow { background: none; color: var(--accent-mint); }

.section-head { max-width: 760px; margin: 0 0 62px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.12rem; line-height: 1.6; }
.section-dark .section-head p, .panel .section-head p { color: #B7C9D6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: none; }
.btn-primary:hover { background: #0d5c94; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,76,122,0.28); }
.btn-gold { background: var(--accent-gold); color: #2A2110; box-shadow: none; }
.btn-gold:hover { background: #d4b47e; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,166,107,0.30); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--primary); }
.btn-outline:hover { border-color: var(--primary); background: var(--primary-light); }
.section-dark .btn-outline, .panel .btn-outline, .hero-dark .btn-outline,
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.section-dark .btn-outline:hover, .panel .btn-outline:hover, .hero-dark .btn-outline:hover,
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 0.85rem; border-radius: 7px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 0;
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.2rem; color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--accent-mint));
  position: relative; flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 8px;
  border-radius: 3px;
  background: #fff;
  opacity: 0.9;
}
.brand-mark-img { width: 32px; height: 32px; flex-shrink: 0; }
.brand-dash, .brand-ready {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.brand-dash { color: var(--ink); }
.brand-ready { color: #1D5FEC; }
.footer .brand-dash, .footer .brand-ready,
.cta-banner .brand-dash, .cta-banner .brand-ready,
.section-dark .brand-dash, .section-dark .brand-ready,
.panel .brand-dash, .panel .brand-ready,
.hero-dark .brand-dash, .hero-dark .brand-ready,
.replace-new .brand-dash, .replace-new .brand-ready { color: #fff; }
.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-size: 0.94rem; font-weight: 600; color: var(--ink-soft);
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: center; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .nav-links.open { max-height: 400px; }
  .nav-links a { display: block; width: 100%; padding: 14px 28px; border-bottom: 1px solid var(--border); text-align: center; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 14px 18px; gap: 12px; }
  .nav-cta .btn-sm { padding: 9px 13px; font-size: 0.8rem; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 104px 0 104px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -220px; right: -180px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,184,217,0.16), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 5.8vw, 4.9rem); }
.hero .lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin-bottom: 34px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-microcopy { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-microcopy .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-mint); }

/* Dark hero variant */
.hero-dark {
  background-color: var(--primary-dark);
  background-image: var(--dot-grid);
  background-size: 26px 26px;
  color: #E6EEF5;
}
.hero-dark::before { background: radial-gradient(circle, rgba(34,184,217,0.22), transparent 70%); }
.hero-dark h1 { color: #fff; }
.hero-dark .lead { color: #B7C9D6; }
.hero-dark .hero-microcopy { color: #9FB6C8; }

/* ---------- Trust bar ---------- */
.trust-bar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-bar-label { text-align: center; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 24px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 44px; }
.logo-row span { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: #A7B9C6; letter-spacing: 0.02em; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid #D2E0E9;
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 6px 22px rgba(10, 42, 69, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 18px 44px rgba(10, 42, 69, 0.12); }
.panel .card, .section-dark .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}
.panel .card:hover, .section-dark .card:hover { border-color: var(--accent-mint); box-shadow: none; }
.icon-tile {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: #fff;
}
.panel .icon-tile, .section-dark .icon-tile { background: rgba(34,184,217,0.16); color: var(--accent-mint); }
.card h3 { margin-bottom: 9px; color: var(--ink); }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0; line-height: 1.6; }
.panel .card h3, .section-dark .card h3 { color: #fff; }
.panel .card p, .section-dark .card p { color: #B7C9D6; }

/* ---------- How We Work (simple step list) ---------- */
.how-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }

.how-intro h2 { margin-bottom: 16px; }
.how-intro > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 22px; }
.how-cta-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent-mint); }
.how-cta-link:hover { color: var(--primary); }

.guarantee-card { margin-top: 44px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.guarantee-card .label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.guarantee-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.guarantee-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.step-list { display: flex; flex-direction: column; gap: 20px; }
.step-card { display: flex; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.step-card.is-final { border-bottom: 3px solid var(--accent-mint); }
@media (max-width: 560px) { .step-card { flex-direction: column; } }

.step-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-icon svg { width: 22px; height: 22px; }
.step-icon.mint { background: #E3F7EF; color: #1AAE6F; }
.step-icon.blue { background: var(--primary-light); color: var(--primary); }
.step-icon.purple { background: #EEE9FB; color: #7C5CFC; }

.step-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.step-badge { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 800; color: #fff; }
.step-badge.mint { background: #1AAE6F; }
.step-badge.blue { background: var(--primary); }
.step-badge.purple { background: #7C5CFC; }
.step-title-row h3 { margin: 0; font-size: 1.15rem; }
.step-content p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.step-content ul { margin: 10px 0 0; padding-left: 18px; list-style: disc; color: var(--muted); font-size: 0.95rem; }
.step-content ul li { margin-bottom: 4px; }

/* ---------- Stats ---------- */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 780px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--accent-mint); }
.stat .label { font-size: 0.88rem; color: #B7C9D6; margin-top: 4px; }
.section:not(.section-dark) .stat .num { color: var(--primary); }
.section:not(.section-dark) .stat .label { color: var(--muted); }

/* ---------- Mockup window (tech visual) ---------- */
.mockup {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.mockup-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.mockup-bar .dot:nth-child(1) { background: #E9A6A6; }
.mockup-bar .dot:nth-child(2) { background: #E9D2A6; }
.mockup-bar .dot:nth-child(3) { background: #A6E9C0; }
.mockup-body { padding: 20px; }

/* Kanban mock (CRM) */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kanban-col { background: var(--surface-alt); border-radius: var(--radius-sm); padding: 10px; }
.kanban-col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 8px; padding: 0 4px; }
.kanban-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 10px; font-size: 0.78rem; margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.kanban-card .name { font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.kanban-card .tag { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; background: var(--primary-light); color: var(--primary); }
.kanban-card .tag.gold { background: var(--accent-gold-light); color: #8A6C2C; }

/* Chat mock (inbox) */
.chat-list { display: flex; flex-direction: column; gap: 4px; }
.chat-row { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; }
.chat-row.active { background: var(--primary-light); }
.chat-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--accent-mint)); flex-shrink: 0; object-fit: cover; display: block; }
.chat-row .meta { flex: 1; min-width: 0; }
.chat-row .name { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.chat-row .preview { font-size: 0.76rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-row .channel { font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; background: var(--surface-alt); color: var(--muted); }

/* Workflow diagram */
.flow { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.flow-step { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; font-size: 0.82rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px; }
.flow-step .dot-ico { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-mint); }
.flow-arrow { width: 34px; height: 2px; background: var(--border); position: relative; margin: 0 6px; }
.flow-arrow::after { content: "›"; position: absolute; right: -5px; top: -11px; color: var(--muted); font-size: 1.1rem; }

.flow-grid { display: grid; grid-template-columns: auto auto auto; align-items: center; justify-content: center; gap: 12px 8px; }
.flow-grid .flow-step { justify-self: start; }
.flow-arrow-right, .flow-arrow-left { width: 30px; height: 2px; background: var(--border); position: relative; justify-self: center; }
.flow-arrow-right::after { content: "›"; position: absolute; right: -6px; top: -11px; color: var(--muted); font-size: 1.1rem; }
.flow-arrow-left::after { content: "‹"; position: absolute; left: -6px; top: -11px; color: var(--muted); font-size: 1.1rem; }
.flow-arrow-down { position: relative; justify-self: center; width: 20px; height: 34px; margin: 4px 0; }
.flow-arrow-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 22px;
  background: var(--border);
  transform: translateX(-50%);
}
.flow-arrow-down::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateX(-50%) rotate(45deg);
}

/* ---------- Testimonials ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p.quote { font-size: 1rem; color: var(--ink-soft); margin-bottom: 20px; }
.testimonial .person { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-gold), var(--primary)); object-fit: cover; display: block; flex-shrink: 0; }
.testimonial .who b { display: block; font-size: 0.9rem; color: var(--ink); }
.testimonial .who span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Replace-the-headcount comparison ---------- */
.replace-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-top: 48px; }
@media (max-width: 860px) { .replace-grid { grid-template-columns: 1fr; } .replace-arrow { transform: rotate(90deg); margin: 0 auto; } }

.replace-old { display: flex; flex-direction: column; gap: 14px; }
.replace-role { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.replace-role-icon { width: 42px; height: 42px; border-radius: 11px; background: #FBE9E9; color: var(--danger); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.replace-role-text strong { display: block; font-family: var(--font-heading); color: var(--ink); text-decoration: line-through; text-decoration-color: var(--danger); text-decoration-thickness: 2px; margin-bottom: 2px; }
.replace-role-text span { color: var(--muted); font-size: 0.85rem; }

.replace-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.replace-new {
  background-color: var(--primary-dark);
  background-image: var(--dot-grid), linear-gradient(135deg, var(--primary-dark), var(--primary));
  background-size: 24px 24px, auto;
  border-radius: var(--radius-panel); padding: 40px 36px; color: #fff; box-shadow: var(--shadow-lg);
}
.replace-new .replace-brand { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; margin-bottom: 14px; }
.replace-new ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
.replace-new li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #E6EEF5; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background-color: var(--primary-dark);
  background-image: var(--dot-grid), linear-gradient(135deg, var(--primary-dark), var(--primary));
  background-size: 26px 26px, auto;
  border-radius: var(--radius-panel);
  padding: 76px 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(34,184,217,0.25), transparent 55%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #C7DCEB; max-width: 520px; margin: 0 auto 30px; }
.cta-banner .hero-cta { justify-content: center; }
@media (max-width: 600px) { .cta-banner { padding: 44px 24px; } }

/* ---------- Footer ---------- */
.footer {
  background-color: var(--primary-dark);
  background-image: var(--dot-grid);
  background-size: 26px 26px;
  color: #B7C9D6; padding: 80px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer ul li { overflow-wrap: anywhere; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer p.tag { font-size: 0.9rem; max-width: 260px; }
.footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer ul li a:hover { color: #fff; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge { font-size: 0.68rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.18); padding: 5px 10px; border-radius: 100px; color: #B7C9D6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom a { color: #B7C9D6; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 56px 0 10px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.back-link:hover { text-decoration: underline; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 10px 0 90px; }
.legal-content .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 36px; }
.legal-content h2 { margin-top: 42px; font-size: 1.28rem; }
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 { margin-top: 26px; font-size: 1.02rem; }
.legal-content p { color: var(--ink-soft); font-size: 0.98rem; }
.legal-content ul { margin: 10px 0 22px; padding-left: 22px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; color: var(--ink-soft); font-size: 0.95rem; }
.legal-content strong { color: var(--ink); }
.legal-callout { background: var(--primary-light); border: 1px solid rgba(11,76,122,0.15); border-radius: var(--radius); padding: 18px 22px; margin: 22px 0; font-size: 0.92rem; color: var(--ink-soft); }
.legal-callout strong { color: var(--primary); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 100px 0 40px; text-align: left; }
.page-hero h1 { max-width: 20ch; margin-bottom: 20px; }
.page-hero p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.14rem; line-height: 1.6; }
.page-hero.center { text-align: center; }
.page-hero.center h1 { max-width: none; }
.page-hero.center .eyebrow { margin-left: auto; margin-right: auto; }
.page-hero.center p { max-width: 580px; margin: 0 auto; }

/* ---------- Pricing ---------- */
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent-gold); color: #2A2110; font-size: 0.72rem; font-weight: 800; padding: 5px 14px; border-radius: 100px; letter-spacing: 0.03em; }
.price-tier-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 10px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price .num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.price .per { font-size: 0.9rem; color: var(--muted); }
.pricing-card .desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 24px; }
.pricing-features { margin: 0 0 28px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; padding: 8px 0; border-top: 1px solid var(--border); }
.pricing-features li:first-child { border-top: none; }
.check { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--font-heading); font-weight: 700; color: var(--ink); gap: 20px; }
.faq-q .plus { font-size: 1.4rem; color: var(--primary); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--muted); font-size: 0.94rem; }
.faq-item.open .faq-a { max-height: 300px; margin-top: 12px; }

/* ---------- Values / about ---------- */
.value-card { text-align: left; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: flex-start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1.5px solid var(--border);
  font-family: var(--font-body); font-size: 0.94rem; color: var(--ink); background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.contact-info-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.contact-info-card h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--ink); }
.contact-info-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ---------- Problem / warning variant ---------- */
.icon-tile.warn { background: #FBE9E9; color: #C24545; }
.card.warn { border-color: #F3D3D3; }

/* ---------- Calendar mockup ---------- */
.cal-slot { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; border-radius: 9px; font-size: 0.82rem; margin-bottom: 8px; }
.cal-slot:last-child { margin-bottom: 0; }
.cal-slot.booked { background: var(--primary-light); }
.cal-slot.open { border: 1.5px dashed var(--border); }
.cal-slot .time { font-weight: 700; color: var(--ink); width: 76px; flex-shrink: 0; }
.cal-slot .who { color: var(--muted); flex: 1; }
.cal-slot .badge { font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; flex-shrink: 0; }
.cal-slot.booked .badge { background: var(--primary); color: #fff; }
.cal-slot.open .badge { background: var(--surface-alt); color: var(--muted); }

/* ---------- Revenue calculator ---------- */
.calc-wrap { max-width: 900px; margin: 0 auto; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 760px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-inputs .form-field label { display: flex; justify-content: space-between; align-items: baseline; }
.calc-inputs .form-field label span.val { font-family: var(--font-heading); color: var(--primary); font-weight: 800; }
.calc-note { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }
.calc-result { text-align: center; background: var(--surface-alt); border-radius: var(--radius); padding: 30px 24px; }
.calc-result .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.calc-result .amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.calc-result .detail { font-size: 0.85rem; color: var(--muted); margin-top: 6px; margin-bottom: 20px; }
input[type="range"] { width: 100%; accent-color: var(--primary); }

/* ---------- Package Builder ---------- */
.builder-standard { background: var(--surface); border: 1.5px solid var(--primary); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 44px; }
.builder-standard-head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.builder-standard-head h3 { margin-bottom: 4px; }
.builder-standard-head .note { font-size: 0.85rem; color: var(--muted); margin: 0; }
.builder-standard-price { text-align: right; }
.builder-standard-price .num { font-family: var(--font-heading); font-weight: 800; font-size: 1.7rem; color: var(--primary); line-height: 1.2; }
.builder-standard-price .per { font-size: 0.8rem; color: var(--muted); }
.builder-standard-price .setup { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.builder-standard-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 760px) { .builder-standard-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .builder-standard-list { grid-template-columns: 1fr; } }
.builder-standard-list li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--ink-soft); }
.builder-standard-list li::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; }

.builder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .builder-grid { grid-template-columns: 1fr; } }
.builder-col-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.builder-col-head h4 { margin: 0; font-size: 1.02rem; }
.builder-col-head .count { font-size: 0.8rem; color: var(--muted); }
.builder-clear { background: none; border: none; color: var(--primary); font-size: 0.82rem; font-weight: 700; cursor: pointer; padding: 4px 8px; }
.builder-clear:hover { text-decoration: underline; }

.addon-pool { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 12px; min-height: 260px; }
.addon-box {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; cursor: grab; user-select: none; box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, border-color .15s ease, opacity .15s ease, transform .15s ease;
  flex: 1 1 calc(50% - 12px); min-width: 168px;
}
.addon-box:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.addon-box:active { cursor: grabbing; }
.addon-box.dragging { opacity: 0.4; }
.addon-box .addon-name { font-weight: 700; color: var(--ink); font-size: 0.88rem; margin-bottom: 4px; line-height: 1.3; }
.addon-box .addon-price { font-size: 0.8rem; color: var(--primary); font-weight: 800; }

.builder-dropzone {
  min-height: 260px; border: 2px dashed var(--border); border-radius: var(--radius-lg);
  background: var(--surface-alt); padding: 18px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.builder-dropzone.dragover { border-color: var(--primary); background: var(--primary-light); }
.builder-dropzone .addon-box { flex: none; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.builder-dropzone .addon-box .addon-remove { background: none; border: none; color: var(--muted); font-size: 1.2rem; line-height: 1; cursor: pointer; padding: 2px 8px; border-radius: 6px; flex-shrink: 0; }
.builder-dropzone .addon-box .addon-remove:hover { background: #fff; color: var(--danger); }
.builder-dropzone-empty { margin: auto; text-align: center; color: var(--muted); font-size: 0.9rem; padding: 24px; }

.builder-summary { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius-lg); padding: 36px; color: #fff; margin-top: 40px; }
.builder-summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.14); font-size: 0.95rem; gap: 12px; }
.builder-summary-row .label { color: #C7DCEB; }
.builder-summary-row .value { font-weight: 700; text-align: right; }
.builder-summary-totals { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 600px) { .builder-summary-totals { grid-template-columns: 1fr; } }
.builder-total-card { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px 22px; }
.builder-total-card .t-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #C7DCEB; margin-bottom: 6px; }
.builder-total-card .t-amount { font-family: var(--font-heading); font-weight: 800; font-size: 1.9rem; }
.builder-summary .setup-note { font-size: 0.82rem; color: #C7DCEB; margin-top: 18px; }

/* ---------- Insight callout (mechanism-based, non-fear) ---------- */
.insight-callout { background: var(--primary-light); border: 1px solid rgba(11,76,122,0.15); border-radius: var(--radius); padding: 16px 20px; margin-top: 20px; font-size: 0.9rem; color: var(--ink-soft); }
.insight-callout strong { color: var(--primary); }

/* ---------- AI badges & mockups ---------- */
.ai-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-heading);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent-mint));
  color: #fff;
  white-space: nowrap;
}
.ai-tag svg { width: 11px; height: 11px; flex-shrink: 0; }
.eyebrow-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.eyebrow-row .eyebrow { margin-bottom: 0; }
.icon-tile.ai { background: linear-gradient(135deg, var(--primary), var(--accent-mint)); color: #fff; }

.ai-chat { display: flex; flex-direction: column; gap: 12px; }
.ai-bubble { max-width: 80%; padding: 11px 15px; border-radius: 16px; font-size: 0.85rem; line-height: 1.45; }
.ai-bubble.user { align-self: flex-end; background: var(--primary-light); color: var(--ink); border-bottom-right-radius: 4px; }
.ai-bubble.bot { align-self: flex-start; background: var(--surface-alt); color: var(--ink); border-bottom-left-radius: 4px; border: 1px solid var(--border); }
.ai-bubble.bot .ai-label { display: inline-flex; align-items: center; gap: 4px; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); margin-bottom: 5px; }
.ai-bubble .typing-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-mint); margin-right: 3px; }

/* ---------- Hero photo ---------- */
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-float-card {
  position: absolute; left: -22px; bottom: -22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-float-card .stars { color: var(--accent-gold); font-size: 0.85rem; line-height: 1; }
.hero-float-card .num { font-family: var(--font-heading); font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.hero-float-card .label { font-size: 0.72rem; color: var(--muted); }
@media (max-width: 900px) { .hero-float-card { left: 12px; bottom: -18px; } }

/* ---------- CRM live demo (animated kanban) ---------- */
.crm-demo .mockup-body { position: relative; padding-bottom: 40px; }
.kanban-card { transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s ease; }
.kanban-card.moving { transform: scale(1.06); box-shadow: var(--shadow-lg); position: relative; z-index: 5; }
@keyframes cardLand { 0% { transform: scale(1.08); } 55% { transform: scale(0.97); } 100% { transform: scale(1); } }
.kanban-card.landed { animation: cardLand .4s ease; }
.workflow-toast {
  position: absolute; left: 50%; bottom: 10px; transform: translate(-50%, 12px);
  background: var(--primary-dark); color: #fff; font-size: 0.8rem; font-weight: 700;
  padding: 10px 18px; border-radius: 100px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease;
  white-space: nowrap;
}
.workflow-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Photo gallery ---------- */
.photo-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/5; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.photo-card:hover img { transform: scale(1.05); }
.photo-card .photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(6,42,69,0.82), transparent);
  color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
}

/* ---------- Booking & calendar sync mockup ---------- */
.booking-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.booking-title { font-family: var(--font-heading); font-weight: 800; color: var(--ink); font-size: 1rem; }
.booking-sub { font-size: 0.8rem; color: var(--muted); }
.booking-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 18px; }
.slot {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: var(--ink-soft);
  background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 10px;
  cursor: default; transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.slot.selected { background: var(--primary); border-color: var(--primary); color: #fff; }
.booking-form { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 16px; }
.booking-form .form-field { margin-bottom: 12px; }
.booking-form .form-field label { font-size: 0.72rem; margin-bottom: 4px; }
.booking-form .form-field input { padding: 9px 12px; font-size: 0.85rem; background: var(--surface-alt); cursor: default; }
.booking-confirm {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--ink);
  background: var(--primary-light); border-radius: 10px; padding: 10px 12px; margin-bottom: 14px;
}
.check-badge { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 0.68rem; flex-shrink: 0; }
.calendar-sync-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sync-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--muted); background: var(--surface-alt); border: 1px solid var(--border); border-radius: 100px; padding: 5px 10px; }
.sync-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-mint); box-shadow: 0 0 0 3px rgba(34,184,217,0.18); animation: syncPulse 1.8s ease-in-out infinite; }
@keyframes syncPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Booking-widget-to-calendar demo ---------- */
.booking-calendar-demo .mockup-body { position: relative; padding: 0; height: 580px; overflow: hidden; }
.booking-calendar-demo .bcd-stage { position: absolute; inset: 0; padding: 20px; box-sizing: border-box; }
.bcd-widget-head { margin-bottom: 16px; }
.bcd-service { font-family: var(--font-heading); font-weight: 800; color: var(--ink); font-size: 0.92rem; margin-bottom: 3px; }
.bcd-duration { font-size: 0.76rem; color: var(--muted); }
.bcd-cal-month { display: flex; align-items: center; justify-content: center; gap: 16px; font-weight: 700; font-size: 0.84rem; color: var(--ink); margin-bottom: 12px; }
.bcd-nav { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border: 1px solid var(--border); border-radius: 6px; color: var(--muted); font-size: 0.8rem; }
.bcd-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.62rem; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.bcd-cal-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 18px; }
.bcd-date { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; border-radius: 50%; color: var(--ink-soft); }
.bcd-date.avail { background: var(--primary-light); color: var(--primary); font-weight: 700; }
.bcd-date.muted { color: #C7D2DA; }
.bcd-date.empty { visibility: hidden; }
.bcd-date.picked { background: var(--primary); color: #fff; font-weight: 700; box-shadow: 0 0 0 4px rgba(11,76,122,0.16); }
.bcd-slots { display: flex; flex-direction: column; gap: 8px; }
.bcd-slot { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; color: var(--primary); background: #fff; border: 1.5px solid var(--primary-light); border-radius: 9px; padding: 9px; text-align: center; transition: background .3s ease, color .3s ease, transform .3s ease; }
.bcd-slot.selected { background: var(--primary); color: #fff; transform: scale(1.02); box-shadow: var(--shadow); }

.bcd-stage-calendar { display: none; flex-direction: column; justify-content: center; opacity: 0; transition: opacity .35s ease; }
.bcd-cal-header { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 700; color: var(--ink); background: var(--primary-light); border-radius: 10px; padding: 10px 12px; margin-bottom: 14px; }
.bcd-agenda-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-top: 1px solid var(--border); }
.bcd-agenda-row:first-child { border-top: none; }
.bcd-agenda-time { width: 62px; flex-shrink: 0; font-size: 0.74rem; color: var(--muted); font-weight: 700; }
.bcd-agenda-slot { flex: 1; min-height: 26px; border-radius: 8px; display: flex; align-items: center; padding: 0 10px; font-size: 0.76rem; font-weight: 700; }
.bcd-agenda-slot.bcd-busy { background: var(--surface-alt); color: var(--muted); }
.bcd-agenda-slot.bcd-new { background: var(--primary); color: #fff; transform: scaleX(0); transform-origin: left; animation: bcdPlot .5s ease forwards; }
@keyframes bcdPlot { to { transform: scaleX(1); } }

/* ---------- "24 hours" countdown hero ---------- */
.hours-hero {
  background-color: var(--bg);
  background-image: var(--dot-grid-dark);
  background-size: 30px 30px;
  border-bottom: 1px solid var(--border);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.hours-hero::before {
  content: "";
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,184,217,0.14), transparent 70%);
  pointer-events: none;
}
.hours-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}
.hours-count {
  display: flex;
  align-items: flex-end;
  gap: 0.14em;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
  line-height: 0.86;
  letter-spacing: -0.035em;
  font-size: clamp(6rem, 26vw, 20rem);
}
.nf { display: inline-flex; overflow: hidden; }
.nf-digit {
  display: block;
  height: 1em;
  overflow: hidden;
  min-width: 0.60em;
  text-align: center;
}
.nf-digit.entering { animation: nfDigitIn .45s cubic-bezier(.22,1,.36,1); }
@keyframes nfDigitIn {
  from { opacity: 0; transform: translateY(0.16em); }
  to   { opacity: 1; transform: translateY(0); }
}
.nf-col {
  display: flex;
  flex-direction: column;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.nf-col span {
  display: flex;
  height: 1em;
  align-items: center;
  justify-content: center;
}
.hours-unit {
  margin-bottom: 0.14em;
  font-size: clamp(1.5rem, 4.6vw, 3.4rem);
  font-weight: 700;
  color: var(--accent-mint);
  letter-spacing: 0.22em;
  padding-left: 0.22em;
  text-transform: lowercase;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.hours-unit.show { opacity: 1; transform: translateY(0); }
.hours-caption {
  margin: 30px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--muted);
  max-width: 22ch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease .05s, transform .5s ease .05s;
}
.hours-caption.show { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .nf-col { transition: none; }
  .nf-digit.entering { animation: none; }
  .hours-unit, .hours-caption { transition: none; opacity: 1; transform: none; }
}

/* ---------- Website preview mockup ---------- */
.site-preview { font-size: 0.8rem; }
.site-preview .sp-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.site-preview .sp-logo { font-family: var(--font-heading); font-weight: 800; color: var(--ink); font-size: 0.9rem; }
.site-preview .sp-nav { display: flex; gap: 10px; }
.site-preview .sp-nav span { width: 32px; height: 7px; border-radius: 100px; background: var(--surface-alt); }
.site-preview .sp-nav span:last-child { width: 50px; background: var(--primary); }
.site-preview .sp-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; align-items: center; margin-bottom: 18px; }
.site-preview .sp-line { height: 11px; border-radius: 6px; background: var(--surface-alt); margin-bottom: 8px; }
.site-preview .sp-line.lg { height: 16px; background: #D6E2EB; }
.site-preview .sp-line.w80 { width: 80%; }
.site-preview .sp-line.w60 { width: 60%; }
.site-preview .sp-line.w40 { width: 40%; }
.site-preview .sp-btn {
  display: inline-block; margin-top: 12px; padding: 8px 18px; border-radius: 100px;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 0.7rem;
}
.site-preview .sp-img { aspect-ratio: 4 / 3; border-radius: 10px; background: linear-gradient(135deg, var(--primary-light), var(--accent-gold-light)); }
.site-preview .sp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.site-preview .sp-card { border: 1px solid var(--border); border-radius: 10px; padding: 11px; }
.site-preview .sp-card .sp-dot { width: 20px; height: 20px; border-radius: 6px; background: var(--primary-light); margin-bottom: 9px; }

/* ---------- Process track (InventorSoft-style connector diagram) ---------- */
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.process-track::before {
  content: ""; position: absolute; left: 19px; right: 19px; top: 19px;
  border-top: 2px dashed var(--border);
  z-index: 0;
}
@media (max-width: 780px) { .process-track { grid-template-columns: 1fr 1fr; } .process-track::before { display: none; } }
@media (max-width: 460px) { .process-track { grid-template-columns: 1fr; } }
.process-step { position: relative; z-index: 1; padding-top: 54px; }
.process-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 7px var(--bg);
}
.section-alt .process-step::before { box-shadow: 0 0 0 7px var(--surface-alt); }
.process-step h4 { margin-bottom: 8px; font-size: 1.08rem; }
.process-step p { color: var(--muted); font-size: 0.94rem; margin: 0; line-height: 1.6; }

/* ---------- Partner / white-label steps ---------- */
.partner-flow { display: flex; flex-direction: column; gap: 14px; }
.partner-flow li {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
}
.partner-flow .pf-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
}
.partner-flow strong { display: block; font-family: var(--font-heading); color: var(--ink); margin-bottom: 3px; }
.partner-flow span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Contact form ---------- */
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-block { margin-top: 4px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.mini-badge {
  display: flex; align-items: baseline; gap: 11px;
  font-size: 1rem; font-weight: 500; color: var(--ink-soft);
  background: none; padding: 0; border-radius: 0; line-height: 1.5;
}
.mini-badge::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.badge-row .mini-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 6px 12px; border-radius: 7px; }
.badge-row .mini-badge::before { content: none; }
