: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;
  padding:32px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
}
.featured-price-card{
  border:2px solid var(--teal);
  box-shadow:0 18px 45px rgba(13,148,136,.13);
}
.popular-badge{
  position:absolute;
  top:0;
  right:24px;
  transform:translateY(-50%);
  padding:6px 12px;
  border-radius:999px;
  color:#fff;
  background:var(--teal);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.public-price-card h3{
  min-height:72px;
  margin:8px 0 18px;
}
.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:.9rem;
}
.public-price-card ul{
  margin:0 0 22px;
  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:14px;
}
.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;
  }
}
