/* Brispe AI — site styles. One committed light identity with deep-teal bands. */
:root {
  --ink: #0b1f1c;
  --ink-2: #41605a;
  --ink-3: #6f8a85;
  --paper: #f5faf8;
  --surface: #ffffff;
  --line: #dfebe7;
  --brand: #008069;
  --brand-2: #1daa61;
  --glow: #3ddc84;
  --mint: #d8fdd2;
  --mint-2: #eafaf1;
  --deep: #062b27;
  --deep-2: #0a3a34;
  --deep-line: rgba(184, 245, 210, 0.14);
  --on-deep: #e8f7f1;
  --on-deep-2: #a9c9c1;
  --wall: #efeae2;
  --bubble-out: #d9fdd3;
  --tick: #53bdeb;
  --warn: #e9a23b;
  --danger: #ea0038;

  --display: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-1: 0 1px 2px rgba(6, 43, 39, 0.06), 0 8px 24px rgba(6, 43, 39, 0.06);
  --shadow-2: 0 2px 6px rgba(6, 43, 39, 0.08), 0 24px 60px rgba(6, 43, 39, 0.14);
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--glow); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--mint); color: var(--deep); }

h1, h2, h3, h4 { font-family: var(--display); color: inherit; margin: 0; text-wrap: balance; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.35rem, 5.4vw, 4.1rem); line-height: 1.04; font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.8rem); line-height: 1.1; font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--ink-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 0.78rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 4px rgba(29, 170, 97, 0.18); }
.deep .eyebrow { color: var(--glow); }
.hl { background: linear-gradient(100deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.deep .hl { background: linear-gradient(100deg, #8ff0b8, var(--glow)); -webkit-background-clip: text; background-clip: text; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(44px, 6vw, 72px); }
.section-head { display: grid; gap: 14px; max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.deep { background: var(--deep); color: var(--on-deep); position: relative; isolation: isolate; }
.deep .lead, .deep .muted { color: var(--on-deep-2); }
.white { background: var(--surface); }
.stack { display: grid; gap: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg); font: 700 1rem/1 var(--display);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 128, 105, 0.28); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-glow { --bg: var(--glow); --fg: var(--deep); }
.btn-glow:hover { box-shadow: 0 10px 34px rgba(61, 220, 132, 0.45); }
.btn-ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand); }
.deep .btn-ghost { --fg: var(--on-deep); box-shadow: inset 0 0 0 1.5px rgba(232, 247, 241, 0.28); }
.deep .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--glow); }
.btn-wa { --bg: #25d366; --fg: #062b27; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.link-arrow { font-weight: 700; font-family: var(--display); text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.link-arrow::after { content: "→"; transition: transform 0.2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 250, 248, 0.82);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, 0.9); }
.nav { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto 0 12px; padding: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button.menu-trigger {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 10px;
  color: var(--ink); text-decoration: none; font: 600 0.95rem/1 var(--display); background: none; border: 0; cursor: pointer;
}
.nav-links a:hover, .nav-links button.menu-trigger:hover, .nav-links a[aria-current="page"] { background: var(--mint-2); color: var(--brand); }
.menu-trigger svg { width: 14px; height: 14px; transition: transform 0.2s; }
.has-menu:hover .menu-trigger svg, .has-menu:focus-within .menu-trigger svg { transform: rotate(180deg); }
.mega {
  position: absolute; left: -12px; top: calc(100% + 8px); width: 560px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.2s var(--ease);
}
.mega::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.has-menu:hover .mega, .has-menu:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega a { display: grid; grid-template-columns: 40px 1fr; gap: 2px 12px; padding: 12px; align-items: start; border-radius: 12px; }
.mega a:hover { background: var(--mint-2); color: var(--ink); }
.mega .ico { grid-row: span 2; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--mint-2); color: var(--brand); }
.mega .ico svg { width: 22px; height: 22px; }
.mega strong { font: 700 0.95rem/1.3 var(--display); }
.mega small { font: 400 0.84rem/1.4 var(--body); color: var(--ink-2); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-cta .btn { min-height: 42px; padding: 0 18px; font-size: 0.92rem; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 2px; background: var(--ink); margin: auto; position: relative; transition: 0.25s; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
.drawer { display: none; }

@media (max-width: 1020px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta { margin-left: 0; }
  .drawer {
    display: block; position: fixed; inset: 72px 0 0; z-index: 49; overflow-y: auto;
    background: var(--surface); padding: 12px var(--gutter) 40px;
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: 0.25s var(--ease);
  }
  .nav-open .drawer { transform: none; opacity: 1; visibility: visible; }
  .drawer a { display: flex; gap: 12px; align-items: center; padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font: 600 1.05rem/1.3 var(--display); }
  .drawer .group-label { font: 600 0.72rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); padding: 22px 4px 6px; }
  .drawer .btn { width: 100%; margin-top: 20px; }
}
@media (max-width: 520px) { .nav-cta .btn { display: none; } .brand img { height: 30px; } }

/* ---------- Hero ---------- */
.hero { overflow: hidden; padding-block: clamp(56px, 8vw, 104px) clamp(64px, 9vw, 120px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-block: 18px 22px; }
.hero .btn-row { margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: 0.92rem; color: var(--on-deep-2); display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 16px; height: 16px; color: var(--glow); }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg::before {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 220, 132, 0.22), transparent 62%);
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--deep-line) 1px, transparent 1px), linear-gradient(90deg, var(--deep-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 10%, transparent 70%);
}
@keyframes drift { to { transform: translate(-120px, 80px) scale(1.1); } }
.page-hero { padding-block: clamp(56px, 7vw, 96px); overflow: hidden; }
.page-hero .lead { margin-top: 18px; }
.page-hero .btn-row { margin-top: 28px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- Phone + live chat demo ---------- */
.stage { position: relative; display: grid; place-items: center; min-height: 600px; }
.phone {
  position: relative; width: min(330px, 86vw); aspect-ratio: 9 / 19; border-radius: 46px; padding: 11px;
  background: linear-gradient(145deg, #1d2b29, #050c0b); box-shadow: var(--shadow-2), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; width: 88px; height: 22px; transform: translateX(-50%); background: #050c0b; border-radius: 20px; z-index: 3; }
.phone-screen { position: relative; height: 100%; border-radius: 36px; overflow: hidden; background: var(--wall); display: flex; flex-direction: column; }
.phone-screen > img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.wa-top { display: flex; align-items: center; gap: 10px; padding: 44px 14px 10px; background: #fff; border-bottom: 1px solid #e9edef; }
.wa-top .av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #e3f6ec; color: var(--brand); font: 700 0.9rem var(--display); flex: none; }
.wa-top b { display: block; font: 700 0.92rem/1.2 var(--body); color: #111b21; }
.wa-top small { display: block; font-size: 0.72rem; color: #667781; }
.wa-top .status-dot { color: var(--brand-2); }
.wa-body {
  flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; justify-content: flex-end;
  background-color: var(--wall);
  background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 14px 14px;
}
.msg {
  max-width: 82%; padding: 7px 9px 6px; border-radius: 10px; font: 400 0.84rem/1.38 var(--body); color: #111b21;
  box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13); position: relative; animation: pop 0.35s var(--ease) both;
}
.msg.in { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.msg.out { background: var(--bubble-out); align-self: flex-end; border-top-right-radius: 2px; }
.msg .who { display: flex; align-items: center; gap: 4px; font: 700 0.72rem/1.2 var(--body); color: var(--brand); margin-bottom: 2px; }
.msg .who svg { width: 12px; height: 12px; }
.msg .meta { float: right; margin: 6px 0 -3px 10px; display: inline-flex; align-items: center; gap: 3px; font-size: 0.66rem; color: #667781; }
.msg .meta svg { width: 15px; height: 15px; }
.msg .tick { color: #8696a0; transition: color 0.4s; }
.msg .tick.read { color: var(--tick); }
.msg .doc { display: flex; gap: 8px; align-items: center; background: rgba(0, 0, 0, 0.05); border-radius: 7px; padding: 7px; margin-bottom: 4px; }
.msg .doc i { width: 26px; height: 30px; border-radius: 3px; background: #e5252a; color: #fff; font: 700 0.55rem/30px var(--body); text-align: center; font-style: normal; flex: none; }
.msg .doc b { font-weight: 600; font-size: 0.78rem; }
.msg .voice { display: flex; align-items: center; gap: 8px; min-width: 170px; }
.msg .voice .play { width: 28px; height: 28px; border-radius: 50%; background: var(--brand-2); display: grid; place-items: center; color: #fff; flex: none; }
.msg .voice .play svg { width: 14px; height: 14px; }
.msg .voice .wave { flex: 1; height: 20px; background: repeating-linear-gradient(90deg, #8696a0 0 2px, transparent 2px 5px); mask: linear-gradient(#000, #000) center/100% 40%, radial-gradient(#000 0, #000 0); -webkit-mask: none; opacity: 0.7; border-radius: 2px; }
.typing { align-self: flex-start; background: #fff; border-radius: 10px; border-top-left-radius: 2px; padding: 10px 12px; display: inline-flex; gap: 4px; box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13); animation: pop 0.3s var(--ease) both; }
.typing.out { align-self: flex-end; background: var(--bubble-out); border-radius: 10px; border-top-right-radius: 2px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #8696a0; animation: dot 1.1s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes dot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
.wa-compose { display: flex; gap: 6px; padding: 8px; background: transparent; }
.wa-compose span { flex: 1; background: #fff; border-radius: 20px; padding: 9px 14px; font-size: 0.8rem; color: #8696a0; }
.wa-compose b { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-2); display: grid; place-items: center; color: #fff; }
.wa-compose b svg { width: 16px; height: 16px; }

.float-card {
  position: absolute; z-index: 4; background: rgba(255, 255, 255, 0.96); color: var(--ink); border-radius: 16px; padding: 14px 16px;
  box-shadow: var(--shadow-2); border: 1px solid var(--line); min-width: 210px;
  opacity: 0; transform: translateY(12px) scale(0.97); transition: 0.5s var(--ease);
}
.float-card.show { opacity: 1; transform: none; }
.float-card .fc-head { display: flex; align-items: center; gap: 8px; font: 700 0.78rem/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); }
.float-card .fc-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 0 rgba(29, 170, 97, 0.6); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(29, 170, 97, 0); } 100% { box-shadow: 0 0 0 0 rgba(29, 170, 97, 0); } }
.float-card dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; margin: 10px 0 0; font-size: 0.84rem; }
.float-card dt { color: var(--ink-3); }
.float-card dd { margin: 0; font-weight: 600; }
.fc-lead { right: -6%; top: 16%; }
.fc-follow { left: -8%; bottom: 14%; }
.fc-follow p { font-size: 0.84rem; margin-top: 6px; color: var(--ink-2); max-width: 220px; }
@media (max-width: 1100px) { .fc-lead { right: 0; } .fc-follow { left: 0; } }
@media (max-width: 560px) { .float-card { display: none; } .stage { min-height: 0; } }

/* Industry switcher */
.switcher { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.switcher button {
  border: 0; border-radius: 999px; padding: 10px 16px; font: 600 0.9rem/1 var(--display); cursor: pointer;
  background: rgba(232, 247, 241, 0.08); color: var(--on-deep); box-shadow: inset 0 0 0 1px rgba(232, 247, 241, 0.16); transition: 0.2s;
}
.switcher button:hover { box-shadow: inset 0 0 0 1px var(--glow); }
.switcher button[aria-pressed="true"] { background: var(--glow); color: var(--deep); box-shadow: none; }
.white .switcher button, .switcher.light button { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.white .switcher button[aria-pressed="true"], .switcher.light button[aria-pressed="true"] { background: var(--brand); color: #fff; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 30px); position: relative; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); }
.card.lift { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; }
.card.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.ico-badge { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--mint-2); color: var(--brand); margin-bottom: 18px; }
.ico-badge svg { width: 24px; height: 24px; }
.deep .card { background: var(--deep-2); border-color: var(--deep-line); }
.deep .card p { color: var(--on-deep-2); }
.deep .ico-badge { background: rgba(61, 220, 132, 0.12); color: var(--glow); }

.product-card { display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.product-card .pc-top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.product-card .price-tag { font: 700 0.82rem/1 var(--mono); color: var(--brand); background: var(--mint-2); padding: 7px 10px; border-radius: 999px; white-space: nowrap; }
.product-card ul { margin: 4px 0 8px; }
.product-card .link-arrow { margin-top: auto; }

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: var(--ink-2); }
.checks li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008069' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.deep .checks li { color: var(--on-deep-2); }
.deep .checks li::before { background-color: rgba(61, 220, 132, 0.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233ddc84' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }

/* Split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split + .split { margin-top: clamp(64px, 9vw, 120px); }
.split.flip > :first-child { order: 2; }
.split .copy { display: grid; gap: 16px; align-content: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.flip > :first-child { order: 0; } }
.shot-frame { position: relative; display: grid; place-items: center; padding: clamp(24px, 4vw, 48px); border-radius: 28px; background: linear-gradient(160deg, var(--mint-2), #dff3ea); overflow: hidden; }
.shot-frame::after { content: ""; position: absolute; inset: auto -20% -40% auto; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(29, 170, 97, 0.2), transparent 70%); }
.shot-frame .phone { width: min(290px, 70vw); z-index: 1; }
.deep .shot-frame { background: linear-gradient(160deg, var(--deep-2), #0d4a42); }

/* Steps (a real sequence, so numbered) */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before { content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.deep .steps::before { background: repeating-linear-gradient(90deg, var(--deep-line) 0 8px, transparent 8px 14px); }
.step { position: relative; display: grid; gap: 10px; align-content: start; }
.step .num { counter-increment: step; width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); font: 800 1.1rem var(--display); color: var(--brand); box-shadow: var(--shadow-1); }
.step .num::before { content: counter(step, decimal-leading-zero); }
.deep .step .num { background: var(--deep-2); border-color: var(--deep-line); color: var(--glow); box-shadow: none; }
.step p { color: var(--ink-2); font-size: 0.97rem; }
.deep .step p { color: var(--on-deep-2); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .steps::before { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Before/after comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare .card { display: grid; gap: 14px; align-content: start; }
.compare .tag { justify-self: start; font: 700 0.75rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; padding: 7px 10px; border-radius: 999px; }
.compare .before .tag { background: #fdecef; color: #b0002b; }
.compare .after .tag { background: var(--mint); color: #15603e; }
.compare .after { border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(29, 170, 97, 0.1); }
.xlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.xlist li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: var(--ink-2); }
.xlist li::before { content: "✕"; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: #fdecef; color: #b0002b; font-size: 0.7rem; font-weight: 800; margin-top: 2px; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--deep-line); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--deep-line); }
.stat { background: var(--deep); padding: clamp(20px, 3vw, 32px); display: grid; gap: 6px; }
.stat b { font: 800 clamp(1.9rem, 3.4vw, 2.7rem)/1 var(--display); color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.stat span { color: var(--on-deep-2); font-size: 0.95rem; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* Marquee of capabilities */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font: 600 0.92rem/1 var(--display); color: var(--ink); white-space: nowrap; }
.chip svg { width: 18px; height: 18px; color: var(--brand); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 1080px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }
.plan { display: flex; flex-direction: column; gap: 18px; }
.plan .plan-name { font: 700 1.05rem var(--display); }
.plan .price { display: flex; align-items: baseline; gap: 6px; }
.plan .price b { font: 800 2.6rem/1 var(--display); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan .price span { color: var(--ink-3); }
.plan .quota { font: 600 0.85rem/1.3 var(--mono); color: var(--brand); background: var(--mint-2); padding: 8px 10px; border-radius: 10px; }
.plan .btn { margin-top: auto; }
.plan.popular { border: 2px solid var(--brand-2); box-shadow: 0 20px 50px rgba(0, 128, 105, 0.16); }
.plan .ribbon { position: absolute; top: -13px; left: 24px; background: var(--brand-2); color: #fff; font: 700 0.72rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; }
.calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.calc .inputs { padding: clamp(22px, 3vw, 36px); display: grid; gap: 26px; }
.calc .result { background: var(--deep); color: var(--on-deep); padding: clamp(22px, 3vw, 36px); display: grid; gap: 14px; align-content: start; }
.calc label { display: flex; justify-content: space-between; gap: 10px; font: 600 0.95rem var(--display); }
.calc output { font: 700 0.95rem var(--mono); color: var(--brand); }
.calc input[type="range"] { width: 100%; accent-color: var(--brand); height: 28px; }
.calc .seg { display: flex; flex-wrap: wrap; gap: 8px; }
.calc .seg button { border: 1px solid var(--line); background: var(--surface); padding: 10px 14px; border-radius: 12px; font: 600 0.9rem var(--display); cursor: pointer; }
.calc .seg button[aria-pressed="true"] { border-color: var(--brand); background: var(--mint-2); color: var(--brand); }
.calc .total { font: 800 clamp(2.2rem, 4vw, 3rem)/1 var(--display); color: #fff; font-variant-numeric: tabular-nums; }
.calc .rows { display: grid; gap: 8px; font-size: 0.95rem; }
.calc .rows div { display: flex; justify-content: space-between; gap: 12px; color: var(--on-deep-2); border-bottom: 1px dashed var(--deep-line); padding-bottom: 8px; }
.calc .rows b { color: #fff; font-variant-numeric: tabular-nums; }
.calc .hint { font-size: 0.88rem; color: var(--on-deep-2); }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }

/* Table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.95rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
th { font: 700 0.85rem var(--display); background: var(--mint-2); }
td:not(:first-child), th:not(:first-child) { text-align: center; }
tr:last-child td { border-bottom: 0; }
.yes { color: var(--brand-2); font-weight: 800; }
.no { color: var(--ink-3); }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 0 22px; transition: border-color 0.2s; }
.faq details[open] { border-color: var(--brand-2); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; font: 700 1.02rem/1.4 var(--display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 1.5rem/1 var(--body); color: var(--brand); transition: transform 0.25s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 20px; color: var(--ink-2); }
.faq details p + p { margin-top: -8px; }

/* CTA band */
.cta-band { border-radius: 32px; padding: clamp(36px, 6vw, 72px); background: radial-gradient(ellipse at 90% 0%, rgba(61, 220, 132, 0.28), transparent 55%), var(--deep); color: var(--on-deep); display: grid; grid-template-columns: 1.3fr auto; gap: 32px; align-items: center; overflow: hidden; position: relative; }
.cta-band p { color: var(--on-deep-2); margin-top: 12px; max-width: 56ch; }
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font: 600 0.9rem var(--display); }
.field input, .field select, .field textarea {
  font: 400 1rem var(--body); color: var(--ink); background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 14px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0, 128, 105, 0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.contact-line { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-line .ico-badge { margin: 0; width: 44px; height: 44px; }
.contact-line a, .contact-line b { font: 700 1rem var(--display); color: var(--ink); text-decoration: none; }
.contact-line small { display: block; color: var(--ink-3); font-size: 0.85rem; }

/* Dashboard mock (illustrative UI with example data) */
.dash { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-2); font-size: 0.86rem; }
.dash-bar { display: flex; gap: 6px; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--line); background: #fbfdfc; }
.dash-bar i { width: 10px; height: 10px; border-radius: 50%; background: #e3e8e6; }
.dash-bar span { margin-left: 10px; font: 500 0.75rem var(--mono); color: var(--ink-3); background: var(--paper); padding: 5px 10px; border-radius: 8px; flex: 1; max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-body { display: grid; grid-template-columns: 170px 1fr; min-height: 340px; }
.dash-side { border-right: 1px solid var(--line); padding: 14px 10px; display: grid; gap: 4px; align-content: start; background: #fbfdfc; }
.dash-side div { padding: 8px 10px; border-radius: 8px; color: var(--ink-2); font-weight: 500; display: flex; gap: 8px; align-items: center; }
.dash-side div.on { background: var(--mint-2); color: var(--brand); font-weight: 700; }
.dash-side svg { width: 16px; height: 16px; }
.dash-main { padding: 16px; display: grid; gap: 12px; align-content: start; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.kpi small { color: var(--ink-3); font-size: 0.72rem; display: block; }
.kpi b { font: 800 1.3rem var(--display); font-variant-numeric: tabular-nums; }
.kpi em { font-style: normal; font-size: 0.72rem; color: var(--brand-2); font-weight: 700; }
.spark { height: 90px; border: 1px solid var(--line); border-radius: 12px; padding: 8px; }
.spark svg { width: 100%; height: 100%; }
.dash-row { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 10px; align-items: center; padding: 9px 10px; border: 1px solid var(--line); border-radius: 10px; }
.pill { font: 700 0.68rem/1 var(--mono); padding: 5px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.pill.ok { background: var(--mint); color: #15603e; }
.pill.warn { background: #fdf1dc; color: #8a5a00; }
.pill.info { background: #e1f1fb; color: #03608a; }
.example-note { font: 500 0.78rem var(--mono); color: var(--ink-3); margin-top: 10px; text-align: center; }
.deep .example-note { color: var(--on-deep-2); }
@media (max-width: 640px) { .dash-body { grid-template-columns: 1fr; } .dash-side { display: none; } .kpis { grid-template-columns: 1fr 1fr; } }

/* Task card (Team Manager) */
.task-flow { display: grid; gap: 10px; }

/* Footer */
.site-footer { background: var(--deep); color: var(--on-deep-2); padding-block: 72px 28px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--on-deep-2); text-decoration: none; }
.site-footer a:hover { color: var(--glow); }
.site-footer .brand img { height: 34px; }
.site-footer .about { margin-top: 16px; max-width: 34ch; font-size: 0.95rem; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--deep-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.88rem; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > :first-child { grid-column: 1 / -1; } }

/* Floating WhatsApp button */
.wa-fab { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); transition: transform 0.25s var(--ease); }
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::after { content: attr(data-label); position: absolute; right: 70px; white-space: nowrap; background: var(--ink); color: #fff; font: 600 0.82rem var(--display); padding: 8px 12px; border-radius: 10px; opacity: 0; transform: translateX(6px); transition: 0.2s; pointer-events: none; }
.wa-fab:hover::after { opacity: 1; transform: none; }

/* Scroll reveal: content is visible by default; JS opts elements into the animation. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.08s; }
.js .reveal.d2 { transition-delay: 0.16s; }
.js .reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
.center { text-align: center; }
.mt-s { margin-top: 12px; } .mt { margin-top: 24px; } .mt-l { margin-top: 48px; }

/* Photo sent by a customer in the demo */
.msg .photo { width: 150px; height: 110px; border-radius: 7px; margin-bottom: 4px; background: linear-gradient(135deg, #2f4f8f, #5b7fd1 45%, #c9d6f2); position: relative; overflow: hidden; }
.msg .photo::after { content: ""; position: absolute; left: 50%; top: 18%; width: 46%; height: 70%; transform: translateX(-50%); background: #1d2f5c; border-radius: 40% 40% 6px 6px / 22% 22% 6px 6px; box-shadow: inset 0 -30px 0 rgba(255,255,255,0.06); }

/* Day-in-the-life timeline (a real sequence of times) */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 88px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--glow), rgba(61, 220, 132, 0.1)); }
.timeline li { display: grid; grid-template-columns: 70px 36px 1fr; gap: 0 16px; align-items: start; padding-bottom: 28px; }
.timeline time { font: 700 0.9rem/1.6 var(--mono); color: var(--glow); text-align: right; font-variant-numeric: tabular-nums; }
.timeline .dot { width: 14px; height: 14px; margin: 5px 0 0 5px; border-radius: 50%; background: var(--deep); border: 3px solid var(--glow); position: relative; z-index: 1; }
.timeline h4 { color: #fff; margin-bottom: 4px; }
.timeline p { color: var(--on-deep-2); }
@media (max-width: 560px) {
  .timeline::before { left: 7px; }
  .timeline li { grid-template-columns: 24px 1fr; }
  .timeline time { grid-column: 2; text-align: left; order: -1; }
  .timeline .dot { grid-row: 1 / span 2; grid-column: 1; margin: 5px 0 0; }
}
.trust { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; justify-content: center; color: var(--ink-2); font: 600 0.92rem var(--display); }
.trust span { display: inline-flex; gap: 8px; align-items: center; }
.trust svg { width: 20px; height: 20px; color: var(--brand); }
.industry-card { display: flex; gap: 14px; align-items: flex-start; text-decoration: none; color: var(--ink); }
.industry-card .ico-badge { margin: 0; flex: none; }
.industry-card p { font-size: 0.93rem; }
/* App screenshots sit below a status-bar strip so the notch never covers them. */
.phone-screen > img { padding-top: 34px; background: #fff; object-fit: cover; object-position: top; }
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); }
.fc-lead { right: -16%; top: 1%; }
.fc-follow { left: -14%; bottom: -3%; }
.float-card { min-width: 0; width: 240px; }
@media (max-width: 1200px) { .fc-lead { right: -4%; } .fc-follow { left: -4%; } }
