/* PrimeShield styles.css — cleaned v2 (logo + mobile header) — 2025-12-17 */
:root{
  --bg:#f2f2f7;
  --surface:#ffffff;
  --navy:#0B3D91;
  --teal:#0F9D9D;
  --slate:#111827;
  --muted:#6b7280;
  --link:#007AFF;
  --radius:22px;
  --shadow:0 14px 30px rgba(15,23,42,.10);
  --shadowSoft:0 10px 25px rgba(15,23,42,.08);
  --max-width:1100px;
}
*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji"; margin:0; color:var(--slate); background:var(--bg)}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max-width); margin:0 auto; padding:28px}
header{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 28px; background:#fff; box-shadow:0 6px 18px rgba(16,24,40,0.04)}
/* Logo (clean, non-distorting) */
.logo-link{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  margin-left:0;
}
img.logo,
.logo-link img{
  display:block;
  height:56px;
  width:auto;
  max-width:240px;
  object-fit:contain;
  flex:0 0 auto;
}
nav{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
nav a{font-size:15px; color:var(--slate); padding:8px 10px; border-radius:8px}
nav a.primary{color: var(--slate); background:var(--navy); font-weight:600}
.cta{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.btn{padding:10px 14px; border-radius:8px; font-weight:600; cursor:pointer; border:0; display:inline-block}
.btn-primary{background:var(--teal); color:#fff}
.btn-outline{background:transparent; border:2px solid var(--navy); color:var(--navy)}

.btn-sm{
  padding: 8px 10px;
  font-size: 0.85rem;
  border-radius: 999px;
  line-height: 1.1;
}

.hero{display:grid; grid-template-columns:1fr 420px; gap:24px; align-items:center; padding:44px 0}
.eyebrow{color:var(--teal); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:0.08em}
.hero h1{font-size:clamp(26px,3.2vw,36px); line-height:1.15; font-weight:700; color:var(--navy); margin:10px 0 8px}
.hero p{line-height:1.6; color:var(--muted); font-size:17px; max-width:60ch}
.hero-visual{background:linear-gradient(135deg, rgba(10,174,150,0.06), rgba(11,61,145,0.06)); border-radius:12px; height:260px; display:flex; align-items:center; justify-content:center;}
.hero-visual-inner{text-align:center; color:var(--navy)}
.service-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:12px}
.service-card{background:#fff; border-radius:24px; padding:16px; box-shadow:var(--shadowSoft); border:1px solid rgba(15,23,42,.06); cursor:pointer; transition:transform .08s ease, box-shadow .08s ease}
.service-card:hover{transform:translateY(-2px); box-shadow:0 10px 30px rgba(15,23,42,0.12)}
.service-card h3, .service-card strong{color:var(--navy); margin-top:0}
.primary-section{background:linear-gradient(180deg,#ffffff, #fbfeff); padding:24px; border-radius:12px}
.secondary-section{padding:18px; margin-top:18px;}
.section-divider{border:0; border-top:2px solid #eef2f7; margin:36px 0}
footer{padding:28px; text-align:center; color:#64748b; font-size:14px; margin-top:28px}
blockquote{margin:0; padding-left:14px; border-left:3px solid #e5e7eb; color:#4b5563; font-size:14px}

/* Form styles */
.quote-form-wrapper{background:#fff; padding:28px; border-radius:24px; box-shadow:var(--shadowSoft); border:1px solid rgba(15,23,42,.06); max-width:780px; margin:0 auto}
.quote-form-wrapper h1{margin-top:0; color:var(--navy)}
.quote-form-wrapper p.lead{color:var(--muted); margin-bottom:18px}
.quote-form .row{margin-bottom:12px}
.quote-form label{display:block; font-size:14px; margin-bottom:4px}
.quote-form input,.quote-form select,.quote-form textarea{width:100%; padding:10px; border-radius:8px; border:1px solid #e5e7eb; font-size:14px; font-family:inherit}
.quote-form textarea{min-height:120px; resize:vertical}
.quote-form .row-inline{display:flex; gap:12px; flex-wrap:wrap}
.quote-form .row-inline .col{flex:1; min-width:140px}
.note-small{font-size:12px; color:#6b7280; margin-top:6px}

/* Contact page */
form.contact-form .row{margin-bottom:12px}

.admin-table{width:100%; border-collapse:collapse; font-size:14px; margin-top:12px}
.admin-table th,.admin-table td{border:1px solid #e5e7eb; padding:6px 8px; text-align:left}
.admin-table th{background:#f3f4f6}

/* Life options page */
.life-options-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:16px}
.life-option-card{background:#fff; border-radius:24px; padding:16px; box-shadow:var(--shadowSoft); border:1px solid rgba(15,23,42,.06); text-align:left; cursor:pointer; transition:transform .08s ease, box-shadow .08s ease}
.life-option-card:hover{transform:translateY(-2px); box-shadow:0 10px 30px rgba(15,23,42,0.15)}
.life-option-card h3{margin-top:0; color:var(--navy);}
.life-option-card p{font-size:14px; color:#4b5563}

/* Responsive */
@media (max-width:980px){
  .hero{grid-template-columns:1fr}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .life-options-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .service-grid{grid-template-columns:1fr}
  .life-options-grid{grid-template-columns:1fr}

header{padding:12px 16px}
.logo-link{margin-left:0}
img.logo,
.logo-link img{height:40px; max-width:180px}
.hero h1{font-size:clamp(26px,3.2vw,36px); line-height:1.15; font-weight:700; color:var(--navy); margin:10px 0 8px}
  .quote-form .row-inline{flex-direction:column}
}


.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}


.admin-links{
  font-size:11px;
  opacity:0.7;
}
.admin-links a{
  color:inherit;
  text-decoration:underline;
}

/* --- Mobile navigation --- */
.site-header {
  position: relative;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}


.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--slate);
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Honeypot field (hidden from humans) */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
}

.contact-main .lead {
  margin-top: 8px;
  margin-bottom: 24px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-item {
  margin: 4px 0;
}

.contact-form .row,
.quote-form .row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-form .field,
.quote-form .field {
  flex: 1 1 180px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
}

.cf-turnstile {
  margin: 8px 0 4px;
}

/* Responsive nav and layout */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: nowrap;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    display: none;
    z-index: 50;
  }
  .nav-links.open {
    display: flex;
  }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Simple two-column grid for About page sections */
.grid-two {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
  gap: 28px;
  margin-top: 24px;
}
.grid-two > div {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
@media (max-width: 768px) {
  .grid-two {
    grid-template-columns: minmax(0,1fr);
  }
}

/* FAQ list spacing */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.faq-item h2 {
  margin-top: 0;
  margin-bottom: 6px;
}

/* Tighter, centered contact form layout */
.contact-main {
  max-width: 720px;
}

.contact-form {
  margin-top: 12px;
}

.contact-form .row {
  gap: 12px;
}

.contact-form .field {
  margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 8px 10px;
  font-size: 0.95rem;
}

/* Ensure contact card email wraps neatly */
.contact-card .contact-item a {
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* Insurance chooser */
.insurance-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:16px;
}
.insurance-card{
  background:#ffffff;
  border-radius:14px;
  padding:16px 18px;
  box-shadow:0 10px 26px rgba(15,23,42,0.16);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.insurance-card h2{
  margin-top:0;
  margin-bottom:6px;
  font-size:1.1rem;
}
.insurance-card p{
  margin:0 0 10px;
  font-size:0.9rem;
  color:#4b5563;
}
.insurance-card .btn{
  align-self:flex-start;
  margin-top:auto;
}

@media (max-width: 900px){
  .insurance-grid{
    grid-template-columns:1fr;
  }
}


/* Product-specific quote sections */
.product-sections{
  margin-top:14px;
}
.product-section{
  display:none;
  background:#f9fafb;
  border-radius:12px;
  padding:12px 14px;
  border:1px solid #e5e7eb;
  margin-bottom:12px;
}
.product-section .section-title{
  font-size: 1.45rem;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}
/* Phase 4B additions */
.logo-link picture{display:block;}

.section{
  margin-top: 28px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(11,61,145,.08);
}

.section-muted{
  background: rgba(11,61,145,.03);
}

.section-title{
  font-size: 1.45rem;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}

.section-lead{
  margin-top: 0;
  color: var(--muted);
}

.trust-bar{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust-item{
  border: 1px solid rgba(11,61,145,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(11,61,145,.02);
}

.trust-title{
  font-weight: 800;
  margin-bottom: 4px;
}

.trust-text{
  color: var(--muted);
  font-size: .95rem;
}

.coverage-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.coverage-card{
  border: 1px solid rgba(11,61,145,.12);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}

.coverage-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.coverage-card h3{
  margin-top: 0;
  margin-bottom: 6px;
}

.coverage-card p{
  margin-top: 0;
  color: var(--muted);
}

.link{
  display: inline-block;
  margin-top: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.link:hover{ text-decoration: underline; }

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.step{
  border: 1px solid rgba(11,61,145,.12);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.step-num{
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(11,61,145,.10);
  color: var(--primary);
  margin-bottom: 8px;
}

.inline-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.service-area{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,61,145,.14);
  background: rgba(11,61,145,.04);
  color: var(--primary);
  font-weight: 700;
  font-size: .95rem;
}

.cta-panel{
  text-align: center;
}

.mobile-cta-bar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,61,145,.18);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 10px;
  z-index: 9999;
}

.mobile-cta{
  flex: 1;
  text-align: center;
  padding: 12px 12px;
  border-radius: 14px;
  border: 2px solid var(--primary);
  font-weight: 900;
  text-decoration: none;
  color: var(--primary);
}

.mobile-cta.primary{
  background: var(--navy);
  color: var(--slate);
  border-color: var(--navy);
}

@media (max-width: 860px){
  .trust-bar{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  body{ padding-bottom: 84px; }
  .mobile-cta-bar{ display: flex; }
  .section{ padding: 16px; }
}



/* --- Conversion-focused UI (Phase 4B) --- */
.chooser-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 16px;
}
.chooser-card{
  background: var(--card);
  border: 1px solid #e7edf6;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.chooser-card h3{
  margin: 6px 0 10px;
  font-size: 1.15rem;
  color: var(--navy);
}
.chooser-card p{
  margin: 0 0 12px;
  color: var(--muted);
}
.chooser-kicker{
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3b5b84;
}
.chooser-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chooser-links-inline{
  margin: 12px 0 0;
}

.how-it-works{
  margin-top: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: #f5f8ff;
  border: 1px solid #e7edf6;
  border-radius: var(--radius);
  padding: 14px;
}
.how-step{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--navy);
  font-size: 0.95rem;
}
.how-num{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 28px;
}
.how-step strong{
  font-weight: 800;
}

.trust-bar-compact{
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.badge-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 18px;
}
.badge{
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.badge img{
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}
.badge span{
  font-weight: 700;
  font-size: 0.95rem;
}
.badge:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.footer-license{
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}


.secondary-section ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.secondary-section li{
  margin: 10px 0;
  line-height: 1.55;
}
.secondary-section li strong{
  font-weight: 700;
  color: var(--navy);
}


/* Source-of-truth card system (iOS-style cards) */
.sot-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:14px;
}
@media (max-width: 820px){
  .sot-grid{grid-template-columns:1fr}
}

.sot-card{
  background:var(--surface);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,.06);
}

.sot-card__icon{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}
.sot-card__icon img{
  width:88px;
  height:88px;
}

.sot-card__title{
  margin:0;
  text-align:center;
  font-size:20px;
  font-weight:700;
  color:var(--slate);
  letter-spacing:-0.01em;
}
.sot-card__desc{
  margin:10px auto 0;
  text-align:center;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
  max-width:48ch;
}

.sot-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 26px;
}
@media (max-width: 520px){
  .sot-list{grid-template-columns:1fr}
}

.sot-link{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--link);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  padding:2px 0;
}
.sot-link:hover{ text-decoration:underline; }

.sot-link img{
  width:40px;
  height:40px;
  flex:0 0 auto;
}

.sot-steps{
  margin-top:18px;
}

.sot-foot-link{
  margin-top:14px;
  text-align:center;
}

.text-link{
  color:var(--link);
  font-weight:600;
}
.text-link:hover{ text-decoration:underline; }

/* Quick links list (no buttons) */
.quick-links-list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
}
.quick-links-list li{ margin:0; }

/* Footer badge row */
.footer-badges{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 14px;
}
.footer-badges img{
  height:88px;
  width:auto;
  display:block;
}
@media (max-width: 520px){
  .footer-badges img{ height:40px; }
}


.section-head{
  text-align:center;
  max-width:70ch;
  margin:0 auto 14px;
}
.section-head p{ margin:10px 0 0; color:var(--muted); }


/* Variants */
.sot-card__title--left{ text-align:left; }
.sot-card__desc--left{ text-align:left; margin-left:0; margin-right:0; }

.sot-list--singlecol{
  grid-template-columns:1fr;
}
.sot-list--actions{
  margin-top:16px;
}
.sot-list--single{
  grid-template-columns:1fr;
  justify-items:center;
}

/* Resource bullets (lighter, less "shouty") */
.resource-bullets{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:10px;
  color:var(--slate);
  font-size:15px;
  line-height:1.45;
}
.resource-bullets li{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.resource-bullets li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--slate);
  margin-top:8px;
  flex:0 0 auto;
  opacity:.9;
}
.resource-bullets strong{
  font-weight:600;
}



/* Secondary (Covered California) logo in the header */
.logo-link--coveredca{opacity:.95}
.logo-coveredca{height:32px;width:auto;display:block}
@media (max-width: 640px){
  .logo-coveredca{height:26px}
}


/* Header brand group */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

/* Footer badge sticker wrappers */
.footer-badges{display:flex;justify-content:center;align-items:center;gap:12px;flex-wrap:wrap;margin:10px 0 14px;}
.footer-badge{display:inline-flex;align-items:center;justify-content:center;padding:8px 10px;border-radius:14px;background:rgba(255,255,255,0.92);border:1px solid rgba(15,23,42,0.08);box-shadow:0 6px 18px rgba(15,23,42,0.10);} 
.footer-badge img{height:44px;width:auto;display:block;}
@media(max-width:640px){.footer-badge{padding:7px 9px;border-radius:12px;}.footer-badge img{height:40px;}.footer-badges{gap:10px;}}

/* Icon bullets (resources and info lists) */
.sot-bullets{list-style:none;padding:0;margin:12px 0 0;}
.sot-bullets li{position:relative;padding-left:52px;margin:10px 0;color:var(--slate);line-height:1.55;}
.sot-bullets li::before{content:"";position:absolute;left:0;top:2px;width:40px;height:40px;background-repeat:no-repeat;background-size:40px 40px;opacity:0.95;}
.sot-bullets--auto li::before{background-image:url('/assets/icons/icon-auto.svg');}
.sot-bullets--home li::before{background-image:url('/assets/icons/icon-home.svg');}
.sot-bullets--business li::before{background-image:url('/assets/icons/icon-business.svg');}
.sot-bullets--life li::before{background-image:url('/assets/icons/icon-life.svg');}
.sot-bullets--health li::before{background-image:url('/assets/icons/icon-health.svg');}

/* Compact 'What to expect' steps */
.steps-compact{margin-top:14px;}
.steps-compact .step{padding:10px 12px;border-radius:16px;}
.steps-compact .step-num{width:28px;height:28px;font-size:14px;margin-bottom:6px;}
@media(max-width:640px){.steps-compact .step{padding:10px 12px;}}



/* =========================================================
   Phase 4B polish pass (2025-12-19c)
   Fixes based on annotated screenshots:
   - ALL icons 2X size (global)
   - Compact "what to expect" steps
   - Footer badges: sticker style + centered row
   - Footer license text: readable (not white-on-light)
   - Resources bullets: icon bullets per category
   - Mobile CTA: Get Quote contrast fix
========================================================= */

:root{
  /* 2X icon sizing (was ~40px / 44px) */
  --ps-icon-sm: 64px;
  --ps-icon-lg: 88px;
  --ps-icon-gap: 18px;
  --ps-bullet-icon: 60px;
}

/* Global icon size bump (2X) */
.sot-link img{
  width: var(--ps-icon-sm);
  height: var(--ps-icon-sm);
  flex: 0 0 var(--ps-icon-sm);
  opacity: .92;
}

/* Grid-wrap long sot-link text (prevents email/address overflow on mobile) */
.sot-link{
  display: grid;
  grid-template-columns: var(--ps-icon-sm) 1fr;
  column-gap: var(--ps-icon-gap);
  align-items: center;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sot-card__icon{
  width: var(--ps-icon-lg);
  height: var(--ps-icon-lg);
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
}

/* Resources bullet lists: per-line icons (variety) */
.sot-bullets{
  list-style:none;
  padding:0;
  margin:12px 0 0;
}

.sot-bullets li{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  margin: 12px 0;
  padding-left: 0;
  position: relative;
  color: var(--slate);
  line-height: 1.55;
}

.sot-bullets li::before{ content: none !important; }

.sot-bullet-icon{
  width: var(--ps-bullet-icon);
  height: var(--ps-bullet-icon);
  flex: 0 0 var(--ps-bullet-icon);
  opacity: .92;
  margin-top: 2px;
}

.sot-bullets li span{ display:block; }

/* Compact "what to expect" steps (combine into smaller space) */
.steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; }
}

.steps .step{
  padding: 14px;
}

/* Mobile CTA: ensure primary text is readable */
.mobile-cta.primary{
  color: #fff;
}

/* Footer: badges as sticker-style (rounded + subtle shadow), centered row */
.footer-badges{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 6px;
}

.footer-badges img{
  height: 42px;
  width: auto;
  display: inline-block;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.12);
  opacity: 1;
  filter: none;
}

/* Footer license line: readable on light footer */
.footer-license{
  color: var(--slate);
  opacity: .78;
}
