/* ═══════════════════════════════════════════════════
   Crewbric — Landing Page Styles
   Design: Dark, premium SaaS, construction-focused
   Font: Inter (body), Outfit (display)
═══════════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --bg-base: #0a0d14;
  --bg-card: #111827;
  --bg-card-2: #1a2236;
  --border: rgba(255,255,255,0.07);
  --border-glow: rgba(251,146,60,0.25);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --amber: #fb923c;
  --amber-glow: rgba(251,146,60,0.15);
  --amber-dark: #c2410c;

  --blue: #3b82f6;
  --blue-glow: rgba(59,130,246,0.15);
  --green: #22c55e;
  --green-glow: rgba(34,197,94,0.15);
  --purple: #a855f7;
  --purple-glow: rgba(168,85,247,0.15);
  --teal: #14b8a6;
  --red: #ef4444;
  --orange: #f97316;

  --tag-progress-bg: rgba(34,197,94,0.12);
  --tag-progress-text: #4ade80;
  --tag-progress-border: rgba(34,197,94,0.25);
  --tag-issue-bg: rgba(251,146,60,0.12);
  --tag-issue-text: #fb923c;
  --tag-issue-border: rgba(251,146,60,0.25);
  --tag-safety-bg: rgba(239,68,68,0.12);
  --tag-safety-text: #f87171;
  --tag-safety-border: rgba(239,68,68,0.25);

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 64px;

  /* Typography */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Section Styles ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--border-glow);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 0 20px rgba(251,146,60,0.35);
}
.btn-primary:hover {
  background: #f97316;
  box-shadow: 0 0 28px rgba(251,146,60,0.5);
  transform: translateY(-1px);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--amber) 0%, #f97316 100%);
  color: #fff;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(251,146,60,0.35);
  gap: 10px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251,146,60,0.5);
}
.btn-hero-primary:active { transform: translateY(0); }

.btn-hero-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  gap: 10px;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.btn-price-ghost {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-price-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.btn-cta-large {
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(251,146,60,0.4);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,13,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(251,146,60,0.4);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
}
.nav-logo-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(251,146,60,0.15);
  color: var(--amber);
  border: 1px solid rgba(251,146,60,0.3);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0 auto;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(251,146,60,0.5) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 70%);
  bottom: -100px; right: 100px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,146,60,0.08);
  border: 1px solid rgba(251,146,60,0.2);
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pill-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-accent {
  background: linear-gradient(135deg, var(--amber) 0%, #f97316 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Phone Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup {
  position: relative;
}
.phone-frame {
  width: 295px;
  background: #0f172a;
  border-radius: 42px;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(251,146,60,0.08);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  width: 90px; height: 26px;
  background: #0f172a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 12px;
  border: 2px solid rgba(255,255,255,0.12);
  border-top: none;
}
.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background: #111827;
  min-height: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  background: #1a2236;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-header-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}
.app-sync-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 3px 8px;
  border-radius: 100px;
}
.sync-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s infinite;
}

.app-entries {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.entry-card {
  background: #1a2236;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  animation: entry-slide-in 0.5s ease both;
}
@keyframes entry-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.entry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.tag {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.tag-progress {
  background: var(--tag-progress-bg);
  color: var(--tag-progress-text);
  border: 1px solid var(--tag-progress-border);
}
.tag-issue {
  background: var(--tag-issue-bg);
  color: var(--tag-issue-text);
  border: 1px solid var(--tag-issue-border);
}
.tag-safety {
  background: var(--tag-safety-bg);
  color: var(--tag-safety-text);
  border: 1px solid var(--tag-safety-border);
}
.entry-time {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
}
.entry-note {
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.entry-photo-thumb {
  width: 100%; height: 44px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  border-radius: 7px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.entry-photo-thumb::after {
  content: '📷 photo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.app-fab {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(251,146,60,0.4);
  animation: fab-bounce 3s infinite;
}
@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ── Float Badges ── */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17,24,39,0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  min-width: 170px;
}
.float-badge-report {
  bottom: 40px; left: -60px;
  animation: float-y 4s ease-in-out infinite;
}
.float-badge-offline {
  top: 80px; right: -55px;
  animation: float-y 4s ease-in-out 2s infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 34px; height: 34px;
  background: rgba(251,146,60,0.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.float-icon-green {
  background: rgba(34,197,94,0.15);
  color: var(--green);
}
.float-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}
.float-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scroll-pulse 2s infinite;
  border-radius: 2px;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.8); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ══════════════════════════════════════════════
   LOGOS BAR
══════════════════════════════════════════════ */
.logos-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: rgba(255,255,255,0.015);
}
.logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.logo-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 20px;
}
.logo-divider {
  width: 1px; height: 20px;
  background: var(--border);
}

/* ══════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════ */
.problem-section {
  padding: var(--section-py) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.solution-bridge {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,146,60,0.4), transparent);
}
.bridge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  padding: 8px 20px;
  background: rgba(251,146,60,0.08);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: 100px;
}

