:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F1ED;
  --surface: #FFFFFF;
  --text: #1A1A18;
  --text-muted: #6B6B65;
  --text-light: #9C9C95;
  --accent: #C8553D;
  --accent-light: #E8D5CF;
  --accent-dark: #A03E2A;
  --navy: #2A2D3E;
  --navy-light: #3D4159;
  --green: #3D7A5F;
  --green-light: #E0F0E8;
  --border: #E2E1DC;
  --radius: 10px;
  --font: 'DM Sans', -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-mono: 'DM Mono', 'Menlo', monospace;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  position: sticky;
  top: 0;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.nav-logo b { font-weight: 700; }
.nav-logo svg { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  border-radius: 7px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200,85,61,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(200,85,61,0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--bg-alt);
}

/* FEATURES */
.features, .workflow, .comparison {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.features-header {
  text-align: center;
  margin-bottom: 3rem;
}
.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.feature-icon {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* WORKFLOW */
.workflow-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.workflow-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.workflow-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.workflow-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.workflow-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  align-self: center;
  padding-top: 1rem;
}

/* COMPARISON */
.comparison-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row > div {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}
.comp-header {
  background: var(--navy);
  font-weight: 600;
}
.comp-header > div { color: #fff; font-size: 0.85rem; letter-spacing: 0.02em; }
.comp-no {
  color: var(--text-muted);
  background: #fdf5f3;
}
.comp-yes {
  color: var(--green);
  font-weight: 600;
  background: var(--green-light);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 3rem 1.5rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .workflow-arrow { display: none; }
  .comp-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .comp-row > div { padding: 0.75rem 0.75rem; font-size: 0.8rem; }
}

/* ── AD SLOTS ── */
.ad-slot {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ad-slot-horizontal {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.ad-placeholder {
  /* Visible placeholder - remove once real ads are live */
  display: none;
  /* Uncomment below to preview ad slot positions:
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.8rem;
  */
}

/* ── LANDING PAGE PRICING SECTION ── */
.pricing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.landing-pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(79, 93, 230, 0.12);
  transform: translateY(-4px);
}
.landing-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f5de6, #3d49c7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.landing-pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.landing-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.lp-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-display, var(--font));
}
.lp-period {
  font-size: 14px;
  color: var(--text-muted);
}
.lp-yearly {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  min-height: 18px;
}
.landing-pricing-features {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}
.landing-pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-pricing-features li::before {
  content: "✓";
  color: #15803d;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .landing-pricing-grid {
    grid-template-columns: 1fr;
  }
  .landing-pricing-card.featured {
    transform: none;
  }
}

/* Smooth scroll for anchor links */
html { scroll-behavior: smooth; }
