:root {
  --jdp-accent: #4CAF50;
  --jdp-accent-dark: #3f9a46;
  --jdp-accent-light: #79d27f;
  --jdp-navy: #0f1729;
  --jdp-navy-mid: #121a30;
  --jdp-navy-card: #151d35;
  --jdp-navy-deep: #0a0e1a;
  --jdp-text-1: #f1f5f9;
  --jdp-text-2: #cbd5e1;
  --jdp-text-3: #64748b;
  --jdp-border: rgba(255, 255, 255, 0.08);
  --jdp-radius: 12px;
}

.jdp-page {
  font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--jdp-navy);
  color: var(--jdp-text-1);
}

.jdp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .jdp-wrap {
    padding: 0 2rem;
  }
}

.jdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.jdp-btn-primary {
  background: linear-gradient(135deg, var(--jdp-accent), var(--jdp-accent-dark));
  color: #fff;
  border: 1px solid var(--jdp-accent-dark);
}

.jdp-btn-primary:hover {
  background: var(--jdp-accent-dark);
}

.jdp-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jdp-hero-btns .jdp-btn,
.jdp-hero-btns .jdp-btn i {
  color: #fff;
}

.jdp-hero-btns .jdp-btn {
  font-weight: 500;
}

.jdp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.jdp-btn-lg {
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
}

.jdp-hero {
  position: relative;
  padding: 7.75rem 0 4.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .jdp-hero {
    padding: 9rem 0 5.75rem;
  }
}

.jdp-hero-photo,
.jdp-hero-ov1,
.jdp-hero-ov2 {
  position: absolute;
  inset: 0;
}

.jdp-hero-photo {
  background-image: url('/static/janitorial-cart.png');
  background-size: cover;
  background-position: center;
}

.jdp-hero-ov1 {
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(15, 23, 41, 0.9) 60%, rgba(15, 23, 41, 0.86) 100%);
}

.jdp-hero-ov2 {
  background: radial-gradient(ellipse at 65% 40%, rgba(76, 175, 80, 0.14) 0%, transparent 60%);
}

.jdp-hero-body {
  position: relative;
  z-index: 10;
}

.jdp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--jdp-text-2);
  margin-bottom: 2rem;
  text-decoration: none;
}

.jdp-back-link:hover {
  color: var(--jdp-accent-light);
}

.jdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.24);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--jdp-accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.jdp-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jdp-accent);
  animation: jdp-pulse-dot 2s infinite;
}

@keyframes jdp-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.jdp-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.jdp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--jdp-text-2);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.jdp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.jdp-stats-bar {
  background: var(--jdp-navy-mid);
  border-top: 1px solid var(--jdp-border);
  border-bottom: 1px solid var(--jdp-border);
  padding: 1.6rem 0;
}

.jdp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .jdp-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jdp-stat-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--jdp-accent-light);
}

.jdp-stat-lbl {
  font-size: 0.78rem;
  color: var(--jdp-text-2);
  margin-top: 0.15rem;
  line-height: 1.35;
}

.jdp-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .jdp-section {
    padding: 7rem 0;
  }
}

.jdp-bg-light {
  background: #f8fafc;
  color: #111827;
}

.jdp-bg-deep {
  background: var(--jdp-navy-deep);
}

.jdp-text-center {
  text-align: center;
}

.jdp-section-head {
  margin-bottom: 3.5rem;
}

.jdp-sec-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--jdp-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.jdp-bg-light .jdp-sec-tag,
.jdp-bg-light h2,
.jdp-bg-light .jdp-sec-desc {
  text-align: left;
}

.jdp-section h2,
.jdp-cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.jdp-bg-light h2 {
  color: #0f172a;
}

.jdp-bg-deep h2,
.jdp-cta-banner h2 {
  color: var(--jdp-text-1);
}

.jdp-sec-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 3rem;
}

.jdp-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .jdp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jdp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jdp-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--jdp-radius);
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.jdp-card:hover {
  border-color: rgba(76, 175, 80, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.jdp-card-hd {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.jdp-chk {
  width: 20px;
  height: 20px;
  color: var(--jdp-accent);
  margin-top: 2px;
}

.jdp-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.jdp-card-body {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
  padding-left: 1.9rem;
}

.jdp-process-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jdp-process-vline {
  display: none;
  position: absolute;
  left: 2.25rem;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: var(--jdp-border);
}

@media (min-width: 1024px) {
  .jdp-process-vline {
    display: block;
  }
}

.jdp-p-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.jdp-step-box {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--jdp-radius);
  background: var(--jdp-navy-card);
  border: 1px solid rgba(76, 175, 80, 0.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.jdp-step-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(121, 210, 127, 0.7);
  letter-spacing: 0.1em;
}

.jdp-step-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--jdp-accent-light);
  line-height: 1;
}

.jdp-p-card {
  flex: 1;
  background: rgba(21, 29, 53, 0.7);
  border: 1px solid var(--jdp-border);
  border-radius: var(--jdp-radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.jdp-p-card:hover {
  border-color: rgba(76, 175, 80, 0.18);
}

.jdp-p-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--jdp-text-1);
  margin-bottom: 0.375rem;
}

.jdp-p-detail {
  font-size: 0.875rem;
  color: var(--jdp-text-2);
  line-height: 1.75;
}

.jdp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 768px;
  margin: 0 auto;
}

.jdp-faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--jdp-radius);
  padding: 1.75rem;
}

.jdp-faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.625rem;
}

.jdp-faq-a {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.8;
}

.jdp-cta-banner {
  background: var(--jdp-navy-mid);
  border-top: 1px solid var(--jdp-border);
  padding: 5rem 0;
  text-align: center;
}

.jdp-cta-accent {
  color: var(--jdp-accent-light);
}

.jdp-cta-sub {
  font-size: 1.1rem;
  color: var(--jdp-text-2);
  max-width: 520px;
  margin: 1rem auto 2rem;
}

.jdp-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.jdp-grid-other {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .jdp-grid-other {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jdp-grid-other {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jdp-other-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--jdp-radius);
  padding: 1.25rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.jdp-other-card:hover {
  border-color: rgba(76, 175, 80, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.jdp-other-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.jdp-svc-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jdp-svc-icon {
  font-size: 1rem;
  color: var(--jdp-accent);
}

.jdp-other-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.jdp-other-tag {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.jdp-chevron {
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.2s;
  flex-shrink: 0;
}

.jdp-other-card:hover .jdp-chevron {
  color: var(--jdp-accent);
}

@media (max-width: 640px) {
  .jdp-hero {
    padding: 6.35rem 0 3.5rem;
  }

  .jdp-hero-btns,
  .jdp-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .jdp-p-item {
    gap: 1rem;
  }

  .jdp-step-box {
    width: 4rem;
    height: 4rem;
  }
}
