:root {
  --bg: #f5f8fc;
  --bg-soft: #edf3fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --card: rgba(255, 255, 255, 0.78);
  --text: #10213b;
  --muted: #5f7391;
  --line: rgba(16, 33, 59, 0.1);
  --primary: #0ea5a3;
  --accent: #4f7cff;
  --shadow: 0 24px 60px rgba(49, 83, 129, 0.16);
  --radius-lg: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 124, 255, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(14, 165, 163, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8fc 55%, #edf3fb 100%);
  min-height: 100vh;
  padding-top: 4.6rem;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, .button { border: 0; cursor: pointer; font: inherit; }

.page-shell::before, .page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
}
.page-shell::before { top: -8rem; left: -6rem; background: #9ab7ff; }
.page-shell::after { right: -7rem; top: 18rem; background: #8de1d4; }

.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(16, 33, 59, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}
.brand-logo {
  height: 108px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 34px rgba(14, 165, 163, 0.22);
  position: relative;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.24);
}
.brand-mark::before { inset: 8px; }
.brand-mark::after { inset: 15px 9px 9px 15px; }
.nav-links, .nav-actions, .dropdown-panel, .hero-actions, .hero-stats, .feature-grid, .benefit-grid, .logo-strip, .pricing-grid, .footer-grid, .faq-grid, .support-grid, .industry-grid, .feature-points, .page-grid, .comparison-grid, .mini-cards, .timeline, .subhero-points { display: grid; }
.nav-links { grid-auto-flow: column; align-items: center; gap: 1.75rem; }
.nav-item { color: var(--muted); transition: color 0.2s ease; font-weight: 500; font-size: 1.08rem; }
.nav-item:hover, .nav-item.active { color: var(--text); }
.dropdown {
  position: static;
}
.dropdown-trigger { display: inline-flex; align-items: center; gap: 0.4rem; }
.dropdown-panel {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 50%;
  width: min(1320px, calc(100vw - 2rem));
  gap: 0;
  padding: 2rem 2rem 0;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid var(--line);
  box-shadow: 0 32px 70px rgba(49, 83, 129, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 0.2s ease;
}
.dropdown.open .dropdown-panel,
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.mega-column {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 2rem;
}
.mega-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #384a69;
}
.mega-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.mega-links {
  display: grid;
  gap: 0.45rem;
}
.mega-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 46px;
  padding: 0.65rem 0.2rem;
  border-radius: 14px;
  color: #41536f;
  font-weight: 700;
  transition: 0.2s ease;
}
.mega-link:hover {
  color: var(--text);
  background: rgba(79, 124, 255, 0.06);
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}
.mega-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.9), rgba(79, 124, 255, 0.9));
  box-shadow: 0 6px 14px rgba(79, 124, 255, 0.18);
  flex: 0 0 18px;
}
.mega-footer {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 0 0 0.25rem;
  border-top: 1px solid rgba(16, 33, 59, 0.08);
}
.mega-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: #334b74;
}
.mega-footer-link::after {
  content: "›";
  font-size: 1.25rem;
  line-height: 1;
}
.nav-actions { grid-auto-flow: column; gap: 0.75rem; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 1.15rem; border-radius: 999px; font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #08111f; background: linear-gradient(135deg, var(--primary), #85f0d7); }
.button-secondary { color: var(--text); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.72); }
.menu-toggle {
  display: none; width: 56px; height: 56px; border-radius: 18px;
  background: rgba(255, 255, 255, 0.72); color: var(--text); font-size: 1.7rem;
}
.mobile-menu { display: none; padding-bottom: 1rem; }
.mobile-menu.open {
  display: block;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.9rem;
}
.mobile-stack, .mobile-feature-list { display: grid; gap: 0.75rem; }
.mobile-feature-list[hidden] { display: none !important; }
.mobile-link, .mobile-feature-button {
  padding: 0.85rem 0.1rem;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid rgba(16, 33, 59, 0.08);
}
.mobile-feature-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.mobile-feature-arrow {
  font-size: 0.86rem;
  transition: transform 0.2s ease;
}
.mobile-feature-button.open .mobile-feature-arrow {
  transform: rotate(180deg);
}
.mobile-feature-list {
  margin-top: 0.35rem;
  padding-left: 0;
  gap: 0.65rem;
}
.mobile-feature-group {
  display: grid;
  gap: 0.35rem;
}
.mobile-feature-group-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d78a2;
}
.mobile-feature-group-links {
  display: grid;
  gap: 0.14rem;
}
.mobile-feature-link {
  display: block;
  padding: 0.24rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}
.mobile-feature-link:hover {
  color: var(--text);
}

.hero, .subhero { padding: 3.5rem 0 4rem; }
.hero-grid, .subhero-grid, .page-grid { display: grid; gap: 2rem; align-items: center; }
.hero-grid { grid-template-columns: 1.08fr 0.92fr; }
.subhero-grid, .page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hero-centered {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered .eyebrow,
.hero-centered .hero-actions,
.hero-centered .hero-stats {
  justify-content: center;
}
.hero-shot-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 1.75rem auto 0;
  position: relative;
  padding: 0.9rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 244, 255, 0.96));
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 26px 60px rgba(73, 103, 148, 0.12);
}
.hero-slides {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 22px 50px rgba(73, 103, 148, 0.12);
  background: rgba(255, 255, 255, 0.72);
}
.hero-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  opacity: 0;
  pointer-events: none;
}
.hero-shot.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.hero-shot-wrap:hover .hero-shot.active {
  transform: translateY(-4px);
  filter: brightness(1.01);
}
.slide-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 59, 0.08);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(49, 83, 129, 0.14);
  z-index: 2;
}
.slide-prev { left: 1rem; }
.slide-next { right: 1rem; }
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.slide-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(95, 115, 145, 0.3);
}
.slide-dot.active {
  width: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.hero-centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered h1,
.hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered h1 {
  max-width: 34ch !important;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-line {
  display: block;
  white-space: normal;
  text-wrap: balance;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.45rem 0.85rem; border-radius: 999px;
  background: rgba(79, 124, 255, 0.1); color: #4366c4; font-size: 0.92rem; margin-bottom: 1.25rem;
}
.hero h1, .subhero h1, .section-heading h2 { margin: 0; line-height: 1.02; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); max-width: 11ch; }
.subhero h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.lead, .subhero p, .section-heading p, .card p, .pricing-card p, .faq-card p, .support-card p, .footer-note, .stat-label { color: var(--muted); }
.lead { max-width: 58ch; font-size: 1.08rem; }
.hero-actions, .hero-stats, .benefit-grid, .pricing-grid, .footer-grid, .faq-grid, .support-grid, .industry-grid, .comparison-grid, .timeline, .subhero-points { gap: 1rem; }
.hero-actions, .hero-stats { grid-auto-flow: column; justify-content: start; }
.hero-stats { margin-top: 1.5rem; }
.stat { padding: 1rem 1.1rem; min-width: 150px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.76); }
.stat-value { display: block; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.35rem; }
.hero-visual, .visual-panel, .mock-panel {
  position: relative; border-radius: 30px;
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.14), rgba(14, 165, 163, 0.08));
  border: 1px solid rgba(16, 33, 59, 0.08); box-shadow: var(--shadow); overflow: hidden;
}
.hero-visual { min-height: 520px; padding: 1.3rem; }
.dashboard-shell, .visual-shell, .mock-shell {
  height: 100%; border-radius: 24px; background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 59, 0.08); padding: 1rem;
}
.dashboard-top, .dashboard-main, .dashboard-cards, .section-heading, .cta-band, .footer-bottom { display: grid; }
.dashboard-top { grid-template-columns: 220px 1fr; gap: 1rem; margin-bottom: 1rem; }
.pane, .chart-card, .table-card, .mini-card, .card, .pricing-card, .faq-card, .support-card, .comparison-item, .timeline-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.pane { min-height: 92px; }
.dashboard-main { grid-template-columns: 240px 1fr; gap: 1rem; }
.dashboard-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.chart-card { min-height: 240px; }
.table-card { margin-top: 1rem; min-height: 150px; }

