.ju-page {
  --ju-ink: #10233e;
  --ju-ink-soft: #50627b;
  --ju-accent: #b9882f;
  --ju-accent-soft: #efe0bf;
  --ju-cream: #f7f3ec;
  --ju-surface: rgba(255, 255, 255, 0.94);
  --ju-border: rgba(16, 35, 62, 0.1);
  --ju-shadow: 0 28px 60px rgba(16, 35, 62, 0.08);
  --ju-shadow-soft: 0 14px 30px rgba(16, 35, 62, 0.06);
  background:
    radial-gradient(
      circle at top left,
      rgba(185, 136, 47, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #f9f6ef 0%, #f4efe6 100%);
  padding-bottom: 4rem;
}

.ju-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(120deg, rgba(16, 35, 62, 0.9), rgba(16, 35, 62, 0.58)),
    var(--ju-hero-image) center/cover no-repeat;
}

.ju-hero__grid,
.ju-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ju-hero__content,
.ju-hero__panel,
.ju-proof__intro,
.ju-proof-card,
.ju-value-card {
  min-width: 0;
}

.ju-hero__content {
  color: #fffdf8;
}

.ju-eyebrow,
.ju-section-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--ju-accent-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ju-eyebrow--soft {
  color: #9f7830;
}

.ju-hero h1,
.ju-proof h2,
.ju-section-head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

.ju-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.ju-hero__lead,
.ju-proof__intro p,
.ju-section-head p,
.ju-value-card p,
.ju-panel-note p {
  line-height: 1.75;
}

.ju-hero__lead {
  max-width: 56ch;
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.04rem;
}

.ju-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.ju-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.ju-btn:hover {
  transform: translateY(-2px);
}

.ju-btn--primary {
  background: linear-gradient(135deg, #d1a241, #b8832a);
  color: #fffdf8;
  box-shadow: 0 16px 32px rgba(185, 136, 47, 0.28);
}

.ju-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fffdf8;
}

.ju-btn--wide {
  min-width: min(100%, 360px);
}

.ju-hero__stats,
.ju-proof__cards,
.ju-values__grid {
  display: grid;
  gap: 1rem;
}

.ju-hero__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.ju-stat-card,
.ju-proof-card,
.ju-value-card,
.ju-hero__panel {
  border: 1px solid var(--ju-border);
  border-radius: 28px;
  box-shadow: var(--ju-shadow-soft);
}

.ju-stat-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ju-stat-card strong,
.ju-proof-card strong,
.ju-value-card h3,
.ju-panel-note strong {
  display: block;
}

.ju-stat-card strong {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.ju-stat-card span {
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ju-hero__panel {
  align-self: start;
  padding: 1.45rem;
  background: var(--ju-surface);
}

.ju-checklist {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ju-checklist li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ju-ink);
  line-height: 1.65;
}

.ju-checklist li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1a241, #b8832a);
}

.ju-panel-note {
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 22px;
  background: #f8f3e7;
}

.ju-proof,
.ju-values {
  padding-top: 3rem;
}

.ju-proof__intro,
.ju-section-head {
  max-width: 58ch;
}

.ju-proof__intro h2,
.ju-section-head h2 {
  color: var(--ju-ink);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.ju-proof__intro p,
.ju-section-head p {
  margin: 0.95rem 0 0;
  color: var(--ju-ink-soft);
}

.ju-proof__cards {
  align-content: start;
}

.ju-proof-card,
.ju-value-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
}

.ju-proof-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #9a742a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ju-proof-card strong,
.ju-value-card h3 {
  color: var(--ju-ink);
  font-size: 1.08rem;
  line-height: 1.45;
}

.ju-values__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.ju-value-card p {
  margin: 0.7rem 0 0;
  color: var(--ju-ink-soft);
}

.ju-final-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

@media (max-width: 991px) {
  .ju-hero__grid,
  .ju-proof__grid,
  .ju-values__grid {
    grid-template-columns: 1fr;
  }

  .ju-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ju-page {
    padding-bottom: 2.5rem;
  }

  .ju-hero {
    padding: 2.4rem 0 1.7rem;
  }

  .ju-hero h1 {
    max-width: none;
    font-size: 2.3rem;
    line-height: 1.04;
  }

  .ju-hero__lead,
  .ju-proof__intro p,
  .ju-section-head p,
  .ju-value-card p,
  .ju-panel-note p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .ju-hero__actions,
  .ju-final-cta {
    display: grid;
  }

  .ju-btn {
    width: 100%;
  }

  .ju-hero__panel,
  .ju-proof-card,
  .ju-value-card,
  .ju-stat-card {
    border-radius: 22px;
  }
}
