/* Reuse contact styles */
:root{
    --red:#e60000; --text:#333; --muted:#6b7280; --border:#e5e7eb;
    --shadow:0 8px 30px rgba(0,0,0,.08); --radius:14px;
  }
  
  /* Layout */
  .sb721-page h1{
    text-align:center;
    font-size: clamp(28px, 3.6vw, 42px);
    color:#e60000;
  }

  .sb-header-image {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 32px auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .sb-header-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .image-overlay {
    position: absolute;
    top: 12px; /* move to top: 12px; if you want top corner */
    right: 12px;
    background: var(--red);
    color: #fff;
    padding: 6px 10px;
    font-size: 0.95rem;
    border-radius: 4px;
  }

  .sb721-page .container{
        max-width:1100px;
        margin:0 auto;
        padding:0 20px;
        margin-bottom: 32px;
    }
  .sb721-page .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
  @media (max-width:900px){ .sb721-page .grid-2{grid-template-columns:1fr;} }
  
  /* Cards */
  .section-card{
    background:#fff;border:1px solid var(--border);border-radius:var(--radius);
    box-shadow:var(--shadow);padding:24px 22px;
  }
  .h-red{color:var(--red);margin:0 0 10px;font-size:clamp(22px,2.6vw,28px);font-weight:800;}
  .section-card p{margin:8px 0 12px;line-height:1.6;color:#374151;}
  .bullets{margin:8px 0 0 18px;}
  .bullets li{margin:8px 0;}
  
  /* Stat pill */
  .stat{display:flex;align-items:baseline;gap:10px;margin:10px 0 16px;}
  .stat-num{font-size:28px;font-weight:800;color:var(--red);}
  .stat-sub{color:#6b7280;font-weight:600}
  
  /* Steps timeline */
  .timeline .steps{counter-reset: step;list-style:none;margin:8px 0 16px;padding:0;}
  .timeline .steps li{
    position:relative;padding-left:46px;margin:12px 0 14px;line-height:1.5;
  }
  .timeline .steps li::before{
    counter-increment: step; content: counter(step);
    position:absolute; left:0; top:0;
    width:32px;height:32px;border-radius:10px;
    background:var(--red); color:#fff; font-weight:800; display:grid;place-items:center;
    box-shadow:0 10px 18px rgba(230,0,0,.18);
  }
  .note{font-size:14px;color:var(--muted);margin-top:4px}
  
  /* CTAs */
  .btn{appearance:none; border:0; text-decoration:none; border-radius:10px;padding:12px 18px;font-weight:800;
    letter-spacing:.04em;text-transform:uppercase;cursor:pointer;background:var(--red);color:#fff;
    box-shadow:0 10px 18px rgba(230,0,0,.18);transition:transform .05s,filter .15s,box-shadow .15s;}
  .btn:hover{filter:brightness(1.05);}
  .btn:active{transform:translateY(1px) scale(.997);}
  .btn-dark{background:#111827;}
  .cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px;}
  
  .sb-banner {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
  }
  
  .sb-banner-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .sb-banner-image img {
    width: 100%;
    height: 100px;
    height: auto;
    display: block;
  }
  
  .sb-banner-image .cta-banner {
  position: absolute;
  top: 50%; /* halfway down */
  left: 50%; /* halfway across */
  transform: translate(-50%, -50%); /* shift so it's truly centered */
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  width: 70%;
  text-align: center;
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* keep text/button centered */
  gap: 6px;              /* space between each child */
}
  .cta-banner{text-align:center;}
  .cta-banner h3{margin:0 0 6px;font-size:clamp(20px,2.4vw,26px);}
  .cta-banner p{margin:0 0 12px;color:#4b5563;}
  
/* =========================
   SB-721 — RESPONSIVE OVERRIDES
   ========================= */

/* Contain line length & spacing */
.sb721-page .container,
.sb721-page .page-header {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Title block + header image */
.page-header h1{
  text-align: center;
  font-weight: 800;
  letter-spacing: .6px;
  margin: 18px 0 12px;
  font-size: clamp(26px, 5.5vw, 40px);
  color: #e60000;
}
.sb-header-image{
  margin: 12px auto 20px;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.sb-header-image img{
  width: 100%; height: auto; display: block; object-fit: cover;
}
.sb-header-image .image-overlay{
  font-size: clamp(12px, 1.8vw, 14px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  padding: 10px 12px;
}

/* Two-column → one-column */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* Cards */
.section-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: clamp(16px, 3.2vw, 24px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.h-red{
  color:#e60000;
  font-weight:800;
  font-size: clamp(20px, 3.4vw, 28px);
  margin: 0 0 10px;
}

/* Lists and copy */
.section-card p{ 
  font-size: clamp(16px, 2vw, 18px); 
  line-height: 1.7; 
  margin: 0 0 10px; 
}
.checklist, .bullets{ 
  margin: 10px 0 0 1.1em; 
  padding: 0; 
}
.checklist li, .bullets li{ margin: 8px 0; }

/* Penalty stat */
.stat{
  display:flex; align-items:baseline; gap:10px; margin:12px 0;
}
.stat-num{ font-size: clamp(28px,6.5vw,44px); font-weight:800; color:#000; }
.stat-sub{ font-size: clamp(14px,2.2vw,16px); color:#666; }

/* Buttons */
.btn{
  display:inline-block;
  background:#e60000; color:#fff; text-decoration:none;
  border:none; border-radius:10px;
  padding: 12px 20px;
  font-weight:800; letter-spacing:.4px;
  box-shadow: 0 10px 18px rgba(230,0,0,.18);
  transition: filter .15s, transform .05s;
}
.btn:hover{ filter:brightness(1.05); }
.btn:active{ transform: translateY(1px); }
.btn-dark{ background:#222; }

/* Timeline steps */
.timeline .steps{
  counter-reset: step;
  margin: 8px 0 0 1.1em;
  padding: 0;
}
.timeline .steps li{
  margin: 10px 0;
  line-height: 1.7;
}
.timeline .note{
  margin-top: 12px; 
  font-size: 0.95rem; 
  color:#444;
}

/* CTA row stacks on small screens */
.cta-row{
  display:flex; gap:12px; flex-wrap:wrap; margin-top: 12px;
}
@media (max-width: 640px){
  .cta-row .btn{ flex:1 1 100%; text-align:center; }
}

/* Banner */
.sb-banner .sb-banner-image{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1100px;
  margin: 16px auto;
}
.sb-banner img{ width:100%; height:auto; display:block; object-fit: cover; }
.cta-banner{
  position: absolute;
  right: clamp(12px, 3vw, 24px);
  bottom: clamp(12px, 3vw, 24px);
  max-width: min(520px, 90%);
}
@media (max-width: 820px){
  .cta-banner{
    position: static;
    margin-top: 10px;
  }
}

/* Footer tweaks */
@media (max-width: 760px){
  .site-footer .footer-content{ text-align:center; }
  .footer-menu{ 
    display:flex; flex-wrap:wrap; gap:10px 16px; justify-content:center; 
  }
  .socials{ margin-top: 8px; }
}

/* Header compacting (matches home page) */
@media (max-width: 980px){
  .site-header .header-inner{ 
    display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; padding:10px 12px; 
  }
  .hdc-logo{ height:84px; }
  .header-text h1{ font-size: clamp(20px, 4vw, 28px); }
  .header-text p{ font-size: 12px; }
  .hdc-home-link span{ display:none; }
  .hdc-home-link .hdc-home-icon{ width:36px; }
}
