/* Staircase Photo — brand stylesheet
   Sister site to staircasepartners.com — same navy/blue system, photo-forward layout.
   Primary: #000A33 (deep navy)  Secondary: #0092FF (bright blue)  Font: Poppins */

:root {
  --navy: #000A33;
  --navy-light: #131c4d;
  --blue: #0092FF;
  --blue-dark: #0072c6;
  --red: #FF4747;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray: #6b7280;
  --gray-light: #e5e8f0;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 10, 51, 0.08);
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

p a:not(.btn):not(.site-footer *),
li a:not(.btn):not(.nav-links a):not(.footer-social a):not(.site-footer *),
.eyebrow a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(0, 146, 255, 0.4);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
p a:not(.btn):not(.site-footer *):hover,
li a:not(.btn):not(.nav-links a):not(.footer-social a):not(.site-footer *):hover,
.eyebrow a:hover {
  color: var(--blue-dark);
  text-decoration-color: currentColor;
}
.eyebrow a { text-decoration-color: rgba(255, 255, 255, 0.5); }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
}
h1 { font-size: 44px; font-weight: 700; }
h2 { font-size: 32px; }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--navy); }

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.eyebrow.on-dark { color: #7fc4ff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { border-color: var(--white); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  min-width: 0;
}
.logo-img { height: 30px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; }
.footer-logo-img { height: 34px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; position: relative; padding-bottom: 4px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-wrap.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .nav-wrap.open .nav-links a { padding: 10px 0; width: 100%; }
  .nav-cta .btn-outline { display: none; }
}
@media (max-width: 480px) {
  .logo-img { height: 24px; }
  .nav-wrap { padding: 14px 16px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 14px; }
}

/* ---------- Hero (photo-forward — every interior page uses the photo variant) ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #001347 55%, #001d63 100%);
  color: var(--white);
  padding: 110px 0 100px;
  position: relative;
}
.hero .container { max-width: 780px; }
.hero h1 { color: var(--white); }
.hero p.lead { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-sm { padding: 70px 0 60px; }
.hero-sm h1 { font-size: 36px; }

/* Photo-over-gradient hero — used on every page via inline --hero-img custom property */
.hero-photo {
  background-image: linear-gradient(135deg, rgba(0,10,51,0.86) 0%, rgba(0,19,71,0.72) 55%, rgba(0,29,99,0.55) 100%), var(--hero-img);
  background-size: cover;
  background-position: center;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); align-items: start; }
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray); margin-bottom: 0; }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,146,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 22px; height: 22px; }

