:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #566272;
  --line: #e5eaf0;
  --soft: #e7fbf6;
  --primary: #27c2a5;
  --primary-dark: #1fae95;
  --slate: #101828;
  --shadow: 0 18px 55px rgba(31, 42, 55, 0.1);
  --radius: 14px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1152px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand {
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: #344054;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.mobile-menu {
  display: none;
  position: relative;
  border: 0;
}

.mobile-menu summary {
  position: relative;
  width: 46px;
  min-height: 46px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(39, 194, 165, 0.32);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fffc 100%);
  box-shadow:
    0 10px 24px rgba(16, 24, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  list-style: none;
  padding: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.mobile-menu summary:hover {
  border-color: rgba(39, 194, 165, 0.62);
  box-shadow:
    0 14px 30px rgba(39, 194, 165, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(39, 194, 165, 0.28);
  outline-offset: 3px;
}

.mobile-menu[open] summary {
  border-color: rgba(39, 194, 165, 0.72);
  background: #e7fbf6;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::after,
.mobile-menu[open] summary::after {
  content: none;
}

.mobile-menu summary span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    top 180ms ease,
    transform 180ms ease,
    opacity 120ms ease,
    background-color 180ms ease;
}

.mobile-menu summary span:nth-child(1) {
  top: 15px;
}

.mobile-menu summary span:nth-child(2) {
  top: 22px;
  width: 14px;
}

.mobile-menu summary span:nth-child(3) {
  top: 29px;
}

.mobile-menu[open] summary span {
  top: 22px;
  background: var(--primary-dark);
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: -1px;
  z-index: 20;
  display: grid;
  gap: 0;
  width: min(340px, calc(100vw - 28px));
  border: 1px solid rgba(39, 194, 165, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    #ffffff;
  box-shadow:
    0 28px 70px rgba(16, 24, 40, 0.18),
    0 10px 24px rgba(39, 194, 165, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  padding: 8px;
  backdrop-filter: blur(14px);
  transform-origin: top right;
  animation: menu-pop 160ms ease-out;
}

.mobile-menu-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 19px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(39, 194, 165, 0.22);
  border-left: 1px solid rgba(39, 194, 165, 0.22);
  background: #ffffff;
  transform: rotate(45deg);
}

.mobile-menu-panel a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-radius: 14px;
  padding: 0 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
}

.mobile-menu-panel a + a {
  margin-top: 2px;
}

.mobile-menu-panel a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--primary-dark);
  border-right: 2px solid var(--primary-dark);
  opacity: 0.52;
  transform: rotate(45deg);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.mobile-menu-panel a:hover {
  background: #eefbf7;
  color: var(--primary-dark);
}

.mobile-menu-panel a:hover::after {
  opacity: 0.9;
  transform: translateX(2px) rotate(45deg);
}

.mobile-menu-panel .mobile-menu-cta {
  justify-content: center;
  margin-top: 8px;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(39, 194, 165, 0.22);
}

.mobile-menu-panel .mobile-menu-cta::after {
  content: none;
}

.mobile-menu-panel .mobile-menu-cta:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

@keyframes menu-pop {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(39, 194, 165, 0.25);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(39, 194, 165, 0.28);
  transform: translateY(-1px);
}

.button-small {
  min-height: 36px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: #f9fafb;
  color: var(--text);
  box-shadow: none;
}

.button-light {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: none;
}

.section {
  padding: clamp(72px, 8vw, 104px) 0;
}

.section-white {
  background: var(--surface);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 896px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  hyphens: none;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-intro {
  max-width: 620px;
  margin: 0 auto 42px;
}

.hero {
  padding: clamp(28px, 3.5vw, 42px) 0 clamp(48px, 6vw, 72px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: flex-start;
  gap: clamp(32px, 5vw, 64px);
}

.hero-grid > *,
.hero-copy,
.hero-media,
.screenshot-row {
  min-width: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(39, 194, 165, 0.28);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
}

/* ==========================================================================
   iPhone 16 Pro Modern Mockup Frame & App UI
   ========================================================================== */
.hero-media,
.screenshot-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 36px);
  max-width: 100%;
}

.hero-media {
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Feature Badge Strip (placed cleanly above phones, zero screen overlap) */
.hero-screen-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  width: 100%;
}

.screen-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(39, 194, 165, 0.35);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.hero-phones-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 3.5vw, 32px);
  position: relative;
  max-width: 100%;
}

