/* Special Offer landing styles */

.so-landing {
  padding: 60px 15px 100px;
  text-align: center;
}

.so-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.so-title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4a3f38;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.so-sub {
  font-size: 16px;
  color: #7a6f68;
  margin: 0 0 34px;
}

.so-form {
  max-width: 520px;
  margin: 0 auto;
}

.so-field {
  display: block;
  margin-bottom: 16px;
}

.so-input {
  width: 100%;
  padding: 14px 2px;
  border: none;
  border-bottom: 2px solid #e0ddd9;
  outline: none;
  font-size: 16px;
  color: #3c3c3c;
  background: transparent;
}

.so-input:focus {
  border-bottom-color: #c9b9a1;
}

.so-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 26px;
  cursor: pointer;
  user-select: none;
}

.so-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.so-box {
  width: 20px;
  height: 20px;
  border: 2px solid #bfb7b1;
  display: inline-block;
  border-radius: 2px;
  position: relative;
}

.so-check input[type="checkbox"]:checked + .so-box::after {
  content: '';
  position: absolute;
  left: 4px; top: 0px;
  width: 6px; height: 12px;
  border: solid #b79052;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.so-check-text { color: #6d645e; font-size: 14px; }
.so-check-text a { color: #6d645e; text-decoration: underline; }
.so-check-text a:hover { color: #4a3f38; }

.so-btn {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: #e7c07a;
  color: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.so-btn:hover { filter: brightness(0.98); }

.so-msg { margin-top: 16px; font-size: 14px; }
.so-msg--ok { color: #2e7d32; }
.so-msg--error { color: #c62828; }

@media (max-width: 767px) {
  .so-title { font-size: 28px; }
}

