/* ============================================================
   WORKPROOF LANDING PAGE – style.css
   ============================================================ */

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

:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
  --orange:    #f97316;
  --orange-dk: #ea6c0a;
  --orange-lt: #fff7ed;
  --green:     #22c55e;
  --green-dk:  #16a34a;
  --blue:      #3b82f6;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(15,23,42,0.10);
  --shadow-lg: 0 12px 48px rgba(15,23,42,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 680px;
}

.hidden { display: none !important; }

/* ---------- Typography helpers ---------- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-label-light { color: #fdba74; }

.section-h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.section-h2.light { color: var(--white); }
.section-h2.centered { text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.section-sub.light { color: #cbd5e1; }
.section-sub.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}
.btn-primary:hover { background: var(--orange-dk); box-shadow: 0 4px 16px rgba(249,115,22,0.35); }

.btn-outline {
  background: transparent;
  color: var(--slate-900);
  border: 1.5px solid var(--slate-300, #cbd5e1);
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}
.btn-outline:hover { border-color: var(--slate-600); }

.btn-link {
  background: none;
  border: none;
  color: var(--slate-500, #64748b);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.logo::before {
  content: '✓ ';
  color: var(--orange);
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  color: var(--white);
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, rgba(249,115,22,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-copy {
  flex: 1;
  min-width: 0;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
  display: inline-block;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}
.hero-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: #4b5563;
}

/* ---------- HERO VISUAL (report card illustration) ---------- */
.hero-visual {
  flex-shrink: 0;
  width: 380px;
  position: relative;
  padding: 2rem 1rem 2rem 1rem;
}

/* Ghost card peeking behind */
.hv-card-behind {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  right: 0.5rem;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transform: rotate(2.5deg);
  z-index: 0;
}

/* Floating notification */
.hv-notification {
  position: absolute;
  top: 0;
  right: -0.5rem;
  background: var(--white);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
.hv-notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.25);
}
.hv-notif-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hv-notif-text strong {
  font-size: 0.78rem;
  color: var(--slate-900);
  font-weight: 700;
}
.hv-notif-text span {
  font-size: 0.68rem;
  color: var(--slate-500, #64748b);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Main report card */
.hv-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  transform: rotate(-1.5deg);
  margin-top: 1.5rem;
}
.hv-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.hv-card-job {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.3;
}
.hv-card-address {
  font-size: 0.68rem;
  color: var(--slate-500, #64748b);
  margin-top: 2px;
}
.hv-badge {
  flex-shrink: 0;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hv-photos {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.hv-photo {
  flex: 1;
  height: 90px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.hv-before { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.hv-after  { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.hv-photo-icon { font-size: 1.4rem; }
.hv-photo-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hv-note {
  font-size: 0.75rem;
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.5;
  background: var(--slate-50);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--orange);
}

.hv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hv-worker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hv-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--slate-800);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-worker-name { font-size: 0.75rem; font-weight: 600; color: var(--slate-900); }
.hv-worker-meta { font-size: 0.62rem; color: var(--slate-400); }
.hv-share-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  cursor: pointer;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.9rem 1.5rem;
}
.trust-item {
  font-size: 0.8rem;
  color: var(--slate-600);
  font-weight: 500;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 14px;
  background: var(--slate-200);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- SOCIAL PROOF QUOTE ---------- */
.social-proof-quote {
  background: var(--slate-900);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--orange);
}
.spq-text {
  font-size: 1rem;
  color: var(--slate-100);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.65rem;
}
.spq-attr {
  font-size: 0.78rem;
  color: var(--slate-500, #64748b);
  font-weight: 500;
}

/* ---------- SECTION base ---------- */
.section { padding: 5rem 0; }
.section-light { background: var(--slate-50); }
.section-dark { background: var(--slate-900); }
.section-accent { background: var(--slate-800); }

/* ---------- PROBLEM CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.card-problem { border-top: 3px solid var(--orange); }
.card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ---------- SOLUTION FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.feature-item p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* ---------- DEMO HEADER ---------- */
.demo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.demo-interactive-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--slate-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  letter-spacing: 0.02em;
}
.demo-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}

/* Tap hint label beside mockup title */
.mockup-tap-hint {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--orange);
  margin-left: 0.4rem;
}

/* ---------- DEMO / MOCKUP ---------- */
.mockup-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.mockup-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mockup-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.employee-dot { background: var(--blue); }
.manager-dot { background: var(--green); }

.mockup-arrow {
  font-size: 2rem;
  color: var(--slate-400);
  align-self: center;
  padding-top: 3.5rem;
}

/* Phone frame */
@keyframes phoneFlash {
  0%   { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08); }
  30%  { box-shadow: var(--shadow-lg), 0 0 0 4px rgba(34,197,94,0.7); }
  100% { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08); }
}
.phone-frame.phone-flash { animation: phoneFlash 0.8s ease-out forwards; }