/* ---------- Photo placeholders (until real photo assets are dropped in) ---------- */
.ph-photo {
  background: repeating-linear-gradient(135deg, var(--gray-light), var(--gray-light) 10px, #eef1f8 10px, #eef1f8 20px);
  border: 1px dashed #c7cee0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* ---------- Gallery / masonry grid (new pattern — not on the real estate site) ---------- */
.gallery-grid {
  columns: 3 280px;
  column-gap: 20px;
}
.gallery-grid figure {
  margin: 0 0 20px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-grid img,
.gallery-grid .ph-photo { width: 100%; display: block; }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,10,51,0.75), rgba(0,10,51,0));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 880px) { .gallery-grid { columns: 2 240px; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.gallery-filter {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gallery-filter:hover { border-color: var(--blue); }
.gallery-filter.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ---------- Reviews ---------- */
.review-card { display: flex; flex-direction: column; }
.review-stars { color: var(--blue); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote { color: var(--navy); font-style: italic; margin-bottom: 8px; }
.review-author { margin-top: 16px; font-weight: 600; font-size: 14px; }
.review-source { color: var(--gray); font-size: 13px; font-weight: 400; }

/* ---------- Pricing ---------- */

/* Square footage calculator input — compact inline bar */
.sqft-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: fit-content;
  margin: 0 auto 40px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 8px 10px 8px 20px;
}
.sqft-calc label {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
}
.sqft-calc-input-row {
  position: relative;
}
.sqft-calc-input-row input {
  width: 110px;
  padding: 8px 44px 8px 12px;
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  background: var(--off-white);
  -moz-appearance: textfield;
}
.sqft-calc-input-row input::-webkit-outer-spin-button,
.sqft-calc-input-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sqft-calc-input-row input:focus { outline: none; border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(255, 71, 71, 0.15); }
.sqft-calc-input-row .unit {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}
.sqft-tier-label {
  display: inline-block;
  background: rgba(0,146,255,0.1);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
@media (max-width: 480px) {
  .sqft-calc { max-width: 100%; border-radius: 20px; justify-content: center; padding: 14px 18px; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 10, 51, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 10, 51, 0.14);
}

.pricing-card-head {
  padding: 26px 24px 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #001a4d 100%);
  color: var(--white);
  position: relative;
}
.pricing-card.is-featured .pricing-card-head {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.pricing-card.is-featured {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(0, 146, 255, 0.22);
}
.pricing-card.is-featured:hover {
  box-shadow: 0 24px 48px rgba(0, 146, 255, 0.3);
}

.pricing-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 10px rgba(255, 71, 71, 0.35);
}
.pricing-name {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
}
.pricing-price sup { font-size: 16px; font-weight: 600; margin-right: 1px; top: -0.6em; }

.pricing-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-desc { color: var(--gray); font-size: 13px; margin-bottom: 16px; }
.pricing-includes { list-style: none; margin: 0 0 22px; padding: 0; font-size: 13.5px; flex: 1; }
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  padding: 6px 0;
}
.pricing-includes li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(0,146,255,0.12);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card .btn { text-align: center; }
.pricing-card.is-featured .btn-primary { background: var(--white); color: var(--blue-dark); }
.pricing-card.is-featured .btn-primary:hover { background: var(--off-white); }

/* ---------- Includes band (navy, full-width) ---------- */
.includes-band {
  background: linear-gradient(135deg, var(--navy) 0%, #001a4d 100%);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.includes-band .section-head { margin-bottom: 36px; }
.includes-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
  text-align: left;
}
@media (max-width: 700px) { .includes-list { grid-template-columns: 1fr; } }
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.includes-list li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(0,146,255,0.25);
  color: #7fc4ff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Add-on services chip grid ---------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.addon-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 10, 51, 0.08);
  transform: translateY(-2px);
}
.addon-chip .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,71,71,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 14px;
}

/* ---------- Stat panel ---------- */
.stat-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.stat-panel .stat-num { font-family: 'Poppins', sans-serif; font-size: 42px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-panel .stat-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
.stat-panel .stat-item + .stat-item { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); text-align: center; padding: 70px 0; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 56px 0 28px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--white); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- FAQ Accordion ---------- */
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { color: var(--blue-dark); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex-shrink: 0; color: var(--blue); font-size: 22px; font-weight: 400; line-height: 1; transition: transform 0.15s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 20px; color: var(--gray); }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--navy); color: rgba(255,255,255,0.85);
  padding: 20px 24px; z-index: 500;
  box-shadow: 0 -8px 24px rgba(0,10,51,0.2);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); max-width: 640px; }
.cookie-banner a { color: #7fc4ff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn { padding: 10px 22px; font-size: 14px; }

/* ---------- Lead / booking modal ---------- */
.lead-modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 10, 51, 0.55);
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 1000;
}
.lead-modal-overlay.open { display: flex; }
.lead-modal {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 460px; width: 100%; padding: 36px 32px 32px;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.lead-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 22px; line-height: 1; color: var(--gray); cursor: pointer; padding: 4px; }
.lead-modal-close:hover { color: var(--navy); }
.lead-modal h3 { margin-bottom: 6px; }
.lead-modal p.lead-modal-sub { color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.lead-modal-field { margin-bottom: 16px; }
.lead-modal-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.lead-modal-field input,
.lead-modal-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-light); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--navy); background: var(--off-white);
}
.lead-modal-field input:focus,
.lead-modal-field textarea:focus { outline: none; border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(255, 71, 71, 0.12); }
.lead-modal-field textarea { resize: vertical; min-height: 80px; }
.lead-modal-consent { font-size: 10px; line-height: 1.5; color: var(--gray); margin-bottom: 16px; }
.lead-modal-consent a { color: var(--blue); }
.lead-modal-submit { width: 100%; border: none; margin-top: 4px; }
.lead-modal-status { margin-top: 14px; font-size: 14px; text-align: center; display: none; }
.lead-modal-status.show { display: block; }
.lead-modal-status.success { color: #1a7f37; }
.lead-modal-status.error { color: var(--red); }
body.lead-modal-locked { overflow: hidden; }
