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

:root {
  --bg: #faf9f5;
  --bg2: #f3f2ec;
  --bg3: #eceae2;
  --border: #e2e0d6;
  --border2: #d4d1c5;
  --text: #1a1917;
  --text2: #3d3c38;
  --text3: #6b6a63;
  --text4: #9c9a90;
  --accent: #c6613f;
  --accent2: #d97757;
  --accent-soft: #fdf0eb;
  --accent-border: rgba(198, 97, 63, 0.18);
  --card: #ffffff;
  --card-hover: #fefefe;
  --success: #2f7613;
  --success-soft: #eaf5e2;
  --blue: #3b6fc2;
  --blue-soft: #e8f0fc;
  --warning-soft: #fdf6e8;
  --envelope-fill: #fdf0eb;
  --envelope-stroke: #d4a68c;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.03);
  --radius: 16px;
  --radius-lg: 24px;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141312;
    --bg2: #1c1b19;
    --bg3: #252422;
    --border: #333230;
    --border2: #444340;
    --text: #f2f1eb;
    --text2: #c4c2b8;
    --text3: #908e84;
    --text4: #6b6a63;
    --accent: #d97757;
    --accent2: #e8906e;
    --accent-soft: #2e1a12;
    --accent-border: rgba(217, 119, 87, 0.2);
    --card: #1e1d1b;
    --card-hover: #232220;
    --success: #459315;
    --success-soft: #1a2e0d;
    --blue: #5a8fe0;
    --blue-soft: #162a4a;
    --warning-soft: #2e2008;
    --envelope-fill: #2e1a12;
    --envelope-stroke: #7a5038;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.35);
  }
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Grain Texture ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}
@media (prefers-color-scheme: dark) {
  .grain { opacity: 0.04; }
}

/* ===== Typography ===== */
h1, h2, h3 { font-kerning: auto; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.9,.36,1);
}
.section-header.in-view {
  opacity: 1;
  transform: none;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.section-header h2 em {
  color: var(--accent);
  font-style: italic;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  transition: padding 0.3s, background 0.3s, box-shadow 0.3s, transform 0.35s;
}

.nav-scrolled {
  padding: 12px 32px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border);
}

.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.nav-logo img {
  transition: transform 0.3s;
}
.nav-logo:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text3);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s cubic-bezier(.22,.9,.36,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg) !important;
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 6px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-burger span:first-child { top: 11px; }
.nav-burger span:last-child { top: 19px; }

.menu-open .nav-burger span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .nav-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  text-decoration: none;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-cta {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  color: var(--accent) !important;
  font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-circle.c1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.7;
}
.hero-circle.c2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.5;
}

/* Floating envelopes */
.envelope {
  position: absolute;
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.3s;
}
.e1 { top: 16%; left: 7%; transform: rotate(-14deg); }
.e2 { top: 55%; right: 5%; transform: rotate(10deg); }
.e3 { bottom: 14%; left: 14%; transform: rotate(-6deg); }

/* Stamp */
.hero-stamp {
  position: absolute;
  top: 130px;
  right: 9%;
  color: var(--accent);
  opacity: 0.12;
  animation: stamp-spin 50s linear infinite;
}
@keyframes stamp-spin { to { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text4);
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease both;
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--border2);
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-line1 {
  display: block;
  font-size: clamp(44px, 8.5vw, 88px);
  color: var(--text3);
}
.hero-line2 {
  display: block;
  font-size: clamp(56px, 11vw, 120px);
  color: var(--accent);
}

.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text3);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.22,.9,.36,1), box-shadow 0.25s;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.btn-primary svg { flex-shrink: 0; }

.btn-secondary {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--border2);
  background: var(--bg2);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* Hero reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s cubic-bezier(.22,.9,.36,1) both;
  animation-delay: var(--d, 0s);
}
body.loaded .reveal-up {
  animation-play-state: running;
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--border2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* ===== Stats Bar ===== */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(.22,.9,.36,1);
}
.stats-bar.in-view {
  opacity: 1;
  transform: none;
}

.stats-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 36px 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 30px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border2);
  flex-shrink: 0;
}

