:root {
  --green: #0b6b35;
  --green-dark: #063f22;
  --orange: #f28c28;
  --cream: #f7f4ea;
  --surface: #ffffff;
  --text: #0d1b2a;
  --muted: #5d6975;
  --border: rgba(6, 63, 34, 0.12);
  --shadow: 0 22px 55px rgba(13, 27, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 107, 53, 0.08), transparent 34%),
    var(--cream);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.request-hub-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 10px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
}

.request-hub-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 850;
}

.request-hub-topbar__brand img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.request-hub-topbar__back {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.request-hub-topbar__back:hover,
.request-hub-topbar__back:focus-visible {
  text-decoration: underline;
}

.request-hub {
  padding: 78px 22px 88px;
}

.request-hub__container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.request-hub__intro {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.request-hub__eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.request-hub__intro h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -3px;
}

.request-hub__intro > p:last-child {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.request-hub__notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 880px;
  margin: 0 auto 34px;
  padding: 17px 20px;
  border: 1px solid rgba(242, 140, 40, 0.35);
  border-radius: 18px;
  color: #653b12;
  background: #fff4e8;
}

.request-hub__notice-icon {
  margin-top: 2px;
  color: var(--orange);
  font-size: 20px;
}

.request-hub__notice p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.request-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.request-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.request-card--featured {
  border: 2px solid rgba(11, 107, 53, 0.5);
}

.request-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.request-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: var(--green);
  font-size: 22px;
}

.request-card__label {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-align: right;
  text-transform: uppercase;
}

.request-card h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.request-card__lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.request-card__features {
  display: grid;
  gap: 13px;
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.request-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #46514b;
  font-size: 14px;
  line-height: 1.5;
}

.request-card__features i {
  margin-top: 4px;
  color: var(--green);
  font-size: 12px;
}

.request-card__price {
  flex: 1;
  margin: 0 0 24px;
  color: #46514b;
  font-size: 15px;
  line-height: 1.6;
}

.request-card__price strong {
  color: var(--green-dark);
}

.request-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 15px;
  font-weight: 850;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.request-card__action:hover,
.request-card__action:focus-visible {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.request-hub__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 28px 32px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.request-hub__help h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.request-hub__help p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.request-hub__help a {
  flex: 0 0 auto;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-weight: 850;
}

.request-hub__help-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.request-hub__help-actions a:first-child {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.request-hub-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 22px;
  color: #fff;
  background: var(--green-dark);
  text-align: center;
}

.request-hub-footer a {
  font-weight: 800;
}

.request-hub-footer p {
  flex-basis: 100%;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

@media (max-width: 900px) {
  .request-hub__grid {
    grid-template-columns: 1fr;
  }

  .request-card--featured {
    order: -1;
  }
}

@media (max-width: 640px) {
  .request-hub-topbar {
    min-height: 66px;
    padding: 8px 16px;
  }

  .request-hub-topbar__brand span {
    max-width: 150px;
    line-height: 1.2;
  }

  .request-hub-topbar__back {
    text-align: right;
  }

  .request-hub {
    padding: 58px 16px 66px;
  }

  .request-hub__intro h1 {
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -2px;
  }

  .request-hub__notice {
    padding: 16px;
  }

  .request-card {
    padding: 22px 19px;
    border-radius: 23px;
  }

  .request-hub__help {
    align-items: stretch;
    flex-direction: column;
    padding: 25px 21px;
  }

  .request-hub__help a {
    text-align: center;
  }

  .request-hub__help-actions {
    display: grid;
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .request-card__action {
    transition: none;
  }
}
