.price-page-main {
  background: #ffffff;
  color: #18181b;
  min-height: 100vh;
  padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.price-hero {
  max-width: 56rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.price-hero h1 {
  margin: 0 0 1.5rem;
  color: #18181b;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.price-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: #71717a;
  font-size: 0.95rem;
  line-height: 1.9;
}

.price-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem 8rem;
}

.price-section + .price-section {
  margin-top: 6rem;
}

.price-section-header {
  border-bottom: 1px solid #18181b;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.price-section-header h2 {
  margin: 0;
  color: #18181b;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.price-items {
  display: flex;
  flex-direction: column;
}

.price-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  border-bottom: 1px solid #f4f4f5;
  margin: 0 -1.5rem;
  padding: 2rem 1.5rem;
  transition: background-color 0.3s ease;
}

.price-item:hover {
  background: #fafafa;
}

.price-item-body {
  flex: 1 1 auto;
  max-width: 38rem;
}

.price-item-body h3 {
  margin: 0 0 0.6rem;
  color: #18181b;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.price-item-body p {
  margin: 0;
  color: #71717a;
  font-size: 0.88rem;
  line-height: 1.9;
}

.price-item-price {
  flex: 0 0 13rem;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  color: #18181b;
  line-height: 1;
  white-space: nowrap;
}

.price-currency {
  font-size: 1rem;
  font-weight: 300;
  margin-right: 0.12rem;
}

.price-number {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0;
}

.price-suffix {
  color: #a1a1aa;
  font-size: 0.88rem;
  margin-left: 0.35rem;
}

.price-contact {
  background: #fafafa;
  border-top: 1px solid #f4f4f5;
  padding: 6rem 1.5rem;
}

.price-contact-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.price-contact h2 {
  margin: 0 0 1rem;
  color: #18181b;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.price-contact p {
  margin: 0 0 2rem;
  color: #71717a;
  font-size: 0.95rem;
  line-height: 1.9;
}

.price-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  background: #18181b;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.price-contact a:hover {
  background: #27272a;
}

@media (max-width: 767px) {
  .price-page-main {
    padding-top: 4rem;
  }

  .price-hero {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }

  .price-content {
    padding-bottom: 6rem;
  }

  .price-section + .price-section {
    margin-top: 5rem;
  }

  .price-item {
    flex-direction: column;
    gap: 1rem;
  }

  .price-item-price {
    flex-basis: auto;
    justify-content: flex-start;
    width: 100%;
  }

  .price-contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