/* iPhone 16 Pro Frame */
.phone {
  position: relative;
  width: clamp(235px, 22vw, 268px);
  height: 520px;
  border-radius: 46px;
  background: #0f1115;
  padding: 9px;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.15),
    0 0 0 3.5px #1e222a,
    0 28px 65px -12px rgba(15, 23, 42, 0.38),
    0 14px 28px -6px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.phone-rise {
  margin-top: -14px;
}

/* Dynamic Island (precisely centered in status bar with zero header collision) */
.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #000000;
  border-radius: 999px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.island-camera {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e2c40 0%, #080c14 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

/* iOS Status Bar */
.ios-status-bar {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 0;
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  z-index: 20;
  box-sizing: border-box;
}

.ios-time {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.ios-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ios-status-icons svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Phone Screen */
.phone-screen {
  flex: 1;
  border-radius: 37px;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

/* App Header */
.app-header {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
  box-sizing: border-box;
}

.app-title-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-back-btn {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 700;
}

.app-title {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.app-status-pill {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  background: #e6fcf5;
  color: #0ca678;
}

.app-status-pill.ready {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

/* App Body Content */
.app-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* Smart OCR Extracted Banner */
.ocr-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fefce8 0%, #f0fdf4 100%);
  border: 1px solid #fde047;
  font-size: 10px;
  color: #713f12;
  font-weight: 700;
}

.ocr-banner-badge {
  background: #16a34a;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
}

/* Client Card */
.client-info-card {
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.client-name {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.client-job {
  font-size: 10px;
  color: #64748b;
  margin-top: 1px;
}

/* Items Card */
.items-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.item-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #334155;
}

.item-line strong {
  color: #0f172a;
  font-weight: 700;
}

.items-divider {
  height: 1px;
  background: #edf2f7;
  margin: 3px 0;
}

.subtotal-line {
  font-size: 10px;
  color: #64748b;
}

.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  padding-top: 3px;
  border-top: 1px dashed #cbd5e1;
}

.total-line .amount {
  color: #0f766e;
  font-size: 13px;
}

/* Offline Chip */
.offline-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 700;
  color: #475569;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

/* Action Buttons */
.action-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6px;
  margin-top: auto;
}

.btn-primary-app {
  padding: 8px 6px;
  background: linear-gradient(135deg, #27c2a5 0%, #1fae95 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(39, 194, 165, 0.35);
}

.btn-secondary-app {
  padding: 8px 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

/* High-Resolution Vector PDF Preview Styling */
.pdf-screen-wrapper {
  flex: 1;
  background: #e2e8f0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdf-paper {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 9.5px;
}

.pdf-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1.5px solid #0f766e;
  padding-bottom: 6px;
}

.pdf-brand-mark {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pdf-logo-svg-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  padding: 2px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.pdf-logo-svg-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pdf-brand-text strong {
  display: block;
  font-size: 10px;
  color: #0f172a;
}

.pdf-brand-text span {
  display: block;
  font-size: 8px;
  color: #64748b;
}

.pdf-doc-type {
  text-align: right;
}

.pdf-doc-type strong {
  display: block;
  font-size: 11px;
  color: #0f766e;
  letter-spacing: 0.5px;
}

.pdf-doc-type span {
  display: block;
  font-size: 8.5px;
  color: #64748b;
}

.pdf-bill-to {
  font-size: 8.5px;
  color: #475569;
  line-height: 1.3;
}

.pdf-table-mini {
  width: 100%;
  border-collapse: collapse;
  margin: 2px 0;
}

.pdf-table-mini th {
  text-align: left;
  font-size: 8px;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  padding: 2px 0;
}

.pdf-table-mini th:last-child {
  text-align: right;
}

.pdf-table-mini td {
  padding: 3px 0;
  font-size: 8.5px;
  color: #1e293b;
}

.pdf-table-mini td:last-child {
  text-align: right;
  font-weight: 700;
}

.pdf-payment-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 5px;
  padding: 4px 6px;
  margin-top: auto;
}

.pdf-payment-title {
  font-size: 8px;
  font-weight: 800;
  color: #0f766e;
}

.pdf-payment-desc {
  font-size: 7.5px;
  color: #64748b;
}

/* Share Bar */
.share-action-bar {
  margin-top: 6px;
  padding: 7px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

/* Home Indicator */
.home-indicator {
  width: 86px;
  height: 3.5px;
  background: #64748b;
  border-radius: 999px;
  margin: 5px auto 4px;
  opacity: 0.5;
}

.phone-caption {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mark {
  display: grid !important;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--soft);
  color: var(--primary-dark) !important;
  font-size: 14px !important;
  font-weight: 900;
}

.problem-grid,
.step-grid,
.feature-grid,
.use-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
  text-align: left;
}

.problem-item {
  display: flex;
  gap: 14px;
  min-height: 76px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  padding: 20px;
}

.problem-item span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 999px;
  background: #ff5a66;
}

.problem-item p,
.panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  text-align: left;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.use-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  text-align: left;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.feature,
.use-card,
.trust-card {
  min-height: 214px;
}

.feature {
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 194, 165, 0.4);
  box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.08);
}

.feature.feature-highlight {
  position: relative;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  border-color: rgba(39, 194, 165, 0.48);
  box-shadow:
    0 12px 28px -6px rgba(39, 194, 165, 0.16),
    0 1px 2px rgba(16, 24, 40, 0.04);
}

.feature-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-top-bar .icon {
  margin-bottom: 0;
}

.feature-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-badge-pill.badge-ai {
  background: #ccfbf1;
  color: #0f766e;
  border: 1px solid rgba(39, 194, 165, 0.38);
}

.feature h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #0f172a;
}