.section { padding: 2rem 0 4rem; }
.section-heading { gap: 0.9rem; max-width: 640px; margin-bottom: 2rem; }
.why-section {
  padding-top: 1rem;
  position: relative;
  background: linear-gradient(180deg, rgba(232, 242, 255, 0.92), rgba(238, 249, 246, 0.96));
  border-top: 1px solid rgba(79, 124, 255, 0.08);
  border-bottom: 1px solid rgba(14, 165, 163, 0.08);
}
.why-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.why-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.why-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: 2.56rem;
  padding: 1rem 1.6rem;
  font-weight: 700;
}
.tools-section {
  position: relative;
}
.tools-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.tools-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: 2.56rem;
  padding: 1rem 1.6rem;
  font-weight: 700;
  color: #4366c4;
}
.tools-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}
.tools-strip-secondary {
  margin-top: 0.75rem;
}
.quick-start-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(231, 244, 255, 0.55));
}
.quick-start-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.quick-start-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: 2.56rem;
  padding: 1rem 1.6rem;
  font-weight: 700;
  color: #4366c4;
}
.quick-start-card {
  background: rgba(255, 255, 255, 0.82);
}
.quick-start-grid {
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}
.quick-start-points {
  margin-top: 1rem;
}
.quick-start-points .feature-points {
  max-width: 920px;
  margin: 0 auto;
  justify-content: center;
  gap: 1.25rem;
}
.quick-start-points .point {
  text-align: center;
}
.quick-start-points .point:nth-child(1) {
  background: rgba(79, 124, 255, 0.09);
}
.quick-start-points .point:nth-child(2) {
  background: rgba(14, 165, 163, 0.09);
}
.quick-start-points .point:nth-child(3) {
  background: rgba(255, 209, 107, 0.14);
}
.quick-start-points .point:nth-child(4) {
  background: rgba(167, 139, 250, 0.12);
}
.quick-start-card {
  max-width: 760px;
  margin: 1.5rem auto 0;
}
.quick-start-card .tag {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1rem;
}
.quick-start-grid .timeline {
  grid-template-columns: 1fr;
}
.quick-start-card .timeline-item:nth-child(1) {
  background: rgba(79, 124, 255, 0.08);
}
.quick-start-card .timeline-item:nth-child(2) {
  background: rgba(14, 165, 163, 0.08);
}
.quick-start-card .timeline-item:nth-child(3) {
  background: rgba(167, 139, 250, 0.1);
}
.quick-start-card .timeline-item:nth-child(4) {
  background: rgba(255, 209, 107, 0.12);
}
.quick-start-card .timeline-item:nth-child(5) {
  background: rgba(251, 146, 60, 0.1);
}
.quick-start-card .timeline-item:nth-child(6) {
  background: rgba(34, 197, 94, 0.1);
}
.workflow-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.workflow-shot-card {
  width: min(300px, 100%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(64, 94, 138, 0.08);
}
.workflow-shot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 58%;
  display: block;
  border-radius: 20px;
}
.workflow-shot-contain {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
}
.tool-pill {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
  padding: 1.35rem 1rem;
  letter-spacing: normal;
  text-transform: none;
  font-size: 0.98rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(64, 94, 138, 0.08);
  overflow: hidden;
}
.tool-pill,
.tool-pill * {
  text-transform: none;
  letter-spacing: normal;
}
.tool-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 68%;
  display: block;
  border-radius: 18px;
  margin-bottom: 0.15rem;
  flex: 0 0 auto;
}
.tool-pill strong {
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--text);
}
.tool-icon {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(237, 245, 255, 0.98), rgba(225, 238, 255, 0.92));
  border: 1px solid rgba(79, 124, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  line-height: 1;
}
.tools-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}
.tools-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 33, 59, 0.08);
  color: #3559aa;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(64, 94, 138, 0.08);
}
.tools-link:hover {
  transform: translateY(-1px);
}
.feature-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.4rem;
}
.feature-overview-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 33, 59, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(64, 94, 138, 0.08);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}
.feature-overview-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(237, 245, 255, 0.98), rgba(225, 238, 255, 0.92));
  border: 1px solid rgba(79, 124, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
}
.feature-overview-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.08;
  color: #24344d;
}
.feature-overview-list {
  display: grid;
  gap: 0.85rem;
}
.feature-overview-list span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.feature-overview-list span::first-letter {
  color: #1d9bf0;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 2rem 0 auto 0;
  height: 24rem;
  background:
    radial-gradient(circle at 15% 30%, rgba(79, 124, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 163, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 75%);
  pointer-events: none;
}
.why-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}
.why-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  height: auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 33, 59, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(64, 94, 138, 0.1);
}
.why-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}
.why-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 245, 255, 0.96));
  border-color: rgba(79, 124, 255, 0.18);
  box-shadow: 0 28px 60px rgba(79, 124, 255, 0.14);
}
.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 16px 30px rgba(64, 94, 138, 0.12);
}
.why-icon-mark {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}
.why-icon-teal {
  color: #0f766e;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(153, 246, 228, 0.44));
}
.why-icon-blue {
  color: #7c3aed;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(221, 214, 254, 0.5));
}
.why-icon-gold {
  color: #c2410c;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.22), rgba(254, 215, 170, 0.48));
}
.why-card h3 {
  margin: 0;
}
.why-card p {
  margin-top: 0;
  margin-bottom: 0;
  flex: none;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(79, 124, 255, 0.1);
  color: #3559aa;
  font-weight: 700;
  font-size: 0.9rem;
}
.feature-grid, .benefit-grid, .pricing-grid, .faq-grid, .support-grid, .industry-grid, .comparison-grid, .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .pricing-card, .faq-card, .support-card, .comparison-item, .timeline-item { padding: 1.4rem; box-shadow: 0 18px 34px rgba(64, 94, 138, 0.1); }
.card-icon, .support-icon {
  width: 48px; height: 48px; display: inline-grid; place-items: center; border-radius: 14px; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.14), rgba(79, 124, 255, 0.16));
}
.logo-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.9rem; }
.logo-pill {
  min-height: 78px; display: grid; place-items: center; border-radius: 18px; color: #6d84a3; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.82rem;
}
.visual-panel, .mock-panel { padding: 1.2rem; }
.visual-panel { min-height: 420px; }
.mock-panel { min-height: 340px; }
.feature-image-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.feature-image-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.features-overview-hero {
  max-width: 980px;
}
.features-overview-page .subhero {
  padding-bottom: 3rem;
}
.features-overview-page .subhero .lead {
  max-width: 62ch;
}
.features-overview-page .subhero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 1.4rem;
}
.features-overview-page .subhero-points .point {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.features-overview-page .subhero-points .point:nth-child(1) {
  background: rgba(79, 124, 255, 0.09);
}
.features-overview-page .subhero-points .point:nth-child(2) {
  background: rgba(14, 165, 163, 0.09);
}
.features-overview-page .subhero-points .point:nth-child(3) {
  background: rgba(255, 209, 107, 0.14);
}
.features-overview-page .subhero-points .point:nth-child(4) {
  background: rgba(167, 139, 250, 0.12);
}
.features-overview-page .feature-grid {
  gap: 1.35rem;
}
.features-overview-page .feature-grid .card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 33, 59, 0.08);
}
.features-overview-page .feature-grid .card:nth-child(4n + 1) {
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.08), rgba(255, 255, 255, 0.96));
}
.features-overview-page .feature-grid .card:nth-child(4n + 2) {
  background: linear-gradient(180deg, rgba(14, 165, 163, 0.08), rgba(255, 255, 255, 0.96));
}
.features-overview-page .feature-grid .card:nth-child(4n + 3) {
  background: linear-gradient(180deg, rgba(255, 209, 107, 0.12), rgba(255, 255, 255, 0.96));
}
.features-overview-page .feature-grid .card:nth-child(4n + 4) {
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.1), rgba(255, 255, 255, 0.96));
}
.features-overview-page .feature-grid .card h3 {
  margin-top: 0;
}
.features-overview-page .cta-band {
  max-width: 980px;
  margin: 0 auto;
}
.pricing-page .subhero {
  padding-bottom: 2.5rem;
}
.pricing-hero {
  max-width: 860px;
}
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 14px 30px rgba(64, 94, 138, 0.08);
}
.pricing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}
.pricing-toggle-note {
  color: #3559aa;
  font-weight: 700;
  font-size: 0.96rem;
}
.pricing-toggle-option {
  min-height: 42px;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}
