/* ── SearchSaves shared styles ── */

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

:root {
  --coral:   #faa283;
  --orange:  #f97316;
  --dark:    #1a1a2e;
  --mid:     #374151;
  --muted:   #6b7280;
  --light:   #f9fafb;
  --white:   #ffffff;
  --border:  #e5e7eb;
  --radius:  10px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-head: 'Montserrat', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mid);
  background: var(--white);
  line-height: 1.6;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
nav .btn {
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img { width: 24px; height: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn-soon { opacity: 0.55; cursor: default; }
.btn-soon:hover { opacity: 0.55; transform: none; }
.btn-primary { background: var(--coral); color: var(--dark); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--border); }

/* ── Hero ── */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ── How it works ── */
.steps {
  padding: 4rem 0;
  background: var(--light);
}
.steps h2 { text-align: center; margin-bottom: 2.5rem; font-size: 1.6rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.step-number {
  width: 36px; height: 36px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.9rem; color: var(--muted); }

/* ── Pricing ── */
.pricing {
  padding: 4rem 0;
}
.pricing h2 { text-align: center; margin-bottom: 2.5rem; font-size: 1.6rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 620px;
  margin: 0 auto;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.plan-card.featured {
  border-color: var(--coral);
  background: #fff8f5;
}
.plan-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.plan-price {
  font-size: 1.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.plan-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.plan-card ul {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan-card li { font-size: 0.92rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-card li::before { content: "✓"; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ── Privacy ── */
.privacy {
  padding: 3rem 0;
  background: var(--light);
  text-align: center;
}
.privacy p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Footer ── */
footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Activate page ── */
.activate-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.activate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
}
.activate-card h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.activate-card .subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}
.steps-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.steps-list li::before {
  content: counter(steps);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.activate-note {
  background: var(--light);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.activate-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.75rem 0;
}
.no-key {
  font-size: 0.92rem;
  color: var(--muted);
}
.no-key a { font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .activate-card { padding: 2rem 1.25rem; }
}
