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

  :root {
    --navy:    #1B2A3E;
    --deep:    #131F2E;
    --frost:   #C8D8EC;
    --mist:    #8BA4BF;
    --gold:    #C49A5A;
    --white:   #F0F4F8;
    --green:   #7ABFA0;
    --page-bg: #F4F6F9;
    --card-bg: #FFFFFF;
    --border:  #DDE3EC;
    --label:   #4A5C72;
    --input-bg:#F8FAFC;
    --focus:   #1B2A3E;
    --error:   #C0533A;
    --success: #3A8A6A;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--page-bg);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    min-height: 100vh;
  }

  /* NAV */
  nav {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--deep);
    border-bottom: 1px solid rgba(200,216,236,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--frost);
    text-decoration: none;
  }
  .logo em { font-style: italic; color: var(--gold); font-weight: 600; }

  .nav-back {
    font-size: 12px;
    color: var(--mist);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--frost); }

  /* LAYOUT */
  .page {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 20px 80px;
  }

  /* HEADER */
  .page-header {
    margin-bottom: 36px;
    animation: fadeUp 0.5s ease both;
  }

  .page-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .page-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(196,154,90,0.3), transparent);
  }

  .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 8vw, 44px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--navy);
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .page-header h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--deep);
  }

  .page-header p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--label);
    font-weight: 300;
  }

  /* PROGRESS */
  .progress {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
    animation: fadeUp 0.5s 0.05s ease both;
  }

  .progress-step {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    transition: background 0.3s;
  }

  .progress-step.active { background: var(--navy); }
  .progress-step.done { background: var(--green); }

  .progress-label {
    font-size: 11px;
    color: var(--mist);
    margin-bottom: 20px;
    font-weight: 400;
  }

  /* CARD */
  .card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 16px;
    animation: fadeUp 0.5s ease both;
    box-shadow: 0 1px 4px rgba(27,42,62,0.05);
  }

  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.15s; }
  .card:nth-child(3) { animation-delay: 0.2s; }
  .card:nth-child(4) { animation-delay: 0.25s; }
  .card:nth-child(5) { animation-delay: 0.3s; }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
  }

  .card-title em { font-style: italic; font-weight: 400; }

  .card-sub {
    font-size: 12px;
    color: var(--mist);
    margin-bottom: 22px;
    font-weight: 300;
    line-height: 1.5;
  }

  /* FORM ELEMENTS */
  .field {
    margin-bottom: 18px;
  }

  .field:last-child { margin-bottom: 0; }

  label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--label);
    margin-bottom: 7px;
  }

  .required::after {
    content: ' *';
    color: var(--error);
    font-size: 10px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
  }

  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,42,62,0.07);
    background: #fff;
  }

  input::placeholder,
  textarea::placeholder { color: rgba(139,164,191,0.5); font-weight: 300; }

  textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .field-hint {
    font-size: 11px;
    color: var(--mist);
    margin-top: 5px;
    font-weight: 300;
    line-height: 1.5;
  }

  /* TRADES */
  .trades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .trade-option {
    position: relative;
  }

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

  .trade-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s;
    font-size: 13px;
    font-weight: 400;
    color: var(--label);
    user-select: none;
  }

  .trade-label:hover {
    border-color: var(--navy);
    color: var(--navy);
  }

  .trade-option input:checked + .trade-label {
    background: rgba(27,42,62,0.05);
    border-color: var(--navy);
    color: var(--navy);
    font-weight: 500;
  }

  .trade-check {
    width: 16px; height: 16px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.18s;
    font-size: 9px;
    color: transparent;
  }

  .trade-option input:checked + .trade-label .trade-check {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
  }

  /* OTHER TRADE REVEAL */
  .other-reveal {
    display: none;
    margin-top: 12px;
    animation: fadeUp 0.3s ease both;
  }

  .other-reveal.visible { display: block; }

  /* RADIUS SELECTOR */
  .radius-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .radius-option {
    position: relative;
  }

  .radius-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }

  .radius-label {
    display: block;
    padding: 9px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    color: var(--label);
    transition: all 0.18s;
    white-space: nowrap;
  }

  .radius-label:hover { border-color: var(--navy); color: var(--navy); }

  .radius-option input:checked + .radius-label {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    font-weight: 500;
  }

  .zip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  /* VERIFICATION BADGE */
  .verify-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: rgba(27,42,62,0.03);
    border: 1px solid rgba(27,42,62,0.08);
    border-radius: 10px;
    margin-top: 14px;
  }

  .verify-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(122,191,160,0.12);
    border: 1px solid rgba(122,191,160,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: var(--green);
    flex-shrink: 0;
  }

  .verify-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--label);
    font-weight: 300;
  }

  .verify-text strong {
    color: var(--navy);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
  }

  .standards-panel {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 14px;
    padding: 16px;
  }

  .standards-panel strong {
    color: var(--navy);
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .standards-panel ul {
    display: grid;
    gap: 7px;
    list-style: disc;
    margin: 0 0 12px 18px;
  }

  .standards-panel li,
  .standards-panel p {
    color: var(--label);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.55;
  }

  .standards-panel p {
    margin: 0;
  }

  /* BACKGROUND CHECK NOTE */
  .coming-soon-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(196,154,90,0.05);
    border: 1px solid rgba(196,154,90,0.15);
    border-radius: 8px;
    margin-top: 14px;
  }

  .coming-soon-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .coming-soon-text {
    font-size: 11.5px;
    color: rgba(139,164,191,0.8);
    font-weight: 300;
    line-height: 1.5;
  }

  .coming-soon-text strong {
    color: var(--gold);
    font-weight: 500;
  }

  /* AGREEMENT */
  .agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    cursor: pointer;
  }

  .agreement input[type="checkbox"] {
    width: 18px; height: 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--input-bg);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--navy);
  }

  .agreement-text {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--label);
    font-weight: 300;
  }

  .agreement-text strong {
    color: var(--navy);
    font-weight: 500;
  }

  .agreement-text a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* SUBMIT */
  .submit-area {
    margin-top: 8px;
  }

  .btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: var(--frost);
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.2px;
  }

  .btn-submit:hover {
    background: var(--deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27,42,62,0.18);
  }

  .btn-submit:active { transform: translateY(0); }

  .submit-fine {
    text-align: center;
    font-size: 11px;
    color: rgba(139,164,191,0.5);
    margin-top: 12px;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(27,42,62,0.08);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 700;
    color: rgba(27,42,62,0.25);
    text-decoration: none;
  }
  .footer-logo em { font-style: italic; color: rgba(196,154,90,0.4); }

  .footer-copy { font-size: 11px; color: rgba(139,164,191,0.4); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .page-header { animation: fadeUp 0.5s ease both; }
  .progress-wrap { animation: fadeUp 0.5s 0.05s ease both; }
