/* =========================================================================
   TRUCKROLL  ·  AI Agents For HVAC Pros
   Light theme  ·  ink + warm orange (from logo)  ·  Plus Jakarta Sans / Inter
   ========================================================================= */

/* ----------------------------------------------------------------- TOKENS */
:root {
  /* ink / text */
  --ink-900: #15171c;   /* headings, near-black (logo) */
  --ink-800: #1d2026;
  --ink-700: #2b2f37;
  --ink-600: #4f555f;   /* body */
  --ink-500: #6b7280;   /* muted */
  --ink-400: #969ca6;   /* faint */

  /* teal accent (matches the TruckRoll logo) — var names kept as --blue-* */
  --blue-50:  #e9faf8;
  --blue-100: #c6f2ee;
  --blue-200: #97e6df;
  --blue-300: #5ad6cb;
  --blue-400: #22c2b5;
  --blue-500: #14b3a6;     /* primary teal */
  --blue-600: #0d978c;
  --blue-700: #0a7a72;

  /* cool secondary — used sparingly for "cooling" cues */
  --cool-50: #eaf4ff;
  --cool-500: #2e90fa;

  /* status */
  --red-50: #fff1f0;
  --red-500: #e5482f;
  --green-500: #16a37a;

  /* surfaces */
  --bg: #ffffff;
  --bg-2: #f5f6f8;      /* light gray sections */
  --bg-3: #eef0f3;
  --warm: #eef5ff;      /* cool tint (cooling vibe) */
  --card: #ffffff;
  --dark: #14161b;      /* dark bands */
  --dark-2: #1c1f26;

  /* lines */
  --line: rgba(21,23,28,.11);
  --line-soft: rgba(21,23,28,.08);
  --line-dark: rgba(255,255,255,.12);

  /* shadows */
  --sh-sm: 0 3px 14px rgba(21,23,28,.06);
  --sh-md: 0 16px 38px -14px rgba(21,23,28,.16);
  --sh-lg: 0 40px 84px -28px rgba(21,23,28,.28);
  --sh-o: 0 16px 38px -12px rgba(20,179,166,.5);
  --sh-blue: 0 24px 52px -22px rgba(20,179,166,.45);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------------- BASE */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-600);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient warm wash */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(820px 520px at 88% -8%, rgba(20,179,166,.10), transparent 60%),
    radial-gradient(720px 520px at 6% 2%, rgba(20,179,166,.05), transparent 55%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--blue-300); color: var(--ink-900); }

/* ------------------------------------------------------------ TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 700; }

p { color: var(--ink-600); }
strong { color: var(--ink-900); font-weight: 700; }

.text-blue { color: var(--blue-600); }
.grad {
  background: linear-gradient(100deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-600);
}
.kicker::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: var(--blue-500); }
.kicker.center::before { display: none; }

/* ---------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 10vw, 140px); position: relative; }
.section-sm { padding-block: clamp(46px, 7vw, 84px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 62px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.12rem; color: var(--ink-500); }
.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.lead { font-size: 1.2rem; line-height: 1.65; color: var(--ink-500); }

.surface-alt { background: var(--bg-2); }
.surface-warm { background: var(--warm); }

/* dark band */
.surface-dark { background: var(--dark); color: #cdd2da; }
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4 { color: #fff; }
.surface-dark p { color: #aab0ba; }
.surface-dark .kicker { color: var(--blue-400); }
.surface-dark strong { color: #fff; }

/* --------------------------------------------------------------- BUTTONS */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 26px; overflow: hidden;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: .005em;
  border-radius: 999px; white-space: nowrap;
  /* magnetic offset (--mx/--my from JS) + hover lift + press scale, composed so they never fight */
  transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(var(--lift, 0px)) scale(var(--sc, 1));
  transition: transform .3s var(--ease-out), box-shadow .45s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn:hover { --lift: -3px; }
.btn:active { --sc: .96; transition-duration: .09s; }
.btn > * { position: relative; z-index: 1; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(120deg, var(--blue-500), var(--blue-700));
  color: #fff;
  box-shadow: var(--sh-o);
}
.btn-primary:hover { box-shadow: 0 26px 54px -14px rgba(20,179,166,.78); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; overflow: hidden;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: #fff; color: var(--ink-800); border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-700); box-shadow: var(--sh-blue); }

.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-800); box-shadow: var(--sh-md); }

.surface-dark .btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: var(--line-dark); box-shadow: none; }
.surface-dark .btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-300); }

