:root{
  --accent:#bb9b49;
  --ink:#0a272c;
  --bg:#fff;
  --text:#111;
  --muted:#333; /* improved contrast */
  --card:#f9f9f9;
  --border:#ddd;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
  color:var(--text);
  background:var(--bg)
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

/* ACCESSIBILITY: never kill focus globally */
:focus{outline:2px solid rgba(187,155,73,.55);outline-offset:2px}
:focus:not(:focus-visible){outline:none}
a:focus-visible,button:focus-visible{outline:3px solid rgba(187,155,73,.55);outline-offset:2px}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0
}

.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{
  left:16px;top:16px;width:auto;height:auto;z-index:10000;background:#fff;color:#111;
  padding:10px 12px;border-radius:10px;outline:3px solid rgba(187,155,73,.55)
}

/* ========================= */
/* CRITICAL FIX: scope layout */
/* ========================= */
#main-content.container,
main#main-content.container{
  max-width:1000px !important;
  margin:42px auto !important;
  padding:0 16px !important;
}

.center{text-align:center}
.mt-8{margin-top:8px}
.mt-16{margin-top:16px}

/* Link contrast + hover contrast improved */
.accent-link{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:2px;
  text-decoration-thickness:2px;
  font-weight:800
}
.accent-link:hover{color:#5a460f} /* darker hover to avoid contrast warnings */

.hero{
  position:relative;
  background:linear-gradient(135deg,#ffffff 0%,#000000 100%);
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center
}
.hero__overlay{
  background:rgba(0,0,0,.72);
  width:100%;
  min-height:340px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px
}
.hero__title{
  color:var(--accent);
  font-size:2.05rem;
  font-weight:900;
  letter-spacing:.2px;
  margin:0 0 10px;
  text-shadow:2px 2px 4px rgba(0,0,0,.45)
}
.hero__subtitle{
  color:rgba(255,255,255,.94);
  font-size:1.05rem;
  max-width:900px;
  margin:0 0 12px
}
.hero__subnote{
  color:rgba(255,255,255,.88);
  font-size:.95rem;
  max-width:900px;
  margin:0 0 16px
}
@media (max-width:768px){
  .hero{min-height:360px}
  .hero__overlay{min-height:360px}
  .hero__title{font-size:1.75rem}
  .hero__subtitle{font-size:1rem}
}

/* CTA rows */
.btn-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin:18px 0
}
@media (max-width:520px){
  .btn-row a,.btn-row button{width:100%}
}

/* ===== BUTTON HARDENING ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  text-decoration:none;
  border-radius:12px;
  padding:12px 14px;
  font-weight:900;
  line-height:1.1;
  min-width:170px;
  border:2px solid transparent;
  cursor:pointer;
  font-size:16px;
  letter-spacing:.1px;
  white-space:nowrap
}
.btn *{color:inherit !important}

.btn--primary{
  background:var(--accent);
  color:#111 !important;
  border-color:var(--accent)
}
.btn--outline{
  background:transparent;
  color:var(--accent) !important;
  border-color:var(--accent)
}
.btn--dark{
  background:rgba(0,0,0,.92);
  color:#fff !important;
  border-color:rgba(187,155,73,.35)
}
.btn--dark:hover{border-color:rgba(187,155,73,.85)}
.btn--outline:hover{background:rgba(187,155,73,.08)}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  margin:18px auto;
  max-width:1000px
}
.card__title{font-size:1.35rem;font-weight:900;margin:0 0 10px;color:#111}
.card p{margin:0 0 12px;color:#1b1b1b}
.card ul{margin:0;padding-left:18px}
.card li{margin:0 0 6px;color:#1b1b1b}

.lead{margin:0 auto 18px;text-align:center}
.lead h2{margin:0 0 10px;font-size:1.6rem;font-weight:900;color:#111}
.lead p{margin:0 auto;max-width:920px;color:#1b1b1b}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin:12px 0 0;
  padding:0;
  list-style:none
}
.pills li{
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
  color:#1b1b1b
}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media (max-width:900px){.grid{grid-template-columns:1fr}}
.mini{background:#fff;border:1px solid rgba(0,0,0,.14);border-radius:14px;padding:14px}
.mini h3{margin:0 0 8px;font-size:1.05rem;font-weight:900}
.mini p{margin:0;color:#1b1b1b}

.testimonial{
  background:#fff;
  border-left:4px solid var(--accent);
  padding:18px;
  margin:0;
  border-radius:12px;
  position:relative
}
.testimonial:before{
  content:'"';
  font-size:54px;
  color:var(--accent);
  position:absolute;
  left:10px;
  top:0;
  line-height:1
}
.testimonial__inner{padding-left:26px}
.testimonial__author{font-weight:900;margin-top:10px;text-align:right;color:#2a2a2a}

.faq{
  background:var(--ink);
  border-radius:14px;
  padding:20px;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.12);
  margin-top:34px
}
.faq h2{color:var(--accent);text-align:center;margin:0 0 10px;font-weight:900}
.faq .faq-intro{
  color:rgba(255,255,255,.92);
  text-align:center;
  max-width:880px;
  margin:0 auto 16px
}
.faq details{
  max-width:880px;
  margin:0 auto 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  padding:12px 14px
}
.faq summary{cursor:pointer;font-weight:900;color:var(--accent);list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:10px 0 0;color:rgba(255,255,255,.92)}
.faq a{color:var(--accent)}
.faq details:hover,.faq details[open]{border-color:rgba(255,255,255,.28)}

.sticky-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  display:none;
  gap:8px;
  padding:10px;
  background:rgba(0,0,0,.92);
  z-index:9999
}
.sticky-cta a{flex:1}
@media (max-width:768px){.sticky-cta{display:flex} body{padding-bottom:84px}}

.sticky-cta-desktop{
  position:fixed;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:9999
}
@media (max-width:768px){.sticky-cta-desktop{display:none}}

lite-youtube{
  background-color:#000;
  position:relative;
  display:block;
  contain:content;
  max-width:900px;
  margin:14px auto;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.18)
}
lite-youtube::before{content:"";display:block;padding-bottom:56.25%}
lite-youtube>.lty-playbtn{
  cursor:pointer;
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent
}
lite-youtube>.lty-playbtn::before{
  content:"";
  width:78px;
  height:54px;
  border-radius:14px;
  background:rgba(187,155,73,.92);
  box-shadow:0 10px 22px rgba(0,0,0,.25)
}
lite-youtube>.lty-playbtn::after{
  content:"";
  position:absolute;
  width:0;height:0;
  border-left:18px solid #111;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent
}
lite-youtube>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
lite-youtube>iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important}}

/* Comparison table */
.comparison-table {
  margin-top: 16px;
  overflow-x: auto;
  border-radius: 8px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 15px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.comparison-table th {
  background: #0a272c;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.comparison-table tr:last-child td { border-bottom: none; }
@media (hover:hover) {
  .comparison-table tbody tr:hover { background: #f7f9fa; }
}
@media (max-width: 640px) {
  .comparison-table table { font-size: 14px; }
  .comparison-table th,
  .comparison-table td { padding: 12px; }
}

/* =========================
   Breadcrumb (screenshot parity)
   ========================= */
.breadcrumb-list{
  list-style:none;
  margin:14px 0 10px;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  font-weight:800;
}
.breadcrumb-list li{display:flex;align-items:center}
.breadcrumb-list li+li::before{
  content:"›";
  margin:0 10px;
  color:rgba(0,0,0,.55);
  font-weight:900;
}
.breadcrumb-list a{
  color:inherit;
  text-decoration:none;
  font-weight:800;
}
.breadcrumb-list a:hover{text-decoration:underline}
.breadcrumb-list span[aria-current="page"]{font-weight:900}

/* =========================
   Start Here + Router
   ========================= */
.start-here{margin-top:12px}
.start-here-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.start-here .label{
  margin:0 0 10px;
  font-weight:900;
}
.router{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.router a{
  border:1px solid var(--accent);
  border-radius:999px;
  padding:10px 14px;
  text-decoration:none;
  font-weight:900;
}
.router a:hover{opacity:.92}
.router a.prices{
  border-color:transparent;
  padding:10px 0;
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:2px;
}

/* =========================
   Compact jump nav
   ========================= */
.jump-compact{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0;
}
.jump-compact a{
  border:1px solid var(--accent);
  border-radius:999px;
  padding:10px 14px;
  text-decoration:none;
  font-weight:900;
}
.jump-compact a:hover{opacity:.92}

/* =========================
   Verification container + card
   ========================= */
.content-container{margin-top:18px}
.section-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.section-card h2{
  margin:0 0 10px;
  font-size:1.8rem;
  font-weight:900;
  color:#111;
}
.section-card ul{
  margin:0;
  padding-left:18px;
  line-height:1.8;
}
.section-card a{
  color:var(--accent);
  font-weight:900;
  text-decoration:none;
}
.section-card a:hover{text-decoration:underline}