.phone-frame {
  width: 260px;
  height: 480px;
  background: var(--slate-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--slate-700);
  border-radius: 3px;
  z-index: 2;
}
.phone-screen {
  background: var(--white);
  border-radius: 26px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* App screens */
.app-screen {
  display: none;
  flex-direction: column;
  height: 100%;
  padding: 0;
  animation: fadeIn 0.25s ease;
}
.app-screen.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.app-topbar {
  background: var(--slate-900);
  color: var(--white);
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.app-back {
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.7;
}
.app-back:hover { opacity: 1; }

.app-job-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-900);
  padding: 0.75rem 0.85rem 0.1rem;
}
.app-address {
  font-size: 0.72rem;
  color: var(--slate-500, #64748b);
  padding: 0 0.85rem 0.75rem;
}
.app-steps {
  padding: 0.25rem 0.85rem;
  flex: 1;
}
.app-step {
  font-size: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-400);
}
.step-done  { color: var(--green); }
.step-active { color: var(--slate-900); font-weight: 600; }
.step-pending { color: var(--slate-400); }

.app-btn {
  margin: 0.75rem;
  width: calc(100% - 1.5rem);
  padding: 0.65rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.app-btn:hover { background: var(--orange-dk); }
.app-btn-ghost {
  background: var(--slate-100);
  color: var(--slate-600);
}
.app-btn-ghost:hover { background: var(--slate-200); }
.app-btn-sm { padding: 0.5rem; font-size: 0.75rem; }

/* Real photo in mockup */
.photo-real {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0.5rem 0.85rem 0;
  border-radius: 8px;
}
.photo-real img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px 8px 0 0;
  min-height: 0;
}
.photo-real-meta {
  font-size: 0.62rem;
  color: var(--slate-500, #64748b);
  background: var(--slate-50);
  padding: 0.3rem 0.6rem;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--slate-100);
  border-top: none;
  flex-shrink: 0;
}