.btn-lg { padding: 17px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--blue-600);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow svg { width: 17px; height: 17px; }
.link-arrow:hover { gap: 13px; color: var(--blue-700); }

/* ----------------------------------------------------------- ANNOUNCE BAR */
.announce {
  position: relative; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 9px 48px 9px 18px; font-size: .9rem; text-align: center;
  color: #c7ccd4; background: var(--dark);
}
.announce strong {
  font-family: var(--font-head); letter-spacing: .1em; font-size: .68rem; font-weight: 800;
  padding: 3px 9px; border-radius: 999px; background: var(--blue-500); color: #ffffff;
}
.announce a { color: var(--blue-300); font-weight: 700; }
.announce a:hover { text-decoration: underline; }
.announce-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; color: #8b929c; font-size: 1.1rem; line-height: 1; transition: .25s;
}
.announce-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.announce.hide { display: none; }

/* ----------------------------------------------------------------- NAV */
header { position: sticky; top: 0; z-index: 50; transition: transform .5s var(--ease); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: var(--maxw); margin-inline: auto; padding: 13px var(--gutter);
  transition: padding .4s var(--ease);
}
header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,0); backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, box-shadow .4s;
}
header.scrolled::before {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px -16px rgba(21,23,28,.4);
}
header.scrolled .nav { padding-block: 10px; }

.brand { display: inline-flex; align-items: center; transition: transform .4s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative; padding: 8px 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink-600);
  border-radius: 9px; transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px;
  background: var(--blue-500); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink-900); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: .98rem; }

.mobile-menu { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 11px;
  border: 1px solid var(--line); background: #fff; position: relative; box-shadow: var(--sh-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 2px; background: var(--ink-900); border-radius: 2px;
  transform: translate(-50%, -50%); transition: .3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ------------------------------------------------------------ SCROLL BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 0 10px rgba(20,179,166,.6);
}

/* ----------------------------------------------------------- PAGE CURTAIN */
.page-curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--warm); display: grid; place-items: center;
  transform: translateY(0); pointer-events: none;
  animation: curtainUp .5s var(--ease) .05s forwards;
}
.page-curtain .curtain-logo { height: 70px; width: auto; animation: pulse 1.1s var(--ease) infinite; }
.page-curtain.cover { animation: none; transform: translateY(0); transition: transform .55s var(--ease); }
@keyframes curtainUp { to { transform: translateY(-100%); } }
@keyframes pulse { 0%,100% { transform: scale(.9); opacity: .55; } 50% { transform: scale(1.04); opacity: 1; } }

/* ------------------------------------------------------- REVEAL ANIMATION */
html.js [data-reveal] { opacity: 0; filter: blur(7px); }
html.js [data-reveal="up"]    { transform: translateY(38px); }
html.js [data-reveal="down"]  { transform: translateY(-38px); }
html.js [data-reveal="left"]  { transform: translateX(48px); }
html.js [data-reveal="right"] { transform: translateX(-48px); }
html.js [data-reveal="zoom"]  { transform: scale(.94); }
html.js [data-reveal] { transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), filter .7s var(--ease-out); transition-delay: var(--d, 0s); }
html.js [data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }
html.js .reveal-mask { overflow: hidden; }
html.js .reveal-mask > * { transform: translateY(110%); transition: transform 1s var(--ease-out) var(--d, 0s); }
html.js .reveal-mask.is-in > * { transform: translateY(0); }

