:root {
  --brand: #27274e;
  --btn-bg: #27274e; --btn-text: #fff; --btn-border: #27274e;
  --hero-bg: #27274e;
  --hero-sub: #c7d2fe;
  --trust-bg: #f5f5ff; --border: #e5e7eb;
  --text: #1e1b4b; --text-muted: #6b7280;
  --card-bg: #f5f5ff; --card-hover: #e0e7ff; --link: #4338ca;
  --radius: 12px;
  --footer-bg: #13132e; --footer-text: #a5b4fc; --footer-link: #818cf8;
  --body-bg: #fff;
}
body { background: var(--body-bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; }

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { max-width: 100%; }

/* ── Typography ── */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; margin: 2rem 0 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin: 1.2rem 0 0.5rem; }
p  { margin-bottom: 1rem; }

/* ── Layout ── */
.container { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 2.5rem 0; }
section + section { border-top: 1px solid var(--border); }

/* ── Header (logo-nav-cta pattern — real-world standard) ── */
header { background: var(--brand); color: #fff; padding: .85rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
header .container { display: flex; align-items: center; gap: 1.5rem; }
.site-name { font-weight: 800; font-size: 1.1rem; color: #fff; text-decoration: none; white-space: nowrap; margin-right: auto; }
nav { display: flex; gap: 1.25rem; }
nav a { color: rgba(255,255,255,.88); text-decoration: none; font-size: .88rem; font-weight: 500; white-space: nowrap; }
nav a:hover { color: #fff; }
.header-cta { background: #f4ec18; color: #111; padding: .45rem 1rem; border-radius: var(--radius); text-decoration: none; font-weight: 800; font-size: .88rem; white-space: nowrap; border: 2px solid transparent; transition: background .15s; flex-shrink: 0; }
.header-cta:hover { background: #ddd510; color: #111; }

/* ── Buttons ── */
.btn { display: inline-block; padding: .75rem 1.6rem; border-radius: var(--radius); font-weight: 700; text-decoration: none; font-size: 1rem; transition: transform .1s, opacity .15s; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--btn-bg); color: var(--btn-text); box-shadow: 0 4px 14px rgba(0,0,0,.18); border: 2px solid var(--btn-border); }
.btn-primary:hover { opacity: .9; color: var(--btn-text); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); border-radius: var(--radius); padding: .75rem 1.6rem; font-weight: 700; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: #fff; }
.cta-group { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Trust bar (always below hero per real-world data) ── */
.trust-bar { background: var(--trust-bg); border-bottom: 1px solid var(--border); padding: .7rem 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; font-size: .88rem; color: var(--text-muted); }
.trust-item::before { content: '✓ '; color: var(--brand); font-weight: 700; }

/* ── Hero — full-width ── */
.hero { background: var(--hero-bg); color: #fff; padding: 3rem 0; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .subtitle { color: var(--hero-sub); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 600px; }

/* ── Hero — split layout (text left, quote box right) ── */
.hero-split .container { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }
.quote-box { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); padding: 1.4rem; }
.quote-box .qb-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.7); margin-bottom: .35rem; }
.quote-box .qb-price { font-size: 1.55rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.quote-box .qb-sub { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.quote-box .btn-primary { width: 100%; text-align: center; display: block; }
.quote-box .qb-note { font-size: .78rem; color: rgba(255,255,255,.55); text-align: center; margin-top: .4rem; margin-bottom: 0; }

/* ── Numbered steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 1.4rem; margin-top: 1.5rem; }
.step { text-align: center; padding: 1.2rem; background: var(--card-bg); border-radius: var(--radius); }
.step-num { width: 42px; height: 42px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; margin: 0 auto .7rem; }

/* ── Feature grid (4-box) ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.feature { padding: 1.2rem; background: var(--card-bg); border-radius: var(--radius); border-left: 4px solid var(--brand); }
.feature-icon { font-size: 1.65rem; margin-bottom: .45rem; }
.feature h3 { margin-top: 0; font-size: .97rem; color: var(--text); }
.feature p { font-size: .88rem; color: var(--text-muted); margin-bottom: 0; }

/* ── Icon row ── */
.icon-row { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.5rem; }
.icon-item { flex: 1 1 160px; display: flex; align-items: flex-start; gap: .7rem; }
.icon-item .ico { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.icon-item p { font-size: .9rem; color: var(--text-muted); margin-bottom: 0; }
.icon-item strong { display: block; color: var(--text); margin-bottom: .15rem; }

/* ── Testimonial quote ── */
.testimonial { background: var(--card-bg); border-radius: var(--radius); padding: 1.4rem; margin-top: 1.5rem; border-left: 4px solid var(--brand); }
.testimonial blockquote { font-size: 1rem; font-style: italic; color: var(--text); margin-bottom: .65rem; }
.testimonial cite { font-size: .86rem; color: var(--text-muted); font-style: normal; }
.testimonial .stars { color: #f59e0b; font-size: 1rem; margin-bottom: .4rem; }

/* ── Pricing table ── */
table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: .93rem; }
th { background: var(--brand); color: #fff; padding: .6rem 1rem; text-align: left; }
td { padding: .58rem 1rem; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--card-bg); }

/* ── Area / service grid ── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: .45rem; margin-top: 1rem; }
.area-grid a { display: block; padding: .48rem .8rem; background: var(--card-bg); border-radius: var(--radius); color: var(--link); text-decoration: none; font-size: .88rem; }
.area-grid a:hover { background: var(--card-hover); }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .7rem; overflow: hidden; }
.faq-q { font-weight: 600; padding: .95rem 1.2rem; background: var(--card-bg); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--text-muted); flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
.faq-a { padding: .95rem 1.2rem; color: var(--text); }

/* ── CTA section ── */
.cta-section { background: var(--brand); color: #fff; text-align: center; padding: 3rem 0; }
.cta-section h2 { color: #fff; margin-top: 0; }
.cta-section p  { color: var(--hero-sub); margin-bottom: 1.75rem; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: .83rem; color: rgba(255,255,255,.6); margin-bottom: .9rem; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb span::before { content: ' › '; }

/* ── Amber CTA — pops on any brand background (hero, nav, bottom CTA) ── */
/* Same amber Amazon uses: instantly readable as "primary action" regardless of theme */
.hero .btn-primary,
.cta-section .btn-primary,
.quote-box .btn-primary {
  background: #f4ec18;
  color: #111;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  font-weight: 800;
}
.hero .btn-primary:hover,
.cta-section .btn-primary:hover,
.quote-box .btn-primary:hover {
  background: #ddd510;
  opacity: 1;
  color: #111;
}

/* ── Sticky mobile bar ── */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--brand); padding: .8rem 1.2rem; text-align: center; z-index: 200; box-shadow: 0 -2px 10px rgba(0,0,0,.2); }
.sticky-bar a { color: #fff; font-weight: 800; font-size: 1rem; text-decoration: none; }

/* ── Footer ── */
footer { background: var(--footer-bg); color: var(--footer-text); padding: 1.5rem 0; font-size: .84rem; text-align: center; }
footer a { color: var(--footer-link); }

/* ── Responsive ── */
@media (max-width: 720px) {
  .hero-split .container { grid-template-columns: 1fr; }
  nav { display: none; }
}
@media (max-width: 600px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 58px; }
  header .header-cta { display: none; }
}