/* ============================================================
   Relationship Funnel — shared stylesheet
   Clean, white, minimal. Hosted from public_html (root).
   Referenced everywhere as /css/style.css
   ============================================================ */

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --line: #ececec;
  --accent: #e2607a;
  --accent-dark: #c84a64;
  --accent-soft: #fdf2f5;
  --green: #1f9d63;
  --radius: 14px;
  --maxw: 760px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Header ---------- */
.site-head {
  text-align: center;
  padding: 38px 22px 10px;
}
.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}
.brand span { color: var(--accent); }

/* ---------- Typography ---------- */
h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 26px 0 16px;
}
h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 40px 0 14px;
}
h3 { font-size: 21px; font-weight: 700; margin: 26px 0 8px; }
p { margin: 0 0 18px; }
.lead {
  font-size: 21px;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  padding: 17px 38px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
  box-shadow: 0 6px 18px rgba(226, 96, 122, 0.25);
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: translateY(1px); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-lg { font-size: 21px; padding: 20px 44px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--text); text-decoration: underline; }

.cta-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Cards / sections ---------- */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 22px 0;
}
.card-accent {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.check-list { list-style: none; padding: 0; margin: 18px 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 34px;
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 800;
}

.price {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price s { color: var(--muted); font-size: 24px; font-weight: 500; margin-right: 10px; }

.divider { height: 1px; background: var(--line); border: 0; margin: 44px 0; }

.guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin: 30px 0;
}
.guarantee .seal {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800;
}

.quote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 22px 0;
  color: #333;
  font-style: italic;
}
.quote cite { display: block; font-style: normal; font-weight: 600; color: var(--muted); margin-top: 8px; font-size: 15px; }

.urgent {
  text-align: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 26px;
}

/* ---------- Legal pages ---------- */
.legal { padding-top: 20px; }
.legal h1 { font-size: 32px; }
.legal h2 { font-size: 22px; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; }
.legal .updated { color: var(--muted); font-size: 14px; }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding: 30px 22px 50px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.site-foot a { color: var(--muted); text-decoration: none; margin: 0 8px; }
.site-foot a:hover { color: var(--text); text-decoration: underline; }
.site-foot .legal-links { margin-bottom: 14px; }
.site-foot .disclaimer { font-size: 12.5px; line-height: 1.6; max-width: 620px; margin: 14px auto 0; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  body { font-size: 17px; }
  h1 { font-size: 31px; }
  h2 { font-size: 24px; }
  .lead { font-size: 19px; }
  .btn { padding: 16px 28px; font-size: 18px; }
  .price { font-size: 38px; }
}
