:root {
  --ink: #0f1a2e;
  --ink-soft: #45566e;
  --ink-faint: #8fa0b8;
  --paper: #eef3fb;
  --surface: #ffffff;
  --surface-alt: #e1eaf8;
  --accent: #2f5ce0;
  --accent-strong: #1c3aa8;
  --accent-2: #06b6d4;
  --grad: linear-gradient(135deg, #1e3a8a 0%, #2f5ce0 55%, #06b6d4 100%);
  --line: rgba(15, 26, 46, 0.14);
  --line-soft: rgba(15, 26, 46, 0.08);
  --shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.07);
  --shadow: 0 1px 2px rgba(15, 26, 46, 0.06), 0 18px 40px -22px rgba(30, 58, 138, 0.35);
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 940px; margin: 0 auto; padding: 0 28px; }

/* ---------- Top bar ---------- */
.topbar {
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 18px; }
.brand { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; text-decoration: none; color: var(--ink); }
.back-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.back-link:hover { color: var(--accent-strong); }
.topbar-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 8px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.topbar-link:hover { border-color: var(--accent); color: var(--accent-strong); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  background: var(--grad);
  position: relative;
}
.hero .wrap { position: relative; }
.hero p.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.hero p.lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.primary { background: #fff; color: var(--accent-strong); border-color: transparent; }
.btn.ghost { color: #fff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.4); }
.btn.solid { background: var(--grad); color: #fff; border-color: transparent; }
.btn.outline { color: var(--ink); background: var(--surface); border-color: var(--line); }
.btn.outline:hover { border-color: var(--accent); color: var(--accent-strong); }

/* ---------- Sections ---------- */
.block { padding: 64px 0; }
.block-head { margin-bottom: 30px; }
.block-head p.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 10px;
}
.block-head h2 {
  font-weight: 800;
  font-size: 1.7rem;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.block-head p.sub { color: var(--ink-soft); max-width: 60ch; margin: 0; line-height: 1.55; }

/* ---------- Services grid (hub page buttons) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-btn {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--accent); }
.service-btn h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-btn p.desc { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; margin: 0; }
.service-btn .go {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Plans / pricing tiers ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.plan-card.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan-name {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 10px;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.plan-price .amount { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.plan-price .period { font-size: 0.9rem; font-weight: 600; color: var(--ink-faint); }
.plan-price.talk .amount { font-size: 1.5rem; }
.plan-for { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; margin: 0 0 18px; }
.plan-features { list-style: none; margin: 0 0 22px; padding: 0; flex-grow: 1; }
.plan-features li {
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.plan-features li:first-child { border-top: none; }
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.plan-features li a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 2px; }
.plan-features li a:hover { color: var(--accent-strong); text-decoration-color: var(--accent); }
.plan-card .btn { justify-content: center; width: 100%; }
.plan-card.custom { background: var(--surface-alt); border-style: dashed; }
.plan-card.custom .plan-name { color: var(--ink-soft); }
.plan-note { font-size: 0.72rem; font-weight: 600; color: var(--ink-faint); margin-top: 10px; text-align: center; }

@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; }
}

/* ---------- Service detail pages ---------- */
.detail-section .desc {
  font-size: 1.03rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 0 28px;
}
.detail-list { margin: 0 0 32px; padding-left: 20px; color: var(--ink-soft); font-size: 0.98rem; max-width: 62ch; }
.detail-list li { margin-bottom: 11px; line-height: 1.55; }
.detail-list li::marker { color: var(--accent); }

.price-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  max-width: 62ch;
}
.price-box .price-tag { font-weight: 800; font-size: 1.28rem; color: var(--accent-strong); }
.price-box .price-note { font-size: 0.78rem; font-weight: 600; color: var(--ink-faint); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.price-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.price-tag { font-weight: 800; font-size: 1.02rem; color: var(--accent-strong); }
.price-note { font-size: 0.72rem; font-weight: 600; color: var(--ink-faint); }

.draft-banner {
  background: #fff8e6;
  border: 1px solid #e9c46a;
  color: #7a5b0a;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ---------- Contact ---------- */
.contact-block { background: var(--surface-alt); }
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-intro h2 { font-weight: 800; font-size: 1.5rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.contact-intro p { color: var(--ink-soft); line-height: 1.6; margin: 0 0 22px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-links a { color: var(--accent-strong); font-weight: 700; text-decoration: none; font-size: 0.95rem; }
.contact-links a:hover { text-decoration: underline; }

form.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form label { font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button {
  margin-top: 4px;
  align-self: flex-start;
  cursor: pointer;
}
.form-setup-note {
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin-top: 8px;
}

footer { padding: 40px 0 56px; }
footer p { color: var(--ink-faint); font-size: 0.8rem; margin: 0; }
footer a { color: var(--ink-soft); }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; padding: 28px; }
  .hero { padding: 52px 0 44px; }
}
