/* ============================================================
   FixTok - Landing Page styles
   RTL · mobile-first · warm B2C (Lemonade) + engineered (Linear/Stripe)
   ============================================================ */

:root {
  /* Brand */
  --orange:      #F97316;
  --orange-600:  #EA6207;
  --orange-700:  #C2540B;
  --orange-soft: #FFF1E7;
  --orange-line: #FBD9BF;

  --ink:         #1A1A1A;
  --ink-2:       #242424;
  --ink-3:       #2F2F2F;

  --white:       #FFFFFF;
  --cream:       #FAF6F1;   /* warm off-white stripe */
  --cream-2:     #F3ECE2;

  --green:       #2E7D32;
  --green-soft:  #EAF3EA;
  --green-line:  #CBE2CC;

  --bad:         #9A6E68;   /* muted gray-red for "without FixTok" */
  --bad-soft:    #F1E9E7;
  --bad-line:    #E0D2CE;

  /* traffic-light reds (comparison) */
  --red:         #D64545;
  --red-soft:    #FCEEEC;
  --red-line:    #F2D2CD;

  /* Text */
  --text:        #1A1A1A;
  --text-2:      #585249;
  --text-3:      #8A8378;
  --on-dark:     #F6F2EC;
  --on-dark-2:   #B9B2A6;

  /* Lines / surfaces */
  --line:        #ECE6DC;
  --line-2:      #E0D8CC;
  --card:        #FFFFFF;

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadow - soft, warm */
  --sh-sm: 0 1px 2px rgba(40,30,20,.05), 0 2px 6px rgba(40,30,20,.04);
  --sh:    0 2px 6px rgba(40,30,20,.05), 0 14px 34px rgba(40,30,20,.08);
  --sh-lg: 0 6px 18px rgba(40,30,20,.07), 0 34px 70px rgba(40,30,20,.13);
  --sh-orange: 0 8px 24px rgba(249,115,22,.30);

  --fz-display: clamp(2.45rem, 6.2vw, 4.5rem);
  --fz-h2:      clamp(1.85rem, 3.6vw, 3rem);
  --fz-h3:      clamp(1.25rem, 2vw, 1.6rem);
  --maxw: 1180px;

  --font-display: "Rubik", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.cream { background: var(--cream); }
.ink-bg { background: var(--ink); color: var(--on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-700);
  background: var(--orange-soft); border: 1px solid var(--orange-line);
  padding: 7px 14px; border-radius: var(--r-pill);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.ink-bg .eyebrow { color: #FFCFA8; background: rgba(249,115,22,.14); border-color: rgba(249,115,22,.32); }

.h2 { font-size: var(--fz-h2); }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--text-2); line-height: 1.62; max-width: 56ch; }
.section-head { max-width: 720px; }
.section-head .lede { margin-top: 18px; }
.center { text-align: center; margin-inline: auto; }
.center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: 15px 26px; border-radius: var(--r-pill);
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(-4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--sh-orange); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(249,115,22,.4); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.ink-bg .btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,.24); }
.ink-bg .btn--ghost:hover { border-color: rgba(255,255,255,.7); }
.final .btn--ghost, .pros .btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,.28); }
.final .btn--ghost:hover, .pros .btn--ghost:hover { border-color: rgba(255,255,255,.75); color: #fff; }
.btn--lg { padding: 18px 34px; font-size: 1.12rem; }
.btn--block { width: 100%; justify-content: center; }
.microcopy { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--text-3); font-size: .92rem; }
.microcopy b { color: var(--text-2); font-weight: 600; }
.microcopy .sep { color: var(--orange); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(40,30,20,.05); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 70px; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.logo b { color: var(--orange); font-weight: 800; }
.nav__links { display: none; gap: 30px; }
.nav__links a { color: var(--text-2); font-weight: 500; font-size: .98rem; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  flex-shrink: 0;
}
.lang-switcher__btn {
  border: none;
  background: none;
  padding: 4px 1px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  line-height: 1.2;
  min-width: 22px;
  min-height: 28px;
}
.lang-switcher__btn--active {
  color: var(--ink);
  font-weight: 600;
}
.lang-switcher__btn:not(.lang-switcher__btn--active):hover {
  color: var(--text);
}
.lang-switcher__btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}
.lang-switcher__divider {
  color: #d6d3d1;
  font-size: 12px;
  font-weight: 300;
  user-select: none;
}
@media (max-width: 767px) {
  .nav__right .btn--primary { display: none; }
  .nav__right { gap: 10px; }
}
.nav__pros { display: none; color: var(--text-2); font-weight: 600; font-size: .95rem; }
.nav__pros:hover { color: var(--orange-700); }
.nav__burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  border-top: 1px solid transparent;
}
.nav.is-open .nav__mobile { grid-template-rows: 1fr; border-color: var(--line); }
.nav__mobile-inner { overflow: hidden; }
.nav__mobile a { display: block; padding: 15px 0; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--line); }
.nav__mobile a.pros { color: var(--orange-700); font-weight: 600; }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__pros { display: inline; }
  .nav__burger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(249,115,22,.07), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center;
  padding-block: clamp(40px, 6vw, 80px) clamp(48px, 7vw, 96px);
}
.hero h1 { font-size: var(--fz-display); font-weight: 800; margin-top: 22px; }
.hero h1 .accent { color: var(--orange); }
.hero__sub { margin-top: 22px; font-size: clamp(1.125rem, 1.85vw, 1.4rem); color: var(--text-2); max-width: 50ch; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__micro { margin-top: 22px; }
.hero__note { margin-top: 18px; color: var(--text-3); font-size: .96rem; font-weight: 500; }

/* hero promise strip - bold graphic */
.hero__promise {
  display: flex; align-items: stretch; flex-wrap: wrap; gap: 10px;
  margin-top: 30px;
}
.promise {
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 13px 18px; box-shadow: var(--sh-sm); position: relative;
}
.promise__ic { position: absolute; top: -13px; right: 14px; width: 28px; height: 28px; border-radius: 8px; background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-sm); }
.promise__ic svg { width: 15px; height: 15px; }
.promise b { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); line-height: 1.1; }
.promise span { font-size: .82rem; color: var(--text-3); font-weight: 600; margin-top: 2px; }
.promise--free { background: var(--orange); border-color: var(--orange); box-shadow: var(--sh-orange); }
.promise--free b { color: #fff; }
.promise--free span { color: #FFE2CC; }
.promise__plus { align-self: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--orange); padding: 0 2px; }
@media (max-width: 460px){
  .hero__promise { gap: 8px; }
  .promise { flex: 1; padding: 12px 14px; min-width: 0; }
  .promise b { font-size: 1rem; }
  .promise span { font-size: .72rem; }
  .promise__plus { display: none; }
}
.hero__visual { display: flex; justify-content: center; position: relative; }

@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 30px; }
  .hero__visual { justify-content: flex-start; }
}