/* ----------------------------------------------------------------- HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: clamp(40px, 9vw, 90px); padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--warm) 100%);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 60%, var(--warm) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(30px, 5vw, 70px); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 7px;
  margin-bottom: 26px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  font-size: .86rem; color: var(--ink-600);
}
.hero-badge .tag {
  padding: 3px 10px; border-radius: 999px; background: var(--blue-500); color: #ffffff;
  font-family: var(--font-head); font-weight: 800; letter-spacing: .06em; font-size: .68rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 0 rgba(20,179,166,.6); animation: live 2s infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(20,179,166,.5);} 70% { box-shadow: 0 0 0 9px rgba(20,179,166,0);} 100% { box-shadow: 0 0 0 0 rgba(20,179,166,0);} }

.hero h1 { margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero-sub { font-size: 1.22rem; max-width: 540px; color: var(--ink-500); margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; color: var(--ink-500); font-size: .92rem; }
.hero-trust .stars { color: var(--blue-500); letter-spacing: 2px; }
.hero-trust b { color: var(--ink-900); }
.hero-trust .sep { width: 1px; height: 16px; background: var(--line); }

.hero-visual { position: relative; max-width: 338px; margin-inline: auto; }

/* ------------------------------------------------------- CALL CARD (mock) */
.call-card {
  position: relative; background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--sh-lg); overflow: hidden;
}
.call-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 100% 0%, rgba(20,179,166,.08), transparent 55%); pointer-events: none; }
.call-head { display: flex; align-items: center; gap: 13px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line-soft); }
.call-avatar { position: relative; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-400), var(--blue-600)); color: #fff; flex-shrink: 0; }
.call-avatar svg { width: 24px; height: 24px; }
.call-meta { flex: 1; min-width: 0; }
.call-meta .name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink-900); }
.call-meta .status { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--blue-600); }
.call-meta .status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); animation: live 1.8s infinite; }
.call-timer { font-variant-numeric: tabular-nums; font-size: .9rem; color: var(--ink-400); }

.transcript { display: flex; flex-direction: column; gap: 9px; min-height: auto; }
.transcript .bubble { font-size: .88rem; padding: 9px 12px; }
.bubble {
  max-width: 86%; padding: 11px 15px; border-radius: 16px; font-size: .98rem; line-height: 1.5;
  opacity: 0; transform: translateY(10px); animation: bubble-in .5s var(--ease-out) forwards;
}
@keyframes bubble-in { to { opacity: 1; transform: none; } }
.bubble.ai { align-self: flex-start; background: var(--blue-50); border: 1px solid var(--blue-100); border-bottom-left-radius: 5px; color: var(--ink-800); }
.bubble.caller { align-self: flex-end; background: var(--bg-2); border: 1px solid var(--line-soft); border-bottom-right-radius: 5px; color: var(--ink-700); }
.bubble .who { display: block; font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; color: var(--ink-400); }
.bubble.ai .who { color: var(--blue-600); }

.typing { display: inline-flex; gap: 4px; align-items: center; padding: 4px 0; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .18s; }
.typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

.booked-chip { display: flex; align-items: center; gap: 12px; margin-top: 4px; padding: 13px 15px; border-radius: 14px; background: var(--blue-50); border: 1px solid var(--blue-200); }
.booked-chip .ico { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: var(--blue-500); color: #fff; }
.booked-chip .ico svg { width: 18px; height: 18px; }
.booked-chip b { color: var(--ink-900); font-family: var(--font-head); font-weight: 700; }
.booked-chip small { color: var(--ink-500); display: block; }

.float-tag {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 15px;
  border-radius: 14px; background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-md);
  font-size: .85rem; color: var(--ink-600); white-space: nowrap;
}
.float-tag .n { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--blue-600); line-height: 1; }
.float-tag.t1 { top: -22px; left: -26px; }
.float-tag.t2 { bottom: -20px; right: -22px; }

