/* Promises For Life — clean white prelander matching promiseforlife.ca/get-a-quote/ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: #1d1d1f; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.pfl-header {
  border-bottom: 1px solid #e5e5e7;
  padding: 18px 0;
  background: #fff;
}
.pfl-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pfl-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* Main */
.pfl-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

/* Quote question section */
.pfl-quote {
  padding-top: 8px;
}
.pfl-progress {
  margin-bottom: 56px;
}
.pfl-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  margin-bottom: 8px;
  color: #1d1d1f;
}
.pfl-progress-text { font-weight: 400; }
.pfl-progress-pct { font-weight: 400; color: #1d1d1f; }
.pfl-progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e5e7;
  border-radius: 2px;
  overflow: hidden;
}
.pfl-progress-fill {
  height: 100%;
  width: 2%;
  background: #2db84c;
  transition: width 320ms ease-out;
}
.pfl-question {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 auto 40px;
  max-width: 540px;
  color: #1d1d1f;
}

/* Option cards */
.pfl-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.pfl-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  background: #fff;
  color: #1d1d1f;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.pfl-option:hover {
  border-color: #1d1d1f;
  background: #fafafa;
  text-decoration: none;
}
.pfl-option:active {
  background: #f3f3f5;
}
.pfl-option:focus-visible {
  outline: 2px solid #1d1d1f;
  outline-offset: 2px;
}
.pfl-radio {
  width: 22px;
  height: 22px;
  border: 1.5px solid #b0b0b5;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  background: #fff;
  position: relative;
  transition: border-color 150ms ease;
}
.pfl-option:hover .pfl-radio { border-color: #1d1d1f; }
.pfl-option-text {
  font-size: 16px;
  font-weight: 500;
}

/* Article section */
.pfl-article {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e7;
}
.pfl-article h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1d1d1f;
}
.pfl-article h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: #1d1d1f;
}
.pfl-article p {
  margin: 0 0 14px;
  color: #3a3a3c;
}
.pfl-article strong { color: #1d1d1f; }

/* Footer */
.pfl-footer {
  background: #f5f5f7;
  border-top: 1px solid #e5e5e7;
  margin-top: 56px;
  padding: 32px 24px;
}
.pfl-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pfl-footer-legal {
  font-size: 13px;
  color: #6e6e73;
  margin: 0 0 12px;
  line-height: 1.55;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pfl-footer-links {
  font-size: 13px;
  margin: 0 0 10px;
}
.pfl-footer-links a { color: #515154; }
.pfl-footer-links a:hover { color: #1d1d1f; }
.pfl-sep { color: #c7c7cc; margin: 0 8px; }
.pfl-footer-copy {
  font-size: 12px;
  color: #8e8e93;
  margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .pfl-logo { height: 44px; }
  .pfl-question { font-size: 22px; margin-bottom: 28px; }
  .pfl-main { padding: 24px 18px 40px; }
  .pfl-option { padding: 16px 18px; }
  .pfl-article h2 { font-size: 20px; }
  .pfl-progress { margin-bottom: 36px; }
}

/* Article page (used by /articles/<slug>/) */
.pfl-article-page { max-width: 760px; margin: 0 auto; padding: 32px 24px 56px; }
.pfl-article-page h1 { font-size: 32px; font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
.pfl-article-page .pfl-article-meta { color: #6e6e73; font-size: 13px; margin-bottom: 28px; }
.pfl-article-page h2 { font-size: 22px; margin: 32px 0 12px; }
.pfl-article-page h3 { font-size: 18px; margin: 24px 0 8px; }
.pfl-article-page p { margin: 0 0 14px; color: #3a3a3c; }
.pfl-article-page ul, .pfl-article-page ol { padding-left: 22px; color: #3a3a3c; margin: 0 0 14px; }
.pfl-article-page li { margin-bottom: 6px; }
.pfl-cta-inline {
  display: block;
  background: #2db84c;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin: 28px 0;
}
.pfl-cta-inline:hover { background: #25a040; text-decoration: none; }
.pfl-back-link { color: #6e6e73; font-size: 14px; }
.pfl-articles-index { max-width: 760px; margin: 0 auto; padding: 32px 24px 56px; }
.pfl-articles-index h1 { font-size: 32px; margin: 0 0 24px; }
.pfl-articles-list { list-style: none; padding: 0; margin: 0; }
.pfl-articles-list li { border-bottom: 1px solid #e5e5e7; padding: 18px 0; }
.pfl-articles-list a { font-size: 18px; font-weight: 600; }
.pfl-articles-list .pfl-articles-desc { display: block; color: #6e6e73; font-size: 14px; margin-top: 4px; font-weight: 400; }
