.offers-page-hero {
  padding: 48px 0 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #137d7f 0%, #0b5f61 100%);
}

.offers-page-hero .section-kicker {
  color: #dff3e4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offers-page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1;
}

.offers-page-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.registration-page {
  background: linear-gradient(145deg, #f4f8ff 0%, #ffffff 55%, #e5f5ea 100%);
}

.registration-back {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.registration-main {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 46px 0 58px;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.section-kicker,
.registration-card__head > span {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.registration-copy h1 {
  max-width: 620px;
  margin: 12px 0 15px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.registration-copy > p {
  max-width: 580px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.registration-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.registration-summary div {
  min-width: 145px;
  padding: 14px 17px;
  background: #ffffff;
  border: 1px solid rgba(19, 125, 127, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.registration-summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.registration-summary strong {
  color: var(--primary-dark);
  font-size: 19px;
}

.registration-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.registration-points li::before {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #67c47a, #45bc6d);
  border-radius: 50%;
  content: "✓";
  font-weight: 800;
}

.registration-card {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(19, 125, 127, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.registration-card__head {
  margin-bottom: 21px;
}

.registration-card__head h2 {
  margin: 7px 0;
  font-size: clamp(25px, 3vw, 32px);
}

.registration-card__head p,
.lead-field small,
.lead-form__note {
  color: var(--text-soft);
}

.registration-card__head p,
.lead-form__note {
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-field {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.lead-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(25, 59, 120, 0.2);
  border-radius: 13px;
  font: inherit;
}

.lead-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(19, 125, 127, 0.12);
}

.lead-field small,
.lead-form__note {
  font-size: 12px;
  font-weight: 400;
}

.lead-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.lead-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.lead-consent a {
  color: var(--primary-dark);
  font-weight: 700;
}

.lead-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.turnstile-panel {
  display: grid;
  gap: 7px;
  padding: 11px;
  background: #f7fbff;
  border: 1px solid rgba(25, 59, 120, 0.16);
  border-radius: 13px;
}

.turnstile-panel > span {
  font-size: 13px;
  font-weight: 700;
}

.turnstile-panel .cf-turnstile {
  width: 100%;
  min-height: 65px;
}

.turnstile-panel iframe {
  max-width: 100%;
}

.lead-form__submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.lead-form__note {
  text-align: center;
  line-height: 1.45;
}

.form-alert {
  margin-bottom: 16px;
  padding: 13px 15px;
  color: #9b2d25;
  background: #fff0ee;
  border-radius: 12px;
}

@media (max-width: 850px) {
  .registration-main {
    min-height: auto;
    align-items: start;
    padding: 12px 0 24px;
  }

  .registration-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .registration-copy {
    display: none;
  }

  .registration-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .registration-card__head {
    margin-bottom: 13px;
  }

  .registration-card__head > span,
  .registration-card__head p,
  .lead-field small,
  .lead-form__note {
    display: none;
  }

  .registration-card__head h2 {
    margin: 0;
    font-size: 22px;
  }

  .lead-form {
    gap: 12px;
  }

  .lead-field input {
    min-height: 49px;
  }

  .turnstile-panel {
    padding: 9px;
  }

  .lead-form__submit {
    min-height: 51px;
  }
}

/* Lime refresh for registration and offers pages */
.offers-page-hero {
  padding: 28px 0 12px;
  color: var(--text);
  background: transparent;
}

.offers-page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 96, 42, 0.16);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(32, 86, 42, 0.12);
}

.offers-page-hero .section-kicker {
  color: #13733a;
}

.offers-page-hero h1 {
  max-width: 780px;
  margin: 9px 0 10px;
  color: #153b22;
  font-size: clamp(2.1rem, 4.6vw, 3.55rem);
  line-height: 0.98;
}

.offers-page-hero p {
  max-width: 760px;
  color: #42604a;
}

.money-decoration--offers {
  width: 118px;
  transform: rotate(7deg);
  filter: drop-shadow(0 14px 16px rgba(58, 99, 31, 0.18));
}

.registration-page {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.55), transparent 18%),
    radial-gradient(circle at 90% 80%, rgba(255, 228, 84, 0.4), transparent 18%),
    linear-gradient(135deg, #dfff46 0%, #c7f832 48%, #e8ff7c 100%);
}

.registration-main {
  padding: 32px 0 48px;
}

.registration-layout {
  gap: clamp(30px, 6vw, 72px);
}

.registration-copy {
  position: relative;
}

.registration-copy h1 {
  max-width: 590px;
  color: #143c22;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
}

.registration-copy > p {
  max-width: 560px;
  color: #36563e;
}

.money-decoration--registration {
  position: absolute;
  top: -14px;
  right: -8px;
  width: 112px;
  transform: rotate(8deg);
  filter: drop-shadow(0 14px 16px rgba(58, 99, 31, 0.18));
}

.registration-summary div {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(19, 108, 53, 0.18);
}

.registration-points li::before {
  background: linear-gradient(135deg, #1f9650, #116b35);
}

.registration-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(19, 108, 53, 0.18);
  box-shadow: 0 22px 58px rgba(32, 86, 42, 0.16);
}

.lead-field input {
  border-color: rgba(19, 108, 53, 0.22);
  background: #fbfff4;
}

.lead-field input:focus {
  border-color: #168341;
  box-shadow: 0 0 0 4px rgba(24, 145, 68, 0.12);
}

.turnstile-panel {
  background: #f5ffda;
  border-color: rgba(19, 108, 53, 0.18);
}

@media (max-width: 850px) {
  .offers-page-hero {
    padding: 18px 0 8px;
  }

  .offers-page-hero .container {
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 10px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .money-decoration--offers {
    width: 72px;
  }

  .registration-main {
    padding-top: 12px;
  }

  .money-decoration--registration {
    display: none;
  }
}