/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.features-section {
  padding: var(--section-py) 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(251,146,60,0.04) 0%, transparent 70%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.feature-card-large { grid-column: span 2; }
.feature-card-report { grid-column: span 2; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card-highlight {
  background: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, var(--bg-card) 60%);
  border-color: rgba(168,85,247,0.2);
}

.feature-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-amber { background: var(--amber-glow); color: var(--amber); border: 1px solid rgba(251,146,60,0.2); }
.feature-blue { background: var(--blue-glow); color: var(--blue); border: 1px solid rgba(59,130,246,0.2); }
.feature-green { background: var(--green-glow); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.feature-purple { background: var(--purple-glow); color: var(--purple); border: 1px solid rgba(168,85,247,0.2); }
.feature-teal { background: rgba(20,184,166,0.1); color: var(--teal); border: 1px solid rgba(20,184,166,0.2); }
.feature-orange { background: rgba(249,115,22,0.1); color: var(--orange); border: 1px solid rgba(249,115,22,0.2); }
.feature-red { background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-tags-demo {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.fdemo-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.fdemo-progress { background: var(--tag-progress-bg); color: var(--tag-progress-text); border: 1px solid var(--tag-progress-border); }
.fdemo-issue { background: var(--tag-issue-bg); color: var(--tag-issue-text); border: 1px solid var(--tag-issue-border); }
.fdemo-safety { background: var(--tag-safety-bg); color: var(--tag-safety-text); border: 1px solid var(--tag-safety-border); }

.offline-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.offline-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.offline-red { background: var(--red); box-shadow: 0 0 8px rgba(239,68,68,0.5); }
.offline-green { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.offline-indicator svg { color: var(--text-muted); }

/* Report Preview */
.report-preview {
  margin-top: 24px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.report-line-title { width: 60%; }
.report-line-sub { width: 40%; margin-bottom: 4px; }
.report-entry-row { display: flex; align-items: center; gap: 10px; }
.re-tag {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.re-progress { background: var(--tag-progress-bg); color: var(--tag-progress-text); }
.re-issue { background: var(--tag-issue-bg); color: var(--tag-issue-text); }
.re-safety { background: var(--tag-safety-bg); color: var(--tag-safety-text); }
.re-line { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-section {
  padding: var(--section-py) 0;
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(251,146,60,0.4), rgba(251,146,60,0.1));
  flex-shrink: 0;
}
.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.step-card:hover { border-color: rgba(251,146,60,0.25); transform: translateY(-3px); }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(251,146,60,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-visual {
  margin-top: 16px;
}
/* Step 1 visual */
.sv-tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.sv-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.sv-progress { background: var(--tag-progress-bg); color: var(--tag-progress-text); border: 1px solid var(--tag-progress-border); }
.sv-issue { background: var(--tag-issue-bg); color: var(--tag-issue-text); border: 1px solid var(--tag-issue-border); }
.sv-safety { background: var(--tag-safety-bg); color: var(--tag-safety-text); border: 1px solid var(--tag-safety-border); }
/* Step 2 visual */
.sv-input-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.sv-mic { font-size: 1rem; }
.sv-input-text { font-size: 0.78rem; color: var(--text-secondary); font-style: italic; }
.sv-save-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}
/* Step 3 visual */
.sv-3 {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.sv-pdf-icon { font-size: 2rem; margin-bottom: 6px; }
.sv-pdf-text { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.sv-pdf-share { font-size: 0.72rem; color: var(--amber); font-weight: 600; }

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(251,146,60,0.03) 0%, transparent 100%);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 48px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  display: inline-block;
  margin-left: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 140px;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-section {
  padding: var(--section-py) 0;
}
.pricing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.save-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 2px 8px;
  border-radius: 100px;
}
.toggle-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-track {
  width: 48px; height: 26px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  transition: background 0.3s;
  display: block;
}
.toggle-switch input:checked + .toggle-track { background: rgba(251,146,60,0.3); border-color: rgba(251,146,60,0.4); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch input:checked + .toggle-track .toggle-thumb { transform: translateX(22px); background: var(--amber); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.price-card-featured {
  background: linear-gradient(160deg, rgba(251,146,60,0.08) 0%, var(--bg-card) 50%);
  border-color: rgba(251,146,60,0.3);
  box-shadow: 0 0 0 1px rgba(251,146,60,0.1), 0 20px 60px rgba(251,146,60,0.08);
}
.price-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(251,146,60,0.4);
}
.price-tier-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-amount-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 12px;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 6px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  transition: all 0.3s;
}
.price-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 8px;
}
.price-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 52px;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pf-check {
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.pf-yes { color: var(--green); }
.pf-no { color: var(--text-muted); }
.pf-muted { color: var(--text-muted); text-decoration: line-through; }

/* ── Target audience badge (Subcontractor / GC / Commercial) ── */
.price-target-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.price-target-featured {
  color: rgba(251,146,60,0.8);
  background: rgba(251,146,60,0.08);
  border-color: rgba(251,146,60,0.2);
}

/* ── Annual billing note ── */
.price-annual-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  min-height: 20px;
  transition: opacity 0.3s;
}
.price-annual-note strong { color: var(--green); }
.price-annual-note.hidden { opacity: 0; }

/* ── Price card footnote ── */
.price-footnote {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.price-footnote-light { color: rgba(251,146,60,0.6); }

/* ── Feature list: inline note & section divider ── */
.pf-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pf-divider {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 2px;
  display: block;
  width: 100%;
}

/* ── Toggle active label ── */
.toggle-label { transition: color 0.2s; }
.toggle-label.toggle-active { color: var(--text-primary); font-weight: 700; }

/* ── Value Callout Banner ── */
.value-callout {
  margin: 32px 0 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59,130,246,0.07) 0%, rgba(168,85,247,0.05) 100%);
  border: 1px solid rgba(59,130,246,0.18);
  overflow: hidden;
  position: relative;
}
.value-callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--purple));
}
.value-callout-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
}
.value-callout-icon {
  width: 52px; height: 52px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.value-callout-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.value-callout-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.value-callout-body strong {
  color: var(--amber);
  font-weight: 700;
}

/* ── Responsive: value callout ── */
@media (max-width: 600px) {
  .value-callout-inner { flex-direction: column; gap: 14px; padding: 20px; }
  .value-callout-icon { width: 42px; height: 42px; }
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-note svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { padding: var(--section-py) 0; }
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 780px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(251,146,60,0.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-a.open-ans {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.cta-section { padding: var(--section-py) 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(251,146,60,0.08) 0%, rgba(59,130,246,0.05) 100%);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,146,60,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  background: rgba(255,255,255,0.01);
}
.footer-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1;
  min-width: 220px;
}
.footer-tagline {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-links-wrap {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 0.87rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-primary); }

/* ══════════════════════════════════════════════
   ANIMATIONS — Entrance on scroll
══════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 260px; }
  .float-badge-report { left: 0; bottom: -20px; }
  .float-badge-offline { right: 0; top: 40px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large, .feature-card-report { grid-column: span 1; }
  .stats-grid { flex-wrap: wrap; justify-content: center; }
  .stat-item { padding: 20px 32px; }
  .stat-divider { display: none; }
  .steps-grid { flex-direction: column; gap: 12px; }
  .step-connector { width: 2px; height: 32px; background: linear-gradient(180deg, rgba(251,146,60,0.4), rgba(251,146,60,0.1)); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,13,20,0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    animation: mobile-menu-in 0.3s ease;
  }
  .nav-links.mobile-open + .nav-actions {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: auto; bottom: 0;
    left: 0; right: 0;
  }
  @keyframes mobile-menu-in {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .logos-row { gap: 8px; flex-direction: column; }
  .logo-divider { display: none; }
  .hero-content { text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .section-subtitle { max-width: 100%; }
  .cta-box { padding: 48px 20px; }
  .footer-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 560px) {
  .problem-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .btn-hero-primary, .btn-hero-ghost { font-size: 0.9rem; padding: 12px 20px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; }
  .float-badge { display: none; }
}
