body { 
    font-family: 'Poppins', sans-serif; 
    font-weight: 300; 
    background: var(--bg); 
    color: #1a1a1a; 
    padding: 0 0 60px; 
}

.hero { 
    padding: 0px 40px 40px; 
    border-bottom: 1px solid #ebebeb; 
    text-align: center;
    width: 750px;
    max-width: 90vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

.hero h2 { 
    font-size: 28px; 
    font-weight: 400; 
    margin-bottom: 12px;
}

.hero p { 
    font-size: 15px; 
    color: #666; 
    line-height: 1.7; 
    margin-bottom: 20px; 
}

.benefits { 
    justify-content: center;
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
}

.benefit { 
    font-size: 12px; 
    color: #555; 
    background: white; 
    border-radius: 100px; 
    padding: 5px 14px; 
    border: 1px solid #ebebeb;
}

  .sec-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #aaa; padding: 32px 40px 16px; text-align: center; }

  .models { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; }
  @media(orientation: portrait) {
    .models { grid-template-columns: 1fr; }
    .model { border-right: none !important; border-bottom: 1px solid #ebebeb; }
    .hero, .form-wrap, .sec-label { padding-left: 20px; padding-right: 20px; }
  }
  .model { padding: 24px; border-right: 1px solid #ebebeb; cursor: pointer; transition: background 0.15s; }
  .model:last-child { border-right: none; }
  .model:hover { background: #faf5f0 }
  .model.selected { background: #faf5f0; outline: 1px solid #FF7400; outline-offset: -1px; }
  .model-logo { height: 22px; width: auto; display: block; margin-bottom: 12px; object-fit: contain; }
  .model img.preview { width: 100%; border-radius: 4px; margin: 12px 0; display: block; }
  .model-desc { font-size: 13px; color: #555; margin-bottom: 4px; }
  .model-size { font-size: 11px; color: #aaa; margin-bottom: 10px; }
  .model-price { font-size: 14px; font-weight: 500; color: #FF7400; }
  .check { display: none; float: right; width: 18px; height: 18px; background: #FF7400; border-radius: 50%; color: #fff; font-size: 10px; text-align: center; line-height: 18px; }
  .model.selected .check { display: inline-block; }

  .form-wrap { padding: 0 40px; }
  .form-inner { border: 1px solid #ebebeb; border-radius: 8px; overflow: hidden; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; }
  @media(orientation: portrait) {
    .form-grid { grid-template-columns: 1fr; }
    .field:nth-child(odd) { border-right: none; }
  }
  .field { padding: 16px 20px; border-bottom: 1px solid #ebebeb; border-right: 1px solid #ebebeb; }
  .field:nth-child(even) { border-right: none; }
  .field.full { grid-column: 1/-1; border-right: none; }
  .field label { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #aaa; margin-bottom: 6px; }
  .field label span { color: #FF7400; }
  .field input, .field select, .field textarea {
    width: 100%; background: transparent; border: none; outline: none;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; color: #1a1a1a;
  }
  .field input::placeholder, .field textarea::placeholder { color: #ccc; }
  .field select option { background: #fff; }
  .field textarea { resize: none; min-height: 68px; }

  .file-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #aaa; cursor: pointer; border: 1px dashed #ddd; border-radius: 4px; padding: 7px 14px; transition: border-color 0.15s, color 0.15s; }
  .file-label:hover { border-color: #FF7400; color: #FF7400; }
  #fileInput { display: none; }
  #fileName { font-size: 12px; color: #FF7400; margin-top: 6px; }

  .form-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 16px 20px; border-top: 1px solid #ebebeb; }
  .form-note { font-size: 12px; color: #aaa; }
  .btn { background: #FF7400; color: #fff; border: none; border-radius: 4px; padding: 10px 30px; font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 400; cursor: pointer; transition: opacity 0.15s; }
  .btn:hover { opacity: 0.85; }

  .success { display: none; text-align: center; padding: 48px 20px; }
  .success.on { display: block; }
  .success h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
  .success p { font-size: 14px; color: #888; }
  .success .tick { font-size: 32px; color: #FF7400; margin-bottom: 16px; }

  .qa-link { text-align: center; margin-top: 20px; font-size: 15px; color: #aaa; }
  .qa-link a { color: #FF7400; text-decoration: none; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.consent-check {
  appearance: none;
  -webkit-appearance: none;

  width: 20px;
  height: 20px;
  min-width: 20px;

  border: 2px solid var(--accent);
  border-radius: 50%;
  background: transparent;

  cursor: pointer;
  position: relative;
  margin-top: 2px;

  transition: all 0.2s ease;
}

/* Checked state */
.consent-check:checked {
  background: var(--accent);
}

/* White checkmark */
.consent-check:checked::after {
  content: "";
  position: absolute;

  left: 6px;
  top: 2px;

  width: 4px;
  height: 8px;

  border: solid white;
  border-width: 0 2px 2px 0;

  transform: rotate(45deg);
}


.hidden {
  display:none;
}

.field:hover select {
    color: var(--accent);
}

.field:focus-within {
    background: rgba(255,116,0,.04);
}

.field:focus-within label {
    color: var(--accent);
}
