* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, .18), transparent 35%),
    linear-gradient(135deg, #050505 0%, #111 45%, #1a1a1a 100%);
  font-family: Arial, Helvetica, sans-serif;
  color: #f5f1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 18px;
}

.form-wrapper {
  width: 100%;
  max-width: 1050px;
  background: rgba(15, 15, 15, .94);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.hero {
  padding: 50px 44px 34px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, .16), rgba(255, 255, 255, .03)),
    #0d0d0d;
  border-bottom: 1px solid rgba(212, 175, 55, .25);
}

.eyebrow {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 16px;
}

.title-line {
  display: inline;
}

.hero p {
  color: #d8d2c6;
  line-height: 1.6;
  max-width: 760px;
}

.package-overview {
  padding: 32px 44px 0;
}

.overview-card {
  background: linear-gradient(145deg, rgba(212, 175, 55, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: 24px;
  padding: 28px;
}

.overview-top {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 24px;
  margin-bottom: 24px;
}

.overview-card h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.intro {
  color: #d8d2c6;
  line-height: 1.7;
}

.investment-box {
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 20px;
  padding: 22px;
}

.label {
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 8px;
}

.investment-box p {
  color: #d8d2c6;
  line-height: 1.5;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deliverable {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 18px;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, .25);
  background: rgba(212, 175, 55, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon-wrap img {
  width: 24px;
  height: 24px;
  display: block;
}

.deliverable strong {
  display: block;
  margin-bottom: 8px;
}

.deliverable span {
  color: #d8d2c6;
  line-height: 1.5;
  font-size: 14px;
}

.timeline-stepper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: start;
  gap: 0;
  padding: 24px;
  border-radius: 22px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(212, 175, 55, .2);
}

.timeline-step {
  text-align: center;
}

.step-circle {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f1d77a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(212, 175, 55, .18);
}

.step-circle img {
  width: 24px;
  height: 24px;
  display: block;
}

.timeline-line {
  height: 2px;
  background: rgba(212, 175, 55, .45);
  margin-top: 26px;
}

.step-content strong {
  display: block;
  color: #f5f1e8;
  margin-bottom: 7px;
  font-size: 15px;
}

.step-content span {
  color: #cfc7b8;
  line-height: 1.45;
  font-size: 13px;
}

form {
  padding: 38px 44px 44px;
}

.intake-heading {
  margin-bottom: 24px;
}

.intake-heading h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.intake-heading p {
  color: #d8d2c6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, .24);
  background: rgba(255, 255, 255, .055);
  color: #fff;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.file-note {
  color: #bfb7a8;
  font-size: 12px;
  line-height: 1.45;
}

.checkbox-box {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, .25);
  background: rgba(212, 175, 55, .075);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}

.checkbox-box input {
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 3px;
  accent-color: #d4af37;
}

.checkbox-box label {
  width: 100%;
  flex: 1;
  line-height: 1.45;
  font-size: 14px;
}

.submit-row {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

button {
  border: none;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f1d77a);
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.helper {
  color: #bfb7a8;
  max-width: 520px;
  line-height: 1.5;
  font-size: 13px;
}

.success-message,
.error-message {
  display: none;
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  line-height: 1.5;
}

.success-message {
  background: rgba(68, 180, 112, .14);
  border: 1px solid rgba(68, 180, 112, .35);
  color: #dcffe9;
}

.error-message {
  background: rgba(255, 75, 75, .12);
  border: 1px solid rgba(255, 75, 75, .35);
  color: #ffd8d8;
}



/* Desktop 2 lines Home Remodeling Visibility System */

@media (min-width: 731px) {
  .overview-card h2 {
    max-width: 500px;
    line-height: 1.4;
    font-size: 40px;
    color: #d4af38;
  }
}

/* PHONE ONLY */
@media (max-width: 730px) {
  body {
    padding: 18px 14px;
    align-items: flex-start;
  }

  .form-wrapper {
    border-radius: 22px;
  }

  .hero {
    padding: 40px 24px 30px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.05;
  }

  .title-line {
    display: block;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .package-overview {
    padding: 24px 14px 0;
  }

  .overview-card {
    padding: 22px;
    border-radius: 22px;
  }

  .overview-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overview-card h2 {
    max-width: 500px;
    line-height: 1.4;
    font-size: 30px;
    color: #d4af38;
  }

  .price {
    font-size: clamp(42px, 13vw, 60px);
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .timeline-stepper {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .timeline-step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
  }

  .step-circle {
    margin: 0;
  }

  .timeline-line {
    width: 2px;
    height: 24px;
    margin: 0 0 0 25px;
  }

  form {
    padding: 34px 24px 34px;
  }

  .intake-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  input,
  textarea {
    padding: 16px 15px;
    min-height: 56px;
  }

  textarea {
    min-height: 150px;
  }

  .checkbox-box {
    padding: 12px 14px;
    gap: 9px;
    align-items: flex-start;
  }

  .checkbox-box input {
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin-top: 4px;
  }

  .checkbox-box label {
    font-size: 13px;
    line-height: 1.4;
    width: 100%;
  }

  .submit-row {
    align-items: flex-start;
  }

  button {
    width: auto;
    max-width: 100%;
  }
}
