/* ── SEO PAGE SHARED STYLES — HomePaintUpgrade.ca ─────── */
:root {
  --ink:         #141e2a;
  --ink-soft:    #1e2f42;
  --muted:       #6a7f93;
  --muted-2:     #94aabb;
  --line:        #d4e1ea;
  --cool:        #f2f7fa;
  --cool-2:      #e4eff6;
  --paper:       #f8fbfd;
  --white:       #ffffff;
  --slate:       #5b8aa8;
  --slate-light: #82aec8;
  --slate-deep:  #3d6b8a;
  --slate-glow:  rgba(91,138,168,.10);
  --form-bg:     #0d1e2e;
  --gold:        #f0b429;
  --maxw:        1080px;
  --radius:      12px;
  --shadow-sm:   0 2px 10px rgba(20,30,42,.06);
  --shadow:      0 12px 40px -14px rgba(20,30,42,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1.1em; }
li { margin-bottom: .4em; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: .6em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin-bottom: .5em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin-bottom: .4em; }
h4 { font-size: 1.1rem; margin-bottom: .3em; }

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

/* ── NAV ── */
.site-nav {
  background: var(--form-bg);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}
.nav-logo span { color: var(--slate-light); }
.nav-cta {
  background: var(--slate);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: .6em 1.4em;
  border-radius: 6px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--slate-deep); }

/* ── HERO ── */
.page-hero {
  background: var(--cool);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.breadcrumb {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { max-width: 760px; }
.page-hero .sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
  margin: 16px 0 28px;
  line-height: 1.65;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .35em 1em;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .45em;
}
.hero-badge svg { flex-shrink: 0; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: var(--slate-deep);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 1em 2em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--slate); transform: translateY(-1px); }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 72px 0; }
.content-section:nth-child(even) { background: var(--cool); }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--slate);
  margin-bottom: 12px;
}
.prose { max-width: 760px; }
.prose p, .prose li { color: var(--ink-soft); }

/* ── 2-COL GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 680px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.info-card .ic-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 8px;
}
.info-card h4 { font-family: 'Jost', sans-serif; font-size: .92rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 6px; }
.info-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--slate-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-deep);
}
.step-body h4 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.step-body p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ── FAQ ── */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.faq-a { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--form-bg);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-strip p { color: var(--muted-2); margin-bottom: 32px; font-size: 1.05rem; }

/* ── FOOTER ── */
.site-footer {
  background: #0a1824;
  color: var(--muted-2);
  padding: 36px 28px;
  text-align: center;
  font-size: .84rem;
}
.site-footer a { color: var(--slate-light); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin-bottom: 12px; }

/* ── INLINE CTA FORM ── */
.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  max-width: 520px;
}
.cta-form input {
  flex: 1 1 160px;
  padding: .75em 1.1em;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  outline: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,.4); }
.cta-form input:focus { border-color: var(--slate-light); }
.cta-form button {
  background: var(--slate);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: .75em 1.6em;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  transition: background .2s;
}
.cta-form button:hover { background: var(--slate-deep); }

/* ── STARS ── */
.stars { color: var(--gold); letter-spacing: 2px; }

@media (max-width: 600px) {
  .page-hero { padding: 44px 0 36px; }
  .content-section { padding: 48px 0; }
  .cta-strip { padding: 52px 0; }
}
