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

:root {
  --orange: #FF9900;
  --orange-dark: #E68A00;
  --dark: #111827;
  --mid: #374151;
  --muted: #6B7280;
  --light: #F9FAFB;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span { color: var(--orange); }
.logo-mark { color: var(--dark); letter-spacing: -0.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  color: var(--mid);
}

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

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: .15s;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--mid);
}
.btn-outline:hover { border-color: var(--muted); color: var(--dark); }

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: #FFF3CD;
  color: #92600A;
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--muted);
}

/* ── Browser mockup ──────────────────────────────────────────────────────── */
.mockup-wrap {
  margin: 60px auto 0;
  max-width: 820px;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.14);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-bar {
  background: #F3F4F6;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #D1D5DB;
}
.mockup-dots span:nth-child(1) { background: #FC5F57; }
.mockup-dots span:nth-child(2) { background: #FDBB2F; }
.mockup-dots span:nth-child(3) { background: #27C840; }

.mockup-url {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .78rem;
  color: var(--muted);
  border: 1px solid var(--border);
}

.mockup-body {
  background: #F8F9FA;
  display: flex;
  min-height: 340px;
}

.mockup-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-row {
  background: var(--white);
  border-radius: 6px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}

.mockup-row-label {
  font-size: .75rem;
  color: var(--muted);
  width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-pill {
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}
.pill-green { background: #D1FAE5; color: #065F46; }
.pill-red   { background: #FEE2E2; color: #991B1B; }
.pill-yellow{ background: #FEF3C7; color: #92600A; }

.mockup-sidebar {
  width: 280px;
  background: var(--white);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-bubble {
  margin: 10px 12px;
  background: var(--light);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .73rem;
  color: var(--mid);
  line-height: 1.5;
}

.sidebar-card {
  margin: 0 12px 10px;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .73rem;
}

.sidebar-card-title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: .75rem;
}

.sidebar-card-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.card-approve {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
}

.card-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: .7rem;
  cursor: pointer;
}

/* ── How it works ────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 52px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 14px;
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ── Features ────────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature {
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature p  { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-single {
  max-width: 360px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--white);
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,153,0,.12);
}

.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.pricing-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }

.price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 12px 0 4px;
}

.price sup { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 10px; }
.price span { font-size: 1rem; font-weight: 500; color: var(--muted); }

.pricing-note {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: .88rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: var(--muted);
}

.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--dark); }

/* ── Privacy page ────────────────────────────────────────────────────────── */
.privacy-wrap {
  max-width: 720px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.privacy-wrap h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.privacy-updated { font-size: .85rem; color: var(--muted); margin-bottom: 40px; }
.privacy-wrap h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; }
.privacy-wrap p  { color: var(--mid); margin-bottom: 14px; line-height: 1.7; }
.privacy-wrap ul { margin: 0 0 14px 20px; color: var(--mid); line-height: 1.7; }
.privacy-wrap ul li { margin-bottom: 6px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links .hide-mobile { display: none; }
  .mockup-sidebar { display: none; }
  .hero { padding: 64px 0 48px; }
}