.feature p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.6;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  flex-wrap: wrap;
}

.hero-trust-bar .sep {
  color: #cbd5e1;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #667085;
  font-size: 13px;
  font-weight: 900;
}

.icon,
.step-meta svg {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary-dark);
}

.icon {
  margin-bottom: 20px;
}

.icon svg,
.step-meta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.use-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.use-card span,
.footer span {
  border-radius: 999px;
  background: #f1f5f9;
  color: #475467;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.screenshot-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 32px);
  margin-top: 42px;
  padding-bottom: 48px;
}

.phone-small {
  width: clamp(230px, 21vw, 252px);
  height: 520px;
  border-radius: 44px;
  padding: 8px;
  box-sizing: border-box;
}

.phone-small .phone-screen {
  border-radius: 36px;
}

.phone-small .dynamic-island {
  top: 9px;
  width: 68px;
  height: 18px;
}

.phone-small .ios-status-bar {
  height: 34px;
  padding: 9px 14px 0;
}

.phone-small .app-header {
  height: 36px;
  padding: 0 10px;
}

.phone-small .app-content {
  padding: 8px;
  gap: 6px;
}

.phone-small .items-card {
  padding: 7px 8px;
  gap: 4px;
}

.phone-small .item-line {
  font-size: 10px;
}

.phone-small .item-qty {
  display: block;
  font-size: 8px;
  color: #94a3b8;
  margin-top: 1px;
}

.phone-small .client-info-card {
  padding: 6px 8px;
}

.phone-small .pdf-paper {
  padding: 8px 8px 6px;
  gap: 5px;
}

.phone-small .pdf-table-mini th {
  font-size: 7.5px;
  padding: 2px 0;
}

.phone-small .pdf-table-mini td {
  font-size: 8px;
  padding: 2px 0;
}

.doc-row {
  align-items: flex-start;
  padding: 12px;
  font-size: 12px;
}

.doc-row span {
  max-width: 105px;
  color: #344054;
  font-weight: 800;
}

.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #8a5b00;
  font-size: 14px;
}

.placeholder-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f9ab00;
}

.faq-wrap {
  max-width: 820px;
}

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 500;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-bottom: 24px;
  font-size: 16px;
}

.cta {
  background: var(--primary);
  color: #ffffff;
  padding: 78px 0;
}

.cta h2 {
  margin-bottom: 14px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.86);
}

.footer {
  background: #101828;
  color: #ffffff;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(32px, 8vw, 92px);
}

.footer-logo {
  width: 164px;
}

.footer h2 {
  margin-bottom: 18px;
  color: #d0d5dd;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer p {
  max-width: 360px;
  margin-bottom: 14px;
  color: #98a2b3;
  font-size: 15px;
}

.footer span {
  display: inline-flex;
  margin-left: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #d0d5dd;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
  color: #98a2b3;
  font-size: 13px;
}

