/* Reset + base — mobile-first, PageSpeed-optimised (no @import, no web fonts blocking) */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:#fff;
  color:#1a1a1a;
  line-height:1.6;
  min-height:100vh;
}
img,video{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;background:none;font:inherit}

/* ---- Tokens ---- */
:root{
  --brand:#e8291c;
  --brand-dark:#c0200e;
  --gold:#f5a623;
  --green:#1a7f37;
  --text:#1a1a1a;
  --muted:#555;
  --bg-light:#f9f7f4;
  --border:#e0e0e0;
  --radius:8px;
  --shadow:0 4px 24px rgba(0,0,0,.10);
  --max-w:760px;
}

/* ---- Layout ---- */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 16px}
.section{padding:40px 0}
@media(min-width:768px){
  .section{padding:64px 0}
  .container{padding:0 24px}
}

/* ---- Typography ---- */
h1{font-size:clamp(1.5rem,5vw,2.25rem);font-weight:800;line-height:1.2;color:#111}
h2{font-size:clamp(1.25rem,4vw,1.875rem);font-weight:700;line-height:1.3}
h3{font-size:clamp(1.1rem,3vw,1.375rem);font-weight:700}
p{margin-bottom:1em}
p:last-child{margin-bottom:0}
.text-center{text-align:center}
.text-muted{color:var(--muted);font-size:.9rem}
.lead{font-size:1.1rem;line-height:1.7}

/* ---- CTA Button ---- */
.btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#E8580A;
  color:#fff;
  font-size:1rem;
  font-weight:700;
  padding:16px 32px;
  border-radius:10px;
  width:100%;
  max-width:480px;
  text-align:center;
  box-shadow:0 4px 16px rgba(232,88,10,.25);
  transition:background .12s,box-shadow .12s,transform .12s;
  letter-spacing:-.01em;
  line-height:1.3;
}
.btn-cta:hover{background:#C44A08;box-shadow:0 6px 20px rgba(232,88,10,.35);transform:translateY(-1px)}
.btn-cta:active{transform:translateY(0);box-shadow:none}
.cta-wrap{display:flex;flex-direction:column;align-items:center;gap:8px}
.cta-sub{font-size:.8rem;color:var(--muted)}

/* ---- Stars ---- */
.stars{color:#f5a623;font-size:1.1rem;letter-spacing:2px}

/* ---- Cookie Consent — floating card ---- */
#cookie-banner{
  display:none;
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:9999;
  background:#fff;
  color:#1a1a1a;
  border-radius:16px;
  box-shadow:0 8px 40px rgba(0,0,0,.14),0 2px 8px rgba(0,0,0,.06);
  border:1px solid #f0f0f0;
  padding:20px 20px 16px;
  max-width:360px;
  width:calc(100% - 40px);
  flex-direction:column;
  gap:14px;
  transition:opacity .3s,transform .3s;
}
@media(min-width:480px){
  #cookie-banner{width:360px}
}
#cookie-banner p{font-size:.82rem;line-height:1.55;margin:0;color:#374151}
#cookie-banner a{color:#E8580A;text-decoration:underline}
.cookie-btns{display:flex;gap:8px}
#consent-accept{
  flex:1;
  background:#E8580A;color:#fff;
  padding:10px 16px;border-radius:8px;
  font-weight:700;font-size:.85rem;
  transition:background .12s;
}
#consent-accept:hover{background:#C44A08}
#consent-decline{
  background:transparent;color:#9ca3af;
  padding:10px 12px;border-radius:8px;
  font-weight:500;font-size:.82rem;
  border:1px solid #e5e7eb;
  transition:border-color .12s,color .12s;
}
#consent-decline:hover{border-color:#d1d5db;color:#6b7280}

/* ---- Social proof popup ---- */
.sp-popup{
  position:fixed;bottom:80px;left:16px;z-index:9990;
  background:#fff;border:1px solid #e0e0e0;
  border-radius:14px;padding:10px 14px;
  box-shadow:0 8px 32px rgba(0,0,0,.15);
  max-width:290px;
  display:flex;align-items:center;gap:10px;
  transform:translateX(-110%);
  transition:transform .4s cubic-bezier(.34,1.56,.64,1);
  font-size:.82rem;line-height:1.4;
}
.sp-popup.show{transform:translateX(0)}
/* Photo-style avatar */
.sp-avatar-img{
  width:44px;height:44px;border-radius:50%;
  border:2px solid var(--border);
  flex-shrink:0;background:var(--bg-light);
  object-fit:cover;
}
/* Fallback text avatar (legacy) */
.sp-avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1rem;flex-shrink:0;
}
.sp-popup strong{display:block;margin-bottom:1px;font-size:.85rem}
.sp-location{display:block;font-size:.72rem;color:var(--muted);margin-bottom:3px}
.sp-text{display:block;color:#333;font-style:italic}

/* ---- Disclaimer ---- */
.disclaimer{
  background:var(--bg-light);
  border-top:1px solid var(--border);
  padding:24px 0;
  font-size:.75rem;
  color:var(--muted);
  line-height:1.6;
}

/* ---- Footer nav ---- */
.footer-nav{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center;
  padding:16px 0;font-size:.85rem;
}
.footer-nav a{color:var(--muted);text-decoration:underline}

/* ---- Sticky CTA bar (mobile) ---- */
.sticky-cta{
  position:fixed;bottom:0;left:0;right:0;z-index:9980;
  background:#fff;border-top:1px solid #e0e0e0;
  padding:10px 16px;
  display:none;
  align-items:center;justify-content:center;
}
.sticky-cta.visible{display:flex}
@media(min-width:768px){.sticky-cta{display:none!important}}

/* ---- Divider ---- */
.divider{height:1px;background:var(--border);margin:40px 0}

/* ---- Highlight box ---- */
.highlight-box{
  background:var(--bg-light);
  border-left:4px solid var(--brand);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:16px 20px;
  margin:24px 0;
}

/* ---- Trust badges ---- */
.trust-row{
  display:flex;flex-wrap:wrap;justify-content:center;gap:16px;
  padding:24px 0;
}
.trust-item{
  display:flex;align-items:center;gap:8px;
  font-size:.85rem;font-weight:600;color:var(--muted);
}

/* ---- About / credibility section ---- */
.about-section{background:#fff}
.container-wide{max-width:1100px}

.about-header{
  text-align:center;max-width:680px;margin:0 auto 32px;
}
.about-eyebrow{
  font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:#E8580A;margin-bottom:10px;
}
.about-header h2{margin-bottom:12px;color:#111}
.about-header p{color:var(--muted);font-size:1rem;line-height:1.7;margin-bottom:0}

.about-media-row{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:20px;
  margin-bottom:36px;
}
.about-media-row img{max-width:120px}
.about-media-row .about-label-img{
  max-width:140px;border:1px solid var(--border);border-radius:8px;
  background:#fff;padding:6px;
}
.about-media-caption{
  flex-basis:100%;text-align:center;font-size:.78rem;color:var(--muted);
}

.about-features{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:600px){
  .about-features{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:960px){
  .about-features{grid-template-columns:repeat(3,1fr);gap:20px}
}
.about-feature-card{
  background:var(--bg-light);
  border:1px solid var(--border);
  border-radius:12px;
  padding:22px;
}
.about-feature-icon{
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  width:42px;height:42px;border-radius:50%;
  background:#fff;border:1px solid var(--border);color:#E8580A;
  margin-bottom:14px;
}
.about-feature-card h3{font-size:1rem;margin-bottom:6px;color:#111}
.about-feature-card p{font-size:.9rem;color:var(--muted);line-height:1.6;margin-bottom:0}
