/* Self-hosted (not the Google Fonts CDN link this site used to load): a
   third-party font request is a real single point of failure for the
   entire brand look — slow mobile networks, corporate/ad-block filter
   lists (many block fonts.googleapis.com/fonts.gstatic.com by default),
   or any connectivity hiccup all fall back to a generic system font with
   no way to recover, since nothing here ever re-checks. Each file below
   is the exact "latin" subset woff2 Google's own CSS served, just fetched
   once and committed instead of requested on every visit. font-weight is
   declared as the real range each file covers (Syne and DM Sans are
   variable fonts; Google's API repeats the identical file per static
   weight, so one @font-face with a range is equivalent and simpler). */
@font-face {
  font-family: 'Syne'; font-style: normal; font-weight: 700 800; font-display: swap;
  src: url('assets/fonts/syne-700-800.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans'; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url('assets/fonts/dm-sans-300-500.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
}

:root {
  --bg: #fafaf8;
  --ink: #0a0a0a;
  --gray: #6b6b68;
  --border: #e4e4e0;
  --green: #1f9d5c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--green); }

::selection { background: var(--green); color: #fff; }

img { max-width: 100%; }

.accent { color: var(--green); }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.hr { height: 1px; background: var(--border); margin-bottom: 24px; }
.section-dark .hr { background: rgba(255,255,255,0.08); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 130px 24px; }
.wrap-narrow { max-width: 1024px; }
.wrap-faq { max-width: 768px; }

.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}
.heading-lg { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.heading-xl { font-size: clamp(2.75rem, 7vw, 6rem); }
.section-head .eyebrow { margin-bottom: 24px; }
.section-head { margin-bottom: 80px; }
.section-sub {
  color: rgba(255,255,255,0.6);
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
}
.section-light .section-sub { color: var(--gray); }

.section-light { background: var(--bg); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--bg); }
.section-border { border-top: 1px solid var(--border); }
.section-dark.section-border { border-top: 1px solid rgba(255,255,255,0.08); }

.grid { display: grid; gap: 40px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 56px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(250,250,248,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 132px; width: auto; margin: -46px 0 -46px -22px; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links > a:not(.btn-nav) { font-size: 13px; font-weight: 500; color: rgba(10,10,10,0.7); }
.btn-nav {
  background: var(--ink); color: #fff !important;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: background .25s ease;
}
.btn-nav:hover { background: var(--green); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0; margin-left: auto;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 0 auto;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  /* Soft brand-green depth glows live here (not in the canvas) so the
     flow-field threads can fade over them with a transparent canvas. */
  background:
    radial-gradient(ellipse 42% 55% at 74% 42%, rgba(31,157,92,0.08), transparent 70%),
    radial-gradient(ellipse 30% 40% at 6% 92%, rgba(31,157,92,0.05), transparent 70%),
    var(--bg);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
/* Flowing green->blue ribbon along the bottom of the hero (drawn in JS). Sits
   behind the hero content; .hero-inner is position:relative so it paints above. */
#wave-canvas { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 52%; pointer-events: none; }
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 150px 24px 120px;
  /* Fill the viewport so the hero uses the whole page: with align-items:
     center below, the content spreads evenly instead of bunching at the top
     (which is what happened once the headline was scaled down). Reset in the
     <=1280px stacked layout, where forcing full height would leave a hole. */
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  display: grid;
  /* 8fr/4fr (was 7fr/5fr) gives the heading extra width margin against
     the phone graphic -- the phone itself is a fixed 320px wide and
     still fits comfortably within a 4fr share at any width this grid is
     actually used (see the 1280px breakpoint above). */
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: 64px;
  align-items: center;
}
.hero-inner > div:first-child {
  min-width: 0;
  /* Stretch the text column to the full section height and distribute the
     leftover space between eyebrow -> h1 -> sub -> CTAs (their margins act as
     minimum gaps), so the content genuinely uses the page instead of sitting
     as a centered block. A no-op in the stacked <=1280px layout, where the
     column is only as tall as its content. */
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-inner h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  /* Sized for the longer "Run your business smarter. Grow without the
     admin." headline: the original clamp(2.25rem, 7vw, 5.5rem) scale suited
     the old 4-word headline but sprawled this one over five lines and pushed
     the CTAs below the fold. Matches the /trades hero scale so both pages
     read the same. */
  /* Sized against REAL Syne metrics (avg ~0.63em/char at weight 800): the
     longest line, "Run your business smarter." (26 chars), must fit the
     ~778px text column of the two-column layout, which caps the font at
     ~47px. The previous 3.4rem cap fit only in fallback fonts (the headless
     verifier can't load Google Fonts) and wrapped to 4 ragged lines in
     production. text-wrap: balance is the safety net: if an odd zoom level
     still forces a wrap, the lines break evenly instead of orphaning a word. */
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
  overflow-wrap: break-word;
}
/* Generous vertical rhythm inside the hero — eyebrow, headline, paragraph
   and CTAs spaced out to use the full-height section rather than clustering. */
.hero-inner .eyebrow { margin-bottom: 30px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  background: rgba(31,157,92,0.08); border: 1px solid rgba(31,157,92,0.28);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(31,157,92,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .live-dot { animation: live-pulse 2.2s infinite; }
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,157,92,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(31,157,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,157,92,0); }
}
.hero-sub { margin: 52px 0 0; font-size: 20px; line-height: 1.7; color: var(--gray); font-weight: 300; max-width: 60ch; }
.hero-ctas { margin-top: 64px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff !important;
  padding: 16px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: filter .2s ease, transform .1s ease;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); padding: 16px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500; border: 1px solid var(--border);
  transition: background .2s ease;
}
.btn-secondary:hover { background: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); color: #fff !important;
  padding: 16px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: background .2s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }

.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff !important;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: filter .2s ease;
}
.btn-primary-sm:hover { filter: brightness(1.1); }

.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--ink) !important;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .2s ease;
}
.btn-outline-sm:hover { background: #fff; }

/* Phone mock */
.phone-wrap { justify-self: center; }
.phone { position: relative; width: 320px; }
.phone-shadow {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  width: 75%; height: 32px; background: rgba(0,0,0,0.2); filter: blur(24px); border-radius: 999px;
}
.phone-body {
  position: relative; border-radius: 44px; background: #000;
  padding: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35);
  animation: floatY 7s ease-in-out infinite;
}
.phone-screen { border-radius: 36px; overflow: hidden; background: #0a0a0a; height: 580px; display: flex; flex-direction: column; }
.phone-inner { flex: 1; min-height: 0; display: flex; flex-direction: column; opacity: 1; transition: opacity .35s ease; }
.phone-header { background: #075E54; color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.phone-header img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: #fff; flex-shrink: 0; display: block; }
.phone-title { font-size: 14px; font-weight: 500; line-height: 1.2; }
.phone-status { font-size: 11px; opacity: 0.8; line-height: 1.4; }
.phone-messages {
  flex: 1; min-height: 0; padding: 16px 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden;
  background-color: #ECE5DD;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 14px 14px;
}
.msg {
  max-width: 78%; padding: 8px 12px; border-radius: 8px; font-size: 13px; line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  opacity: 0; animation: msgIn .35s ease both;
}
.msg-in { align-self: flex-start; background: #fff; color: var(--ink); border-top-left-radius: 2px; }
.msg-out { align-self: flex-end; background: #DCF8C6; color: var(--ink); border-top-right-radius: 2px; }
.msg-time { text-align: right; font-size: 10px; color: rgba(0,0,0,0.45); margin-top: 4px; }
.msg-tick { color: #34B7F1; }
.msg-typing {
  align-self: flex-start; padding: 10px 14px; border-radius: 8px; background: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08); display: flex; gap: 4px; align-items: center;
  opacity: 0; animation: msgIn .35s ease both;
}
.msg-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.35); animation: blink 1.2s ease infinite; }
.msg-typing span:nth-child(2) { animation-delay: .2s; }
.msg-typing span:nth-child(3) { animation-delay: .4s; }

/* ---------- PHONE: email channel ---------- */
.mail-header { background: #fff; color: var(--ink); padding: 14px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.mail-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(31,157,92,0.12); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.mail-body { flex: 1; min-height: 0; padding: 16px 14px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; background: #f4f4f5; }
.mail-card { background: #fff; border-radius: 12px; padding: 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.06); opacity: 0; animation: msgIn .4s ease both; }
.mail-card.reply { background: rgba(31,157,92,0.08); border: 1px solid rgba(31,157,92,0.22); box-shadow: none; }
.mail-from { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.mail-sub { font-size: 11px; color: rgba(0,0,0,0.5); margin: 2px 0 8px; }
.mail-text { font-size: 12.5px; color: var(--ink); line-height: 1.45; }
.mail-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 500; color: var(--green); background: rgba(31,157,92,0.14); border-radius: 999px; padding: 2px 8px; margin-bottom: 8px; }
.mail-typing { align-self: flex-start; background: #fff; border-radius: 12px; padding: 12px 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 8px; opacity: 0; animation: msgIn .3s ease both; }
.mail-typing .dots { display: flex; gap: 4px; }
.mail-typing .dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.3); animation: blink 1.2s ease infinite; }
.mail-typing .dots span:nth-child(2) { animation-delay: .2s; }
.mail-typing .dots span:nth-child(3) { animation-delay: .4s; }
.mail-typing .lbl { font-size: 11px; color: rgba(0,0,0,0.45); }

/* ---------- PHONE: website chat channel ---------- */
.web-header { background: #0a0a0a; padding: 14px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.web-header .phone-title { color: #fff; }
.web-header .phone-status { color: rgba(255,255,255,0.4); opacity: 1; }
.web-avatar { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.web-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: #fff; display: block; }
.web-avatar .dot { position: absolute; bottom: -1px; right: -1px; width: 11px; height: 11px; border-radius: 50%; background: var(--green); border: 2px solid #0a0a0a; }
.web-body { flex: 1; min-height: 0; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; background: #0f0f10; }
.web-msg { max-width: 80%; padding: 8px 14px; border-radius: 16px; font-size: 13px; line-height: 1.5; opacity: 0; animation: msgIn .35s ease both; }
.web-in { align-self: flex-start; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border-bottom-left-radius: 6px; }
.web-out { align-self: flex-end; background: var(--green); color: #fff; border-bottom-right-radius: 6px; }
.web-typing { align-self: flex-start; background: rgba(255,255,255,0.08); padding: 11px 14px; border-radius: 16px; border-bottom-left-radius: 6px; display: flex; gap: 4px; align-items: center; opacity: 0; animation: msgIn .3s ease both; }
.web-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); animation: blink 1.2s ease infinite; }
.web-typing span:nth-child(2) { animation-delay: .2s; }
.web-typing span:nth-child(3) { animation-delay: .4s; }

/* ---------- PHONE: channel indicator ---------- */
.phone-tabs { flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px; background: #0a0a0a; }
.phone-dots { display: flex; align-items: center; gap: 6px; }
.phone-dot { height: 6px; width: 6px; border-radius: 999px; background: rgba(255,255,255,0.25); transition: all .3s ease; }
.phone-dot.active { width: 20px; background: var(--green); }
.phone-tab-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7); width: 92px; }

/* ---------- Hero automation hub ---------- */
.hub {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 1 / 1;
  margin: 0 auto; justify-self: center; container-type: inline-size;
}
.hub-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hub-ring {
  fill: none; stroke: rgba(31,157,92,0.16); stroke-width: 0.35; stroke-dasharray: 1.3 2.4;
  transform-box: fill-box; transform-origin: center;
}
.hub-ring.spin2 { stroke: rgba(37,99,235,0.14); }
.hub-line { fill: none; stroke-width: 0.5; stroke-dasharray: 1.6 2.2; stroke-linecap: round; }
.hub-line.g { stroke: rgba(31,157,92,0.50); }
.hub-line.b { stroke: rgba(37,99,235,0.45); }
.hub-dot.g { fill: var(--green); }
.hub-dot.b { fill: #2563eb; }
.hub-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 33%; aspect-ratio: 1; border-radius: 50%; background: #fff; z-index: 3;
  display: grid; place-items: center;
  box-shadow: 0 12px 44px rgba(31,157,92,0.20), 0 0 0 8px rgba(31,157,92,0.05);
}
.hub-core img { width: 64%; height: 64%; object-fit: contain; }
.hub-node {
  position: absolute; transform: translate(-50%,-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.hub-chip {
  width: 13cqw; height: 13cqw; min-width: 40px; min-height: 40px; max-width: 56px; max-height: 56px;
  border-radius: 50%; background: #fff; box-shadow: 0 6px 20px rgba(10,20,15,0.10);
  display: grid; place-items: center;
}
.hub-chip svg { width: 46%; height: 46%; }
.hub-node.g .hub-chip svg { color: var(--green); stroke: var(--green); }
.hub-node.b .hub-chip svg { color: #2563eb; stroke: #2563eb; }
.hub-lbl { font-size: clamp(10px, 3cqw, 12.5px); font-weight: 600; color: var(--ink); line-height: 1.1; text-align: center; white-space: nowrap; }

@media (prefers-reduced-motion: no-preference) {
  .hub-ring.spin1 { animation: hub-spin 46s linear infinite; }
  .hub-ring.spin2 { animation: hub-spin 62s linear infinite reverse; }
  .hub-line { animation: hub-flow 2.6s linear infinite; }
  .hub-dot  { animation: hub-blink 3s ease-in-out infinite; }
  .hub-core { animation: hub-pulse 4.5s ease-in-out infinite; }
  .hub-node { animation: hub-bob 6s ease-in-out infinite; }
  .hub-node:nth-child(4) { animation-delay: -1.5s; }
  .hub-node:nth-child(5) { animation-delay: -3s; }
  .hub-node:nth-child(6) { animation-delay: -1s; }
  .hub-node:nth-child(7) { animation-delay: -4s; }
  .hub-node:nth-child(8) { animation-delay: -2.5s; }
}
@keyframes hub-spin { to { transform: rotate(360deg); } }
@keyframes hub-flow { to { stroke-dashoffset: -3.8; } }
@keyframes hub-blink { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes hub-pulse {
  0%,100% { box-shadow: 0 12px 44px rgba(31,157,92,0.20), 0 0 0 8px rgba(31,157,92,0.05); }
  50%     { box-shadow: 0 14px 52px rgba(31,157,92,0.28), 0 0 0 14px rgba(31,157,92,0.07); }
}
@keyframes hub-bob {
  0%,100% { transform: translate(-50%,-50%); }
  50%     { transform: translate(-50%, calc(-50% - 4px)); }
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* .msg/.msg-typing/.mail-card/.web-msg start at opacity:0 and rely on the
   msgIn animation to reach opacity:1 — if that animation never runs (OS/
   browser "reduce motion" preference, or any other reason an animation
   might not fire), content is invisible forever with no fallback. This
   forces full visibility any time animations are reduced/disabled. */
@media (prefers-reduced-motion: reduce) {
  .msg, .msg-typing, .mail-card, .web-msg {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  .msg-typing span { animation: none !important; opacity: 1 !important; }
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- MARQUEE ---------- */
.marquee { background: var(--ink); overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-group {
  display: flex; gap: 48px; padding-right: 48px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap;
}
.marquee-group .dot { color: var(--green); }

/* ---------- PROBLEM CARDS ---------- */
.card-dark h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; line-height: 1.25; margin: 0 0 16px; }
.card-dark p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin: 0; }
.card-dark .eyebrow { margin-bottom: 20px; }

/* ---------- STATS ---------- */
.stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.stat-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-top: 16px; }

/* ---------- SERVICES ---------- */
.service-row { border-top: 1px solid var(--border); }
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 52px 16px; transition: background .3s ease;
}
.service-inner:hover { background: #fff; }
.service-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); padding-top: 8px; }
.service-inner h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 16px; color: var(--ink); }
.service-inner p { color: var(--gray); font-size: 17px; line-height: 1.7; margin: 0; max-width: 60ch; }

/* ---------- COMING SOON ---------- */
.coming-soon-head { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.coming-soon-head .rule { height: 1px; flex: 1; background: rgba(255,255,255,0.1); }
.coming-soon-cta { margin-top: 64px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.feature-icon { color: var(--green); font-size: 20px; margin-bottom: 14px; }
.feature-label { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }

/* ---------- PROCESS STEPS ---------- */
.step-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; margin: 0 0 12px; }
.step-desc { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---------- INDUSTRIES ---------- */
.industry-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.industry-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--ink); }
.industry-desc { color: var(--gray); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---------- PRICING ---------- */
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.plan { padding: 40px; display: flex; flex-direction: column; }
.plan-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.plan-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin: 0 0 24px; }
.plan-setup { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: -0.04em; line-height: 1; }
.plan-setup-label { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 6px; }
.plan-monthly { color: var(--green); font-size: 14px; font-weight: 500; margin: 4px 0 32px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.plan-feature span.check { color: var(--green); flex-shrink: 0; }
.plan-cta {
  display: block; text-align: center; padding: 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: #fff !important;
  transition: filter .2s ease, background .2s ease;
}
.plan-cta:hover { filter: brightness(1.15); }

/* ---------- Recent work / proof ---------- */
.work-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column;
}
.work-stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 14px; }
.work-quote { font-size: 16px; line-height: 1.6; margin: 0 0 20px; color: var(--ink); }
.work-who { display: flex; flex-direction: column; gap: 2px; font-size: 14px; margin-top: auto; }
.work-who strong { font-weight: 600; }
.work-who span { color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 4px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); transition: color .2s ease; }
.faq-plus { color: var(--green); font-size: 22px; font-weight: 300; transition: transform .25s ease; flex-shrink: 0; line-height: 1; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--green); }
.faq-item p { color: var(--gray); font-size: 15px; line-height: 1.7; margin: 0; padding: 0 4px 24px; max-width: 60ch; }

/* ---------- CTA ---------- */
.cta-section .wrap { text-align: center; }
.cta-inner { max-width: 900px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; margin: 0; }
.cta-sub { color: rgba(255,255,255,0.6); font-size: 20px; line-height: 1.7; margin: 40px auto 0; max-width: 55ch; }
.cta-ctas { margin-top: 56px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-tags {
  margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* ---------- FOOTER ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer .wrap { padding: 96px 24px 32px; }
.footer-top { display: grid; grid-template-columns: minmax(300px, 5fr) minmax(320px, 7fr); gap: 64px; padding-bottom: 80px; }
.footer-logo { width: 240px; height: auto; display: block; margin: -32px 0 8px -16px; }
.footer-top p { color: var(--gray); font-size: 15px; line-height: 1.7; margin: 0; max-width: 380px; }
.footer-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 40px; align-content: start; padding-top: 12px; }
.footer-cols .eyebrow { margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a, .footer-links .muted { font-size: 14px; }
.footer-links .muted { color: var(--gray); }
.footer-growth { border-top: 1px solid var(--border); overflow: hidden; user-select: none; pointer-events: none; }
#growth-canvas { display: block; width: 100%; height: 180px; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  box-shadow: 0 12px 32px -8px rgba(31,157,92,0.55);
  transition: filter .2s ease, transform .15s ease;
}
.wa-float:hover { filter: brightness(1.06); transform: translateY(-2px); }
.wa-float.is-hidden { opacity: 0; transform: scale(0.5); pointer-events: none; }

/* ---------- CHAT WIDGET (Matt) ---------- */
.chat-launcher {
  position: fixed; bottom: 98px; right: 24px; z-index: 61;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; background: var(--green); border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  box-shadow: 0 12px 32px -8px rgba(31,157,92,0.55);
  transition: filter .2s ease, transform .15s ease;
}
.chat-launcher:hover { filter: brightness(1.06); transform: translateY(-2px); }
.chat-launcher .icon-close { display: none; }
.chat-launcher.is-open .icon-bubble { display: none; }
.chat-launcher.is-open .icon-close { display: block; }

.chat-teaser {
  position: fixed; bottom: 106px; right: 90px; z-index: 61;
  max-width: 210px; background: #fff; color: var(--ink);
  font-size: 13px; font-weight: 500; line-height: 1.4;
  padding: 12px 14px; border-radius: 16px; border-bottom-right-radius: 6px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.3);
  display: flex; align-items: flex-start; gap: 8px;
  animation: chatTeaserIn .3s ease;
}
.chat-teaser[hidden] { display: none; }
@keyframes chatTeaserIn { from { opacity: 0; transform: translateX(12px) scale(0.95); } to { opacity: 1; transform: none; } }
#chat-teaser-open { flex: 1; text-align: left; background: none; border: none; padding: 0; margin: 0; font: inherit; color: inherit; cursor: pointer; }
#chat-teaser-dismiss {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: rgba(10,10,10,0.3); font-size: 18px; line-height: 1; padding: 0; margin: -2px -2px 0 0;
}
#chat-teaser-dismiss:hover { color: rgba(10,10,10,0.6); }

.chat-panel {
  position: fixed; bottom: 172px; right: 24px; z-index: 61;
  width: min(380px, calc(100vw - 32px)); height: min(70vh, 600px);
  background: var(--ink); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; box-shadow: 0 25px 60px -12px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; overflow: hidden;
  animation: chatPanelIn .25s ease-out;
}
.chat-panel[hidden] { display: none; }
@keyframes chatPanelIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }

.chat-panel-header {
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); flex-shrink: 0;
}
.chat-avatar { position: relative; flex-shrink: 0; width: 38px; height: 38px; }
.chat-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.chat-status-dot {
  position: absolute; bottom: -1px; right: -1px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2px var(--ink);
}
.chat-panel-name { color: #fff; font-size: 14px; font-weight: 500; line-height: 1.2; }
.chat-panel-sub { color: rgba(255,255,255,0.4); font-size: 11px; line-height: 1.2; margin-top: 2px; }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { display: flex; align-items: flex-end; gap: 8px; }
.chat-msg.from-user { justify-content: flex-end; }
.chat-msg-avatar { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-bottom: 2px; display: block; }
.chat-bubble {
  max-width: 78%; padding: 10px 14px; border-radius: 16px;
  font-size: 13px; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word;
}
.chat-msg.from-user .chat-bubble { background: var(--green); color: #fff; border-bottom-right-radius: 6px; }
.chat-msg.from-assistant .chat-bubble { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.9); border-bottom-left-radius: 6px; }
.chat-cursor {
  display: inline-block; width: 6px; height: 14px; margin-left: 2px;
  background: rgba(255,255,255,0.5); vertical-align: middle;
  animation: chatCursorBlink .7s ease-in-out infinite alternate;
}
@keyframes chatCursorBlink { from { opacity: 1; } to { opacity: 0; } }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: rgba(255,255,255,0.07); border-radius: 16px; border-bottom-left-radius: 6px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); animation: chatTypingBounce 1s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatTypingBounce { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
.chat-error { color: rgba(248,113,113,0.9); font-size: 12px; padding: 0 4px; }

.chat-escalation { border-top: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; display: flex; gap: 8px; flex-shrink: 0; }
.chat-escalation[hidden] { display: none; }
.chat-escalation a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 8px 4px;
  text-decoration: none; transition: background .2s ease;
}
.chat-escalation a:hover { background: rgba(255,255,255,0.05); }

.chat-input-row { border-top: 1px solid rgba(255,255,255,0.1); padding: 12px; display: flex; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.chat-input-row textarea {
  flex: 1; resize: none; background: rgba(255,255,255,0.06); color: #fff;
  font-family: inherit; font-size: 13px; border: none; border-radius: 12px;
  padding: 10px 14px; outline: none; max-height: 96px;
}
.chat-input-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.chat-input-row textarea:focus { box-shadow: 0 0 0 1px rgba(31,157,92,0.5); }
#chat-send {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green); border: none;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer;
  transition: filter .2s ease;
}
#chat-send:hover:not(:disabled) { filter: brightness(1.1); }
#chat-send:disabled { opacity: 0.3; cursor: not-allowed; }

@media (max-width: 480px) {
  .chat-panel { right: 16px; bottom: 164px; width: calc(100vw - 32px); }
  .chat-launcher { right: 16px; }
  .wa-float { right: 16px; }
  .chat-teaser { right: 82px; }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.99);
  transition: opacity .9s cubic-bezier(0.22,1,0.36,1), transform .9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .grid-3, .grid-4 { gap: 40px; }
}
@media (max-width: 1280px) {
  /* 1280px matches .hero-inner's own max-width (see above) so the
     two-column layout ONLY ever renders at that one fixed, generously
     wide internal size -- never a squeezed in-between width. Below
     900px this "squeeze zone" briefly went untested and a large
     display-font word ("customers.") didn't fit its column and broke
     mid-word; single-column below the container's own max-width removes
     that zone entirely rather than trying to tune around it. */
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .phone-wrap { justify-self: stretch; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* ---------- Mobile nav: hamburger + slide-down panel ---------- */
  .nav-toggle { display: flex; }
  .nav-inner { padding: 12px 20px; flex-wrap: wrap; }
  .nav-logo img { height: 100px; margin: -34px 0 -34px -16px; }
  .nav-links {
    flex-basis: 100%; justify-content: flex-start;
    flex-direction: column; flex-wrap: nowrap; align-items: flex-start; gap: 4px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .2s ease;
  }
  .nav.menu-open .nav-links { max-height: 420px; opacity: 1; padding: 8px 0 20px; }
  .nav-links > a:not(.btn-nav) { padding: 12px 4px; width: 100%; font-size: 15px; }
  .nav-links .btn-nav { margin-top: 8px; }
  /* Never rely on scroll state or backdrop-filter support for
     readability on mobile -- the nav sits over every section as the
     page scrolls (position:fixed), so its background must be reliably
     opaque regardless of whether "scrolled" has been toggled yet or
     whether this browser renders backdrop-filter. This was the direct
     cause of nav text overlapping/bleeding into section content
     underneath while scrolling on mobile. */
  .nav { background: var(--bg); border-bottom: 1px solid var(--border); }

  /* ---------- General mobile spacing: desktop padding (up to
     170px top on the hero, 130px per section) made the page roughly
     25 screen-heights long on a phone and looked sparse/unbalanced. ---------- */
  .wrap { padding: 72px 20px; }
  .hero-inner { padding: 128px 20px 72px; gap: 48px; }
  .section-head { margin-bottom: 48px; }
  /* Desktop clamp floors at a fixed 36px from 720px down to 0, which is
     too wide for single long words (e.g. "Transparent.") to fit inside
     a ~300px mobile container -- they can't wrap mid-word (no break
     point) so they overflowed the page horizontally. Scale the floor
     down further for phone widths instead of shrinking the font
     everywhere. */
  .section-head h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .heading-lg { font-size: clamp(2rem, 9vw, 3.5rem); }
  .heading-xl { font-size: clamp(2rem, 9vw, 3.75rem); }
  /* The headline's longest single word is now "Automatically" (13 chars).
     At the old clamp(1.75rem, 8.5vw, 3rem) it rendered wider than the mobile
     hero column and got hyphenated mid-word ("Automaticall-y"). Sized down so
     the longest word always fits on one line: at the 2.3rem cap it's ~300px,
     and 7.2vw scales it further down on the narrowest phones. */
  .hero-inner h1 { font-size: clamp(1.6rem, 7.2vw, 2.3rem); }
  /* At the 40px desktop floor, "24/7" filled its 128px grid column
     edge-to-edge with zero internal breathing room, so even a real
     26px column gap read as the two stat numbers touching. */
  .stat-num { font-size: clamp(2rem, 9vw, 3rem); }
  .footer .wrap { padding: 64px 20px 24px; }
  .footer-top { gap: 40px; padding-bottom: 48px; }
  .plan { padding: 32px 24px; }
  .service-inner { padding: 36px 4px; }
  .coming-soon-cta { margin-top: 40px; gap: 16px; }

  /* ---------- Grids that required more combined minimum width than a
     phone screen provides -- e.g. .footer-cols needed 3x170px=510px
     minimum, .grid-4 needed 4x220px=880px -- were the direct cause of
     the page's horizontal scroll/content being cut off on mobile.
     Stacking to a single column (2 for stats, which reads fine at
     phone width) removes the forced minimum instead of squeezing it. ---------- */
  .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  /* minmax(0, 1fr), not plain 1fr -- plain 1fr defaults to minmax(auto,
     1fr), so a column can never shrink below its content's min-content
     width. With gap added on top, the two tracks' min-content could add
     up to more than the container even when every individual item fit
     its own cell, silently overflowing the page. */
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .plans { grid-template-columns: minmax(0, 1fr); }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }

  /* .service-inner's fixed 200px label column left very little room
     for the description text next to it on a narrow screen (and
     contributed to the horizontal overflow) -- stack instead. */
  .service-inner { grid-template-columns: 1fr; gap: 12px; }
  .service-eyebrow { padding-top: 0; }

  /* The phone mock is a fixed 320px wide, which only just fits (or
     doesn't) on the narrowest real phones once the section's own
     padding is subtracted. Let it shrink instead of forcing overflow. */
  .phone { width: 100%; max-width: 320px; margin: 0 auto; }

  .cta-tags { gap: 20px 28px; }
  .coming-soon-cta { justify-content: flex-start; }
}