.footer-bottom span {
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: nowrap;
    padding: 10px 0;
  }

  .nav-links {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 0;
  }

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

  .hero-media {
    justify-content: flex-start;
    overflow-x: visible;
    overflow-y: visible;
    padding: 6px 0 44px;
  }

  .step-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-row {
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .wrap {
    width: min(1152px, calc(100% - 28px));
    margin-inline: auto;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    max-width: 100%;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    margin-inline: auto;
    overflow-wrap: break-word;
  }

  .hero-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .brand img {
    width: 136px;
  }

  .nav {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav .button {
    display: none;
  }

  .hero {
    padding: 24px 0 36px;
  }

  .hero-feature-pills {
    justify-content: center;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .actions {
    display: grid;
    justify-items: center;
  }

  .button {
    width: min(100%, 362px);
  }

  .hero-media {
    justify-content: center;
  }

  .problem-grid,
  .step-grid,
  .feature-grid,
  .use-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 22px;
  }

  .phone {
    width: 250px;
    height: 510px;
  }

  .hero-phones-container {
    flex-wrap: wrap;
    gap: 36px 24px;
    justify-content: center;
  }

  .hero-phones-container .phone {
    width: clamp(230px, 44vw, 260px);
    height: 520px;
  }

  .phone-small {
    flex-basis: 220px;
  }

  summary {
    align-items: flex-start;
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .hero-phones-container,
  .screenshot-row {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .hero-phones-container .phone,
  .screenshot-row .phone {
    width: min(260px, 100%);
    height: 520px;
    margin-inline: auto;
  }

  .phone-rise {
    margin-top: 0;
  }
}

/* ==========================================================================
   New Section: Comparison (The Driveway Advantage)
   ========================================================================== */
.comparison-wrap {
  margin-top: 40px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 2px solid var(--line);
  background: #f8fafc;
}

.comparison-table th:first-child {
  width: 24%;
  color: var(--muted);
}

.comparison-table th.col-old {
  width: 38%;
  color: #991b1b;
  background: #fef2f2;
}

.comparison-table th.col-new {
  width: 38%;
  color: #065f46;
  background: #ecfdf5;
}

.comparison-table td {
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.dim-text {
  color: #4b5563;
  background: #fffafa;
}

.comparison-table td.pro-text {
  font-weight: 700;
  color: #064e3b;
  background: #f0fdf4;
}

.comparison-table td .cross-icon {
  color: #dc2626;
  font-weight: 900;
  margin-right: 8px;
}

.comparison-table td .check-icon {
  color: #10b981;
  font-weight: 900;
  margin-right: 8px;
}

@media (max-width: 760px) {
  .comparison-wrap {
    overflow-x: auto;
  }
  .comparison-table {
    min-width: 580px;
  }
}

/* ==========================================================================
   New Section: Reliability & Dual-Language
   ========================================================================== */
.reliability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.reliability-card {
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.reliability-card.dark {
  background: linear-gradient(145deg, #111827 0%, #0f172a 100%);
  color: #ffffff;
  border-color: #1e293b;
}

.reliability-card.dark h3 {
  color: #ffffff;
  font-size: 22px;
}

.reliability-card.dark p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

.reliability-card.dark .tag {
  background: #1e293b;
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.reliability-card h3 {
  font-size: 22px;
  margin: 0;
  color: var(--text);
}

.reliability-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.reliability-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reliability-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
}

@media (max-width: 800px) {
  .reliability-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Camera Scanner Screen Mockup (for Screenshots section)
   ========================================================================== */
.scanner-screen {
  background: #090d16;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.scanner-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 14px 6px;
  font-size: 11px;
  color: #94a3b8;
}

.scanner-mode-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.scanner-flash-icon,
.scanner-close-icon {
  font-size: 12px;
  opacity: 0.8;
}

.scanner-viewfinder {
  flex: 1;
  margin: 4px 10px 8px;
  border: 1px dashed rgba(39, 194, 165, 0.45);
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.7);
}

.scanner-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27c2a5, transparent);
  box-shadow: 0 0 10px #27c2a5;
  animation: scanLaser 3.5s ease-in-out infinite;
  z-index: 5;
}

@keyframes scanLaser {
  0%, 100% { top: 6%; opacity: 0.3; }
  50% { top: 88%; opacity: 1; }
}

.scanner-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #27c2a5;
  border-style: solid;
  z-index: 6;
}

.tl { top: -1px; left: -1px; border-width: 2.5px 0 0 2.5px; border-top-left-radius: 5px; }
.tr { top: -1px; right: -1px; border-width: 2.5px 2.5px 0 0; border-top-right-radius: 5px; }
.bl { bottom: -1px; left: -1px; border-width: 0 0 2.5px 2.5px; border-bottom-left-radius: 5px; }
.br { bottom: -1px; right: -1px; border-width: 0 2.5px 2.5px 0; border-bottom-right-radius: 5px; }

.scanner-paper-sim {
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.sim-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.sim-line.w-60 { width: 60%; }
.sim-line.w-80 { width: 80%; }

.detected-item-box {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #27c2a5;
  border-radius: 6px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  animation: pulseScan 3s infinite;
}

@keyframes pulseScan {
  0%, 100% { border-color: rgba(39, 194, 165, 0.7); }
  50% { border-color: #27c2a5; box-shadow: 0 0 8px rgba(39, 194, 165, 0.4); }
}

.detected-check {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #27c2a5;
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.detected-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.detected-text strong {
  font-size: 9px;
  color: #ffffff;
  font-weight: 700;
}

.detected-text span {
  font-size: 7.5px;
  color: #94a3b8;
}

.detected-price {
  font-size: 9.5px;
  font-weight: 800;
  color: #27c2a5;
}

/* iOS Bottom Slide-up Sheet */
.scanner-sheet {
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px 14px 0 0;
  padding: 6px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sheet-handle {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 2px;
}

.sheet-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sheet-meta strong {
  font-size: 9.5px;
  color: #ffffff;
}

.sheet-meta span {
  font-size: 8px;
  color: #94a3b8;
}

.scanner-sheet-btn {
  background: linear-gradient(135deg, #27c2a5 0%, #1fae95 100%);
  color: #ffffff;
  border-radius: 7px;
  padding: 6px;
  font-size: 10.5px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 10px rgba(39, 194, 165, 0.35);
}

/* ==========================================================================
   Waitlist & Early Access Section Form
   ========================================================================== */
.waitlist-card {
  max-width: 580px;
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.waitlist-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.waitlist-input {
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #ffffff;
  font-size: 15px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input:focus {
  border-color: #27c2a5;
  box-shadow: 0 0 0 3px rgba(39, 194, 165, 0.25);
}

.waitlist-button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: #27c2a5;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(39, 194, 165, 0.4);
}

.waitlist-button:hover {
  background: #1fae95;
  transform: translateY(-1px);
}

.waitlist-feedback {
  margin-top: 14px;
  font-size: 13px;
  color: #f1f5f9;
}

.waitlist-success {
  display: none;
  padding: 12px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

@media (max-width: 560px) {
  .waitlist-form {
    flex-direction: column;
    width: 100%;
  }
  .waitlist-input,
  .waitlist-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.article-hero {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.article-wrap {
  width: min(768px, calc(100% - 40px));
  margin-inline: auto;
}

.article-hero .article-wrap {
  padding: 56px 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: #4b5563;
  font-size: 14px;
  line-height: 20px;
}

.back-link:hover {
  color: var(--primary-dark);
}

.article-hero h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.25;
}

.article-lede {
  max-width: 576px;
  margin-bottom: 16px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.625;
}

.article-updated {
  margin: 0;
  color: rgba(75, 85, 99, 0.7);
  font-size: 12px;
  line-height: 16px;
}

.article-main {
  padding: 64px 0;
}

.article-content {
  display: grid;
  gap: 48px;
}

.article-section {
  display: grid;
  gap: 16px;
}

.article-section h2 {
  margin: 0;
  border-left: 2px solid var(--primary);
  padding-left: 18px;
  font-size: 20px;
  line-height: 1.4;
}

.article-section p,
.article-section li {
  color: rgba(17, 24, 39, 0.8);
  font-size: 15px;
  line-height: 1.625;
}

.article-section p {
  margin: 0;
  padding-left: 16px;
}

.article-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 36px;
}

.article-callout {
  margin-left: 16px;
  border-radius: 16px;
  background: #f0f2f5;
  padding: 16px;
}

.article-callout p {
  padding-left: 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
}

.article-callout a {
  color: var(--primary-dark);
  font-size: 14px;
}

@media (max-width: 680px) {
  .article-wrap {
    width: min(768px, calc(100% - 28px));
  }

  .article-hero .article-wrap {
    padding: 42px 0;
  }

  .article-hero h1 {
    font-size: 32px;
  }

  .article-main {
    padding: 48px 0;
  }

  .article-content {
    gap: 38px;
  }

  .article-section p {
    padding-left: 12px;
  }

  .article-callout {
    margin-left: 12px;
  }
}