/* floating chips around hero phone */
.float-chip {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--sh); border-radius: 14px; padding: 11px 15px;
  font-size: .86rem; font-weight: 600; color: var(--ink);
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 1rem; }
.float-chip small { display: block; font-weight: 500; color: var(--text-3); font-size: .74rem; }
.float-chip--a { top: 11%; left: -16px; }
.float-chip--b { bottom: 11%; right: -26px; }
@media (max-width: 980px){ .float-chip--b{ right: auto; left: -10px; bottom: 6%; } }
@media (max-width: 560px){ .float-chip--a{ left: auto; right: -2px; top: 8%; } .float-chip--b{ right: auto; left: -2px; } }

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone {
  position: relative;
  width: 300px; max-width: 82vw;
  border-radius: 44px;
  background: #0c0c0c;
  padding: 11px;
  box-shadow: var(--sh-lg), 0 0 0 2px rgba(0,0,0,.04);
}
.phone--lg { width: 332px; }
.phone__screen {
  position: relative; border-radius: 34px; overflow: hidden;
  background: var(--white); aspect-ratio: 300 / 640;
  display: flex; flex-direction: column;
}
.phone__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #0c0c0c;
  border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 8;
}
.statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 20px 4px; font-size: .72rem; font-weight: 700; font-family: var(--font-display);
  direction: ltr;
}
.statusbar .dots { display: flex; gap: 4px; align-items: center; }
.statusbar .bar { width: 16px; height: 9px; border: 1.5px solid currentColor; border-radius: 2px; opacity: .9; }

