:root {
  --gift-orange: #ff6f00;
  --gift-orange-dark: #d95f00;
  --gift-ink: #101828;
  --gift-muted: #667085;
  --gift-line: rgba(16, 24, 40, 0.1);
  --gift-soft: #fff7ed;
  --gift-card: #ffffff;
  --gift-shadow: 0 20px 55px rgba(16, 24, 40, 0.12);
}

.gift-body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gift-ink);
  background: #f7f8fb;
}

.gift-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gift-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 54px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 111, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 42%, #eef4ff 100%);
}

.gift-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 34px;
  align-items: center;
}

.gift-pill,
.gift-section-head span,
.gift-form-head span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 111, 0, 0.12);
  color: var(--gift-orange-dark);
  font-weight: 900;
  padding: 8px 13px;
  font-size: 13px;
}

.gift-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.97;
  letter-spacing: -0.06em;
  max-width: 820px;
}

.gift-hero p {
  color: var(--gift-muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 690px;
}

.gift-hero-actions,
.gift-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.gift-primary,
.gift-secondary,
.gift-info-panel > a,
.gift-submit {
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.gift-primary,
.gift-submit {
  color: #fff;
  background: var(--gift-orange);
  box-shadow: 0 14px 26px rgba(255, 111, 0, 0.26);
}

.gift-secondary,
.gift-info-panel > a {
  color: var(--gift-ink);
  background: #fff;
  border: 1px solid var(--gift-line);
}

.gift-trust-row span {
  border: 1px solid var(--gift-line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--gift-muted);
  font-weight: 800;
}

.gift-preview-card {
  background: linear-gradient(145deg, #0f172a, #182540 55%, #ff6f00 150%);
  color: #fff;
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--gift-shadow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gift-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.gift-preview-top img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
}

.gift-preview-top span,
.gift-preview-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.gift-preview-card strong {
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.gift-preview-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.gift-preview-amount {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.gift-section {
  padding: 58px 0 18px;
}

.gift-section-head {
  margin-bottom: 20px;
}

.gift-section-head h2,
.gift-form-head h2,
.gift-info-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.gift-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gift-steps article,
.gift-form,
.gift-info-panel {
  background: #fff;
  border: 1px solid var(--gift-line);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.07);
}

.gift-steps article {
  padding: 22px;
}

.gift-steps article span {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: var(--gift-orange);
  color: #fff;
  font-weight: 900;
}

.gift-steps h3 {
  margin: 18px 0 8px;
}

.gift-steps p,
.gift-form-head p,
.gift-info-list span {
  color: var(--gift-muted);
  line-height: 1.65;
}

.gift-layout {
  padding: 38px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.gift-form,
.gift-info-panel {
  padding: 24px;
}

.gift-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.gift-amounts button {
  border: 1px solid var(--gift-line);
  background: #fff;
  border-radius: 6px;
  padding: 13px;
  font-weight: 900;
  cursor: pointer;
}

.gift-amounts button.active {
  background: var(--gift-orange);
  color: #fff;
  border-color: var(--gift-orange);
}

.gift-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gift-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #344054;
  font-weight: 900;
}

.gift-form input,
.gift-form select,
.gift-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--gift-line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--gift-ink);
  background: #fff;
  outline: none;
}

.gift-form input:focus,
.gift-form select:focus,
.gift-form textarea:focus {
  border-color: rgba(255, 111, 0, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.1);
}

.gift-submit {
  width: 100%;
  margin-top: 6px;
}

.gift-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gift-muted);
  font-weight: 800;
}

.gift-status.good { color: #087443; }
.gift-status.bad { color: #b42318; }

.gift-info-list {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.gift-info-list article {
  border: 1px solid var(--gift-line);
  border-radius: 6px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.gift-info-list strong {
  font-size: 15px;
}

.gift-footer {
  background: #101828;
  color: #fff;
  padding: 38px 0;
}

.gift-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 22px;
}

.gift-footer img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
}

.gift-footer a,
.gift-footer p {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: block;
  margin: 8px 0;
}

@media (max-width: 980px) {
  .gift-hero-grid,
  .gift-layout,
  .gift-footer-grid {
    grid-template-columns: 1fr;
  }

  .gift-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .gift-hero {
    padding: 46px 0 34px;
  }

  .gift-grid-two,
  .gift-amounts {
    grid-template-columns: 1fr;
  }
}