/* "For Trades" nav link — highlighted in brand green so trade visitors are
   drawn to the dedicated /trades landing page. Appended after the base
   .nav-links rule so it wins on equal specificity. */
.nav-links > a.nav-trades { color: var(--green); font-weight: 600; }
.nav-links > a.nav-trades:hover { color: var(--green); opacity: 0.75; }

/* Missed-call cost calculator (used on the homepage and /trades). */
.calc { display: grid; grid-template-columns: 0.9fr 1.1fr; border: 1px solid var(--border, #e4e4e0); border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 24px 60px -34px rgba(10,10,10,.28); max-width: 940px; }
.calc-inputs { padding: 32px; background: #fafaf8; border-right: 1px solid #e4e4e0; display: flex; flex-direction: column; gap: 22px; justify-content: center; }
.calc-field label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #6b6b68; margin-bottom: 8px; }
.calc-field input { width: 100%; padding: 14px 15px; border: 1px solid #d9d9d3; border-radius: 12px; font-size: 20px; font-family: 'DM Sans', sans-serif; font-weight: 500; color: #0a0a0a; }
.calc-field input:focus { outline: 2px solid var(--green, #1f9d5c); outline-offset: 1px; border-color: var(--green, #1f9d5c); }
.calc-out { padding: 32px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.calc-line { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: #5c5c58; border-bottom: 1px dotted #e4e4e0; padding-bottom: 12px; }
.calc-line b { font-family: 'Syne', sans-serif; font-size: 18px; color: #0a0a0a; }
.calc-big { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.calc-big span { font-size: 14px; color: #5c5c58; }
.calc-big strong { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: var(--green, #1f9d5c); line-height: 1.05; letter-spacing: -.02em; }
.calc-big em { font-style: normal; font-size: 12px; color: #6b6b68; font-family: 'IBM Plex Mono', monospace; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.calc-sub { font-size: 15px; color: #0a0a0a; font-weight: 500; }
.calc-note { font-size: 12.5px; color: #6b6b68; margin: 6px 0 0; line-height: 1.5; }
@media (max-width: 720px){ .calc { grid-template-columns: 1fr; } .calc-inputs { border-right: none; border-bottom: 1px solid #e4e4e0; } }

/* Emphasised closer inside the hero paragraph ("Faster responses. Less
   manual work. More opportunities to grow.") — the sub is weight 300, so
   give <strong> a real visible step up. */
.hero-sub strong { font-weight: 500; color: var(--ink); }

/* ---------- CONTACT FORM (Contact / CTA section) ---------- */
/* Sits on the dark CTA section, so the form is a clean white card with its
   own light styling. POSTs to the backend /api/contact-lead, which notifies
   the owner by WhatsApp + email. */
.cta-form-wrap { max-width: 560px; margin: 44px auto 0; }
.cta-form {
  background: #fff; border-radius: 20px; padding: 28px 26px; text-align: left;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,0.55);
}
.cta-form-head { margin-bottom: 18px; }
.cta-form-head h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; color: #0a0a0a; margin: 0 0 5px; letter-spacing: -0.01em; }
.cta-form-head p { font-size: 14px; color: #6b6b68; margin: 0; line-height: 1.5; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { margin-bottom: 14px; }
.cf-field label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #6b6b68; margin-bottom: 7px; }
.cf-field label .cf-opt { text-transform: none; letter-spacing: 0; color: #a3a39d; }
.cf-field input, .cf-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d9d9d3; border-radius: 12px;
  font-size: 15px; font-family: 'DM Sans', sans-serif; color: #0a0a0a; background: #fff;
}
.cf-field textarea { resize: vertical; min-height: 78px; }
.cf-field input:focus, .cf-field textarea:focus { outline: 2px solid #1f9d5c; outline-offset: 1px; border-color: #1f9d5c; }
/* Honeypot — visually and semantically hidden from real users. */
.cf-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-submit { width: 100%; justify-content: center; margin-top: 4px; border: 0; cursor: pointer; font: inherit; }
.cf-submit[disabled] { opacity: .6; cursor: default; }
.cf-status { margin: 14px 0 0; font-size: 14px; line-height: 1.5; min-height: 1em; }
.cf-status.is-ok { color: #1f9d5c; font-weight: 500; }
.cf-status.is-err { color: #c0392b; }
@media (max-width: 520px) { .cf-row { grid-template-columns: 1fr; } }
