﻿/* ============================================
   OFFER PAGE — redesigned v2
   ============================================ */

.offer-page {
  padding-top: 22px;
  padding-bottom: 90px;
}

/* ── Shell ── */
.offer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 1100px) {
  .offer-shell { padding: 0 24px; }
}

@media (max-width: 575px) {
  .offer-shell { padding: 0 16px; }
}



/* ── Page heading ── */
.offer-heading {
  padding: 28px 0 32px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 36px;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(232, 165, 15, 0.12);
  color: #c48c00;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.offer-heading h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: #111111;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.offer-heading p {
  font-size: 16px;
  color: #666666;
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

/* ── Two-col layout ── */
.offer-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}

/* ── Form card ── */
.offer-form-card {
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  overflow: hidden;
}

.offer-form-card-head {
  padding: 30px 34px 26px;
  border-bottom: 1px solid #ebebeb;
  background: #fafafa;
}

.offer-form-card-head h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

.offer-form-card-head p {
  font-size: 14px;
  color: #777777;
  margin: 0;
  line-height: 1.55;
}

.offer-form-body {
  padding: 30px 34px 34px;
}

/* ── Alerts ── */
.offer-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.offer-alert i { font-size: 17px; flex-shrink: 0; margin-top: 1px; }

.offer-alert.success {
  background: #edfbf3;
  color: #186a36;
  border: 1px solid #b7edcf;
}

.offer-alert.error {
  background: #fff0f0;
  color: #9b1c2b;
  border: 1px solid #fcc;
}

/* ── Hidden honeypot ── */
.offer-hp { display: none !important; }

/* ── Field grid ── */
.offer-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.offer-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.offer-field.wide { grid-column: 1 / -1; }

.offer-field label {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.offer-field input,
.offer-field textarea {
  width: 100%;
  height: 52px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.offer-field textarea {
  height: auto;
  min-height: 130px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.6;
}

.offer-field input:focus,
.offer-field textarea:focus {
  border-color: #111111;
}

.offer-field input::placeholder,
.offer-field textarea::placeholder {
  color: #aaaaaa;
}

/* ── Form footer ── */
.offer-form-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-form-note {
  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  max-width: 380px;
  margin: 0;
}

.offer-form-note i {
  color: #e8a50f;
  margin-right: 5px;
}

.offer-submit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  border: 0;
  border-radius: 10px;
  background: #e8a50f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.offer-submit-btn:hover {
  background: #cf9108;
  transform: translateY(-1px);
}

/* ── Sidebar ── */
.offer-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Product image card */
.offer-product-card {
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.offer-product-card img {
  width: 100%;
  display: block;
  height: auto;
}

.offer-product-body {
  padding: 20px 22px 22px;
}

.offer-product-kicker {
  font-size: 11.5px;
  font-weight: 700;
  color: #e8a50f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.offer-product-name {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  margin: 0 0 4px;
}

.offer-product-name small {
  font-size: 14px;
  font-weight: 500;
  color: #888888;
}

.offer-product-price {
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  margin: 10px 0 0;
}

/* Proof badge */
.offer-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  background: #fffbf2;
  font-size: 13.5px;
  color: #444444;
  line-height: 1.5;
}

.offer-proof i { color: #e8a50f; font-size: 20px; flex-shrink: 0; }
.offer-proof b { color: #111111; }

/* Trust list */
.offer-trust-list {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
}

.offer-trust-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333333;
  border-bottom: 1px solid #ebebeb;
}

.offer-trust-list span:last-child { border-bottom: 0; }
.offer-trust-list i { color: #e8a50f; font-size: 17px; }

/* Steps */
.offer-steps-card {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 20px 20px 22px;
}

.offer-steps-title {
  font-size: 13px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.offer-steps {
  display: grid;
  gap: 16px;
}

.offer-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.offer-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.offer-step p {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .offer-layout {
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .offer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-sidebar { position: static; }
}

@media (max-width: 575px) {
  .offer-form-card-head,
  .offer-form-body {
    padding: 22px 20px;
  }

  .offer-field-grid {
    grid-template-columns: 1fr;
  }

  .offer-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .offer-heading h1 { font-size: 28px; }
}
