/* ============================================================
   Blae — Landing Page Styles
   ============================================================ */

:root {
  --brand: #00b8a9;
  --brand-dark: #008a7e;
  --accent: #ff6b6b;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: var(--brand-dark); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 184, 169, 0.35);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
}
.btn-accent:hover { background: #ef5350; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}
.btn-ghost:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 18px; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, rgba(0,184,169,.18), transparent 60%),
              linear-gradient(180deg, var(--bg-soft), #fff);
  padding: 72px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(0,184,169,.12);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -1px;
}
.hero h1 .hl { color: var(--brand-dark); }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}
.hero-note a { font-weight: 700; }

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.hero-card .deal-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-card h3 { margin: 0 0 6px; font-size: 22px; }
.hero-card .price {
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-dark);
}
.hero-card .price small {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}
.hero-card li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.hero-card li::before { content: "✓ "; color: var(--brand); font-weight: 800; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section.alt { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: 34px;
  margin: 0 0 12px;
  letter-spacing: -.5px;
}
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- Feature / category grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(17,24,39,.12); }
.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(0,184,169,.12);
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step { text-align: center; padding: 12px; }
.step .num {
  counter-increment: step;
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}
.step .num::before { content: counter(step); }
.step h3 { margin: 0 0 6px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 { font-size: 32px; margin: 0 0 12px; }
.cta-band p { font-size: 18px; opacity: .95; margin: 0 0 26px; }
.cta-band .btn-accent { box-shadow: 0 10px 26px rgba(0,0,0,.2); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.site-footer a { color: #cbd5e1; display: block; padding: 4px 0; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
}

/* ---------- Generic content pages ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
  padding: 56px 0 36px;
  text-align: center;
}
.page-hero h1 { font-size: 40px; margin: 0 0 10px; letter-spacing: -.5px; }
.page-hero p { color: var(--muted); font-size: 17px; margin: 0; }

.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose h3 { font-size: 19px; margin: 24px 0 8px; }
.prose p, .prose li { color: #374151; font-size: 16px; }
.prose ul { padding-left: 22px; }
.prose .updated { color: var(--muted); font-size: 14px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}
.contact-info .info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info .info-item .icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(0,184,169,.12);
}
.contact-info h3 { margin: 0 0 2px; font-size: 17px; }
.contact-info p { margin: 0; color: var(--muted); font-size: 15px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,184,169,.15);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .nav-links { gap: 16px; }
  .nav-links a.nav-hide { display: none; }
}
