* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

.section-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
  text-align: center;
}

h1, h2, h3 { color: #0F172A; letter-spacing: -0.5px; }
h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.25;
}

.btn-primary {
  background: #2563EB;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
.btn-secondary {
  background: #fff;
  color: #334155;
  border: 1.5px solid #E2E8F0;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: #94A3B8; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #F1F5F9;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 17px; font-weight: 800; color: #0F172A; }
.logo span { color: #2563EB; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #475569; transition: color 0.15s; }
.nav-links a:hover { color: #0F172A; }
.nav-cta {
  background: #0F172A;
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
}

.hero {
  padding: 130px 24px 60px;
  background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 65%);
}
.hero-tag {
  max-width: 1120px;
  margin: 0 auto 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DBEAFE;
  color: #1D4ED8;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.hero-text { max-width: 640px; margin: 0 auto; }
.hero-mockup-img { width: 100%; height: auto; }
.hero-text h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 16px;
  color: #64748B;
  max-width: 460px;
  margin: 0 auto 28px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
}
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust span { font-size: 12px; color: #94A3B8; }
.hero-trust span::before { content: '✓ '; color: #22C55E; font-weight: 700; }

.hero-mockup {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 24px 60px rgba(37,99,235,0.15);
  overflow: hidden;
}
.mockup-bar { background: #F8FAFC; padding: 10px 14px; display: flex; gap: 6px; border-bottom: 1px solid #E2E8F0; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.red { background: #F87171; } .dot.amber { background: #FBBF24; } .dot.green { background: #34D399; }
.mockup-body { padding: 20px; display: grid; grid-template-columns: 72px 1fr; gap: 16px; }
.mockup-sidebar { background: #0F172A; border-radius: 10px; padding: 14px 8px; display: flex; flex-direction: column; gap: 8px; }
.mock-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.15); }
.mockup-sidebar .mock-line.active { background: #2563EB; }
.mockup-sidebar .w70 { width: 70%; background: rgba(255,255,255,0.4); }
.mockup-sidebar .w90 { width: 90%; }
.mockup-sidebar .w60 { width: 60%; background: rgba(255,255,255,0.25); }
.mockup-sidebar .w75 { width: 75%; background: rgba(255,255,255,0.25); }
.mock-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.mock-kpi { border-radius: 10px; padding: 12px; }
.mock-kpi.blue { background: #EFF6FF; } .mock-kpi.green { background: #F0FDF4; } .mock-kpi.amber { background: #FEF3C7; }
.mock-num { font-size: 18px; font-weight: 800; }
.mock-kpi.blue .mock-num { color: #1D4ED8; } .mock-kpi.green .mock-num { color: #16A34A; } .mock-kpi.amber .mock-num { color: #B45309; }
.mock-lbl { font-size: 9.5px; color: #94A3B8; margin-top: 2px; }
.mock-body-box { background: #F8FAFC; border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.mock-body-box .mock-line { background: #E2E8F0; }
.mock-body-box .w100 { width: 100%; } .mock-body-box .w80 { width: 80%; } .mock-body-box .w90 { width: 90%; }

.hero-chaos {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.75;
}
.hero-chaos span { font-size: 13px; color: #94A3B8; }
.hero-chaos .chaos-arrow { color: #2563EB; font-weight: 700; font-size: 14px; }

.problem { padding: 90px 24px; background: #fff; }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.problem-card { background: #F8FAFC; border-radius: 16px; padding: 28px; border: 1px solid #F1F5F9; }
.problem-icon { font-size: 28px; margin-bottom: 14px; }
.problem-card h3 { font-size: 16px; margin-bottom: 8px; }
.problem-card p { font-size: 13.5px; color: #64748B; }

.benefits { padding: 90px 24px; background: #F8FAFC; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card { background: #fff; border-radius: 16px; padding: 26px; border: 1px solid #E2E8F0; transition: transform 0.15s; }
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon { width: 42px; height: 42px; border-radius: 10px; background: #EFF6FF; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 15px; margin-bottom: 6px; }
.benefit-card p { font-size: 13px; color: #64748B; }

.screenshots { padding: 90px 24px; background: #fff; }
.screenshot-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  background: #F1F5F9;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  transition: all 0.15s;
}
.tab-btn.active { background: #2563EB; color: #fff; }
.screenshot-frame {
  max-width: 900px;
  margin: 0 auto;
  background: #F8FAFC;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  padding: 24px;
  min-height: 320px;
}
.screenshot-view { display: none; }
.screenshot-view.active { display: block; }

.howworks { padding: 90px 24px; background: #F8FAFC; }
.how-steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.how-step-item { text-align: center; }
.how-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2563EB;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how-step-item h3 { font-size: 15px; margin-bottom: 6px; }
.how-step-item p { font-size: 13px; color: #64748B; }

.compare { padding: 90px 24px; background: #fff; }
.compare-table { max-width: 720px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid #E2E8F0; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row.head .compare-cell { font-weight: 800; font-size: 13px; padding: 16px; }
.compare-cell { padding: 14px 16px; font-size: 13.5px; border-bottom: 1px solid #F1F5F9; }
.compare-cell.old { color: #94A3B8; background: #FAFAFA; }
.compare-cell.new { color: #0F172A; background: #EFF6FF; font-weight: 600; }
.compare-cell.old::before { content: '✕ '; color: #F87171; }
.compare-cell.new::before { content: '✓ '; color: #22C55E; }

.trust { padding: 60px 24px; background: #F8FAFC; }
.trust-badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-badge { text-align: center; max-width: 160px; }
.trust-badge-icon { font-size: 24px; margin-bottom: 8px; }
.trust-badge p { font-size: 12.5px; color: #64748B; font-weight: 600; }

.faq { padding: 90px 24px; background: #fff; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #F1F5F9; }
.faq-item summary {
  padding: 18px 4px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 4px 18px; font-size: 13.5px; color: #64748B; }

.final-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 32px; }
.final-cta .btn-primary { background: #fff; color: #2563EB; font-size: 16px; padding: 16px 36px; }
.final-cta .btn-primary:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}
footer a { color: #CBD5E1; margin: 0 4px; }
footer a:hover { color: #fff; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mockup { order: -1; }
  .problem-grid, .benefits-grid, .how-steps-row { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
.mockup-note { text-align: center; font-size: 11px; color: #94A3B8; padding: 10px 0 4px; }

.story { padding: 90px 24px; background: #0F172A; text-align: center; }
.story .section-label { color: #60A5FA; }
.story h2 { color: #fff; }
.story-timeline { max-width: 460px; margin: 0 auto 32px; display: flex; flex-direction: column; gap: 14px; }
.story-item { display: flex; align-items: center; gap: 16px; }
.story-time { font-size: 13px; color: #64748B; font-weight: 700; min-width: 44px; text-align: right; }
.story-text { font-size: 14.5px; color: #CBD5E1; text-align: left; }
.story-end .story-text { color: #F87171; font-weight: 600; }
.story-solution { margin-bottom: 8px; }
.story-solution span { font-size: 20px; font-weight: 800; color: #60A5FA; }
.story-solution p { font-size: 14px; color: #94A3B8; margin-top: 6px; }

.cta-inline { text-align: center; margin-top: 40px; }

.video-section { padding: 90px 24px; background: #F8FAFC; text-align: center; }
.video-placeholder {
  max-width: 720px; margin: 0 auto;
  aspect-ratio: 16/9;
  background: #0F172A;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.video-placeholder p { color: #94A3B8; font-size: 13.5px; max-width: 400px; }

.screenshot-placeholder-text { text-align: center; color: #94A3B8; font-size: 13px; padding: 60px 20px; }

.pricing-early { padding: 90px 24px; background: #fff; text-align: center; }
.pricing-early-card { max-width: 420px; margin: 0 auto; background: #F8FAFC; border-radius: 20px; padding: 32px; border: 1px solid #E2E8F0; }
.pe-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #E2E8F0; font-size: 14px; }
.pe-row.featured { color: #1D4ED8; font-weight: 700; }
.pe-price { font-weight: 700; }
.pe-save { display: inline-block; background: #DCFCE7; color: #15803D; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
.pe-note { font-size: 12.5px; color: #64748B; margin: 16px 0; }

.final-cta-checks { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.final-cta-checks span { font-size: 12px; color: rgba(255,255,255,0.85); }
.final-cta-checks span::before { content: '✓ '; }
.audience { padding: 40px 24px 70px; background: #fff; text-align: center; }
.audience-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 720px; margin: 0 auto; }
.audience-item {
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}
.audience-item::before { content: '✓ '; }

.timesaved { padding: 90px 24px; background: #F8FAFC; text-align: center; }
.timesaved-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto 24px;
}
.ts-step {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
}
.ts-step.ts-result { background: #EFF6FF; border-color: #BFDBFE; }
.ts-num { font-size: 22px; font-weight: 800; color: #0F172A; }
.ts-step.ts-result .ts-num { color: #1D4ED8; }
.ts-label { font-size: 11.5px; color: #94A3B8; margin-top: 4px; }
.ts-times { font-size: 20px; color: #CBD5E1; font-weight: 700; }
.ts-yearly { font-size: 15px; color: #475569; }
.ts-yearly strong { color: #1D4ED8; }

.why-now { padding: 70px 24px; background: #fff; text-align: center; }
.why-now-text { max-width: 500px; margin: 0 auto; font-size: 14.5px; color: #64748B; }

@media (max-width: 600px) {
  .timesaved-calc { flex-direction: column; }
  .ts-times { transform: rotate(90deg); }
}
.screenshot-frame {
  max-width: 760px;
  margin: 0 auto;
  background: #F8FAFC;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  padding: 20px;
  min-height: auto;
}
.screenshot-img {
  max-width: 100%;
  max-height: 640px;
  width: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
}

.video-placeholder {
  max-width: 720px;
  margin: 0 auto;
  background: #0F172A;
  border-radius: 16px;
  padding: 12px;
  aspect-ratio: auto;
}
.demo-video {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.screenshot-disclaimer {
  text-align: center;
  font-size: 11.5px;
  color: #94A3B8;
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.5;
}
.hero-mockup-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
  .hero-mockup-img { max-height: 480px; margin: 0 auto; }


@media (max-width: 480px) {
  .hero-mockup-img { max-height: 400px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mockup-img { max-height: 480px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-mockup-img { max-height: 400px; }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0F172A;
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: #fff;
  border-top: 1px solid #F1F5F9;
}
.nav-mobile-menu a {
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}
.nav-mobile-menu .btn-primary {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}
.nav-mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