.pricing-toggle-option.active {
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.16), rgba(79, 124, 255, 0.18));
  color: var(--text);
}
.feature-hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.feature-hero-image-scheduling {
  max-width: 780px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.02);
}
.feature-hero-image-gps {
  max-width: 420px;
  margin: 0 auto 0 0;
  object-fit: contain;
}
.gps-page .page-grid {
  align-items: start;
}
.gps-page .feature-image-panel {
  align-self: start;
  padding-top: 3.45rem;
}
.gps-page .feature-image-shell {
  justify-content: flex-start;
}
.scheduling-stage-panel {
  min-height: 535px;
  align-self: end;
  margin-top: 2.75rem;
}
.scheduling-stage {
  position: relative;
  min-height: 495px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem 1rem 0.35rem;
}
.schedule-device-desktop {
  width: min(108%, 780px);
  margin-left: auto;
  margin-right: -1.5rem;
  display: block;
  filter: drop-shadow(0 22px 42px rgba(49, 83, 129, 0.16));
}
.schedule-device-mobile {
  position: absolute;
  left: -0.35rem;
  bottom: 0.25rem;
  width: clamp(148px, 23%, 210px);
  z-index: 2;
  filter: drop-shadow(0 20px 34px rgba(49, 83, 129, 0.18));
}
.mobile-app-hero-panel {
  min-height: 620px;
  align-self: end;
}
.mobile-app-hero-shell {
  position: relative;
  justify-content: center;
  align-items: flex-end;
  min-height: 580px;
}
.mobile-app-hero-image {
  max-height: 560px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 24px 42px rgba(49, 83, 129, 0.18));
}
.mobile-app-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 16px 30px rgba(64, 94, 138, 0.12);
  color: var(--text);
  font-weight: 700;
  z-index: 2;
}
.mobile-app-bubble::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
}
.mobile-app-bubble-invoicing {
  top: 3.5rem;
  left: 1.25rem;
}
.mobile-app-bubble-invoicing::before {
  background: #4f7cff;
}
.mobile-app-bubble-payment {
  top: 9rem;
  right: 1.5rem;
}
.mobile-app-bubble-payment::before {
  background: #0ea5a3;
}
.mobile-app-bubble-jobs {
  bottom: 8.5rem;
  left: 0.5rem;
}
.mobile-app-bubble-jobs::before {
  background: #f59e0b;
}
.mobile-app-bubble-reports {
  bottom: 3rem;
  right: 0.8rem;
}
.mobile-app-bubble-reports::before {
  background: #8b5cf6;
}
.mobile-app-bubble-client {
  bottom: 2.1rem;
  left: 0.4rem;
}
.mobile-app-bubble-client::before {
  background: #14b8a6;
}
.mobile-app-bubble-estimates {
  top: 6.2rem;
  left: 5.8rem;
}
.mobile-app-bubble-estimates::before {
  background: #f97316;
}
.mini-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.mini-card { min-height: 108px; padding: 1rem; }
.industry-pill {
  display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.82); color: #335071;
}
.industry-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}
.industry-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  color: #10213b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.industry-icon-locksmith { background: linear-gradient(135deg, rgba(255, 209, 107, 0.45), rgba(255, 236, 179, 0.85)); }
.industry-icon-hvac { background: linear-gradient(135deg, rgba(147, 197, 253, 0.45), rgba(219, 234, 254, 0.9)); }
.industry-icon-plumbing { background: linear-gradient(135deg, rgba(125, 211, 252, 0.45), rgba(224, 242, 254, 0.9)); }
.industry-icon-electrical { background: linear-gradient(135deg, rgba(253, 224, 71, 0.5), rgba(254, 249, 195, 0.9)); }
.industry-icon-towing { background: linear-gradient(135deg, rgba(251, 146, 60, 0.45), rgba(254, 215, 170, 0.9)); }
.industry-icon-garage { background: linear-gradient(135deg, rgba(167, 139, 250, 0.45), rgba(237, 233, 254, 0.92)); }
.industry-icon-appliance { background: linear-gradient(135deg, rgba(96, 165, 250, 0.45), rgba(219, 234, 254, 0.92)); }
.industry-icon-cleaning { background: linear-gradient(135deg, rgba(52, 211, 153, 0.42), rgba(209, 250, 229, 0.92)); }
.industry-icon-junk { background: linear-gradient(135deg, rgba(251, 146, 60, 0.35), rgba(254, 215, 170, 0.92)); }
.industry-icon-general { background: linear-gradient(135deg, rgba(244, 114, 182, 0.35), rgba(251, 207, 232, 0.92)); }
.industry-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.industry-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: 2.56rem;
  padding: 1rem 1.6rem;
  font-weight: 700;
  color: #4366c4;
}
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(14, 165, 163, 0.12), rgba(79, 124, 255, 0.08));
  border-color: rgba(14, 165, 163, 0.24);
}
.pricing-card {
  display: flex;
  flex-direction: column;
}
.pricing-card h3 {
  font-size: clamp(2rem, 2.8vw, 2.35rem);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}
.price { font-size: 2.7rem; font-weight: 800; margin: 1rem 0; }
.price small { font-size: 1rem; color: var(--muted); }
.price-note {
  min-height: 1.1rem;
  margin-top: -0.4rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.pricing-feature-list {
  display: grid;
  gap: 0.7rem;
  flex: 1;
}
.pricing-feature-list span {
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}
.pricing-feature-list span::first-letter {
  color: #16a34a;
}
.pricing-card-button {
  width: 100%;
  margin-top: 1.15rem;
}
.pricing-comparison-heading {
  max-width: 760px;
}
.pricing-comparison-stack {
  display: grid;
  gap: 1.2rem;
}
.comparison-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(64, 94, 138, 0.08);
  overflow: hidden;
}
.comparison-block-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.35rem 1.4rem 1rem;
}
.comparison-block-head h3 {
  margin: 0;
  font-size: 1.35rem;
}
.comparison-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.16), rgba(14, 165, 163, 0.16));
  color: var(--text);
  font-weight: 800;
}
.comparison-table-wrap {
  overflow-x: auto;
  padding: 0 1rem 1rem;
}
.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
}
.comparison-table thead th {
  position: sticky;
  top: 0;
  background: rgba(236, 244, 255, 0.96);
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.comparison-table th,
.comparison-table td {
  padding: 0.95rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(16, 33, 59, 0.08);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  min-width: 280px;
}
.comparison-table tbody td {
  color: var(--text);
  font-weight: 600;
}
.comparison-table tbody td:first-child {
  font-weight: 500;
}
.comparison-table tbody tr:nth-child(even) td {
  background: rgba(247, 250, 255, 0.78);
}
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.faq-accordion {
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(64, 94, 138, 0.08);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  padding: 1.15rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
}
.faq-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 124, 255, 0.1);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(14, 165, 163, 0.14);
}
.faq-panel {
  padding: 0 1.3rem 1.2rem;
}
.faq-panel p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.6;
}
.feature-points, .subhero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.subhero .feature-points {
  gap: 1rem;
  margin-top: 1.35rem;
  max-width: 560px;
}
.subhero .point {
  min-height: 68px;
  display: flex;
  align-items: center;
}
.subhero .feature-points .point:nth-child(1) {
  background: rgba(79, 124, 255, 0.1);
}
.subhero .feature-points .point:nth-child(2) {
  background: rgba(14, 165, 163, 0.1);
}
.subhero .feature-points .point:nth-child(3) {
  background: rgba(255, 209, 107, 0.14);
}
.subhero .feature-points .point:nth-child(4) {
  background: rgba(167, 139, 250, 0.12);
}
.point, .comparison-item { padding: 1rem; border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.74); }
.faq-card h3, .pricing-card h3, .support-card h3, .card h3, .comparison-item h3, .timeline-item h3 { margin-top: 0; }
.timeline-item p,
.workflow-shot-card p {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
}
.cta-band {
  grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; border-radius: 28px;
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.12), rgba(79, 124, 255, 0.12));
  border: 1px solid rgba(16, 33, 59, 0.08); align-items: center;
  justify-items: center;
}
.cta-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: 2.56rem;
  padding: 1rem 1.6rem;
  font-weight: 700;
  color: #4366c4;
}
.cta-copy h2,
.cta-copy .lead {
  margin-left: auto;
  margin-right: auto;
}
.cta-band .hero-actions {
  justify-content: center;
}
.schedule-story-stack {
  display: grid;
  gap: 2rem;
}
.schedule-story-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 20px 44px rgba(64, 94, 138, 0.08);
}
.schedule-story-card-alt {
  background: linear-gradient(180deg, rgba(232, 239, 255, 0.88), rgba(240, 247, 255, 0.96));
}
.schedule-story-card-alt .schedule-story-copy {
  order: 2;
}
.schedule-story-card-alt .schedule-story-visual {
  order: 1;
}
.schedule-story-copy {
  max-width: 500px;
}
.schedule-story-copy .eyebrow {
  margin-bottom: 1rem;
}
.schedule-story-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
}
.schedule-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.schedule-story-visual {
  display: flex;
  justify-content: center;
}
.schedule-story-frame {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.schedule-placeholder {
  width: 100%;
  min-height: 240px;
  border-radius: 22px;
  border: 1px dashed rgba(67, 82, 107, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: #5f7391;
  font-weight: 700;
  display: grid;
  place-items: center;
  text-align: center;
}
.schedule-story-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.schedule-story-image-contained {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}
.schedule-story-frame-assignment {
  position: relative;
  align-items: center;
  min-height: 360px;
}
.schedule-story-image-assignment {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}
.schedule-story-frame-app-jobs {
  align-items: center;
}
.schedule-story-image-app-jobs {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}
.schedule-story-frame-app-detail {
  position: relative;
  align-items: center;
  min-height: 360px;
}
.schedule-story-image-app-detail {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}
.schedule-story-frame-gps-route {
  align-items: center;
}
.schedule-story-image-gps-route {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
}
.schedule-story-frame-gps-dispatch {
  align-items: center;
}
.schedule-story-image-gps-dispatch {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}
.schedule-story-frame-gps-eta {
  align-items: center;
}
.schedule-story-image-gps-eta {
  width: auto;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}
.schedule-story-frame-app-permissions {
  align-items: center;
}
.schedule-story-image-app-permissions {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}
.mobile-app-assignment-bubble {
  position: absolute;
  max-width: 220px;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 16px 30px rgba(64, 94, 138, 0.12);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}
.mobile-app-assignment-bubble-right {
  top: 0.85rem;
  right: 0;
}
.mobile-app-assignment-bubble-top-left {
  top: 1rem;
  left: 0;
}
.mobile-app-assignment-bubble-bottom-left {
  bottom: 0.85rem;
  left: 0;
}
.mobile-app-assignment-bubble-bottom-right {
  bottom: 0.85rem;
  right: 0;
}
.schedule-story-frame-soft {
  min-height: 300px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.schedule-story-phone {
  max-height: 300px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.multi-company-summary-panel {
  min-height: 420px;
  padding: 0;
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.12), rgba(14, 165, 163, 0.09));
}
.multi-company-summary-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}
.multi-company-summary-image {
  width: 100%;
  height: auto;
  max-width: 720px;
  object-fit: contain;
}
.time-tracking-summary-panel {
  min-height: 420px;
  padding: 0;
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.12), rgba(14, 165, 163, 0.09));
}
.time-tracking-summary-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  position: relative;
  min-height: 420px;
}
.time-tracking-summary-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.time-tracking-bubble {
  position: absolute;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 16px 30px rgba(64, 94, 138, 0.12);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
.time-tracking-bubble::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  vertical-align: middle;
}
.time-tracking-bubble-start {
  top: 1.2rem;
  left: 0.5rem;
}
.time-tracking-bubble-logs {
  top: 4.8rem;
  right: 0.8rem;
}
.time-tracking-bubble-duration {
  bottom: 4rem;
  left: 0.2rem;
}
.time-tracking-bubble-accountability {
  bottom: 1.1rem;
  right: 0.4rem;
}
.estimates-hero-panel {
  min-height: 420px;
  padding: 0;
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.12), rgba(14, 165, 163, 0.09));
}
.estimates-hero-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 1.4rem;
}
.estimates-hero-image {
  width: 100%;
  height: auto;
  max-width: 620px;
  object-fit: contain;
}
.job-cost-page .estimates-hero-image {
  max-width: 440px;
}
.custom-reporting-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr);
  gap: 1rem;
  align-items: start;
  position: relative;
}
.custom-reporting-hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(64, 94, 138, 0.12);
}
.custom-reporting-hero-image-secondary {
  align-self: end;
}
.job-commission-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.65fr);
  gap: 1rem;
  align-items: end;
}
.job-commission-hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(64, 94, 138, 0.12);
}
.job-commission-hero-image-secondary {
  align-self: start;
}
.custom-reporting-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 16px 30px rgba(64, 94, 138, 0.12);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
.custom-reporting-bubble::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex: 0 0 9px;
}
.custom-reporting-bubble-pdf {
  top: 1rem;
  right: 12%;
}
.custom-reporting-bubble-share {
  bottom: 1.2rem;
  left: 0.8rem;
}
.call-masking-page .estimates-hero-panel {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.call-masking-page .estimates-hero-shell {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.estimates-special-section {
  background: linear-gradient(180deg, rgba(243, 248, 255, 0.75), rgba(250, 252, 255, 0.98));
  border-top: 1px solid rgba(79, 124, 255, 0.08);
  border-bottom: 1px solid rgba(14, 165, 163, 0.08);
}
.estimates-special-heading {
  max-width: 780px;
  margin-bottom: 1.5rem;
}
.workflow-flow-card {
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.workflow-flow-card .multi-company-copy {
  max-width: none;
}
.workflow-flow-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.workflow-flow-step {
  min-width: 120px;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 12px 28px rgba(64, 94, 138, 0.06);
  text-align: center;
  font-weight: 700;
}
.workflow-flow-arrow {
  color: #4f7cff;
  font-size: 1.35rem;
  font-weight: 800;
}
.estimates-cta-section .hero-actions {
  grid-auto-flow: column;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 980px;
}
.estimates-cta-section .button {
  width: 100%;
}
.time-tracking-steps {
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(239, 247, 255, 0.96));
}
.time-tracking-step-list {
  display: grid;
  gap: 0.85rem;
}
.time-tracking-workflow-card {
  grid-template-columns: 1fr;
  min-height: 420px;
}
.time-tracking-workflow-card .multi-company-copy {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  height: 100%;
}
.time-tracking-step-list-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
  align-items: stretch;
  width: 100%;
  grid-auto-rows: 1fr;
  flex: 1 1 auto;
}
.time-tracking-step {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 12px 28px rgba(64, 94, 138, 0.06);
  display: grid;
  gap: 0.35rem;
  height: 100%;
  align-content: start;
  min-height: 170px;
}
.time-tracking-step strong {
  font-size: 1rem;
  line-height: 1.35;
}
.time-tracking-step span {
  color: var(--muted);
  line-height: 1.55;
}
.how-it-works-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.how-it-works-card {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(235, 242, 255, 0.88), rgba(247, 250, 255, 0.98));
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 20px 44px rgba(64, 94, 138, 0.08);
}
.how-it-works-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}
.how-it-works-heading .eyebrow {
  margin-bottom: 0.9rem;
}
.how-it-works-heading h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
}
.how-it-works-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.how-it-works-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.how-it-works-step {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 14px 30px rgba(64, 94, 138, 0.06);
  align-content: start;
}
.how-it-works-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.16), rgba(79, 124, 255, 0.2));
  color: #3559aa;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.how-it-works-step h3,
.how-it-works-step p,
.how-it-works-highlight {
  margin-left: 0;
}
.how-it-works-step h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.how-it-works-step h3::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.16), rgba(79, 124, 255, 0.2));
  color: #3559aa;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: 0 0 40px;
}
.how-it-works-step h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}
.how-it-works-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.how-it-works-highlight {
  margin-top: 0.1rem;
  padding: 0.72rem 0.9rem;
  border-radius: 18px;
  background: rgba(79, 124, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}
.how-it-works-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f7cff;
  font-size: 1.55rem;
  font-weight: 800;
}
.review-funnel-flow-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.review-funnel-flow-card {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(236, 246, 255, 0.9), rgba(249, 252, 255, 0.98));
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 20px 44px rgba(64, 94, 138, 0.08);
}
.review-funnel-heading {
  max-width: 780px;
  margin-bottom: 1.4rem;
}
.review-funnel-heading .eyebrow {
  margin-bottom: 0.9rem;
}
.review-funnel-heading h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
}
.review-funnel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.review-funnel-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.2fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.review-funnel-step {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 14px 30px rgba(64, 94, 138, 0.06);
  align-content: start;
}
.review-funnel-step h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-funnel-step h3::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.16), rgba(79, 124, 255, 0.2));
  color: #3559aa;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: 0 0 40px;
}
.review-funnel-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.review-funnel-step-split p {
  display: none;
}
.review-funnel-routing {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.1rem;
}
.review-route {
  padding: 0.78rem 0.9rem;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.45;
}
.review-route-positive {
  background: rgba(34, 197, 94, 0.12);
  color: #17653a;
}
.review-route-negative {
  background: rgba(251, 146, 60, 0.14);
  color: #9a4b0b;
}
.review-funnel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f7cff;
  font-size: 1.55rem;
  font-weight: 800;
}
.multi-company-section {
  padding-top: 1.25rem;
}
.multi-company-stack {
  display: grid;
  gap: 1.4rem;
}
.multi-company-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.6rem;
  align-items: stretch;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 20px 44px rgba(64, 94, 138, 0.08);
}
.multi-company-card-alt {
  background: linear-gradient(180deg, rgba(232, 239, 255, 0.84), rgba(241, 247, 255, 0.96));
}
.multi-company-copy {
  max-width: 700px;
}
.multi-company-copy .eyebrow {
  margin-bottom: 1rem;
}
.multi-company-copy h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.08;
}
.multi-company-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}
.multi-company-highlight {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(248, 251, 255, 0.92);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: grid;
  align-content: start;
  gap: 1rem;
}
.multi-company-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.multi-company-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 600;
}
.multi-company-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(79, 124, 255, 0.08);
}
.site-footer { padding: 2rem 0 2.5rem; }
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr; padding: 2rem; border-radius: 28px;
  background: rgba(255, 255, 255, 0.76); border: 1px solid var(--line);
}
.footer-links { display: grid; gap: 0.8rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { margin-top: 1rem; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.page-hero-card { padding: 1.6rem; border-radius: 24px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.78); }
.contact-hero {
  max-width: 860px;
}
.contact-form-section {
  padding-top: 0.5rem;
}
.contact-form-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 20px 44px rgba(64, 94, 138, 0.08);
}
.contact-form-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 680px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.contact-form-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}
.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-field {
  display: grid;
  gap: 0.35rem;
}
.contact-field-full {
  grid-column: 1 / -1;
}
.contact-field span {
  font-weight: 600;
  color: #43526b;
  font-size: 0.94rem;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(16, 33, 59, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  outline: none;
}
.contact-field input {
  min-height: 50px;
  padding: 0 0.95rem;
}
.contact-field textarea {
  padding: 0.95rem;
  resize: vertical;
}
.contact-security {
  display: grid;
  gap: 0.75rem;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-check {
  max-width: fit-content;
}
.contact-status {
  min-height: 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.contact-status.error {
  color: #b42318;
}
.contact-status.success {
  color: #17653a;
}
.contact-actions {
  justify-content: center;
}
.search-bar {
  display: flex; align-items: center; gap: 0.8rem; min-height: 64px; padding: 0 1rem;
  border-radius: 18px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.8);
}
.search-bar input { width: 100%; background: transparent; border: 0; color: var(--text); font: inherit; outline: none; }
.tag { display: inline-flex; align-items: center; padding: 0.4rem 0.75rem; border-radius: 999px; background: rgba(255, 209, 107, 0.18); color: #9b6d00; font-size: 0.9rem; }
.legal-hero .lead {
  max-width: 80ch;
}
.legal-heading {
  max-width: 900px;
}
.legal-meta {
  margin: 0;
  color: #4366c4;
  font-weight: 700;
}
.legal-note p {
  margin: 0.6rem 0 0;
  color: var(--text);
  line-height: 1.6;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.legal-card {
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(64, 94, 138, 0.08);
}
.legal-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}
.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}
.legal-card a {
  color: #3559aa;
  font-weight: 700;
}
.trial-shell {
  padding: 0;
  margin-top: -4.6rem;
}
.trial-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 100vh;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.trial-side {
  padding: 1.4rem 1.25rem;
  background: linear-gradient(180deg, #4366f1 0%, #3357db 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.trial-side-copy {
  max-width: 34rem;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}
.trial-brand .brand-logo {
  height: 60px;
  filter: brightness(0) invert(1);
}
.trial-side .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.trial-side h1 {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(2.2rem, 3.3vw, 3.2rem);
  line-height: 1.08;
}
.trial-side .lead,
.trial-benefit p {
  color: rgba(255, 255, 255, 0.82);
}
.trial-side .lead {
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.6;
  text-align: center;
}
.trial-benefits {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.2rem;
  width: min(100%, 34rem);
}
.trial-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.3rem 0;
}
.trial-benefit strong {
  font-size: 1.12rem;
}
.trial-benefit p {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
}
.trial-check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}
.trial-form-wrap {
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
}
.trial-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.trial-step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(95, 115, 145, 0.12);
  color: #5f7391;
  font-weight: 700;
}
.trial-step.active {
  background: #4366f1;
  color: #ffffff;
}
.trial-line {
  width: 56px;
  height: 2px;
  background: rgba(95, 115, 145, 0.25);
}
.trial-form-card {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}
.trial-form-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  white-space: nowrap;
}
.trial-form-card .lead {
  font-size: 0.98rem;
  max-width: none;
}
.trial-form {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.trial-step-pane {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
.trial-step-pane[hidden] {
  display: none;
}
.trial-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
}
.trial-field {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}
.trial-field span {
  font-weight: 600;
  color: #43526b;
  font-size: 0.92rem;
}
.trial-field input,
.trial-field select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(16, 33, 59, 0.12);
  padding: 0 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
  outline: none;
  width: 100%;
  min-width: 0;
}
.trial-check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  color: #43526b;
  font-size: 0.92rem;
  min-width: 0;
}
.trial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: space-between;
}
.trial-actions .button {
  min-height: 46px;
}
.trial-success {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  padding: 1rem 0 0.25rem;
}
.trial-success h3,
.trial-success p {
  margin: 0;
}
.trial-review-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  min-width: 0;
}
.trial-login {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.trial-login a {
  color: #4366f1;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .mobile-menu.open {
    max-height: calc(100vh - 72px);
  }
  .mobile-stack {
    gap: 0.55rem;
  }
  .mobile-link,
  .mobile-feature-button {
    padding: 0.72rem 0.05rem;
    border-radius: 0;
    font-size: 0.9rem;
    line-height: 1.25;
  }
  .mobile-feature-list {
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding-left: 0;
  }
  .mobile-feature-group-title {
    font-size: 0.72rem;
  }
  .mobile-feature-link {
    padding: 0.18rem 0;
    font-size: 0.86rem;
  }
  .hero-grid, .subhero-grid, .page-grid, .cta-band, .footer-grid, .dashboard-top, .dashboard-main, .feature-grid, .benefit-grid, .pricing-grid, .faq-grid, .support-grid, .industry-grid, .comparison-grid, .timeline, .logo-strip { grid-template-columns: 1fr; }
  .hero-stats { grid-auto-flow: row; }
  .feature-points, .subhero-points, .mini-cards, .dashboard-cards { grid-template-columns: 1fr; }
  .dropdown-panel { display: none; }
  .trial-grid,
  .trial-field-grid,
  .legal-grid,
  .contact-field-grid { grid-template-columns: 1fr; }
  .trial-side {
    order: 2;
  }
  .trial-form-wrap {
    order: 1;
  }
  .scheduling-stage-panel {
    min-height: 450px;
    margin-top: 1.8rem;
  }
  .scheduling-stage {
    min-height: 410px;
  }
  .schedule-device-desktop {
    width: min(106%, 720px);
    margin-right: -0.5rem;
  }
  .mobile-app-hero-panel {
    min-height: 520px;
  }
  .mobile-app-hero-shell {
    min-height: 480px;
  }
  .mobile-app-hero-image {
    max-height: 450px;
  }
  .mobile-app-bubble {
    padding: 0.6rem 0.85rem;
    font-size: 0.92rem;
  }
  .mobile-app-bubble-invoicing {
    top: 2rem;
    left: 0.5rem;
  }
  .mobile-app-bubble-payment {
    top: 6rem;
    right: 0.75rem;
  }
  .mobile-app-bubble-jobs {
    bottom: 6.5rem;
    left: 0.2rem;
  }
  .mobile-app-bubble-reports {
    bottom: 1.8rem;
    right: 0.25rem;
  }
  .mobile-app-bubble-client {
    bottom: 1.35rem;
    left: 0.1rem;
  }
  .mobile-app-bubble-estimates {
    top: 4.8rem;
    left: 4.4rem;
  }
  .multi-company-card {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.35rem;
  }
  .features-overview-page .subhero-points {
    grid-template-columns: 1fr;
  }
  .pricing-toggle {
    width: auto;
    justify-content: center;
    margin-inline: auto;
  }
  .pricing-toggle-row {
    width: auto;
    justify-content: center;
  }
  .how-it-works-flow {
    grid-template-columns: 1fr;
  }
  .review-funnel-track {
    grid-template-columns: 1fr;
  }
  .how-it-works-arrow {
    min-height: 20px;
    font-size: 1.2rem;
  }
  .review-funnel-arrow {
    min-height: 20px;
    font-size: 1.2rem;
    color: transparent;
    position: relative;
  }
  .review-funnel-arrow::before {
    content: "↓";
    color: #4f7cff;
  }
  .how-it-works-arrow::before {
    content: "↓";
  }
  .how-it-works-arrow {
    color: transparent;
    position: relative;
  }
  .how-it-works-arrow::before {
    color: #4f7cff;
  }
  .multi-company-summary-panel {
    min-height: auto;
  }
  .time-tracking-summary-panel {
    min-height: auto;
  }
  .estimates-hero-panel {
    min-height: auto;
  }
  .time-tracking-summary-shell {
    min-height: 360px;
  }
  .estimates-hero-shell {
    min-height: 340px;
  }
  .custom-reporting-hero-shell {
    grid-template-columns: 1fr;
  }
  .job-commission-hero-shell {
    grid-template-columns: 1fr;
  }
  .custom-reporting-bubble {
    position: static;
    width: fit-content;
  }
  .time-tracking-summary-image {
    max-height: 300px;
  }
  .time-tracking-bubble {
    padding: 0.55rem 0.72rem;
    font-size: 0.85rem;
  }
  .time-tracking-bubble::before {
    width: 8px;
    height: 8px;
    margin-right: 0.45rem;
  }
  .time-tracking-bubble-start {
    top: 0.5rem;
    left: 0;
  }
  .time-tracking-bubble-logs {
    top: 3.5rem;
    right: 0;
  }
  .time-tracking-bubble-duration {
    bottom: 3rem;
    left: 0;
  }
  .time-tracking-bubble-accountability {
    bottom: 0.35rem;
    right: 0;
  }
  .estimates-hero-image {
    max-width: 100%;
  }
  .workflow-flow-track {
    justify-content: flex-start;
  }
  .workflow-flow-step {
    min-width: 0;
    flex: 1 1 calc(50% - 0.75rem);
  }
  .workflow-flow-arrow {
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 1.15rem;
    color: transparent;
  }
  .workflow-flow-arrow::before {
    content: "↓";
    color: #4f7cff;
  }
  .estimates-cta-section .hero-actions {
    grid-template-columns: 1fr;
  }
  .multi-company-card {
    padding: 1.35rem;
    gap: 1.1rem;
  }
  .schedule-story-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .schedule-story-card-alt .schedule-story-copy,
  .schedule-story-card-alt .schedule-story-visual {
    order: initial;
  }
}
@media (max-width: 640px) {
  .hero, .subhero { padding-top: 3rem; }
  .container { width: min(var(--container), calc(100% - 1.2rem)); }
  .pricing-page .container { width: calc(100% - 0.6rem); }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
  body { padding-top: 4.2rem; }
  .menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    font-size: 2rem;
  }
  .mobile-menu.open {
    max-height: calc(100vh - 68px);
    padding-bottom: 0.7rem;
  }
  .tools-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .tool-pill {
    min-height: 138px;
    padding: 0.95rem 0.75rem;
  }
  .tool-pill strong {
    font-size: 0.98rem;
  }
  .tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    font-size: 1.6rem;
  }
  .feature-overview-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1rem;
  }
  .feature-overview-card {
    padding: 1.2rem 1rem;
    border-radius: 20px;
  }
  .feature-overview-card h3 {
    font-size: 1.4rem;
  }
  .feature-overview-list {
    gap: 0.7rem;
  }
  .feature-overview-list span {
    font-size: 0.92rem;
  }
  .mobile-stack {
    gap: 0.45rem;
  }
  .mobile-link,
  .mobile-feature-button {
    padding: 0.62rem 0.05rem;
    font-size: 0.84rem;
    border-radius: 0;
  }
  .mobile-feature-list {
    margin-top: 0.28rem;
    padding-left: 0;
  }
  .mobile-feature-group {
    gap: 0.24rem;
  }
  .mobile-feature-group-title {
    font-size: 0.66rem;
  }
  .mobile-feature-link {
    padding: 0.14rem 0;
    font-size: 0.8rem;
  }
  .hero-centered h1 {
    max-width: 15ch !important;
    width: 100%;
  }
  .hero-line {
    width: 100%;
    text-wrap: balance;
  }
  .hero-actions {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .hero-actions .button {
    width: 100%;
  }
  .trial-form-card h2 {
    white-space: normal;
  }
  .brand-logo { height: 90px; }
  .slide-control {
    width: 44px;
    height: 44px;
  }
  .hero-shot-wrap {
    padding: 0.65rem;
    border-radius: 26px;
  }
  .slide-prev { left: 0.6rem; }
  .slide-next { right: 0.6rem; }
  .tool-image {
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .industry-pill {
    min-height: 56px;
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
    font-size: 0.92rem;
  }
  .industry-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
  .trial-shell {
    padding-top: 0;
    margin-top: -4.2rem;
  }
  .trial-side,
  .trial-form-wrap {
    padding: 1rem 0.9rem;
    min-width: 0;
  }
  .trial-progress {
    gap: 0.35rem;
  }
  .trial-line {
    width: 36px;
  }
  .trial-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .trial-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 0.8rem;
  }
  .pricing-comparison-stack {
    gap: 0.75rem;
  }
  .comparison-block {
    border-radius: 20px;
  }
  .comparison-block-head {
    gap: 0.7rem;
    padding: 1rem 0.7rem 0.8rem;
  }
  .comparison-block-head h3 {
    font-size: 1.08rem;
    line-height: 1.2;
  }
  .comparison-badge {
    width: 32px;
    height: 32px;
    font-size: 0.92rem;
    flex: 0 0 auto;
  }
  .comparison-table-wrap {
    padding: 0 0.35rem 0.5rem;
    overflow-x: visible;
  }
  .comparison-table {
    min-width: 0;
    table-layout: fixed;
  }
  .comparison-table thead th {
    font-size: 0.74rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.62rem 0.34rem;
    font-size: 0.72rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    min-width: 0;
    width: 46%;
  }
  .comparison-table th:not(:first-child),
  .comparison-table td:not(:first-child) {
    width: 18%;
  }
  .trial-brand .brand-logo {
    height: 54px;
  }
  .scheduling-stage-panel {
    min-height: 300px;
    margin-top: -0.9rem;
  }
  .scheduling-stage {
    min-height: 260px;
    padding: 0 0.45rem 0;
  }
  .schedule-device-desktop {
    width: min(100%, 430px);
    margin-right: 0;
  }
  .schedule-device-mobile {
    left: -0.1rem;
    bottom: 0.6rem;
    width: clamp(108px, 28%, 140px);
  }
  .mobile-app-hero-panel {
    min-height: 390px;
  }
  .mobile-app-hero-shell {
    min-height: 350px;
  }
  .mobile-app-hero-image {
    max-height: 330px;
  }
  .mobile-app-bubble {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
  .mobile-app-bubble::before {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }
  .mobile-app-bubble-invoicing {
    top: 1rem;
    left: 0;
  }
  .mobile-app-bubble-payment {
    top: 4.2rem;
    right: 0.2rem;
  }
  .mobile-app-bubble-jobs {
    bottom: 4.9rem;
    left: -0.1rem;
  }
  .mobile-app-bubble-reports {
    bottom: 0.9rem;
    right: -0.1rem;
  }
  .mobile-app-bubble-client {
    bottom: 0.85rem;
    left: -0.05rem;
  }
  .mobile-app-bubble-estimates {
    top: 3.3rem;
    left: 3.15rem;
  }
  .subhero .feature-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .subhero .feature-points .point {
    min-height: 54px;
    padding: 0.75rem 0.8rem;
    font-size: 0.92rem;
    line-height: 1.25;
  }
  .schedule-story-card {
    padding: 1.15rem;
  }
  .schedule-story-frame {
    min-height: 220px;
    padding: 0.6rem;
  }
  .schedule-placeholder {
    min-height: 180px;
  }
  .schedule-story-section {
    padding-top: 0;
    padding-bottom: 1rem;
    margin-top: -0.9rem;
  }
  .schedule-story-stack {
    gap: 0.7rem;
  }
  .multi-company-copy h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }
  .multi-company-copy p {
    font-size: 1rem;
  }
  .multi-company-highlight {
    padding: 1rem;
  }
  .contact-form-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }
  .contact-field input {
    min-height: 46px;
  }
  .how-it-works-card {
    padding: 1.2rem;
  }
  .review-funnel-flow-card {
    padding: 1.2rem;
  }
  .how-it-works-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }
  .review-funnel-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }
  .how-it-works-step {
    padding: 1rem;
  }
  .review-funnel-step {
    padding: 1rem;
  }
  .time-tracking-step-list-inline {
    grid-template-columns: 1fr;
  }
  .time-tracking-summary-card,
  .time-tracking-step {
    padding: 1rem;
  }
  .schedule-story-frame-assignment {
    min-height: 420px;
    padding-top: 0.2rem;
  }
  .mobile-app-assignment-bubble {
    max-width: 150px;
    padding: 0.62rem 0.72rem;
    font-size: 0.82rem;
    line-height: 1.25;
  }
  .mobile-app-assignment-bubble-right {
    top: 0.45rem;
    right: -0.1rem;
  }
  .mobile-app-assignment-bubble-top-left {
    top: 0.45rem;
    left: -0.1rem;
  }
  .mobile-app-assignment-bubble-bottom-left {
    bottom: 0.45rem;
    left: -0.05rem;
  }
  .mobile-app-assignment-bubble-bottom-right {
    bottom: 0.45rem;
    right: -0.05rem;
  }
}
@media (max-width: 420px) {
  .trial-shell {
    padding-top: 0;
    margin-top: -4.2rem;
  }
  .trial-form-wrap {
    padding: 0.9rem 0.7rem;
  }
  .trial-form-card {
    gap: 0.55rem;
  }
  .trial-progress {
    gap: 0.25rem;
  }
  .trial-step {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .trial-line {
    width: 24px;
  }
  .trial-form-card h2 {
    font-size: clamp(1.55rem, 8vw, 1.95rem);
    line-height: 1.08;
  }
  .trial-form-card .lead,
  .trial-field span,
  .trial-login,
  .trial-check-row {
    font-size: 0.88rem;
  }
  .trial-field-grid {
    gap: 0.6rem;
  }
  .trial-field input,
  .trial-field select {
    min-height: 44px;
    padding-inline: 0.7rem;
  }
  .page-hero-card,
  .point {
    padding: 1rem;
  }
  .trial-check-row input {
    margin-top: 0.2rem;
  }
  .trial-actions {
    grid-template-columns: 1fr;
  }
}