/* ===== Features / Bento Grid ===== */
.features {
  padding: 120px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.22,.9,.36,1), opacity 0.6s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(28px);
}
.bento-card.in-view {
  opacity: 1;
  transform: none;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bento-card.in-view:hover {
  transform: translateY(-4px);
}

.bento-card-inner {
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.bento-card p {
  color: var(--text3);
  font-size: 14px;
  line-height: 1.65;
}

/* Grid positions */
.bento-scan { grid-column: 1 / 4; }
.bento-ai { grid-column: 4 / 7; }
.bento-search { grid-column: 1 / 3; }
.bento-folders { grid-column: 3 / 5; }
.bento-reminders { grid-column: 5 / 7; }

/* Stagger animation delays */
.bento-scan { transition-delay: 0s; }
.bento-ai { transition-delay: 0.08s; }
.bento-search { transition-delay: 0.16s; }
.bento-folders { transition-delay: 0.22s; }
.bento-reminders { transition-delay: 0.28s; }

/* -- Scan card -- */
.bento-scan .bento-card-inner {
  padding: 36px 32px;
}
.bento-scan h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.bento-visual {
  margin-bottom: 20px;
}

.scan-animation {
  position: relative;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 3/4;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  overflow: hidden;
}
.scan-doc > div {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
}
.scan-line-1 { width: 80%; }
.scan-line-2 { width: 95%; }
.scan-line-3 { width: 60%; }
.scan-line-4 { width: 75%; }

.scan-beam {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 16px var(--accent);
  animation: scanBeam 3s ease-in-out infinite;
}
@keyframes scanBeam {
  0%, 100% { top: 10%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 85%; opacity: 1; }
  60% { opacity: 0; }
}

/* -- AI card -- */
.bento-ai .bento-card-inner {
  padding: 36px 32px;
  background:
    radial-gradient(ellipse at 85% 15%, var(--accent-soft) 0%, transparent 55%);
}
.bento-ai h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.bento-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 18px;
}

.ai-extract {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ai-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.ai-row:last-child { border-bottom: none; }

.ai-key {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 64px;
  text-align: center;
}
.ai-val {
  color: var(--text2);
}
.ai-suggest {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--success);
}

.bento-caption {
  margin-top: auto;
  font-size: 12.5px !important;
  color: var(--text4) !important;
  line-height: 1.6;
}

/* -- Search card -- */
.search-mock {
  margin-bottom: 16px;
}
.search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 6px;
}
.cursor-blink {
  color: var(--accent);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink {
  0% { opacity: 1; } 50% { opacity: 0; }
}
.search-hits {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text2);
  padding: 7px 12px;
  background: var(--bg2);
  border-radius: 8px;
  transition: background 0.15s;
}
.hit:first-child { background: var(--accent-soft); }
.hit-date { color: var(--text4); font-size: 11px; }
.hit.faded { opacity: 0.45; }

/* -- Folders card -- */
.folder-tree {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.tree-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--text2);
  transition: transform 0.2s;
}
.tree-item:hover { transform: translateX(4px); }
.t1 { background: var(--accent-soft); }
.t2 { background: var(--success-soft); margin-left: 14px; }
.t3 { background: var(--blue-soft); margin-left: 28px; }

/* -- Reminders card -- */
.reminder-mock {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  margin-bottom: 16px;
}
.reminder-icon {
  position: relative;
  flex-shrink: 0;
}
.ping-dot {
  position: absolute;
  top: -3px; right: -3px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
}
.reminder-body {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reminder-body strong {
  color: var(--accent);
  font-size: 13px;
}

/* ===== Process ===== */
.process {
  padding: 120px 24px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.process-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.process-line {
  display: none;
}

.process-step {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(.22,.9,.36,1);
}
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }

.process-step.in-view {
  opacity: 1;
  transform: none;
}

.step-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  color: var(--text4);
  margin-bottom: 18px;
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
}

/* ===== Pricing ===== */
.pricing {
  padding: 120px 24px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(.22,.9,.36,1), box-shadow 0.3s;
}
.price-card:nth-child(2) { transition-delay: 0.1s; }
.price-card.in-view {
  opacity: 1;
  transform: none;
}
.price-card:hover {
  box-shadow: var(--shadow-md);
}
.price-card.in-view:hover {
  transform: translateY(-3px);
}

.price-featured {
  border: 2px solid var(--accent);
}

.price-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
}

.price-header {
  margin-bottom: 28px;
}

.price-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text4);
}

.price-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.price-amount span {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text4);
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--text2);
  padding: 8px 0;
  padding-left: 26px;
  position: relative;
  border-bottom: 1px solid var(--bg2);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--success-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232f7613' stroke-width='3.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
@media (prefers-color-scheme: dark) {
  .price-features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23459315' stroke-width='3.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  }
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text4);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 32px 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text2);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text4);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-scan { grid-column: 1 / -1; }
  .bento-ai { grid-column: 1 / -1; }
  .bento-search { grid-column: auto; }
  .bento-folders { grid-column: auto; }
  .bento-reminders { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav { padding: 14px 20px; }
  .nav-scrolled { padding: 12px 20px; }

  .hero { padding: 110px 20px 50px; min-height: 90vh; }
  .hero-stamp { display: none; }
  .envelope { display: none; }
  .hero-line1 { font-size: clamp(40px, 12vw, 60px); }
  .hero-line2 { font-size: clamp(48px, 15vw, 76px); }
  .hero-sub { font-size: 16px; }

  .stats-inner { gap: 28px; padding: 28px 20px; }
  .stat-num { font-size: 24px; }

  .features { padding: 80px 16px; }
  .section-header { margin-bottom: 40px; }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bento-scan, .bento-ai, .bento-search, .bento-folders, .bento-reminders {
    grid-column: auto;
  }

  .process { padding: 80px 16px; }
  .process-track { flex-direction: column; gap: 16px; }
  .step-number { font-size: 36px; }
  .step-card { padding: 28px 20px 24px; }

  .pricing { padding: 80px 16px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-inner { padding: 32px 20px 24px; }
  .footer-top { flex-direction: column; gap: 16px; }
}

@media (max-width: 400px) {
  .hero-actions .btn-primary {
    padding: 13px 24px;
    font-size: 14px;
  }
  .stats-inner {
    flex-direction: column;
    gap: 18px;
  }
  .stat-dot { display: none; }
}