/* ---------------------------------------------------------------- MARQUEE */
.marquee { position: relative; border-block: 1px solid var(--line-soft); padding-block: 26px; background: linear-gradient(180deg, var(--bg-2), #fff); overflow: hidden; }
.marquee-label { text-align: center; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 20px; font-family: var(--font-head); font-weight: 700; }
/* edge fades */
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(50px, 11vw, 160px); z-index: 2; pointer-events: none; }
.marquee::before { left: -1px; background: linear-gradient(90deg, var(--bg-2) 22%, transparent); }
.marquee::after { right: -1px; background: linear-gradient(270deg, var(--bg-2) 22%, transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; letter-spacing: .01em;
  color: var(--ink-700); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), color .3s, border-color .3s, box-shadow .35s;
}
.marquee-track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(20,179,166,.14); }
.marquee-track span:hover { color: var(--blue-700); border-color: var(--blue-300); transform: translateY(-4px); box-shadow: var(--sh-blue); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ STAT BAND */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { position: relative; padding-left: 22px; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 3px; background: linear-gradient(var(--blue-500), transparent); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.5rem, 5vw, 3.4rem); line-height: 1; color: var(--ink-900); letter-spacing: -.02em; }
.stat .num .suffix { color: var(--blue-600); }
.stat .lbl { margin-top: 8px; color: var(--ink-500); font-size: .98rem; }
.surface-dark .stat .num { color: #fff; }
.surface-dark .stat .lbl { color: #aab0ba; }

/* --------------------------------------------------------------- PROBLEM */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.problem-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.problem-item:hover { transform: translateX(6px); border-color: var(--blue-200); box-shadow: var(--sh-blue); }
.problem-item .x { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--red-50); color: var(--red-500); border: 1px solid rgba(229,72,47,.2); }
.problem-item .x svg { width: 16px; height: 16px; }
.problem-item p { color: var(--ink-600); }
.problem-item p b { color: var(--ink-900); }

.cost-card { position: relative; padding: clamp(26px, 4vw, 40px); border-radius: var(--radius-lg); background: var(--dark); border: 1px solid rgba(255,255,255,.07); box-shadow: 0 28px 56px -26px rgba(13,15,20,.5), 0 10px 22px -14px rgba(13,15,20,.32); overflow: hidden; color: #aab0ba; }
.cost-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(78% 92% at 100% -8%, rgba(20,179,166,.17), transparent 60%); pointer-events: none; }
.cost-card .kicker { color: var(--blue-400); position: relative; }
.cost-card .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 7vw, 4.8rem); line-height: .95; color: #fff; letter-spacing: -.02em; position: relative; }
.cost-card .cap { color: #aab0ba; margin-top: 10px; font-size: 1.05rem; position: relative; }
.cost-card .rule { height: 1px; background: var(--line-dark); margin: 24px 0; }
.cost-mini { display: flex; gap: 26px; flex-wrap: wrap; position: relative; }
.cost-mini div .v { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--blue-400); }
.cost-mini div .k { font-size: .85rem; color: #8b929c; }

/* --------------------------------------------------------------- STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); counter-reset: step; }
.step { position: relative; padding: 32px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; overflow: hidden; }
.step::after { counter-increment: step; content: "0" counter(step); position: absolute; top: 14px; right: 20px; font-family: var(--font-head); font-weight: 800; font-size: 3.2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--blue-200); transition: -webkit-text-stroke .4s; }
.step:hover { transform: translateY(-8px); border-color: var(--blue-200); box-shadow: var(--sh-blue); }
.step:hover::after { -webkit-text-stroke-color: var(--blue-400); }
.step-ico { width: 54px; height: 54px; border-radius: 15px; margin-bottom: 20px; display: grid; place-items: center; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-600); }
.step-ico svg { width: 26px; height: 26px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-500); font-size: .98rem; }
.steps-wrap { position: relative; }

/* --------------------------------------------------------------- FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.feature { position: relative; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; overflow: hidden; }
.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(140% 100% at var(--mx,50%) var(--my,0%), rgba(20,179,166,.1), transparent 45%); opacity: 0; transition: opacity .4s; }
.feature:hover { transform: translateY(-6px); border-color: var(--blue-200); box-shadow: var(--sh-blue); }
.feature:hover::before { opacity: 1; }
.feature-ico { position: relative; width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px; display: grid; place-items: center; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-600); }
.feature-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 9px; position: relative; }
.feature p { color: var(--ink-500); font-size: .96rem; position: relative; }
.feature .tagline { display: inline-block; margin-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-600); position: relative; }
.feature.wide { grid-column: span 2; }

/* --------------------------------------------------------- HVAC SCENARIOS */
.trades { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 22px); }
.trade { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--dark); isolation: isolate; box-shadow: var(--sh-sm); }
.trade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(1.05); transition: transform .8s var(--ease), filter .6s; z-index: -2; }
.trade::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,22,27,.05) 0%, rgba(20,22,27,.5) 55%, rgba(20,22,27,.92) 100%); }
.trade:hover img { transform: scale(1.08); filter: brightness(.85) saturate(1.15); }
.trade-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; }
.trade-body .ico { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 12px; display: grid; place-items: center; background: rgba(20,179,166,.92); border: 1px solid rgba(255,255,255,.25); color: #ffffff; }
.trade-body .ico svg { width: 20px; height: 20px; }
.trade-body h3 { font-size: 1.32rem; color: #fff; }
.trade-body p { color: rgba(255,255,255,.82); font-size: .9rem; margin-top: 4px; opacity: 0; max-height: 0; transition: opacity .4s, max-height .4s; }
.trade:hover .trade-body p { opacity: 1; max-height: 60px; }

/* ------------------------------------------------------------ TESTIMONIAL */
.tcol { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.testi { display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s; }
.testi:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.testi .stars { color: var(--blue-500); letter-spacing: 2px; margin-bottom: 14px; }
.testi .quote { font-size: 1.05rem; color: var(--ink-700); line-height: 1.6; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.testi .who .ava { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; background: linear-gradient(135deg, var(--blue-400), var(--blue-600)); color: #fff; }
.testi .who .n { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); font-size: 1.05rem; }
.testi .who .r { font-size: .85rem; color: var(--ink-400); }

/* ------------------------------------------------------ PROBLEM → SOLUTION */
.ps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.ps-card { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; }
.ps-card:hover { transform: translateY(-6px); box-shadow: var(--sh-blue); border-color: var(--blue-200); }
.ps-row { display: flex; gap: 12px; align-items: flex-start; }
.ps-row .ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; }
.ps-row .ic svg { width: 16px; height: 16px; }
.ps-prob .ic { background: var(--red-50); color: var(--red-500); border: 1px solid rgba(229,72,47,.2); }
.ps-sol { margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.ps-sol .ic { background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); }
.ps-row .tx { font-size: .96rem; line-height: 1.5; }
.ps-k { display: block; font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.ps-prob .tx { color: var(--ink-900); font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; line-height: 1.3; }
.ps-prob .ps-k { color: var(--red-500); }
.ps-sol .tx { color: var(--ink-600); }
.ps-sol .ps-k { color: var(--blue-600); }

/* --------------------------------------------------------------- PRICING */
#pricing { scroll-margin-top: 100px; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-blue); border-color: var(--blue-200); }
.price-card.featured { border: 1.5px solid var(--blue-400); box-shadow: var(--sh-md); }
.price-card.featured::before { content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg, var(--blue-400), var(--blue-600)); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; box-shadow: var(--sh-o); white-space: nowrap; }
.price-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink-900); }
.price-desc { color: var(--ink-500); font-size: .92rem; margin-top: 6px; min-height: 40px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 2px; flex-wrap: wrap; }
.price-amt .amt { font-family: var(--font-head); font-weight: 800; font-size: 2.9rem; color: var(--ink-900); letter-spacing: -.02em; line-height: 1; }
.price-amt .per { color: var(--ink-500); font-size: .95rem; }
.price-feat { margin: 22px 0 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-feat li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-600); font-size: .95rem; }
.price-feat .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); margin-top: 2px; }
.price-feat .ck svg { width: 12px; height: 12px; }
.pricing-note { text-align: center; margin-top: 28px; color: var(--ink-500); font-size: .95rem; }
.pricing-note b { color: var(--ink-900); }