/* app chrome */
.phone__top {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.phone__top--dark {
  background: var(--ink);
  color: #fff;
  border-bottom-color: var(--ink-3);
}
.phone__top--dark .statusbar { color: #fff; }
.phone__top--dark .appbar .alogo { color: #fff; }
.phone__top--dark .appbar .astep { color: rgba(255,255,255,.58); }
.appbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 16px 12px;
}
.appbar .alogo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}
.appbar .alogo__tok { color: var(--orange); font-weight: 800; }
.appbar .astep { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .08em; color: var(--text-3); text-transform: uppercase; }
.app-body { flex: 1; overflow: hidden; padding: 4px 16px 16px; display: flex; flex-direction: column; }
.app-foot { padding: 0 16px 16px; }
.app-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: .84rem; padding: 13px; border-radius: 14px;
}

/* --- screen: video intake --- */
.scr-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 3px; }
.scr-sub { font-size: .72rem; color: var(--text-3); line-height: 1.45; margin-bottom: 12px; }

/* live camera viewfinder (real photo feed) */
.video-feed { flex: 1; position: relative; border-radius: 20px; overflow: hidden; background: #1a1a1a; }
.video-feed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-feed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 26% 64%, rgba(0,0,0,.42) 100%); }
.vf-rec { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,.5); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .64rem; letter-spacing: .04em; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px); }
.vf-rec .d { width: 7px; height: 7px; background: #ff3b30; border-radius: 50%; animation: vfblink 1.4s steps(1) infinite; }
.vf-rec em { font-family: var(--font-mono); font-style: normal; font-size: .58rem; opacity: .85; }
@keyframes vfblink { 50% { opacity: .25; } }
.vf-corner { position: absolute; width: 18px; height: 18px; z-index: 3; border: 2px solid rgba(255,255,255,.92); }
.vf-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; border-top-left-radius: 4px; }
.vf-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; border-top-right-radius: 4px; }
.vf-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; border-bottom-left-radius: 4px; }
.vf-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; border-bottom-right-radius: 4px; }
.vf-shutter { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.18); border: 3px solid #fff; display: grid; place-items: center; }
.vf-shutter i { width: 30px; height: 30px; border-radius: 50%; background: #fff; display: block; }
.vf-tag { position: absolute; bottom: 16px; right: 14px; z-index: 3; color: #fff; font-size: .62rem; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.5); }

/* legacy striped drop (still used in step shots) */
.video-drop {
  flex: 1; border-radius: 20px; position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #1d1d1d 0 11px, #181818 11px 22px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: #fff; border: 1.5px dashed rgba(255,255,255,.18);
}
.video-drop .rec { width: 58px; height: 58px; border-radius: 50%; background: rgba(249,115,22,.16); border: 2px solid var(--orange); display: grid; place-items: center; }
.video-drop .rec i { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); display: block; }
.video-drop .tag { font-size: .74rem; font-weight: 600; }
.video-drop .meta { font-family: var(--font-mono); font-size: .58rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.video-pill { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.5); color: #fff; font-size: .6rem; font-weight: 600; padding: 4px 9px; border-radius: 999px; display: flex; align-items: center; gap: 5px; }
.video-pill .live { width: 6px; height: 6px; background: #ff4d4d; border-radius: 50%; }

/* --- screen: AI processing terminal --- */
.term { flex: 1; background: var(--ink); border-radius: 18px; padding: 14px; display: flex; flex-direction: column; gap: 0; overflow: hidden; }
.term .trow { display: flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: .56rem; color: var(--on-dark-2); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.term .trow .t { color: var(--orange); min-width: 34px; }
.term .trow .ok { margin-inline-start: auto; color: var(--green); }
.term .trow.is-now { color: #fff; }
.term .head { font-family: var(--font-mono); font-size: .56rem; color: var(--on-dark-2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; display: flex; gap: 14px; }
.term .head b { color: #fff; }

/* --- screen: BOQ table --- */
.boq-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.boq-head .code { font-family: var(--font-mono); font-size: .56rem; color: var(--text-3); }
.boq-stats { display: flex; gap: 6px; margin-bottom: 10px; }
.boq-stat { flex: 1; background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 7px 8px; text-align: center; }
.boq-stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: .92rem; }
.boq-stat span { font-size: .54rem; color: var(--text-3); }
.boq-list { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.boq-row { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .66rem; }
.boq-row .bc { font-family: var(--font-mono); font-size: .56rem; color: var(--text-3); }
.boq-row .bd { color: var(--ink); font-weight: 500; line-height: 1.3; }
.boq-row .bq { font-family: var(--font-mono); font-size: .58rem; color: var(--text-2); white-space: nowrap; }
.boq-row.warn { background: var(--orange-soft); margin-inline: -16px; padding-inline: 16px; border-bottom-color: var(--orange-line); }
.boq-row .warn-tag { display: inline-flex; align-items: center; gap: 4px; color: var(--orange-700); font-weight: 700; }
.boq-note { font-size: .56rem; color: var(--orange-700); padding: 6px 0 0; line-height: 1.4; }

/* --- screen: live arena / offers --- */
.arena-top { display: flex; gap: 6px; margin-bottom: 10px; }
.arena-kpi { flex: 1; background: var(--ink); color: #fff; border-radius: 12px; padding: 9px 10px; }
.arena-kpi span { font-family: var(--font-mono); font-size: .5rem; color: var(--on-dark-2); letter-spacing: .08em; }
.arena-kpi b { display: block; font-family: var(--font-display); font-weight: 700; font-size: .82rem; margin-top: 2px; }
.offer { border: 1px solid var(--line); border-radius: 14px; padding: 11px; margin-bottom: 8px; }
.offer.is-best { border-color: var(--green-line); background: var(--green-soft); }
.offer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.offer__who { display: flex; align-items: center; gap: 8px; }
.offer__av { width: 28px; height: 28px; border-radius: 9px; background: var(--cream-2); display: grid; place-items: center; font-weight: 700; font-size: .72rem; color: var(--text-2); }
.offer__name { font-weight: 700; font-size: .74rem; }
.offer__rate { font-family: var(--font-mono); font-size: .54rem; color: var(--text-3); }
.offer__price { font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.offer__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.offer__cell { background: var(--cream); border-radius: 8px; padding: 6px; }
.offer.is-best .offer__cell { background: rgba(255,255,255,.6); }
.offer__cell span { font-size: .5rem; color: var(--text-3); display: block; }
.offer__cell b { font-size: .62rem; font-weight: 600; }
.offer__badge { font-size: .52rem; font-weight: 700; color: var(--green); background: #fff; border: 1px solid var(--green-line); padding: 2px 7px; border-radius: 999px; }

/* --- live pulse dot (matches contractor app) --- */
@keyframes live-pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  position: relative;
}
.live-dot--sm { width: 6px; height: 6px; }
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #ef4444;
  opacity: 0.45;
  animation: live-pulse-ring 1.4s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .live-dot::after { animation: none; }
}

/* --- screen: contractor feed --- */
.phone--feed { width: 318px; }
.phone__screen--feed { background: #f5f5f4; }
.phone__top--light { background: #fff; border-bottom: 1px solid var(--line); }
.phone__top--light .statusbar { color: var(--ink); }
.appbar--feed { padding-top: 2px; }
.appbar__page { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.feed-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 12px 8px;
  padding: 9px 11px;
  border-radius: 10px;
  background: #fef2f2;
  font-size: .62rem;
  font-weight: 700;
  color: #991b1b;
}
.feed-scroll { padding: 0 12px 14px; overflow: hidden; }
.feed-live-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  font-family: var(--font-mono);
  font-size: .5rem;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: .03em;
}
.feed-card { border: 1px solid var(--line); border-radius: 14px; padding: 11px; margin-bottom: 9px; background: #fff; }
.feed-card--rich { box-shadow: var(--sh-sm); }
.feed-card__h { font-weight: 700; font-size: .74rem; margin: 0 0 3px; line-height: 1.35; }
.feed-card__id { font-family: var(--font-mono); font-size: .5rem; color: var(--text-3); margin: 0 0 8px; }
.feed-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.feed-meta span { font-size: .52rem; background: var(--cream); border: 1px solid var(--line); border-radius: 7px; padding: 3px 6px; color: var(--text-2); }
.feed-meta span.price { color: var(--orange-700); font-weight: 700; border-color: var(--orange-line); background: var(--orange-soft); }
.feed-bids {
  margin: 0 0 6px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #fff7ed;
  font-size: .54rem;
  font-weight: 600;
  color: #c2410c;
}
.feed-tags { margin: 0 0 9px; font-size: .5rem; line-height: 1.45; color: var(--text-3); }
.feed-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .68rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 26px; padding-block: 20px; color: var(--text-2); font-weight: 500; font-size: .96rem; }
.trust__row .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 1rem; }

/* ============================================================
   PROBLEM
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
.prob-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; gap: 15px; align-items: flex-start; }
.prob-card .pic { width: 46px; height: 46px; border-radius: 13px; background: var(--cream); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; color: var(--orange-700); }
.prob-card .pic svg { width: 23px; height: 23px; display: block; }
.prob-card p { color: var(--text-2); font-size: 1rem; line-height: 1.5; }
.prob-card p b { color: var(--ink); font-weight: 600; }
.prob-band { margin-top: 26px; background: var(--ink); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(26px,4vw,40px); }
.prob-band p { font-size: clamp(1.15rem, 2vw, 1.5rem); font-family: var(--font-display); font-weight: 500; line-height: 1.4; }
.prob-band p .hl { color: var(--orange); }
@media (min-width: 720px){ .prob-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-700); border: 1px solid var(--orange-line); }
.step h3 { font-size: 1.32rem; margin: 18px 0 9px; }
.step p { color: var(--text-2); font-size: 1rem; line-height: 1.55; }
.step__shot { margin-top: 20px; border-radius: var(--r); border: 1px solid var(--line); overflow: hidden; background: var(--cream); height: 236px; }
.step__shot .shot { height: 100%; min-height: 0; }
.step__shot .shot--photo { height: 100%; }
.step__shot .shot--photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 880px){ .steps { grid-template-columns: repeat(3,1fr); } }

/* mini app shot used inside step cards (no phone bezel) */
.shot { background: #fff; padding: 14px; min-height: 188px; display: flex; flex-direction: column; }
.shot__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.shot__bar b { font-family: var(--font-display); font-weight: 800; font-size: .8rem; }
.shot__bar b i { color: var(--orange); font-style: normal; }
.shot__bar span { font-family: var(--font-mono); font-size: .54rem; color: var(--text-3); letter-spacing: .06em; }
.shot--photo { padding: 0; min-height: 0; }
.shot--photo img { width: 100%; height: 232px; object-fit: cover; object-position: center 28%; display: block; }

/* ============================================================
   INSPECTOR FEATURE
   ============================================================ */
.insp { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.insp__check { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.insp__check li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.06rem; color: var(--ink); font-weight: 500; }
.insp__check .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .8rem; margin-top: 1px; }
.insp__anchor { margin-top: 28px; background: var(--green-soft); border: 1px solid var(--green-line); border-radius: var(--r); padding: 18px 20px; color: #235926; font-weight: 500; font-size: 1.02rem; line-height: 1.5; }
.insp__anchor b { color: var(--green); font-weight: 700; }
.insp__visual { display: flex; justify-content: center; }
@media (min-width: 940px){ .insp { grid-template-columns: 1fr 1fr; gap: 56px; } .insp--rev .insp__visual { order: -1; } }

/* ============================================================
   COMPARISON (kayak style)
   ============================================================ */
.cmp-board { margin-top: 46px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh); overflow: hidden; }
.cmp-board__bar { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--line); background: var(--cream); flex-wrap: wrap; }
.cmp-board__bar .t { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.cmp-pill { font-size: .72rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.cmp-pill.same { background: #fff; border: 1px solid var(--line-2); color: var(--text-2); }
.cmp-pill.diff { background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-700); }
.cmp-cols { display: grid; grid-template-columns: 1fr; }
.cmp-col { padding: 22px; border-top: 1px solid var(--line); }
.cmp-col.pick { background: linear-gradient(180deg, var(--green-soft), #fff); }
/* traffic-light columns - soft tinted backgrounds + top accent */
.cmp-col--red   { background: linear-gradient(180deg, var(--red-soft), #fff); }
.cmp-col--orange{ background: linear-gradient(180deg, var(--orange-soft), #fff); }
.cmp-col--green { background: linear-gradient(180deg, var(--green-soft), #fff); }
.cmp-col--red, .cmp-col--orange, .cmp-col--green { position: relative; }
.cmp-col--red::before, .cmp-col--orange::before, .cmp-col--green::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px;
}
.cmp-col--red::before    { background: var(--red); }
.cmp-col--orange::before { background: var(--orange); }
.cmp-col--green::before  { background: var(--green); }
.cmp-col--red   .cmp-col__av { background: var(--red-soft);    color: var(--red);     border: 1px solid var(--red-line); }
.cmp-col--orange .cmp-col__av{ background: var(--orange-soft); color: var(--orange-700); border: 1px solid var(--orange-line); }
.cmp-col--green .cmp-col__av { background: var(--green-soft);  color: var(--green);   border: 1px solid var(--green-line); }
.cmp-col--red   .cmp-price { color: var(--red); }
.cmp-col--orange .cmp-price{ color: var(--orange-700); }
.cmp-col--green .cmp-price { color: var(--green); }
.cmp-col__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cmp-col__who { display: flex; align-items: center; gap: 11px; }
.cmp-col__av { width: 40px; height: 40px; border-radius: 12px; background: var(--cream-2); display: grid; place-items: center; font-weight: 800; color: var(--text-2); font-family: var(--font-display); }
.cmp-col__name { font-weight: 700; font-family: var(--font-display); }
.cmp-col__rate { font-family: var(--font-mono); font-size: .62rem; color: var(--text-3); }
.cmp-price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.cmp-price small { font-size: .62rem; font-weight: 500; color: var(--text-3); display: block; font-family: var(--font-body); margin-top: 3px; letter-spacing: .04em; }
.cmp-same { margin: 14px 0; padding: 12px 0; border-block: 1px dashed var(--line-2); display: flex; flex-direction: column; gap: 6px; }
.cmp-same .row { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-2); }
.cmp-same .row b { color: var(--ink); font-weight: 600; font-family: var(--font-mono); font-size: .76rem; }
.cmp-diff { display: flex; flex-direction: column; gap: 9px; }
.cmp-diff .row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.cmp-diff .row span { color: var(--text-3); }
.cmp-diff .row b { font-weight: 700; }
.cmp-best-tag { font-size: .66rem; font-weight: 700; color: var(--green); background: #fff; border: 1px solid var(--green-line); padding: 4px 10px; border-radius: 999px; }
.cmp-early-tag { font-size: .66rem; font-weight: 700; color: var(--orange-700); background: var(--orange-soft); border: 1px solid var(--orange-line); padding: 4px 10px; border-radius: 999px; }
.cmp-note { text-align: center; margin-top: 18px; color: var(--text-3); font-size: .92rem; }
@media (min-width: 860px){ .cmp-cols { grid-template-columns: repeat(3,1fr); } .cmp-col { border-top: none; border-inline-start: 1px solid var(--line); } .cmp-col:first-child { border-inline-start: none; } }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
.ba-card { border-radius: var(--r-lg); padding: clamp(22px,3vw,32px); }
.ba-card.bad { background: var(--bad-soft); border: 1px solid var(--bad-line); }
.ba-card.good { background: var(--ink); color: var(--on-dark); border: 1px solid var(--ink); }
.ba-card h3 { font-size: 1.32rem; display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.ba-card.bad h3 { color: var(--bad); }
.ba-card.good h3 { color: #fff; }
.ba-card.good h3 .badge, .ba-card.bad h3 .badge { font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; font-family: var(--font-body); }
.ba-card.bad .badge { background: #fff; color: var(--bad); border: 1px solid var(--bad-line); }
.ba-card.good .badge { background: var(--orange); color: #fff; }
.ba-list { display: flex; flex-direction: column; gap: 14px; }
.ba-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; line-height: 1.45; }
.ba-txt { flex: 1; }
.ba-txt b { font-weight: 700; }
.ba-card.bad .ba-txt b { color: #5e4843; }
.ba-card.good .ba-txt b { color: #fff; }
.ba-card.bad .ba-list li { color: #6e564f; }
.ba-card.good .ba-list li { color: var(--on-dark); }
.ba-ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; margin-top: 1px; }
.ba-card.bad .ba-ic { background: #fff; color: var(--bad); border: 1px solid var(--bad-line); }
.ba-card.good .ba-ic { background: var(--green); color: #fff; }
@media (min-width: 820px){ .ba { grid-template-columns: 1fr 1fr; gap: 22px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.tst-card .stars { margin-bottom: 14px; }
.tst-card blockquote { font-size: 1.06rem; color: var(--ink); line-height: 1.55; font-weight: 500; flex: 1; }
.tst-card .who { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.tst-card .av { width: 38px; height: 38px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; font-weight: 800; color: var(--text-2); font-family: var(--font-display); }
.tst-card .who b { font-family: var(--font-display); font-weight: 700; }
.tst-card .who span { display: block; font-size: .82rem; color: var(--text-3); }
@media (min-width: 720px){ .tst { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){ .tst { grid-template-columns: repeat(4,1fr); gap: 16px; } .tst-card { padding: 22px; } .tst-card blockquote { font-size: .98rem; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about__inner { max-width: 760px; }
.about p { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--text-2); line-height: 1.62; margin-top: 22px; }
.about p b { color: var(--ink); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; text-align: start; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.08rem,1.6vw,1.24rem); color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; position: relative; transition: .2s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: .25s; }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .pm { background: var(--orange); border-color: var(--orange); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a__in { overflow: hidden; }
.faq-a p { color: var(--text-2); font-size: 1.04rem; line-height: 1.6; padding: 0 4px 24px; max-width: 64ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); text-align: center; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 0%, rgba(249,115,22,.18), transparent 65%); }
.final__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.final h2 { color: #fff; font-size: var(--fz-h2); font-weight: 800; }
.final h2 .hl { color: var(--orange); }
.final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ============================================================
   CONTRACTOR SECTION (dark, Uber-driver tone)
   ============================================================ */
.pros { background: #141414; color: var(--on-dark); position: relative; overflow: hidden; }
.pros::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 50% at 88% 100%, rgba(249,115,22,.12), transparent 70%); }
.pros__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.pros h2 { color: #fff; font-size: var(--fz-h2); font-weight: 800; }
.pros h2 .hl { color: var(--orange); }
.pros__lede { margin-top: 22px; color: var(--on-dark-2); font-size: 1.12rem; line-height: 1.6; max-width: 52ch; }
.pros__feats { margin-top: 26px; display: grid; gap: 12px; }
.pros__feats li { display: flex; gap: 12px; align-items: center; font-weight: 500; font-size: 1.04rem; color: var(--on-dark); }
.pros__feats .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; background: rgba(249,115,22,.18); color: var(--orange); display: grid; place-items: center; font-size: .78rem; font-weight: 700; }
.pros__cta { margin-top: 30px; }
.pros__visual { display: flex; justify-content: center; }
@media (min-width: 940px){ .pros__grid { grid-template-columns: 1fr .92fr; } .pros__visual { order: 1; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark-2); border-top: 1px solid var(--ink-3); }
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: 44px 32px;
}
.footer__brand .logo { color: #fff; font-size: 1.35rem; }
.footer__brand p { color: var(--on-dark-2); margin-top: 12px; max-width: 34ch; font-size: .98rem; line-height: 1.55; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}
.footer__nav a {
  color: var(--on-dark-2);
  font-size: .96rem;
  white-space: nowrap;
  transition: color .15s;
}
.footer__nav a:hover { color: #fff; }
.footer__contact { color: var(--orange) !important; font-weight: 600; }
.footer__contact:hover { color: #ffb380 !important; }
.footer__bottom {
  border-top: 1px solid var(--ink-3);
  padding-block: 20px 24px;
  font-size: .86rem;
  color: var(--text-3);
}
@media (min-width: 720px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px 48px;
  }
  .footer__brand { flex: 0 1 320px; }
  .footer__nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 12px 28px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: linear-gradient(165deg, var(--white) 0%, var(--cream) 42%, var(--cream-2) 100%); min-height: calc(100vh - 72px); }
.contact-hero { padding-block: clamp(72px, 12vw, 120px) clamp(56px, 8vw, 96px); }
.contact-wrap { max-width: 480px; margin-inline: auto; text-align: center; }
.contact-wrap .h2 { margin-top: 18px; }
.contact-lead { margin-top: 16px; color: var(--text-2); font-size: 1.08rem; line-height: 1.62; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  text-align: start;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  border-color: var(--orange-line);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.contact-card__emoji { font-size: 1.85rem; line-height: 1; flex-shrink: 0; }
.contact-card__body { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.contact-card__body strong { font-size: .82rem; color: var(--text-3); font-weight: 600; }
.contact-card__value { font-weight: 800; font-size: 1.05rem; color: var(--orange-700); }
.contact-card__hint { font-size: .85rem; color: var(--text-3); line-height: 1.45; }
.contact-back { margin-top: 36px; font-size: .95rem; }
.contact-back a { color: var(--text-3); transition: color .15s; }
.contact-back a:hover { color: var(--orange-700); }

/* --- screen: closed work package --- */
.wp-status { display: flex; align-items: center; gap: 8px; background: var(--green-soft); border: 1px solid var(--green-line); border-radius: 11px; padding: 9px 11px; margin-bottom: 11px; }
.wp-status .ck { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .6rem; flex-shrink: 0; }
.wp-status b { font-size: .68rem; color: #235926; font-weight: 700; }
.wp-status .sig { margin-inline-start: auto; font-family: var(--font-mono); font-size: .48rem; color: var(--text-3); }
.wp-sel { border: 1px solid var(--green-line); background: var(--green-soft); border-radius: 12px; padding: 10px 11px; margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.wp-sel .offer__av { background: #fff; }
.wp-sel .wp-name { font-weight: 700; font-size: .74rem; }
.wp-sel .wp-rate { font-family: var(--font-mono); font-size: .52rem; color: var(--text-3); }
.wp-sel .wp-price { margin-inline-start: auto; text-align: end; }
.wp-sel .wp-price b { font-family: var(--font-display); font-weight: 800; font-size: .9rem; display: block; }
.wp-sel .wp-price span { font-size: .48rem; color: var(--text-3); }
.wp-docs { display: flex; flex-direction: column; gap: 6px; }
.wp-doc { display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 10px; padding: 7px 10px; }
.wp-doc .di { width: 24px; height: 24px; border-radius: 7px; background: var(--cream); display: grid; place-items: center; font-size: .82rem; flex-shrink: 0; }
.wp-doc .dt b { display: block; font-size: .64rem; font-weight: 600; }
.wp-doc .dt span { font-size: .5rem; color: var(--text-3); }
.wp-doc .dok { margin-inline-start: auto; color: var(--green); font-size: .7rem; }

/* --- inspector: standalone clean photo card --- */
.insp__visual { display: flex; justify-content: center; }
.insp__photo { width: 340px; max-width: 86vw; border-radius: 28px; overflow: hidden; box-shadow: var(--sh-lg); background: var(--cream); border: 1px solid var(--line); }
.insp__photo img { width: 100%; height: auto; display: block; }

/* --- final CTA handoff preview --- */
.final__proof.handoff-card {
  margin: 34px auto 0;
  max-width: 400px;
  text-align: start;
  background: var(--cream);
  color: var(--text);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 16px;
}
.handoff-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #dcfce7;
  border: 1px solid #86efac;
  margin-bottom: 16px;
}
.handoff-banner__ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.handoff-banner__copy b { display: block; font-size: .84rem; color: #065f46; font-weight: 700; }
.handoff-banner__copy span { display: block; margin-top: 2px; font-size: .72rem; color: #047857; }
.handoff-step {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 6px;
}
.handoff-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.handoff-sub {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}
.handoff-section-title {
  font-size: .92rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 10px;
}
.handoff-contractor {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, #0a0a0a 0%, #1f2937 100%);
  border: 2px solid var(--orange);
  color: #fff;
}
.handoff-contractor__glow {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .15;
  filter: blur(20px);
}
.handoff-contractor__inner { position: relative; }
.handoff-contractor__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.handoff-contractor__tag {
  display: block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.handoff-contractor__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.handoff-contractor__rate {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  color: rgba(255,255,255,.72);
}
.handoff-contractor__price { text-align: end; flex-shrink: 0; }
.handoff-contractor__price b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}
.handoff-contractor__price span {
  display: block;
  margin-top: 4px;
  font-size: .62rem;
  color: rgba(255,255,255,.5);
}
.handoff-contractor__meta {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.handoff-contractor__meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .74rem;
}
.handoff-contractor__meta dt { color: rgba(255,255,255,.5); font-weight: 400; }
.handoff-contractor__meta dd { margin: 0; color: #fff; font-weight: 500; text-align: end; }
.handoff-docs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.handoff-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.handoff-doc:last-child { border-bottom: none; }
.handoff-doc__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--text-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.handoff-doc__icon--sealed { background: var(--orange-soft); color: var(--orange-700); }
.handoff-doc__body { flex: 1; min-width: 0; }
.handoff-doc__body b { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); }
.handoff-doc__body span {
  display: block;
  margin-top: 2px;
  font-size: .72rem;
  color: var(--text-3);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.handoff-doc__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.handoff-doc__sealed {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #065f46;
  font-size: .62rem;
  font-weight: 700;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }
