/* BizRocket — Premium landing page */
:root {
  --orange: #ff5722;
  --orange-light: #ff7849;
  --orange-glow: rgba(255, 87, 34, 0.45);
  --orange-muted: rgba(255, 87, 34, 0.12);
  --blue: #009ef4;
  --blue-muted: rgba(0, 158, 244, 0.15);
  --bg: #0a0b0f;
  --bg-elevated: #12141a;
  --bg-card: #181b20;
  --bg-card-hover: #1f232b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: #8893a8;
  --text-dim: #6a7695;
  --gradient-hero: linear-gradient(135deg, #ff5722 0%, #ff8a50 50%, #ffb347 100%);
  --gradient-mesh: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 87, 34, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(0, 158, 244, 0.12), transparent),
    radial-gradient(ellipse 50% 30% at 0% 50%, rgba(255, 87, 34, 0.08), transparent);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 8px 32px var(--orange-glow);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.page-gradient {
  position: fixed;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-desktop a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  font-weight: 500;
  padding: 8px 0;
}

.nav-mobile:not([hidden]) { display: flex; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px var(--orange-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.btn-ghost:hover { color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--orange-muted);
  border: 1px solid rgba(255, 87, 34, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange-light);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 br {
  display: block;
}

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  margin-bottom: 4px;
}

.hero-form-note {
  margin-top: 5px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.hero-trust { margin-top: 32px; }

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-stars span:first-child {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.trust-copy { font-size: 0.875rem; color: var(--text-muted); }

/* Dashboard mockup */
.hero-visual {
  position: relative;
  perspective: 1200px;
  isolation: isolate;
}

.dashboard-glow {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}

.dashboard-frame {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.2);
  transform: rotateY(-4deg) rotateX(2deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

.dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.url-bar {
  flex: 1;
  margin-left: 8px;
  padding: 6px 12px;
  background: #f0f1f3;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  font-size: 0.7rem;
  color: #6b7280;
}

.dashboard-body {
  display: flex;
  min-height: 400px;
  background: #fff;
}

.dash-sidebar {
  width: 118px;
  flex-shrink: 0;
  padding: 14px 10px;
  background: #fff;
  border-right: 1px solid #e8eaed;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-brand img {
  width: 100%;
  max-width: 108px;
  height: auto;
  object-fit: contain;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 500;
  color: #3d4451;
  line-height: 1.2;
}

.dash-nav-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.dash-nav-item .dash-chevron {
  width: 10px;
  height: 10px;
  margin-left: auto;
  opacity: 0.5;
}

.dash-nav-item.active {
  color: var(--orange);
}

.dash-nav-item.active svg {
  stroke: var(--orange);
}

.dash-main {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 48px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.dash-map-panel {
  position: relative;
  min-height: 200px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dash-map-bg {
  position: absolute;
  top: -14px;
  left: -16px;
  right: -16px;
  bottom: 0;
  z-index: 0;
  background-color: #fff;
  background-image: url("../assets/dashboard-map.jpg");
  background-size: cover;
  background-position: center 40%;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 5%,
    #000 78%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 5%,
    #000 78%,
    transparent 100%
  );
}

.dash-map-bg::before,
.dash-map-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.dash-map-bg::before {
  top: 0;
  height: 16%;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.85) 55%, transparent 100%);
}

/* Fade only at the bottom — below the KPI cards */
.dash-map-bg::after {
  bottom: 0;
  height: 38%;
  background: linear-gradient(
    0deg,
    #fff 0%,
    #fff 22%,
    rgba(255, 255, 255, 0.92) 45%,
    rgba(255, 255, 255, 0.4) 70%,
    transparent 100%
  );
}

.dash-map-panel::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: 0;
  height: 28px;
  background: #fff;
  z-index: 1;
  pointer-events: none;
}

.dash-kpi-area {
  position: relative;
  z-index: 3;
  padding-top: 22px;
  margin-bottom: 0;
  pointer-events: none;
}

.dash-kpi-area .dash-kpi-row {
  pointer-events: auto;
}

.dash-map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 18px;
  margin-left: -7px;
  margin-top: -18px;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath d='M12 0C18.6 0 24 5.4 24 12c0 9-12 20-12 20S0 21 0 12C0 5.4 5.4 0 12 0z' fill='%23ff5722'/%3E%3Ccircle cx='12' cy='11' r='4.5' fill='%23fff'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.dash-map-pin.pin-tech {
  width: 12px;
  height: 16px;
  margin-left: -6px;
  margin-top: -16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath d='M12 0C18.6 0 24 5.4 24 12c0 9-12 20-12 20S0 21 0 12C0 5.4 5.4 0 12 0z' fill='%232563eb'/%3E%3Ccircle cx='12' cy='11' r='4.5' fill='%23fff'/%3E%3C/svg%3E");
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.dash-topbar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1d24;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dash-topbar-icons {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.dash-topbar-icons .dash-icon-btn.bell {
  margin-left: -5px;
}

.dash-datetime {
  font-size: 0.58rem;
  color: #6b7280;
  white-space: nowrap;
}

.dash-icon-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--orange);
  flex-shrink: 0;
}

.dash-icon-btn.sparkles svg {
  width: 20px;
  height: 20px;
}

.dash-icon-btn.bell {
  position: relative;
}

.dash-icon-btn.bell svg {
  width: 14px;
  height: 14px;
  stroke: #374151;
}

.dash-notif-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 13px;
  height: 13px;
  padding: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #ef4444;
  border: 1.5px solid #fff;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 500;
  color: #1a1d24;
}

.dash-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1px solid #e8eaed;
  background: #f3f4f6;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  position: relative;
  z-index: 2;
}

.dash-kpi {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  min-height: 68px;
  padding: 8px 7px 7px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e8eaed;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  min-width: 0;
  overflow: hidden;
}

.dash-kpi-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.dash-kpi-icon.green { background: #dcfce7; color: #16a34a; }
.dash-kpi-icon.blue { background: #dbeafe; color: #2563eb; }
.dash-kpi-icon.purple { background: #ede9fe; color: #7c3aed; }
.dash-kpi-icon.red { background: #fee2e2; color: #dc2626; }

.dash-kpi-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.dash-kpi-value {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-kpi-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.25;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-kpi-sub {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 3px;
  margin-top: 6px;
  padding-top: 5px;
  border-top: 1px solid #f0f1f3;
  font-size: 0.46rem;
  color: #9ca3af;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-kpi-sub span:first-child {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-kpi-sub strong {
  color: #6b7280;
  font-weight: 600;
  flex-shrink: 0;
}

.dash-kpi-txt-short {
  display: none;
}

.dash-jobs-section {
  position: relative;
  z-index: 2;
  margin-top: -21px;
  padding-top: 0;
  background: #fff;
}

.dash-jobs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  padding: 2px 0 6px;
}

.dash-jobs-head strong {
  display: block;
  font-size: 0.75rem;
  color: #111827;
}

.dash-jobs-head > div > span {
  display: block;
  margin-top: -4px;
  font-size: 0.58rem;
  color: #9ca3af;
}

.dash-link {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}

.dash-jobs-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.dash-job-stat {
  padding: 8px 4px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.dash-job-stat em {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.dash-job-stat span {
  display: block;
  font-size: 0.5rem;
  color: #9ca3af;
  margin-top: 2px;
}

.dash-job-list {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.dash-job-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  margin-bottom: 4px;
  border-radius: 8px;
}

.dash-job-row:last-child {
  margin-bottom: 0;
}

.dash-job-row.service-hvac {
  background: #eef6fc;
}

.dash-job-row.service-plumbing {
  background: #fef3e8;
}

.dash-job-time {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.dash-job-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: #111827;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-job-meta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.55rem;
  color: #9ca3af;
  white-space: nowrap;
}

.dash-job-meta.scheduled {
  color: #6b7280;
}

.dash-job-meta svg {
  width: 12px;
  height: 12px;
  stroke: #c4c9d1;
}

.dash-fab {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 4px 14px var(--orange-glow);
  cursor: default;
  z-index: 2;
}

.float-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(24, 27, 32, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.float-card-1 { bottom: 20%; left: -8%; animation-delay: 0s; }
.float-card-2 { top: 15%; right: -5%; animation-delay: 1s; }

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

.fc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border-radius: 10px;
  font-weight: 700;
}

.fc-icon.orange {
  background: var(--orange-muted);
  color: var(--orange);
}

.float-card strong { display: block; font-size: 0.8rem; }
.float-card p { font-size: 0.7rem; color: var(--text-dim); }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.stat-card:hover {
  border-color: rgba(255, 87, 34, 0.3);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-desc {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.stat-desc sup { font-size: 0.6em; color: var(--text-dim); }

/* Trades marquee */
.trades-section {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  border-block: 1px solid var(--border);
  background: rgba(18, 20, 26, 0.5);
}

.trades-heading {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee span {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.br-mobile {
  display: none;
}

.section-title.center,
.section-sub.center { text-align: center; }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 32px;
}

.section-sub.center { margin-inline: auto; }

.section-cta { display: table; margin: 0 auto 12px; }
.section-note { font-size: 0.85rem; color: var(--text-dim); }
.section-note.center { text-align: center; }

/* Why / testimonials */
.why-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.testimonial-card.featured {
  background: linear-gradient(160deg, rgba(255, 87, 34, 0.12) 0%, var(--bg-card) 50%);
  border-color: rgba(255, 87, 34, 0.25);
  transform: scale(1.02);
}

.testimonial-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.t-icon { font-size: 1.75rem; margin-bottom: 16px; }

.testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-card footer strong { font-size: 0.9rem; }
.testimonial-card footer span { font-size: 0.8rem; color: var(--text-dim); }

/* Features */
.features-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 20, 26, 0.6) 50%, transparent 100%);
}

.features-marquee-wrap {
  overflow: hidden;
  margin: 48px 0 64px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.features-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 50s linear infinite reverse;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  transition: border-color var(--transition);
}

.feature-pill:hover { border-color: rgba(255, 87, 34, 0.3); }

.fp-icon { font-size: 1.5rem; }

.feature-pill strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.feature-pill p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.bento-card:hover { border-color: var(--border-strong); }

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-card p,
.bento-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-text ul { margin-top: 16px; }

.bento-text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.bento-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.bento-accent {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, var(--bg-card) 100%);
  border-color: rgba(255, 87, 34, 0.2);
}

.schedule-visual {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 250px;
}

.schedule-mock {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-size: 10px;
  color: #374151;
  --schedule-row-h: 36px;
}

.schedule-mock-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #eef0f2;
  background: #fafbfc;
}

.schedule-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.schedule-nav {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.schedule-nav-btn {
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1;
  cursor: default;
}

.schedule-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  font-size: 0.52rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.schedule-map-btn svg {
  width: 11px;
  height: 11px;
  stroke: #6b7280;
  flex-shrink: 0;
}

.schedule-days {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.schedule-days span {
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
}

.schedule-days span.active {
  background: var(--orange);
  color: #fff;
}

.schedule-mock-date {
  font-size: 0.55rem;
  font-weight: 600;
  color: #111827;
  padding: 0 2px;
  white-space: nowrap;
}

.schedule-view-toggle {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: #f3f4f6;
  border-radius: 8px;
}

.schedule-view-toggle span {
  padding: 3px 8px;
  font-size: 0.58rem;
  font-weight: 500;
  color: #6b7280;
  border-radius: 6px;
}

.schedule-view-toggle span.active {
  background: #fff;
  color: var(--orange);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.schedule-board-head {
  display: grid;
  grid-template-columns: 38px 1fr 1fr 1fr;
  gap: 0;
  padding: 6px 8px 6px 4px;
  border-bottom: 1px solid #eef0f2;
  background: #fff;
}

.schedule-board-head span {
  font-size: 0.58rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.2;
}

.schedule-board-head em {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: #9ca3af;
  font-size: 0.46rem;
  margin-top: 1px;
}

.schedule-board-body {
  display: grid;
  grid-template-columns: 38px 1fr 1fr 1fr;
  min-height: calc(var(--schedule-row-h) * 6);
  background: #fff;
}

.schedule-times {
  display: grid;
  grid-template-rows: repeat(6, var(--schedule-row-h));
  padding: 0 4px 0 6px;
  border-right: 1px solid #eef0f2;
}

.schedule-times span {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
  font-size: 0.52rem;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1;
}

.schedule-col {
  position: relative;
  min-height: calc(var(--schedule-row-h) * 6);
  border-right: 1px solid #eef0f2;
  background-image: repeating-linear-gradient(
    to bottom,
    #fff,
    #fff calc(var(--schedule-row-h) - 1px),
    #eef0f2 calc(var(--schedule-row-h) - 1px),
    #eef0f2 var(--schedule-row-h)
  );
}

.schedule-col:last-child {
  border-right: none;
}

.schedule-job {
  --span: 1;
  position: absolute;
  left: 3px;
  right: 3px;
  top: calc((var(--row) + var(--row-offset, 0)) * var(--schedule-row-h) + 2px);
  height: calc(var(--span) * var(--schedule-row-h) - 4px);
  min-height: 0;
  padding: 3px 4px 3px 5px;
  border-radius: 6px;
  border: 1px solid transparent;
  border-left-width: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  line-height: 1.1;
  padding-top: 4px;
}

.schedule-job.job-maintenance {
  background: #f0f7ff;
  border-color: #bfdbfe;
  border-left-color: #3b82f6;
}

.schedule-job.job-emergency {
  background: #fef2f2;
  border-color: #fecaca;
  border-left-color: #ef4444;
}

.schedule-job.job-default {
  background: #fffbeb;
  border-color: #fde68a;
  border-left-color: #d97706;
}

.schedule-job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  margin-bottom: 1px;
  min-width: 0;
}

.schedule-job-tag {
  flex-shrink: 0;
  font-size: 0.32rem;
  font-weight: 600;
  padding: 0 3px;
  border-radius: 3px;
  line-height: 1.15;
  white-space: nowrap;
}

.schedule-job.job-maintenance .schedule-job-tag {
  color: #1d4ed8;
  background: #dbeafe;
}

.schedule-job.job-emergency .schedule-job-tag {
  color: #b91c1c;
  background: #fee2e2;
}

.schedule-job strong {
  display: block;
  font-size: 0.44rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-job.job-default .schedule-job-top {
  margin-bottom: 1px;
}

.schedule-job small {
  display: block;
  font-size: 0.34rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-job[style*="--span:2"] {
  justify-content: flex-start;
  padding-top: 4px;
  gap: 1px;
}

.schedule-job[style*="--span:2"] .schedule-job-top {
  margin-bottom: 2px;
}

.sms-preview {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sms-bubble {
  max-width: 90%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
}

.sms-bubble.out {
  align-self: flex-end;
  background: var(--orange);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.sms-bubble.in {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  border-bottom-left-radius: 4px;
}

/* Compare */
.compare-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.compare-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.compare-content > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.compare-list { margin-bottom: 32px; }

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}

.check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-muted);
  color: var(--orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* iPhone 17 device frame */
.compare-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iphone-17-mock {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.iphone-17-frame {
  position: relative;
  width: 300px;
  padding: 7px;
  border-radius: 48px;
  background: linear-gradient(160deg, #3d3d41 0%, #1a1a1c 55%, #0d0d0f 100%);
  border: 1.5px solid #48484c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 87, 34, 0.15);
}

.iphone-17-btn {
  position: absolute;
  background: #3a3a3c;
  border-radius: 2px;
  z-index: 2;
}

.iphone-17-btn-silent {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 28px;
}

.iphone-17-btn-vol {
  left: -2px;
  top: 152px;
  width: 3px;
  height: 52px;
}

.iphone-17-btn-power {
  right: -2px;
  top: 128px;
  width: 3px;
  height: 64px;
}

.iphone-17-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  background: #000;
  border-radius: 18px;
  z-index: 4;
  pointer-events: none;
}

.iphone-17-screen {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  clip-path: inset(0 round 40px);
  -webkit-clip-path: inset(0 round 40px);
  background: #f4f5f7;
  aspect-ratio: 9 / 19.5;
  isolation: isolate;
  transform: translateZ(0);
}

/* Mobile app screen (compare section) */
.mapp {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
  overflow: hidden;
}

.mapp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 38px 14px 10px;
  background: #fff;
  flex-shrink: 0;
}

.mapp-greeting {
  min-width: 0;
  flex: 1;
}

.mapp-greeting strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mapp-greeting span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #6b7280;
}

.mapp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mapp-sparkles {
  position: relative;
  width: 22px;
  height: 20px;
  flex-shrink: 0;
}

.mapp-sparkle {
  position: absolute;
  display: block;
}

.mapp-sparkle--1 {
  top: -1px;
  right: -1px;
  width: 15px;
  height: 15px;
}

.mapp-sparkle--2 {
  top: 7px;
  left: -2px;
  width: 11px;
  height: 11px;
  opacity: 0.95;
}

.mapp-sparkle--3 {
  bottom: -2px;
  left: 7px;
  width: 9px;
  height: 9px;
  opacity: 0.9;
}

.mapp-bell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #374151;
}

.mapp-bell svg {
  width: 19px;
  height: 19px;
  stroke: #374151;
}

.mapp-bell em {
  position: absolute;
  top: -4px;
  right: -5px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #ef4444;
  border: 1.5px solid #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapp-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e5e7eb;
  box-sizing: border-box;
}

.mapp-map-zone {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding-bottom: 66px;
  overflow: hidden;
}

.mapp-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 8px;
  background: transparent;
  flex-shrink: 0;
}

.mapp-stat {
  padding: 10px 10px 11px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.mapp-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-bottom: 6px;
}

.mapp-stat-icon svg {
  width: 13px;
  height: 13px;
}

.mapp-stat-icon--jobs {
  width: 26px;
  height: 26px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.mapp-stat-icon--jobs img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.mapp-stat-icon--done {
  background: #dcfce7;
  color: #16a34a;
}

.mapp-stat-value {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.mapp-stat-label {
  margin: 4px 0 0;
  font-size: 10px;
  color: #6b7280;
}

.mapp-map {
  position: absolute;
  top: -8px;
  left: -12px;
  right: -12px;
  bottom: -30px;
  z-index: 0;
  background-color: #fff;
  background-image: url("../assets/dashboard-map.jpg");
  background-size: cover;
  background-position: center 38%;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 6%,
    #000 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 6%,
    #000 100%
  );
}

.mapp-map::before,
.mapp-map::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.mapp-map::before {
  top: 0;
  height: 28%;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
}

.mapp-map::after {
  bottom: 0;
  height: 58%;
  background: linear-gradient(
    0deg,
    #fff 0%,
    #fff 12%,
    rgba(255, 255, 255, 0.96) 30%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.25) 72%,
    transparent 100%
  );
}

.mapp-map-zone::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    #fff 0%,
    rgba(255, 255, 255, 0.85) 45%,
    transparent 100%
  );
}

.mapp-clock {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 12px 0;
  padding: 12px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mapp-clock strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.mapp-clock > div > span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #6b7280;
}

.mapp-clock-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 12px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
}

.mapp-clock-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mapp-jobs {
  position: relative;
  z-index: 3;
  flex: 1;
  min-height: 0;
  margin-top: -35px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.mapp-jobs-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px 8px;
  flex-shrink: 0;
  background: #fff;
}

.mapp-jobs-head strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mapp-jobs-link {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 11px;
  font-weight: 600;
  color: #ff5722;
}

.mapp-jobs-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mapp-filters {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  padding: 0 12px 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
}

.mapp-filters > span {
  flex-shrink: 0;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  white-space: nowrap;
}

.mapp-filters > span.is-active {
  color: #fff;
  background: #ff5722;
  border-color: #ff5722;
}

.mapp-cal {
  flex: 1;
  min-height: 0;
  padding: 0 10px 8px;
  display: flex;
  flex-direction: column;
}

.mapp-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 8px;
  flex-shrink: 0;
}

.mapp-cal-nav strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mapp-cal-nav button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ff5722;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: default;
}

.mapp-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.mapp-cal-weekdays span {
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  color: #9ca3af;
}

.mapp-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px 0;
  flex: 1;
  align-content: start;
}

.mapp-cal-grid > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  font-size: 10px;
  font-weight: 500;
  color: #111827;
}

.mapp-cal-grid > span.is-muted {
  color: #d1d5db;
}

.mapp-cal-grid > span.is-selected {
  color: #fff;
  font-weight: 700;
  background: #ff5722;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin: 0 auto;
}

.mapp-fab {
  position: absolute;
  right: 14px;
  bottom: 58px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff5722;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.45);
}

.mapp-tabbar {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  padding: 6px 2px 12px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-radius: 0 0 40px 40px;
}

.mapp-tabbar > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 500;
  color: #6b7280;
}

.mapp-tabbar svg {
  width: 20px;
  height: 20px;
}

.mapp-tabbar > span.is-active {
  color: #ff5722;
  font-weight: 600;
}

.mapp-tabbar > span.is-active svg {
  stroke: #ff5722;
}

/* Pricing */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.plan-includes {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.plan-includes-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.plan-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.plan-includes-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plan-includes-grid li .check {
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-includes-grid li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.plan-includes-grid li span:not(.check) {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.price-card {
  position: relative;
  padding: 32px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition), border-color var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.price-card.popular {
  background: linear-gradient(180deg, rgba(255, 87, 34, 0.1) 0%, var(--bg-card) 40%);
  border-color: rgba(255, 87, 34, 0.35);
  box-shadow: 0 0 60px rgba(255, 87, 34, 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-hero);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1;
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--text-muted);
}

.price-amount .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
}

.price-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 2.8em;
}

.price-card ul { margin-bottom: 28px; }

.price-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.price-card li:last-child { border-bottom: none; }

.price-card .btn { width: 100%; }

/* FAQ */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.faq-list {
  max-width: 760px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover { color: var(--orange-light); }

.faq-item p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.final-cta-inner {
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, var(--bg-card) 50%, rgba(0, 158, 244, 0.08) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
}

.final-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.final-cta-inner > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.final-cta-inner .section-note { margin-top: 16px; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: #07080a;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { margin-bottom: 16px; opacity: 0.95; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 280px;
}

.footer-grid h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-grid a:hover { color: var(--orange-light); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 560px;
    margin-inline: auto;
    perspective: none;
  }

  .dashboard-glow {
    z-index: 0;
  }

  .dashboard-frame {
    z-index: 1;
    transform: none;
    animation: floatFlat 6s ease-in-out infinite;
  }

  .float-card {
    z-index: 10;
  }

  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }

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

  .hero-visual .dash-topbar-right {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .hero-visual .dash-datetime {
    display: none;
  }

  .hero-visual .dash-user > span {
    display: none;
  }

  .hero-visual .dash-user {
    flex-shrink: 0;
  }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .feature-bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; grid-row: span 1; grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .iphone-17-screen {
    aspect-ratio: unset;
    height: auto;
    overflow: hidden;
    clip-path: inset(0 round 40px);
    -webkit-clip-path: inset(0 round 40px);
  }
  .mapp {
    height: auto;
    min-height: unset;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
  }
  .mapp-jobs,
  .mapp-cal {
    flex: 0 0 auto;
    min-height: unset;
  }
  .plan-includes-grid { grid-template-columns: 1fr; }
  .plan-includes { padding: 28px 24px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .br-mobile {
    display: block;
  }

  .pricing-section .section-title.center {
    text-align: left;
    margin-bottom: 11px;
  }

  .compare-visual {
    overflow: visible;
  }

  .iphone-17-mock {
    transform: none;
    margin-bottom: 0;
  }

  .iphone-17-frame {
    --phone-scale: 0.88;
    width: min(300px, 92vw);
    margin-inline: auto;
    transform: scale(var(--phone-scale));
    transform-origin: top center;
    margin-bottom: calc(-1 * (1 - var(--phone-scale)) * 680px);
  }

  .iphone-17-screen {
    clip-path: inset(0 round 40px);
    -webkit-clip-path: inset(0 round 40px);
  }

  /* Hero dashboard KPI — ultra-compact 4-up row */
  .hero-visual .dash-kpi-row {
    gap: 3px;
  }

  .hero-visual .dash-kpi {
    gap: 3px;
    min-height: 50px;
    padding: 4px 3px 3px;
    align-items: center;
  }

  .hero-visual .dash-kpi-icon {
    width: 15px;
    height: 15px;
    font-size: 0.48rem;
    margin-top: 0;
  }

  .hero-visual .dash-kpi-value {
    font-size: 0.52rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .hero-visual .dash-kpi-label {
    font-size: 0.34rem;
    margin-top: 1px;
    line-height: 1.1;
  }

  .hero-visual .dash-kpi-sub {
    gap: 0;
    margin-top: 2px;
    padding-top: 2px;
    font-size: 0.32rem;
    line-height: 1.1;
  }

  .hero-visual .dash-kpi-sub strong {
    font-size: 0.32rem;
  }

  .hero-visual .dash-kpi-txt-full {
    display: none;
  }

  .hero-visual .dash-kpi-txt-short {
    display: inline;
  }

  .nav-desktop,
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .stats-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 32px, 1200px); }
  .final-cta-inner { padding: 40px 24px; }
}

/* Legal pages (Privacy, Terms) */
.legal-page {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.legal-inner {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.legal-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.legal-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.legal-summary h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.legal-summary ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-summary li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.legal-toc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal-toc h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.35rem;
  columns: 1;
  gap: 8px;
}

.legal-toc li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  break-inside: avoid;
}

.legal-toc a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.legal-toc a:hover { color: var(--orange-light); }

.legal-content section {
  margin-bottom: 40px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 16px;
}

.legal-content ol { list-style: decimal; }

.legal-content li { margin-bottom: 8px; }

.legal-content a {
  color: var(--orange-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--orange); }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 20px 0 24px;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
}

.legal-content th {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
}

.legal-placeholder {
  background: rgba(250, 85, 24, 0.08);
  border-left: 3px solid #fa5518;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.legal-note p { margin-bottom: 10px; }

@media (min-width: 640px) {
  .legal-toc ol { columns: 2; }
}

@media (max-width: 640px) {
  .legal-inner { width: min(100% - 32px, 760px); }
  .legal-content table { font-size: 0.8rem; }
  .legal-content th,
  .legal-content td { padding: 8px 10px; }
}

@media print {
  .site-header,
  .nav-toggle,
  .nav-mobile,
  .page-gradient,
  .site-footer .footer-grid > div:not(:first-child) { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-content p,
  .legal-content li,
  .legal-content td { color: #333; }
  .legal-page { padding-top: 24px; }
  .legal-toc { break-after: avoid; }
  .legal-content section { break-inside: avoid; }
}
