:root {
  --bg: #f3f9ff;
  --surface: #ffffff;
  --text: #001854;
  --muted: #365073;
  --brand: #0b9df2;
  --brand-dark: #036dd6;
  --brand-deep: #001854;
  --brand-ice: #daf9fd;
  --radius: 12px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Segoe UI, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.55; }
a { color: var(--brand-dark); }
h1, h2, h3 { line-height: 1.2; }

/* Layout */
.container { width: min(1080px, 92%); margin: 0 auto; }
.section { padding: 2.5rem 0; }
.mt { margin-top: 1.25rem; }
.grid-2, .grid-3 { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Header / Nav */
.site-header { background: var(--brand-deep); color: #fff; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.9rem 0; flex-wrap: wrap; }
.brand { color: #fff; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; background: #fff; padding: 2px; }
.brand-text { line-height: 1.1; }
.brand-text small { display: block; font-size: 0.74rem; color: #a1eafc; font-weight: 600; letter-spacing: 0.02em; }
nav ul { list-style: none; display: flex; gap: 0.75rem; margin: 0; padding: 0; flex-wrap: wrap; align-items: center; }
nav a { color: #dce8f9; text-decoration: none; font-size: 0.95rem; }
nav a[aria-current="page"] { color: #fff; font-weight: 700; }
.btn-nav { background: var(--brand); color: #fff !important; padding: 0.45rem 0.9rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; }
.btn-nav:hover { background: var(--brand-dark); }

/* Hero */
.hero { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; padding: 3rem 0; align-items: start; }
.eyebrow { color: var(--brand-dark); font-weight: 700; margin: 0 0 0.5rem; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.hero h1 { font-size: 2.6rem; margin: 0 0 1rem; }
.hero-sub { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.5rem; }
.hint { color: var(--muted); font-size: 0.9rem; margin: 0.75rem 0 0; }
.store-badge { height: 40px; width: auto; display: block; }
.trust-card h2 { margin-top: 0; font-size: 1.1rem; }

/* Cards */
.card { background: var(--surface); border-radius: var(--radius); padding: 1.25rem; box-shadow: 0 2px 12px rgba(14, 27, 46, 0.08); }
.service-card { display: flex; flex-direction: column; gap: 0.4rem; }
.service-icon { font-size: 2rem; line-height: 1; }
.service-card h3, .service-card h2 { margin: 0; }
.service-card p { margin: 0; color: var(--muted); }
.price { color: var(--brand-dark) !important; font-weight: 700; font-size: 1.05rem; margin-top: auto !important; padding-top: 0.5rem; }

/* Section titles */
.section-title { margin-bottom: 1.25rem; }
.page-sub { color: var(--muted); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* CTA band */
.cta-band { background: var(--brand-deep); color: #fff; padding: 2.5rem 0; margin: 2rem 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { margin: 0 0 0.4rem; color: #fff; }
.cta-inner p { margin: 0; color: #a1eafc; }

/* Buttons */
.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; padding: 0.65rem 1.1rem; border-radius: 8px; text-decoration: none; border: 0; cursor: pointer; font-weight: 600; font-size: 0.95rem; transition: opacity 0.15s; }
.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-secondary { background: var(--brand-ice); color: var(--brand-deep); }
.btn-outline { background: transparent; color: var(--brand-dark); border: 2px solid var(--brand); }
.btn-white { background: #fff; color: var(--brand-deep); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.checklist li { display: flex; align-items: center; gap: 0.6rem; }
.check { color: var(--brand); font-weight: 700; }

/* Book callout */
.book-callout h2 { margin-top: 0; }
.steps { margin: 0 0 0 1.1rem; padding: 0; display: grid; gap: 0.5rem; }
.steps li { padding-left: 0.25rem; }

/* Contact page */
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.75rem; }
.contact-label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
details { border-bottom: 1px solid #e0eaf5; padding: 0.75rem 0; }
details:last-child { border-bottom: none; }
summary { cursor: pointer; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::before { content: '+ '; color: var(--brand); }
details[open] summary::before { content: '− '; }
details p { margin: 0.5rem 0 0; color: var(--muted); }

/* Forms */
.form { display: grid; gap: 0.8rem; }
label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.95rem; }
input, textarea, select { width: 100%; padding: 0.65rem; border-radius: 8px; border: 1px solid #b9c7df; font: inherit; background: var(--bg); }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--brand); border-color: var(--brand); }

/* Footer */
.site-footer { background: var(--brand-deep); color: #fff; padding: 2rem 0; margin-top: 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer-brand { margin: 0 0 0.25rem; font-size: 1.05rem; }
.footer-sub { margin: 0.2rem 0 0; color: #a1eafc; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: #dce8f9; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.yard-hustle-link { color: var(--brand); font-weight: 700; text-decoration: none; font-size: 1rem; }
.yard-hustle-link:hover { color: #fff; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 2rem 0; }
  .hero h1 { font-size: 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .nav-wrap { flex-direction: column; align-items: flex-start; }
}