/* ----------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink-900); transition: color .3s; }
.faq-q:hover { color: var(--blue-600); }
.faq-q .ico { flex-shrink: 0; width: 30px; height: 30px; position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue-500); transform: translate(-50%,-50%); transition: transform .35s var(--ease), opacity .35s; }
.faq-q .ico::before { width: 15px; height: 2px; }
.faq-q .ico::after  { width: 2px; height: 15px; }
.faq-item.open .faq-q .ico::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-500); font-size: 1.04rem; max-width: 92%; }

/* ----------------------------------------------------------------- LEGAL */
.legal-hero { padding-top: clamp(120px, 15vw, 168px); padding-bottom: clamp(30px, 5vw, 50px); }
.legal-hero .container { max-width: 820px; }
.legal-hero .updated { color: var(--ink-400); font-size: .9rem; margin-top: 14px; }
.legal { max-width: 820px; margin-inline: auto; }
.legal > p:first-child { font-size: 1.12rem; color: var(--ink-500); }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); margin: 40px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 24px 0 8px; color: var(--ink-800); }
.legal p { margin-bottom: 14px; line-height: 1.78; }
.legal ul { margin: 4px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.legal li { position: relative; padding-left: 24px; line-height: 1.7; color: var(--ink-600); }
.legal li::before { content: ""; position: absolute; left: 5px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); }
.legal a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--ink-900); }
.legal .toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 6px; padding: 18px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.legal .toc a { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-700); text-decoration: none; padding: 5px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line-soft); transition: .25s var(--ease); }
.legal .toc a:hover { border-color: var(--blue-400); color: var(--blue-700); }
.legal section[id] { scroll-margin-top: 100px; }