/* Photo placeholder */
.photo-placeholder {
  margin: 0.6rem 0.85rem;
  border-radius: 8px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.before-photo { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.after-photo  { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.photo-icon { font-size: 1.8rem; }
.photo-caption { font-size: 0.72rem; font-weight: 600; color: var(--slate-700); text-align: center; }
.photo-meta { font-size: 0.65rem; color: var(--slate-500, #64748b); }

/* Notes */
.notes-block {
  margin: 0.75rem 0.85rem;
  background: var(--slate-50);
  border-radius: 8px;
  padding: 0.75rem;
  flex: 1;
}
.note-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}
.note-text {
  font-size: 0.75rem;
  color: var(--slate-700);
  line-height: 1.55;
  font-style: italic;
}

/* Complete screen */
.complete-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}
.complete-icon { font-size: 2.5rem; }
.complete-title { font-size: 0.9rem; font-weight: 700; color: var(--slate-900); }
.complete-sub { font-size: 0.72rem; color: var(--slate-500, #64748b); text-align: center; line-height: 1.5; }

/* Manager – job list */
.job-list { flex: 1; overflow: hidden; padding: 0.4rem 0; }
.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--slate-100);
  cursor: pointer;
  transition: background 0.12s;
}
.job-row:hover { background: #fff7ed; }
.job-row-left { display: flex; align-items: center; gap: 0.5rem; }
.job-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.done-dot        { background: var(--green); }
.inprogress-dot  { background: var(--blue); }
.pending-dot     { background: var(--slate-400); }
.wrappingup-dot  { background: #f59e0b; }
.onsite-dot      { background: var(--blue); }
.scheduled-dot   { background: var(--slate-400); }
.job-row-title  { font-size: 0.75rem; font-weight: 600; color: var(--slate-900); }
.job-row-sub    { font-size: 0.65rem; color: var(--slate-400); margin-top: 1px; }
.job-badge { font-size: 0.6rem; font-weight: 700; padding: 0.2rem 0.45rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.complete-badge    { background: #dcfce7; color: #15803d; }
.inprogress-badge  { background: #dbeafe; color: #1d4ed8; }
.pending-badge     { background: var(--slate-100); color: var(--slate-600); }
.wrappingup-badge  { background: #fef3c7; color: #b45309; }
.onsite-badge      { background: #dbeafe; color: #1d4ed8; }
.scheduled-badge   { background: var(--slate-100); color: var(--slate-600); }
.tap-hint { font-size: 0.65rem; color: var(--slate-400); text-align: center; padding: 0.5rem; }

/* Tappable steps */
.step-tappable { cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-radius: 4px; }
.step-tappable:hover { background: var(--slate-100); padding-left: 0.25rem; padding-right: 0.25rem; margin: 0 -0.25rem; }
.step-tap { font-size: 0.58rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; }

/* Manager status block */
.mgr-status-block { margin: 0.4rem 0.85rem 0.6rem; text-align: center; }
.mgr-status-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #b45309;
  margin-bottom: 0.3rem;
}
.mgr-status-badge.mgr-complete { background: #dcfce7; color: #15803d; }
.mgr-status-sub { font-size: 0.65rem; color: var(--slate-500, #64748b); }

/* Manager checklist (On Site view) */
.mgr-checklist { padding: 0.25rem 0.85rem; flex: 1; }
.mgr-check { font-size: 0.72rem; padding: 0.38rem 0; border-bottom: 1px solid var(--slate-100); }
.mgr-check-done    { color: var(--green); }
.mgr-check-active  { color: var(--slate-900); font-weight: 600; }
.mgr-check-pending { color: var(--slate-400); }

/* Scheduled block */
.scheduled-block { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; margin: 0.5rem 0.85rem; }
.scheduled-icon  { font-size: 1.8rem; }
.scheduled-time  { font-size: 0.85rem; font-weight: 700; color: var(--slate-900); }
.scheduled-sub   { font-size: 0.68rem; color: var(--slate-500, #64748b); }

/* Dimmed photo placeholder */
.report-photo-dim { opacity: 0.25; }

/* Manager – report */
.report-header { padding: 0.65rem 0.85rem 0; }
.report-title { font-size: 0.85rem; font-weight: 700; color: var(--slate-900); }
.report-meta  { font-size: 0.65rem; color: var(--slate-500, #64748b); margin-top: 2px; }
.report-photos { display: flex; gap: 0.5rem; margin: 0.6rem 0.85rem; }
.report-photo-real {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
}
.report-photo-real img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.after-not-uploaded {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--slate-100);
  font-size: 0.6rem;
  color: var(--slate-400);
  font-weight: 500;
  padding-bottom: 1rem;
}
.after-not-icon { font-size: 1.1rem; opacity: 0.4; }

.report-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: rgba(15,23,42,0.55);
  text-align: center;
  padding: 0.2rem 0;
}
.report-note {
  margin: 0 0.85rem;
  font-size: 0.72rem;
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}

/* Manager – share */
.share-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 0.5rem;
}
.share-icon  { font-size: 2rem; }
.share-title { font-size: 0.85rem; font-weight: 700; color: var(--slate-900); }
.share-url   { font-size: 0.65rem; color: var(--blue); background: #eff6ff; padding: 0.3rem 0.6rem; border-radius: 4px; }
.share-options { margin-top: 0.5rem; width: 100%; display: flex; flex-direction: column; gap: 0.35rem; }
.share-opt {
  font-size: 0.72rem;
  background: var(--slate-50);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  color: var(--slate-700);
  cursor: pointer;
  transition: background 0.12s;
}
.share-opt:hover { background: var(--slate-100); }

/* Step dots nav */
.mockup-steps-nav { display: flex; gap: 0.4rem; }
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--slate-300, #cbd5e1);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  padding: 0;
}
.step-dot.active { background: var(--orange); transform: scale(1.2); }
.step-dot:hover  { background: var(--slate-500, #64748b); }

.demo-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}
.demo-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.mockup-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 2.5rem;
  font-style: italic;
}

/* ---------- SOCIAL PROOF CAROUSEL ---------- */
.spq-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.spq-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.social-proof-quote {
  display: none;
  background: var(--slate-900);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--orange);
  animation: spqFade 0.3s ease;
}
.social-proof-quote.active { display: block; }

@keyframes spqFade {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.spq-text {
  font-size: 1rem;
  color: var(--slate-100);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.65rem;
}
.spq-attr {
  font-size: 0.78rem;
  color: var(--slate-500, #64748b);
  font-weight: 500;
}
.spq-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}
.spq-arrow:hover { background: var(--slate-100); border-color: var(--slate-400); }
.spq-arrow:disabled { opacity: 0.3; cursor: default; }
.spq-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.spq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--slate-300, #cbd5e1);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.spq-dot.active { background: var(--orange); transform: scale(1.3); }

/* ---------- NICHES ---------- */
.niches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.niche {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--slate-200);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.centered { text-align: center; }

/* ---------- FOLLOW-UP ACCORDION ---------- */
.followup-accordion {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.followup-summary {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  transition: background 0.15s;
}
.followup-summary::-webkit-details-marker { display: none; }
.followup-summary::before {
  content: '›';
  font-size: 1.3rem;
  color: var(--white);
  transition: transform 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
details[open] .followup-summary::before { transform: rotate(90deg); }
.followup-summary:hover { background: var(--orange-dk); }
.followup-optional {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-left: auto;
}

/* ---------- GOOGLE FORM EMBED ---------- */
.gform-wrap {
  margin-top: 1.5rem;
  width: 110%;
  margin-left: -5%;
  max-width: 760px;
}
.gform-wrap iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius);
}

/* ---------- SIGNUP FORM ---------- */
.signup-form { margin-top: 0.5rem; }
.form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.form-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--white);
  color: var(--slate-900);
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-input.invalid { border-color: #ef4444; }
.form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--slate-400);
}
.form-error {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #ef4444;
  min-height: 1.2em;
}

/* Follow-up questions */
.thankyou-check {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.followup-block {
  margin-top: 2rem;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  padding: 1.75rem;
}
.followup-intro {
  font-size: 0.9rem;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.45rem;
}
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate-900);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-textarea { resize: vertical; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
}

.followup-form .btn {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 2.5rem 0;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-sub { font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-link { color: var(--orange); text-decoration: none; }
.footer-link:hover { text-decoration: underline; }
.footer-copy { font-size: 0.75rem; color: var(--slate-600); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 3rem; }
  .hero-visual { width: 100%; max-width: 400px; }
  .hv-card { transform: none; }
  .hv-card-behind { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn { width: 100%; text-align: center; }

  .trust-bar-inner { gap: 0.4rem 1rem; }
  .trust-divider { display: none; }

  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; text-align: center; }
  .form-input { min-width: unset; }

  .mockup-arrow { display: none; }
  .mockup-wrapper { gap: 2.5rem; justify-content: center; }
  .mockup-side { width: 100%; align-items: center; }

  .features-grid { grid-template-columns: 1fr; }

  .followup-block { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .phone-frame { width: 220px; height: 420px; }
  .hv-notification { right: 0; }
}
