.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2rem var(--size);
  margin: 0 auto;
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f0ff 50%, #f5f5f5 100%);
}

@media (min-width: 641px) {
  body ol.breadcrumb {
    margin-block-start: 0;
  }
}

.pdf-mockup {
  position: relative;
  width: 225px;
  height: 260px;
  flex-shrink: 0;
  cursor: default;
}

.pdf-page {
  position: absolute;
  width: 180px;
  height: 220px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 1.25rem;
  transition: transform 0.4s ease;
}

.pdf-page:nth-child(1) {
  transform: rotate(-6deg) translateX(-15px);
  z-index: 1;
  background: #f8f9fa;
}

.pdf-page:nth-child(2) {
  transform: rotate(-3deg) translateX(-8px);
  z-index: 2;
  background: #fcfcfc;
}

.pdf-page:nth-child(3) {
  transform: rotate(0deg);
  z-index: 3;
}

.pdf-mockup:hover .pdf-page:nth-child(1) {
  transform: rotate(-12deg) translateX(-25px);
}

.pdf-mockup:hover .pdf-page:nth-child(2) {
  transform: rotate(-6deg) translateX(-15px);
}

.pdf-title {
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 3px;
}

.pdf-address {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: var(--size);
}

.pdf-section {
  margin-bottom: var(--size-sm);
}

.pdf-section-title {
  font-size: 8px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdf-line {
  height: 5px;
  background: var(--color-grey-dark);
  border-radius: 3px;
  margin-bottom: 4px;
}

.pdf-line.short {
  width: 55%;
}

.pdf-line.medium {
  width: 75%;
}

.pdf-line.long {
  width: 100%;
}

.pdf-signal {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  margin-right: 4px;
  margin-bottom: 4px;
}

.signal-green {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}

.signal-yellow {
  background: #fef3c7;
  color: #92400e;
}

.pdf-value {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding: 5px 0;
  border-bottom: 1px solid var(--color-grey);
}

.pdf-value-label {
  color: var(--color-text-muted);
}

.pdf-value-amount {
  font-weight: var(--font-weight-bold);
}

.pdf-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--color-primary);
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: var(--font-weight-bold);
}

/* Hero Content */
.hero-content {
  max-width: 42rem;
}

.hero-content h1 {
  font-size: var(--font-xlarge);
  font-weight: var(--font-weight-heavy);
  line-height: 1.2;
  margin-bottom: var(--size);
  padding-inline: 0;
}

.hero-content p {
  color: var(--color-text);
  margin-bottom: var(--size-sm);
}

.hero-meta {
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.search-box {
  display: flex;
  gap: var(--size-sm);
  margin-bottom: var(--size);
}

#addressselect {
  font-size: var(--font-base);
}

#addressselect,
.search-box input {
  flex: 1;
  border: 2px solid #E2E8F0;
  padding-block: var(--size);
  height: auto;
  border-radius: var(--radius);
}

.search-box.addressauto-container {
  min-height: 3.75rem;
}

.search-box .radar-autocomplete-search-icon {
  top: 1.5rem;
}

.search-box button {
  padding: var(--size-sm) 1.5rem;
  font-family: inherit;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;

}

.social-proof {
  color: var(--color-text);
}

.social-proof span {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.sample-link a {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-links {
    justify-content: center;
  }


}

@media (max-width: 640px) {

  .header-nav a:not(.btn) {
    display: none;
  }

  .hero {
    padding: 2rem var(--size) 0;
    flex-direction: column-reverse;
  }

  .hero-content h1 {
    font-size: var(--font-xlarge-mobile);
    padding-inline: 0;
  }

  .pdf-mockup {
    display: none;
  }
  .hero-links {
    flex-direction: column;
    gap: var(--size-sm);
    margin-block: var(--size) 0;
  }

  .search-box {
    flex-direction: column;
  }

  ol.box-breadcrumbs {
    margin-bottom: 0;
  }
}