/* --------------------------------------------------------------- CTA BAND */
.cta-card { position: relative; text-align: center; padding: clamp(48px, 8vw, 88px) var(--gutter); border-radius: var(--radius-lg); background: var(--dark); border: 1px solid var(--dark-2); overflow: hidden; }
.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 20% 0%, rgba(20,179,166,.28), transparent 60%), radial-gradient(50% 80% at 85% 100%, rgba(20,179,166,.16), transparent 60%); }
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; margin-bottom: 18px; }
.cta-card p { font-size: 1.16rem; color: #b6bcc6; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-fine { margin-top: 22px; font-size: .9rem; color: #8b929c; }

/* ----------------------------------------------------------------- FOOTER */
footer { position: relative; padding-top: clamp(60px, 8vw, 88px); border-top: 1px solid var(--line-soft); background: var(--bg-2); overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 50px); padding-bottom: 50px; }
.foot-brand .brand { margin-bottom: 20px; }
.foot-brand .brand-img { height: 62px; }
.foot-brand p { color: var(--ink-500); max-width: 320px; font-size: .98rem; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line-soft); color: var(--ink-500); box-shadow: var(--sh-sm); transition: .3s var(--ease); }
.foot-social a:hover { color: #fff; background: var(--blue-500); transform: translateY(-3px); border-color: transparent; box-shadow: var(--sh-o); }
.foot-social a svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 16px; }
.foot-col a { display: block; padding: 6px 0; color: var(--ink-600); font-size: .98rem; transition: color .25s, padding-left .25s; }
.foot-col a:hover { color: var(--blue-600); padding-left: 5px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-block: 26px; border-top: 1px solid var(--line-soft); color: var(--ink-400); font-size: .9rem; }
.foot-bottom .links { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--blue-600); }
.foot-watermark { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 18vw, 15rem); line-height: .8; text-align: center; letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1px rgba(21,23,28,.06); user-select: none; pointer-events: none; margin-top: 14px; }

/* =========================================================================
   DEMO PAGE
   ========================================================================= */
.demo-hero { padding-top: clamp(120px, 16vw, 180px); text-align: center; }
.demo-hero .container { max-width: 820px; }

.dialer-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
/* latest-iPhone style frame */
.phone { position: relative; width: 100%; max-width: 320px; margin-inline: auto; aspect-ratio: 9 / 19.3; border-radius: 56px; background: linear-gradient(145deg, #45484f, #0b0c0f 58%); box-shadow: var(--sh-lg), inset 0 1px 2px rgba(255,255,255,.2), inset 0 0 0 1px rgba(0,0,0,.4); overflow: hidden; }
.phone-screen { position: absolute; inset: 11px; border-radius: 46px; background: linear-gradient(180deg, #ffffff, #f4f6f9); overflow: hidden; display: flex; flex-direction: column; }
/* Dynamic Island */
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 98px; height: 28px; border-radius: 999px; background: #000; z-index: 6; box-shadow: 0 0 0 1px rgba(255,255,255,.05); }
/* side button */
.phone::after { content: ""; position: absolute; right: 0; top: 152px; width: 3px; height: 58px; border-radius: 2px 0 0 2px; background: rgba(0,0,0,.4); z-index: 7; }
.phone-state { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 26px; gap: 18px; text-align: center; opacity: 0; visibility: hidden; transform: scale(1.04); transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s; }
.phone-state.active { opacity: 1; visibility: visible; transform: scale(1); }

.caller-ring { position: relative; width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-400), var(--blue-600)); color: #fff; }
.caller-ring svg { width: 48px; height: 48px; }
.caller-ring::before, .caller-ring::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(20,179,166,.5); animation: ring 2s var(--ease) infinite; }
.caller-ring::after { animation-delay: 1s; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.phone-state .ph-name { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--ink-900); }
.phone-state .ph-sub { color: var(--ink-500); font-size: .95rem; }

.phone-actions { display: flex; gap: 30px; margin-top: 10px; }
.ph-btn { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; transition: transform .3s var(--ease); }
.ph-btn:hover { transform: scale(1.08); }
.ph-btn svg { width: 26px; height: 26px; }
.ph-btn.answer { background: #2fce8f; color: #062416; box-shadow: 0 10px 30px -8px rgba(47,206,143,.6); animation: jiggle 1.4s var(--ease) infinite; }
.ph-btn.decline { background: #ff5d52; color: #2a0805; box-shadow: 0 10px 30px -8px rgba(255,93,82,.5); }
@keyframes jiggle { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }

.call-live { padding: 54px 14px 18px; gap: 0; align-items: stretch; justify-content: flex-start; }
.call-live .live-head { text-align: center; margin-bottom: 12px; }
.call-live .live-head .nm { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); font-size: 1.05rem; }
.call-live .live-head .tm { font-size: .82rem; color: var(--blue-600); font-variant-numeric: tabular-nums; }
.live-transcript { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 9px; padding: 4px 4px 0; mask-image: linear-gradient(180deg, transparent, #000 12%); }
.live-transcript .bubble { font-size: .82rem; max-width: 92%; padding: 8px 11px; }

.wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 34px; margin-top: 8px; }
.wave i { width: 3px; border-radius: 3px; background: var(--blue-500); height: 20%; animation: wv 1s ease-in-out infinite; }
.wave i:nth-child(odd){ animation-duration: .8s; }
@keyframes wv { 0%,100% { height: 16%; opacity:.5;} 50% { height: 100%; opacity:1;} }

.phone-controls { display: flex; flex-direction: column; align-items: center; gap: 9px; margin-top: 22px; }
.audio-toggle { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-600); cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s, color .3s, background .3s; }
.audio-toggle svg { width: 18px; height: 18px; }
.audio-toggle:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.audio-toggle.is-on { color: var(--blue-700); border-color: var(--blue-300); background: var(--blue-50); }
.audio-hint { font-size: .82rem; color: var(--ink-400); }

.demo-scenario { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.scenario-chip { padding: 10px 16px; border-radius: 999px; font-size: .92rem; background: #fff; border: 1px solid var(--line); color: var(--ink-600); box-shadow: var(--sh-sm); transition: .3s var(--ease); font-family: var(--font-head); font-weight: 600; }
.scenario-chip:hover { border-color: var(--blue-400); color: var(--ink-900); transform: translateY(-2px); }
.scenario-chip.active { background: var(--blue-500); color: #fff; border-color: transparent; box-shadow: var(--sh-o); }

.demo-readout { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.readout { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); opacity: .5; transform: translateX(-8px); transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .5s; }
.readout.done { opacity: 1; transform: none; border-color: var(--blue-200); }
.readout .rk { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; color: var(--ink-400); background: var(--bg-2); border: 1px solid var(--line-soft); transition: .4s; }
.readout.done .rk { background: var(--blue-500); color: #fff; border-color: transparent; }
.readout .rk svg { width: 18px; height: 18px; }
.readout .rv .k { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); font-family: var(--font-head); font-weight: 700; }
.readout .rv .v { color: var(--ink-900); font-weight: 700; }

.scheduler { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); background: #fff; box-shadow: var(--sh-lg); }
.sched-info { padding: clamp(28px, 4vw, 44px); background: var(--dark); color: #aab0ba; }
.sched-info h3 { font-size: 1.85rem; margin-bottom: 14px; color: #fff; }
.sched-info p { color: #aab0ba; }
.sched-feat { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.sched-feat li { display: flex; gap: 12px; align-items: flex-start; color: #c7ccd4; }
.sched-feat .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(20,179,166,.2); color: var(--blue-400); border: 1px solid rgba(20,179,166,.3); }
.sched-feat .ck svg { width: 13px; height: 13px; }
.sched-pick { padding: clamp(28px, 4vw, 44px); }
.sched-pick .lbl { font-family: var(--font-head); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; color: var(--ink-400); margin-bottom: 14px; }
.day-row { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.day { flex: 1; min-width: 64px; text-align: center; padding: 12px 6px; border-radius: 12px; cursor: pointer; background: var(--bg-2); border: 1px solid var(--line-soft); color: var(--ink-700); transition: .3s var(--ease); }
.day:hover { border-color: var(--blue-400); transform: translateY(-2px); }
.day.active { background: var(--blue-500); color: #fff; border-color: transparent; box-shadow: var(--sh-o); }
.day .d { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; opacity: .75; }
.day .n { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1.1; }
.slot-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.slot { padding: 12px; border-radius: 11px; text-align: center; background: var(--bg-2); border: 1px solid var(--line-soft); color: var(--ink-700); transition: .3s var(--ease); font-variant-numeric: tabular-nums; }
.slot:hover { border-color: var(--blue-400); transform: translateY(-2px); }
.slot.active { background: var(--blue-500); color: #fff; border-color: transparent; font-weight: 700; }
.slot.taken { opacity: .4; pointer-events: none; text-decoration: line-through; }

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.contact-info { position: sticky; top: 110px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.cmethod { display: flex; gap: 16px; align-items: center; padding: 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-sm); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.cmethod:hover { transform: translateY(-3px); border-color: var(--blue-300); box-shadow: var(--sh-blue); }
.cmethod .ci { width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-600); }
.cmethod .ci svg { width: 22px; height: 22px; }
.cmethod .ck { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-400); font-family: var(--font-head); font-weight: 700; }
.cmethod .cv { color: var(--ink-900); font-size: 1.08rem; font-family: var(--font-head); font-weight: 600; }

.form-card { padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; position: relative; }
.field label { display: block; margin-bottom: 8px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-700); }
.field label .req { color: var(--blue-600); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-900); transition: border-color .3s, box-shadow .3s, background .3s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(20,179,166,.15); background: #fff; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2314b3a6' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--red-500); box-shadow: 0 0 0 4px rgba(229,72,47,.12); }
.field .err-msg { color: var(--red-500); font-size: .82rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-note { font-size: .85rem; color: var(--ink-400); margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn.is-loading { opacity: .65; pointer-events: none; }
.form-error { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: var(--red-50); border: 1px solid rgba(229,72,47,.25); color: var(--red-500); font-size: .92rem; text-align: center; }
.form-error.show { display: block; animation: bubble-in .4s var(--ease-out); }

.form-success { display: none; text-align: center; padding: clamp(36px,5vw,60px) 24px; }
.form-success.show { display: block; animation: bubble-in .6s var(--ease-out); }
.form-success .check { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-400), var(--blue-600)); color: #fff; box-shadow: var(--sh-o); }
.form-success .check svg { width: 38px; height: 38px; }
.form-success h3 { color: var(--ink-900); }

/* =========================================================================
   CURSOR
   ========================================================================= */
.glow-cursor { position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 1; background: radial-gradient(circle, rgba(20,179,166,.10), transparent 65%); transform: translate(-50%, -50%); opacity: 0; transition: opacity .5s; mix-blend-mode: multiply; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature.wide { grid-column: span 2; }
  .trades { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-cta-desktop { display: none; }
  .nav-toggle { display: grid; }
  .brand-img { height: 46px; }
  .mobile-menu { position: fixed; inset: 0; z-index: 45; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
  body.nav-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu a { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--ink-800); padding: 12px; opacity: 0; transform: translateY(14px); transition: .5s var(--ease); }
  body.nav-open .mobile-menu a { opacity: 1; transform: none; }
  body.nav-open .mobile-menu a:nth-child(1) { transition-delay: .08s; }
  body.nav-open .mobile-menu a:nth-child(2) { transition-delay: .14s; }
  body.nav-open .mobile-menu a:nth-child(3) { transition-delay: .2s; }
  body.nav-open .mobile-menu a:nth-child(4) { transition-delay: .26s; }
  .mobile-menu a.active { color: var(--blue-600); }

  .split, .contact-grid, .dialer-wrap, .scheduler { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .tcol { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .sched-info { order: 2; }
  .float-tag.t1 { left: -10px; }
  .float-tag.t2 { right: -10px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-img { height: 40px; }
  .nav-cta .btn { padding: 9px 15px; font-size: .88rem; }
  .feature-grid, .trades, .ps-grid { grid-template-columns: 1fr; }
  .feature.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .slot-row { grid-template-columns: repeat(2, 1fr); }
  .hero-cta .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .float-tag { display: none; }
  .cost-mini { gap: 18px; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  html.js .reveal-mask > * { transform: none !important; }
  .marquee-track { animation: none; }
}
:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }
