:root {
  --navy: #1E3A5F;
  --navy-2: #274B75;
  --teal: #0D9488;
  --teal-dark: #08756C;
  --blue-soft: #EAF6F5;
  --ink: #1E3A5F;
  --muted: #617080;
  --border: #D1D5DB;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(12, 33, 53, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 232, 0.8);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  color: white; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  font-size: .8rem; letter-spacing: -.03em;
}
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .94rem; font-weight: 600; }
.main-nav > a:not(.button):hover { color: var(--teal-dark); }
.menu-button { display: none; }

.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 42px; padding: 0 18px; border-radius: 10px; font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--teal); color: white; box-shadow: 0 10px 24px rgba(24, 167, 157, .22); }
.button-primary:hover { background: var(--teal-dark); }
.button-secondary { background: white; color: var(--navy); border: 1px solid var(--border); }
.button-ghost { color: var(--navy); border: 1px solid var(--border); }
.button-light { background: white; color: var(--navy); }
.button-large { min-height: 52px; padding: 0 24px; }

.hero {
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 88% 12%, rgba(24,167,157,.18), transparent 30%),
    linear-gradient(180deg, #f6fbfc 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 14px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 800; }
h1, h2, h3 { color: var(--navy); line-height: 1.13; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.8rem); max-width: 720px; }
h2 { margin: 0 0 16px; font-size: clamp(2rem, 3.5vw, 3.15rem); }
h3 { font-size: 1.25rem; }
.hero-copy { margin: 24px 0 30px; max-width: 650px; color: var(--muted); font-size: 1.14rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: var(--muted); font-size: .9rem; font-weight: 600; }

.product-preview {
  border: 1px solid rgba(12, 33, 53, .1); border-radius: 20px; overflow: hidden;
  background: white; box-shadow: var(--shadow); transform: rotate(1deg);
}
.preview-bar { display: flex; gap: 7px; padding: 14px 16px; background: #eff4f5; border-bottom: 1px solid var(--border); }
.preview-bar span { width: 9px; height: 9px; border-radius: 50%; background: #bac8cc; }
.preview-body { display: grid; grid-template-columns: 145px 1fr; min-height: 410px; }
.preview-sidebar { padding: 24px 18px; color: white; background: var(--navy); display: flex; flex-direction: column; gap: 18px; font-size: .72rem; }
.preview-sidebar strong { margin-bottom: 8px; font-size: .92rem; }
.preview-sidebar span { opacity: .72; }
.preview-main { padding: 24px; background: #f7fafb; }
.preview-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.preview-heading div { display: flex; flex-direction: column; }
.preview-heading small, .metric-grid small, .chart-card small { color: var(--muted); }
.preview-heading strong { color: var(--navy); font-size: 1.15rem; }
.status-pill { padding: 5px 9px; border-radius: 999px; color: var(--teal-dark); background: #dff5f2; font-size: .65rem; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-grid article, .chart-card { padding: 14px; border-radius: 12px; background: white; border: 1px solid #e5ecee; }
.metric-grid article { display: flex; flex-direction: column; }
.metric-grid strong { color: var(--navy); font-size: 1.55rem; }
.metric-grid span { color: var(--muted); font-size: .63rem; }
.chart-card { margin-top: 12px; }
.fake-chart { height: 160px; display: flex; align-items: end; gap: 10px; padding-top: 18px; border-bottom: 1px solid var(--border); }
.fake-chart i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(var(--teal), var(--teal-dark)); opacity: .86; }

.logo-strip { padding: 22px 0; text-align: center; color: var(--muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); font-weight: 600; }
.section { padding: 96px 0; }
.section-muted { background: #f5f9fa; }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 30px; border: 1px solid var(--border); border-radius: 16px; background: white; }
.feature-card h3 { margin: 18px 0 10px; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--blue-soft); color: var(--teal-dark); font-weight: 800; font-size: .8rem; }

.split-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.split-section > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.text-link { color: var(--teal-dark); font-weight: 800; }
.module-list { display: grid; gap: 12px; }
.module-list div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 20px; border-radius: 12px; background: white; border: 1px solid var(--border); }
.module-list strong { color: var(--navy); }
.module-list span { color: var(--muted); }

.pricing-card {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  padding: 42px; border-radius: 20px; color: white; background: var(--navy);
}
.pricing-card h3 { margin: 5px 0 8px; color: white; font-size: 1.8rem; }
.pricing-card p { margin: 0; color: #c7d5de; }
.pricing-label { text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
details { padding: 20px 22px; background: white; border: 1px solid var(--border); border-radius: 12px; }
summary { cursor: pointer; color: var(--navy); font-weight: 750; }
details p { margin: 14px 0 0; color: var(--muted); }

.contact-section { padding-top: 0; }
.contact-card {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  padding: 56px; border-radius: 22px; color: white;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
}
.contact-card h2 { color: white; }
.contact-card p:not(.eyebrow) { margin-bottom: 0; color: #d5e7e8; }
.contact-card .eyebrow { color: #b8f0ea; }

.site-footer { padding: 54px 0 24px; color: #b9c8d1; background: #081925; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-brand { color: white; }
.site-footer p { margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-links a:hover { color: white; }
.copyright { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }

.legal-page { min-height: 70vh; padding: 76px 0; }
.legal-page article { max-width: 800px; }
.legal-page h1 { font-size: 3rem; }
.legal-page h2 { margin-top: 36px; font-size: 1.5rem; }
.legal-page p, .legal-page li { color: var(--muted); }

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex; padding: 9px 13px; border: 1px solid var(--border); border-radius: 9px;
    background: white; color: var(--navy); font-weight: 700;
  }
  .main-nav {
    display: none; position: absolute; top: 76px; left: 20px; right: 20px;
    flex-direction: column; align-items: stretch; padding: 20px;
    background: white; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split-section { grid-template-columns: 1fr; gap: 52px; }
  .hero { padding-top: 62px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card, .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .section { padding: 70px 0; }
  h1 { font-size: 2.65rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .preview-body { grid-template-columns: 92px 1fr; }
  .preview-sidebar { padding: 18px 10px; }
  .preview-main { padding: 14px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article:nth-child(n+2) { display: none; }
  .module-list div { grid-template-columns: 1fr; gap: 4px; }
  .pricing-card, .contact-card { padding: 30px; }
  .footer-grid { flex-direction: column; }
}


/* ShopProof brand assets */
.brand-image-link {
  line-height: 0;
}

.header-logo {
  display: block;
  width: 205px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  display: block;
  width: 210px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.button-disabled,
.footer-disabled {
  cursor: default;
  opacity: .68;
}

.button-disabled:hover {
  transform: none;
}

.hero .eyebrow::before,
.section-heading .eyebrow::before,
.split-section .eyebrow::before,
.contact-card .eyebrow::before,
.legal-page .eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 999px;
  background: #D4A017;
}

.status-pill {
  border: 1px solid rgba(212, 160, 23, .28);
}

@media (max-width: 620px) {
  .header-logo { width: 175px; height: 42px; }
  .footer-logo { width: 180px; height: 48px; }
}

.demo-email-button{display:inline-flex;align-items:center;justify-content:center;text-align:center;white-space:nowrap;min-width:180px}
.footer-brand-static{display:inline-flex;align-items:center;gap:12px;color:#fff;font-size:1.1rem;font-weight:800}
.footer-brand-static img{display:block;width:42px;height:42px;border-radius:10px;object-fit:cover}
.copyright{display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap}
.copyright a{color:inherit}.copyright a:hover{color:#fff}
.legal-meta{margin:12px 0 30px;color:var(--muted);font-size:.95rem}
.legal-note{padding:18px 20px;margin:24px 0;border:1px solid var(--border);border-left:4px solid #D4A017;border-radius:10px;background:#f8fafb}
.legal-page address{font-style:normal}.legal-page a{color:var(--teal-dark);text-decoration:underline;text-underline-offset:3px}
.legal-page ul{padding-left:22px}
@media(max-width:620px){.demo-email-button{width:100%}.copyright{align-items:flex-start;flex-direction:column}}

.public-pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}
.public-price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:0;
  padding:32px;
  border:1px solid var(--border);
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfd 100%);
  box-shadow:0 12px 28px rgba(17,40,72,.06);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.public-price-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg, rgba(13,148,136,.18), rgba(30,58,95,.18));
}
.public-price-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(17,40,72,.12);
  border-color:rgba(30,58,95,.22);
}
.featured-price-card{
  border:2px solid var(--teal);
  background:linear-gradient(180deg,#ffffff 0%,#f4fbfa 100%);
  box-shadow:0 22px 52px rgba(13,148,136,.18);
  padding-top:46px;
}
.featured-price-card::before{
  height:6px;
  background:linear-gradient(90deg, var(--teal), var(--navy));
}
.popular-badge{
  position:absolute;
  top:14px;
  right:20px;
  transform:none;
  padding:7px 14px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--teal),var(--navy));
  box-shadow:0 10px 24px rgba(30,58,95,.2);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.public-price-card h3{
  min-height:0;
  margin:10px 0 0;
}
.public-price-card .pricing-label{
  color:var(--navy);
}

.public-price{
  display:flex;
  align-items:baseline;
  gap:7px;
  color:var(--navy);
}
.public-price strong{
  font-size:2.35rem;
  line-height:1;
  letter-spacing:-.04em;
}
.public-price span{
  color:var(--muted);
  font-weight:700;
}
.price-equivalent{
  margin:10px 0 22px;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.55;
}
.public-price-card ul{
  margin:0 0 16px;
  padding-left:20px;
  color:var(--muted);
}
.public-price-card li{
  margin-bottom:9px;
}
.implementation-note{
  margin-top:auto;
  padding-top:12px;
  color:var(--navy);
  font-weight:700;
}
.price-card-button{
  width:100%;
  margin-top:18px;
  min-height:48px;
}
.public-price-card .button-secondary{
  background:#fff;
  color:var(--navy);
  border:1px solid rgba(30,58,95,.18);
  box-shadow:0 8px 20px rgba(17,40,72,.05);
}
.public-price-card .button-secondary:hover{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
  box-shadow:0 14px 30px rgba(30,58,95,.18);
}
.public-price-card .button-primary{
  box-shadow:0 14px 30px rgba(13,148,136,.22);
}
.public-price-card .button-primary:hover{
  box-shadow:0 18px 36px rgba(13,148,136,.28);
}
.pricing-footnote{
  margin-top:18px;
  color:var(--muted);
  font-size:.96rem;
  text-align:center;
}
.professional-services-callout{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  margin-top:34px;
  padding:34px;
  border-radius:18px;
  background:#f5f9fa;
  border:1px solid var(--border);
}
.professional-services-callout h3{
  margin:0 0 10px;
}
.professional-services-callout p:last-child{
  margin-bottom:0;
  color:var(--muted);
}
.annual-billing-note{
  max-width:900px;
  margin:24px auto 0;
  text-align:center;
  color:var(--muted);
  font-size:.86rem;
}
@media(max-width:900px){
  .public-pricing-grid{grid-template-columns:1fr}
  .public-price-card h3{min-height:auto}
  .professional-services-callout{
    align-items:flex-start;
    flex-direction:column;
  }
}

.resource-hero{
  padding:88px 0 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(13,148,136,.16), transparent 32%),
    linear-gradient(180deg,#f6fbfc 0%,#fff 100%);
}
.resource-hero .narrow{margin-left:auto;margin-right:auto;text-align:center}
.resource-hero h1{max-width:920px;margin-left:auto;margin-right:auto;font-size:clamp(2.5rem,5vw,4.35rem)}
.resource-hero .hero-copy{max-width:800px;margin-left:auto;margin-right:auto}
.resource-hero .hero-actions{justify-content:center}
.content-layout{width:min(850px,calc(100% - 40px))}
.content-section{padding:0 0 38px;margin:0 0 38px;border-bottom:1px solid var(--border)}
.content-section:last-child{border-bottom:0;margin-bottom:0}
.content-section h2{font-size:clamp(1.75rem,3vw,2.45rem)}
.content-section p{color:var(--muted);font-size:1.05rem}
.resource-grid .text-link{display:inline-block;margin-top:8px}

.lead-capture-section{
  background:
    radial-gradient(circle at 8% 18%,rgba(13,148,136,.10),transparent 30%),
    linear-gradient(180deg,#f7fafb 0%,#fff 100%);
}
.lead-capture-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,620px);
  gap:64px;
  align-items:start;
}
.lead-capture-copy{
  position:sticky;
  top:110px;
  padding-top:22px;
}
.lead-capture-copy h2{
  max-width:640px;
}
.lead-capture-copy>p{
  max-width:650px;
  color:var(--muted);
  font-size:1.05rem;
}
.lead-benefits{
  display:grid;
  gap:14px;
  margin-top:30px;
}
.lead-benefits p{
  margin:0;
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  color:var(--muted);
}
.lead-benefits strong{
  color:var(--navy);
}
.lead-form-panel{
  padding:18px;
  border:1px solid var(--border);
  border-radius:20px;
  background:#fff;
  box-shadow:0 22px 55px rgba(30,58,95,.10);
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
  max-width:100%!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper{
  width:100%!important;
  background:#fff!important;
  border-radius:14px!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody{
  padding:24px 24px 4px!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input,
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea,
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select{
  border-color:#D1D5DB!important;
  border-radius:8px!important;
  color:#1E3A5F!important;
  padding:12px!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:focus,
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea:focus,
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select:focus{
  outline:2px solid rgba(13,148,136,.22);
  border-color:#0D9488!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button{
  background:#0D9488!important;
  border-radius:9px!important;
  padding:13px!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover{
  background:#0B7F75!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .privacy-policy p{
  color:#617080!important;
}
#mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .privacy-policy p a{
  color:#0D9488!important;
}
@media(max-width:900px){
  .lead-capture-grid{grid-template-columns:1fr;gap:34px}
  .lead-capture-copy{position:static;padding-top:0}
}
@media(max-width:520px){
  .lead-form-panel{padding:6px}
  #mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
  #mlb2-43934818.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody{
    padding:20px 16px 4px!important;
  }
}

/* CTA text wrapping fixes */
.professional-services-callout .button,
.contact-card .button,
.resource-hero .button,
.price-card-button {
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.professional-services-callout .button {
  min-width: 190px;
}

.contact-card .button {
  min-width: 180px;
}

@media (max-width: 640px) {
  .professional-services-callout .button,
  .contact-card .button,
  .resource-hero .button,
  .price-card-button {
    width: 100%;
    min-width: 0;
  }
}


/* Live platform website update */
.module-catalog{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.module-card{padding:24px;border:1px solid var(--border);border-radius:14px;background:#fff}
.module-card h3{margin:0 0 9px;font-size:1.08rem;letter-spacing:-.02em}
.module-card p{margin:0;color:var(--muted);font-size:.94rem}
.capability-panel{padding:32px;border:1px solid var(--border);border-radius:18px;background:#fff;box-shadow:0 14px 38px rgba(12,33,53,.08)}
.capability-panel h3{margin-top:0}.check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px 22px;margin:0;padding:0;list-style:none}
.check-list li{position:relative;padding-left:24px;color:var(--muted)}.check-list li:before{content:'✓';position:absolute;left:0;color:var(--teal-dark);font-weight:900}
.request-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:60px;align-items:start}
.direct-contact-form{padding:34px;border:1px solid var(--border);border-radius:18px;background:#fff;box-shadow:var(--shadow)}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.direct-contact-form label{display:grid;gap:7px;margin-bottom:16px;color:var(--navy);font-weight:750;font-size:.9rem}
.direct-contact-form input,.direct-contact-form select,.direct-contact-form textarea{width:100%;padding:12px 13px;border:1px solid #bdcbd0;border-radius:9px;background:#fff;color:var(--text);font:inherit}
.direct-contact-form textarea{resize:vertical}.direct-contact-form input:focus,.direct-contact-form select:focus,.direct-contact-form textarea:focus{outline:3px solid rgba(13,148,136,.15);border-color:var(--teal)}
.form-privacy{margin:14px 0 0;color:var(--muted);font-size:.82rem}.form-privacy a,.support-note a{color:var(--teal-dark);text-decoration:underline}
.honeypot{position:absolute!important;left:-9999px!important;opacity:0!important;pointer-events:none!important}
.support-note{margin-top:28px;padding:22px;border-left:4px solid var(--gold);border-radius:10px;background:#f5f9fa}.support-note h3{margin:0 0 8px}.support-note p{margin:0;color:var(--muted)}
.thank-you-page{min-height:75vh;display:grid;align-items:center;padding:80px 0;background:linear-gradient(180deg,#f6fbfc,#fff)}.thank-you-page p:not(.eyebrow){max-width:650px;color:var(--muted);font-size:1.1rem}
.always-visible{display:flex!important}
@media(max-width:980px){.module-catalog{grid-template-columns:repeat(2,1fr)}.request-grid{grid-template-columns:1fr}.check-list{grid-template-columns:1fr}}
@media(max-width:620px){.module-catalog,.form-grid{grid-template-columns:1fr}.direct-contact-form{padding:24px}.module-card{padding:20px}}


/* Form and footer hotfix — cache-busted release */
.request-grid {
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  gap: 56px;
}
.direct-contact-form {
  display: block;
  padding: 34px;
  overflow: hidden;
}
.direct-contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.direct-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
}
.direct-contact-form input,
.direct-contact-form select,
.direct-contact-form textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #b9c8ce;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.35;
}
.direct-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.direct-contact-form select {
  appearance: auto;
}
.direct-contact-form > .button {
  margin-top: 2px;
}
.form-privacy {
  line-height: 1.55;
}
.footer-logo {
  width: 215px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
@media (max-width: 980px) {
  .request-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .direct-contact-form .form-grid { grid-template-columns: 1fr; gap: 0; }
  .direct-contact-form { padding: 24px; }
  .footer-logo { width: 190px; max-height: 46px; }
}


/* Expanded ShopProof resource library */
.resource-grid,.resource-library-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.resource-card{display:flex;flex-direction:column;min-height:100%;padding:28px;border:1px solid var(--border);border-radius:17px;background:#fff;box-shadow:0 10px 28px rgba(12,33,53,.06);color:inherit;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.resource-card:hover{transform:translateY(-4px);border-color:rgba(13,148,136,.5);box-shadow:0 18px 38px rgba(12,33,53,.11)}
.resource-card .resource-kicker{margin:0 0 10px;color:var(--teal-dark);font-size:.75rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
.resource-card h3{margin:0 0 12px;color:var(--navy);font-size:1.24rem;line-height:1.25}
.resource-card p:not(.resource-kicker){margin:0 0 22px;color:var(--muted);line-height:1.65}
.resource-card span{margin-top:auto;color:var(--teal-dark);font-weight:800}
.section-action{display:flex;justify-content:center;margin-top:32px}
.resource-library-hero{padding-bottom:72px}
.related-resource-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.related-card{display:grid;gap:8px;padding:24px;border:1px solid var(--border);border-radius:14px;background:#fff;color:var(--navy);text-decoration:none}
.related-card span{color:var(--teal-dark);font-size:.75rem;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
.related-card strong{font-size:1.06rem;line-height:1.35}
.related-card:hover{border-color:var(--teal);box-shadow:0 12px 30px rgba(12,33,53,.08)}
.content-section{padding:0 0 34px;margin:0 0 34px;border-bottom:1px solid var(--border)}
.content-section:last-child{border-bottom:0;margin-bottom:0}
.content-section h2{margin-top:0;color:var(--navy);font-size:clamp(1.55rem,3vw,2.15rem)}
.content-section p{color:var(--muted);font-size:1.04rem;line-height:1.8}
@media(max-width:980px){.resource-grid,.resource-library-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.related-resource-grid{grid-template-columns:1fr}}
@media(max-width:620px){.resource-grid,.resource-library-grid{grid-template-columns:1fr}.resource-card{padding:23px}.section-action .button{width:100%;text-align:center}}

/* Standards support */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.standard-card {
  background: #fff;
  border: 1px solid #d8e2e8;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 14px 34px rgba(30, 58, 95, 0.07);
}
.standard-card h3 { margin: .55rem 0 .75rem; color: #1E3A5F; }
.standard-card p { margin: 0; }
.standard-label {
  display: inline-block;
  color: #0D9488;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.standards-disclaimer {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid #D4A017;
  background: #fffaf0;
  border-radius: 0 12px 12px 0;
  color: #334e68;
}
.standards-disclaimer a { font-weight: 700; }
@media (max-width: 980px) { .standards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .standards-grid { grid-template-columns: 1fr; } }

@media(max-width:620px){
  .featured-price-card{padding-top:50px}
  .popular-badge{top:14px;right:16px}
}
