:root {
  --ink: #0f172a;
  --muted: #475569;
  --line: #d9e2df;
  --panel: #ffffff;
  --soft: #f5f8f6;
  --green: #1f6b4f;
  --green-dark: #123e31;
  --green-soft: #e2f2ea;
  --amber: #b7791f;
  --blue: #2b6cb0;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8faf9;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-weight: 800;
}
.site-header.scrolled .brand-mark,
.site-header.menu-open .brand-mark {
  border-color: #c7d7d1;
  background: var(--green);
}
.brand strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: currentColor;
  opacity: .72;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
}
.site-nav a { padding: 10px 12px; border-radius: 6px; }
.site-nav a:hover { background: rgba(255,255,255,.14); }
.site-header.scrolled .site-nav a:hover,
.site-header.menu-open .site-nav a:hover { background: #eef7f2; }
.nav-demo { border: 1px solid rgba(255,255,255,.44); }
.site-header.scrolled .nav-demo,
.site-header.menu-open .nav-demo { border-color: #bad5c8; color: var(--green-dark); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: url('assets/img/junkpros-hero.png');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 29, 23, .94) 0%, rgba(13, 43, 35, .83) 43%, rgba(15, 23, 42, .32) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, .08), rgba(2, 6, 23, .28));
}
.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 76px;
}
.eyebrow {
  margin: 0 0 18px;
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green); }
h1, h2, h3 { font-family: Manrope, sans-serif; letter-spacing: 0; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: 66px;
  line-height: .98;
  font-weight: 800;
}
.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #2f8b66;
  color: #fff;
  box-shadow: 0 14px 32px rgba(5, 46, 34, .26);
}
.btn-primary:hover { background: #246f52; }
.btn-secondary {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.1);
  color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.btn-plan {
  width: 100%;
  border-color: #bfd2ca;
  background: #fff;
  color: var(--green-dark);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 12px;
  margin: 58px 0 0;
}
.hero-stats div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.hero-stats dt { font-family: Manrope, sans-serif; font-size: 29px; font-weight: 800; line-height: 1; }
.hero-stats dd { margin: 10px 0 0; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-band span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
}
.section-copy h2,
.center-heading h2,
.demo-section h2,
.contact-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
}
.section-copy p,
.center-heading p,
.demo-section p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #1f2937;
  font-weight: 600;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #dff2e8;
}
.product-frame {
  overflow: hidden;
  border: 1px solid #cfded7;
  border-radius: var(--radius);
  background: #f9fbfa;
  box-shadow: var(--shadow);
}
.frame-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid #dce6e2;
  background: #fff;
}
.frame-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}
.frame-top strong { margin-left: auto; color: #334155; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.frame-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}
.metric-card, .pipeline-card, .task-card {
  border: 1px solid #dce6e2;
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}
.metric-card small { display: block; color: var(--muted); font-weight: 800; font-size: 12px; }
.metric-card strong { display: block; margin-top: 10px; font-family: Manrope, sans-serif; font-size: 34px; line-height: 1; }
.metric-card span { display: block; margin-top: 9px; color: #64748b; font-size: 13px; font-weight: 700; }
.accent-green strong { color: var(--green); }
.accent-amber strong { color: var(--amber); }
.accent-blue strong { color: var(--blue); }
.pipeline-card { grid-column: span 2; }
.pipeline-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pipeline-head span { color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.bar-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 10px; margin-top: 12px; color: #475569; font-size: 13px; font-weight: 700; }
.bar-row i { display: block; height: 10px; border-radius: 4px; background: #dbe8e2; overflow: hidden; }
.bar-row i::after { content: ""; display: block; width: var(--w); height: 100%; background: var(--green); }
.task-card p { margin: 12px 0 0; padding-top: 12px; border-top: 1px solid #edf2f0; color: var(--muted); font-size: 13px; font-weight: 600; }

.workflow-section, .pricing-section { background: transparent; }
.center-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.workflow-grid, .module-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.workflow-grid article, .module-grid article, .pricing-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.workflow-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}
.workflow-grid h3, .module-grid h3, .pricing-grid h3 { margin: 0; font-size: 21px; }
.workflow-grid p, .module-grid p, .pricing-grid p { margin: 12px 0 0; color: var(--muted); }
.narrow { max-width: 760px; }
.module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px; }
.module-grid article { min-height: 172px; }
.demo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  padding: 72px max(18px, calc((100vw - 1120px) / 2));
  background: #10231c;
  color: #fff;
}
.demo-section div { max-width: 760px; }
.demo-section p { color: rgba(255,255,255,.78); }
.demo-section .eyebrow { color: #a7f3d0; }
.demo-section strong { color: #fff; }
.pricing-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 24px;
  border: 1px solid #c9d8d2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.pricing-toggle button {
  min-width: 116px;
  border: 0;
  padding: 10px 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}
.pricing-toggle button.active { background: var(--green); color: #fff; }
.pricing-grid article { position: relative; display: flex; flex-direction: column; }
.featured-plan { border-color: #79b996 !important; box-shadow: 0 22px 56px rgba(31, 107, 79, .16) !important; }
.plan-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.price { font-family: Manrope, sans-serif; font-size: 34px !important; font-weight: 800; color: var(--green) !important; }
.pricing-grid ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 10px; color: #334155; font-weight: 600; }
.pricing-grid li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 2px; background: var(--green); }
.pricing-grid .btn { margin-top: auto; }
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: start;
}
.contact-points { display: grid; gap: 10px; margin-top: 26px; }
.contact-points span {
  display: block;
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  background: #eef7f2;
  color: #234237;
  font-weight: 700;
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.lead-form label { display: grid; gap: 7px; color: #334155; font-weight: 800; font-size: 13px; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid #cbd8d3;
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
}
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px #dff2e8; }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}
.site-footer strong { font-family: Manrope, sans-serif; }
.site-footer p { margin: 4px 0 0; color: var(--muted); }
.site-footer a { color: var(--green); font-weight: 800; }

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    cursor: pointer;
  }
  .site-header.scrolled .nav-toggle,
  .site-header.menu-open .nav-toggle { border-color: #cbd8d3; background: #fff; }
  .nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: currentColor; }
  h1 { font-size: 48px; }
  .hero { min-height: 700px; }
  .hero-stats, .proof-band, .workflow-grid, .pricing-grid { grid-template-columns: 1fr; }
  .split-section, .contact-section { grid-template-columns: 1fr; }
  .product-frame { max-width: 680px; }
  .frame-grid { grid-template-columns: 1fr; }
  .pipeline-card { grid-column: auto; }
  .module-grid { grid-template-columns: 1fr; }
  .demo-section { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .site-header { min-height: 70px; padding: 12px 16px; }
  .brand small { display: none; }
  .hero { min-height: 720px; background-position: 58% center; }
  .hero-inner { width: calc(100% - 32px); padding-top: 112px; }
  h1 { font-size: 39px; line-height: 1.02; }
  .hero-copy { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .section { width: calc(100% - 32px); padding: 64px 0; }
  .section-copy h2, .center-heading h2, .demo-section h2, .contact-copy h2 { font-size: 32px; }
  .proof-band span { min-height: 58px; font-size: 12px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}


/* Photo hero image override */
.site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}
.brand-mark {
  border-color: #c7d7d1;
  background: var(--green);
}
.site-nav a:hover { background: #eef7f2; }
.nav-demo { border-color: #bad5c8; color: var(--green-dark); }
.hero {
  min-height: 0;
  display: block;
  padding-top: 76px;
  color: var(--ink);
  background: #fff;
}
.hero-overlay,
.hero-inner { display: none; }
.hero-image {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .hero { min-height: 0; }
}
@media (max-width: 640px) {
  .hero { min-height: 0; padding-top: 70px; }
}

/* Enhanced footer */
.site-footer {
  display: block;
  padding: 0;
  border-top: 0;
  background: #0f231c;
  color: #f8fafc;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(220px, .8fr) minmax(240px, .9fr);
  gap: 32px;
  align-items: center;
  padding: 44px clamp(18px, 4vw, 56px);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.footer-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #2f8b66;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-weight: 800;
}
.site-footer strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 19px;
}
.site-footer p {
  max-width: 560px;
  margin: 7px 0 0;
  color: rgba(248, 250, 252, .74);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 10px;
}
.footer-links a,
.footer-cta a {
  color: #dff8eb;
  font-weight: 800;
}
.footer-links a {
  padding: 8px 0;
}
.footer-cta {
  justify-self: end;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(223, 248, 235, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}
.footer-cta span {
  color: rgba(248, 250, 252, .7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 7px;
  background: #2f8b66;
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(223, 248, 235, .16);
  color: rgba(248, 250, 252, .62);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-cta { justify-self: stretch; }
}
@media (max-width: 640px) {
  .footer-main { padding: 34px 16px; }
  .footer-brand { align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; padding: 18px 16px; }
}

/* Professional footer override */
.site-footer {
  background: #081a14;
  color: #f8fafc;
}
.footer-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.footer-main {
  grid-template-columns: minmax(320px, 1.55fr) minmax(120px, .55fr) minmax(150px, .65fr) minmax(240px, .9fr);
  gap: 28px;
  align-items: start;
  padding: 50px 0 34px;
}
.footer-brand {
  align-items: flex-start;
  gap: 18px;
}
.footer-mark {
  width: 58px;
  height: 58px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 18px 38px rgba(0,0,0,.22);
}
.site-footer strong {
  font-size: 21px;
  line-height: 1.2;
}
.site-footer p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(248, 250, 252, .72);
  font-size: 15px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-badges span {
  padding: 6px 10px;
  border: 1px solid rgba(223, 248, 235, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(248, 250, 252, .78);
  font-size: 12px;
  font-weight: 800;
}
.footer-column {
  display: grid;
  gap: 10px;
}
.footer-column span,
.footer-demo-card > span {
  color: #7bd6a8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-column a {
  color: rgba(248, 250, 252, .86);
  font-weight: 800;
  line-height: 1.35;
}
.footer-column a:hover,
.footer-demo-card a:hover {
  color: #fff;
}
.footer-links,
.footer-cta {
  display: none;
}
.footer-demo-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(223, 248, 235, .16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 46px rgba(0,0,0,.2);
}
.footer-demo-card strong {
  font-size: 20px;
}
.footer-demo-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 11px 15px;
  border-radius: 7px;
  background: #2f8b66;
  color: #fff;
  font-weight: 900;
}
.footer-bottom {
  padding: 18px 0 26px;
  border-top-color: rgba(223, 248, 235, .14);
}
@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .footer-demo-card {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer-shell { width: calc(100% - 32px); }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 38px 0 28px;
  }
  .footer-brand { flex-direction: column; }
}

/* Footer powered-by logo */
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.powered-by a {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}
.powered-by img {
  width: 150px;
  max-width: 42vw;
  height: auto;
}

/* Actual software screenshot preview */
.screenshot-frame {
  position: relative;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff, #eef5f1);
}
.screenshot-frame img {
  width: 100%;
  aspect-ratio: 3422 / 1914;
  object-fit: cover;
  object-position: top left;
  border: 1px solid #d9e5e0;
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .12);
}
.screenshot-frame figcaption {
  margin: 10px 4px 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .screenshot-frame { max-width: none; }
}

/* Wider real-product proof section */
#platform.split-section {
  width: min(1320px, calc(100% - 36px));
  grid-template-columns: minmax(300px, .68fr) minmax(620px, 1.32fr);
  gap: 36px;
}
.screenshot-frame img {
  object-fit: contain;
  object-position: center;
  background: #eef2ef;
}
@media (max-width: 1100px) {
  #platform.split-section { grid-template-columns: 1fr; }
}

/* Dashboard screenshot lightbox */
.screenshot-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.screenshot-trigger span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(8, 26, 20, .84);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.image-lightbox[hidden] { display: none; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, .78);
  cursor: zoom-out;
}
.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}
.lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
}
.lightbox-close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px auto;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .16);
}
body.lightbox-open { overflow: hidden; }
@media (max-width: 640px) {
  .image-lightbox { padding: 12px; }
  .lightbox-panel { width: 100%; max-height: 90vh; border-radius: 8px; }
  .screenshot-trigger span { right: 10px; bottom: 10px; }
}

/* Footer JunkPros badge logo */
.footer-logo-badge {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}
@media (max-width: 640px) {
  .footer-logo-badge { width: 68px; height: 68px; }
}

/* Header JunkPros badge logo */
.brand-logo-badge {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .14);
}
@media (max-width: 640px) {
  .brand-logo-badge { width: 42px; height: 42px; }
}
