
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; max-width: 100%; scroll-behavior: smooth; }
    :root {
      --blue: #0057FF;
      --blue-dim: rgba(0,87,255,0.08);
      --blue-glow: rgba(0,87,255,0.2);
      --border: rgba(0,0,0,0.1);
      --muted: #555555;
      --radius: 10px;
    }
    body { background: #000000; color: #e5e7eb; font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; }
    h1,h2,h3,h4,.brand { font-family: 'Raleway', sans-serif; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5rem; height: 72px;
      background: rgba(0,0,0,0.88); backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .brand { font-size: 1.55rem; font-weight: 900; color: #111111; text-decoration: none; letter-spacing: -0.03em; }
    .brand em { color: #111111; font-style: normal; } .brand em:last-child { color: #0057FF; }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .nav-right a { color: #555555; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
    .nav-right a:hover { color: #111111; }

    /* ── HERO ── */
    .page-hero {
      padding: 140px 0 70px;
      background: #000000;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      display: none;
    }
    .wrap { max-width: 820px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
    .wrap-wide { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(0,87,255,0.12); border: 1px solid rgba(0,87,255,0.25);
      color: #60a5fa; padding: 0.35rem 0.9rem; border-radius: 100px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.1;
      letter-spacing: -0.03em; margin-bottom: 1.25rem; color: #ffffff;
    }
    .page-hero h1 .accent { color: #0057FF; }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; max-width: 560px; margin: 0 auto; }

    /* ── PROGRESS INDICATOR ── */
    .progress-bar {
      background: #0a0a0a; border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 1.25rem 0;
      position: sticky; top: 72px; z-index: 100;
    }
    .steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
    .step-item {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.78rem; font-weight: 600; color: #aaaaaa;
      letter-spacing: 0.03em;
      padding: 0 1.25rem;
    }
    .step-item.active { color: #0057FF; }
    .step-item.done { color: #22c55e; }
    .step-dot {
      width: 24px; height: 24px; border-radius: 50%;
      background: #e5e7eb; color: #aaaaaa;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem; font-weight: 800;
      transition: all 0.3s;
    }
    .step-item.active .step-dot { background: #0057FF; color: #ffffff; }
    .step-item.done .step-dot { background: #22c55e; color: #ffffff; }
    .step-sep { color: #d1d5db; font-size: 0.9rem; }

    /* ── FORM WRAPPER ── */
    .form-section { padding: 60px 0 100px; }

    .form-card {
      background: #ffffff; border: 1px solid rgba(0,0,0,0.1);
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    }

    /* ── SECTION BLOCKS ── */
    .form-section-block {
      padding: 2.5rem 3rem;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .form-section-block:last-of-type { border-bottom: none; }
    .section-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
    .section-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--blue-dim); border: 1px solid rgba(0,87,255,0.15);
      color: #0057FF; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .section-header-text h3 { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
    .section-header-text p { font-size: 0.85rem; color: #555555; line-height: 1.6; }

    /* ── FIELDS ── */
    .fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.4rem; }
    .fg:last-child { margin-bottom: 0; }
    .fg label {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; color: #444444;
    }
    .fg label .req { color: #0057FF; margin-left: 2px; }
    .fg input, .fg select, .fg textarea {
      background: #0a0a0a; border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 8px; padding: 0.82rem 1rem;
      color: #111111; font-family: 'Inter', sans-serif; font-size: 0.93rem;
      transition: border-color 0.2s, background 0.2s; outline: none; width: 100%;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: #0057FF; background: rgba(0,87,255,0.03);
    }
    .fg input::placeholder, .fg textarea::placeholder { color: #aaaaaa; }
    .fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
    .fg select option { background: #ffffff; color: #111111; }
    .fg textarea { resize: vertical; min-height: 100px; }
    .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .fg-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
    .field-hint { font-size: 0.78rem; color: #888888; margin-top: 0.25rem; }

    /* ── CHECKBOX GRID ── */
    .check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.6rem; }
    .check-item {
      display: flex; align-items: center; gap: 0.65rem;
      background: #0a0a0a; border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 8px; padding: 0.75rem 1rem;
      cursor: pointer; transition: border-color 0.2s, background 0.2s;
      font-size: 0.88rem; font-weight: 500;
    }
    .check-item:hover { border-color: rgba(0,87,255,0.3); background: var(--blue-dim); }
    .check-item input[type="checkbox"] { display: none; }
    .check-item.selected { border-color: #0057FF; background: var(--blue-dim); color: #0057FF; }
    .check-box {
      width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid #cccccc;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all 0.2s;
    }
    .check-item.selected .check-box { background: #0057FF; border-color: #0057FF; }
    .check-box svg { display: none; }
    .check-item.selected .check-box svg { display: block; }

    /* ── RADIO CARDS ── */
    .radio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
    .radio-card {
      border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px;
      padding: 1.1rem 1rem; text-align: center; cursor: pointer;
      transition: all 0.2s; background: #0a0a0a;
    }
    .radio-card:hover { border-color: rgba(0,87,255,0.35); background: var(--blue-dim); }
    .radio-card input[type="radio"] { display: none; }
    .radio-card.selected { border-color: #0057FF; background: var(--blue-dim); }
    .radio-card .rc-icon { display: none; }
    .radio-card .rc-label { font-size: 0.83rem; font-weight: 600; color: #333333; }
    .radio-card.selected .rc-label { color: #0057FF; }

    /* ── URGENCY SLIDER-STYLE ── */
    .priority-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
    .priority-card {
      border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px;
      padding: 1rem 0.75rem; text-align: center; cursor: pointer;
      transition: all 0.2s; background: #0a0a0a;
    }
    .priority-card:hover { border-color: rgba(0,87,255,0.3); }
    .priority-card input[type="radio"] { display: none; }
    .priority-card.selected { border-color: #0057FF; background: var(--blue-dim); }
    .priority-card .pc-timeline { font-size: 0.95rem; font-weight: 800; font-family: 'Raleway', sans-serif; color: #111111; }
    .priority-card .pc-label { font-size: 0.75rem; color: #777777; margin-top: 0.15rem; }
    .priority-card.selected .pc-timeline { color: #0057FF; }

    /* ── FORM FOOTER ── */
    .form-footer {
      background: #0a0a0a; border-top: 1px solid rgba(0,0,0,0.08);
      padding: 2rem 3rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
      flex-wrap: wrap;
    }
    .footer-note { font-size: 0.82rem; color: #888888; display: flex; align-items: center; gap: 0.5rem; }
    .footer-note svg { flex-shrink: 0; }
    .form-submit {
      background: #0057FF; color: #ffffff; border: none;
      padding: 1rem 2.5rem; border-radius: 8px;
      font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1rem;
      cursor: pointer; transition: background 0.2s, transform 0.15s;
      display: flex; align-items: center; gap: 0.6rem;
      white-space: nowrap;
    }
    .form-submit:hover { background: #0040cc; transform: translateY(-1px); }
    .form-submit:active { transform: translateY(0); }

    /* ── SUCCESS STATE ── */
    .success-screen {
      display: none; text-align: center;
      padding: 5rem 2rem;
    }
    .success-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(34,197,94,0.1); border: 2px solid rgba(34,197,94,0.3);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem; font-size: 2rem;
    }
    .success-screen h2 { font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
    .success-screen p { color: #555555; font-size: 1rem; max-width: 440px; margin: 0 auto 2rem; }
    .success-next { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary { background: #0057FF; color: #ffffff; text-decoration: none; padding: 0.85rem 2rem; border-radius: 8px; font-weight: 700; font-size: 0.92rem; transition: background 0.2s; }
    .btn-primary:hover { background: #0040cc; }
    .btn-ghost { background: transparent; color: #0057FF; text-decoration: none; padding: 0.85rem 2rem; border-radius: 8px; font-weight: 700; font-size: 0.92rem; border: 1.5px solid rgba(0,87,255,0.3); transition: all 0.2s; }
    .btn-ghost:hover { background: var(--blue-dim); }

    /* ── TRUST STRIP ── */
    .trust-strip { background: #0a0a0a; border-top: 1px solid rgba(0,0,0,0.08); padding: 40px 0; }
    .trust-items { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: #555555; font-weight: 500; }
    .trust-item strong { color: #111111; }

    /* ── FOOTER ── */
    footer { background: #0a0a0a; border-top: 1px solid rgba(0,0,0,0.08); padding: 2.5rem 0; text-align: center; }
    footer p { font-size: 0.82rem; color: #888888; }
    footer a { color: #0057FF; text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 1.5rem; }
      .form-section-block { padding: 2rem 1.75rem; }
      .form-footer { padding: 1.75rem; }
      .fg-row, .fg-row-3 { grid-template-columns: 1fr; }
      .priority-row { grid-template-columns: 1fr 1fr; }
      .steps { gap: 0; }
      .step-item { padding: 0 0.6rem; }
    }
    @media (max-width: 600px) {
      .page-hero { padding: 120px 0 50px; }
      .form-section-block { padding: 1.5rem 1.25rem; }
      .form-footer { flex-direction: column; align-items: stretch; }
      .form-submit { justify-content: center; }
      .radio-grid { grid-template-columns: 1fr 1fr; }
      .priority-row { grid-template-columns: 1fr 1fr; }
      .step-item span { display: none; }
    }
  