
    /* Variables */
    :root {
      --ink:        #0f1f2e;
      --ink-soft:   #1e3448;
      --ink-muted:  #4d6b82;
      --accent:     #2176ae;
      --success:    #3a8a38;
      --danger:     #c9303f;
      --surface:    #ffffff;
      --bg:         #f5f8fa;
      --border:     #dde7ef;
      --radius:     10px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      font-size: 14px;
      line-height: 1.5;
    }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, #0d1f35 0%, #1a3a5c 55%, #4789b5 100%);
      padding: 32px 24px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 0%, rgba(84,161,213,.35) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 100%, rgba(71,137,181,.25) 0%, transparent 50%);
    }
    .hero-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .hero-logo img { height: 22px; width: auto; opacity: .85; }
    .hero-divider { width: 1px; height: 28px; background: rgba(255,255,255,.25); }
    .hero-brand { text-align: left; }
    .hero-brand-name { font-size: 14px; font-weight: 600; color: #fff; }
    .hero-brand-sub { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 1px; }
    .hero h1 { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 4px; position: relative; z-index: 1; }
    .hero p { font-size: 13px; color: rgba(255,255,255,.55); position: relative; z-index: 1; }

    /*  Stepper  */
    .stepper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-top: 24px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    .step { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
    .step-connector { flex: 1; height: 1px; background: rgba(255,255,255,.15); margin-top: 14px; min-width: 8px; }
    .step-num {
      width: 28px; height: 28px; border-radius: 50%;
      background: transparent;
      border: 1px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.35);
      font-size: 11px; font-weight: 500;
      display: flex; align-items: center; justify-content: center;
      transition: all .25s;
    }
    .step-num svg { width: 12px; height: 12px; stroke: #fff; }
    .step-label { font-size: 10px; color: rgba(255,255,255,.3); white-space: nowrap; }
    .step.active .step-num { background: #fff; border-color: #fff; color: var(--accent); }
    .step.active .step-label { color: rgba(255,255,255,.75); }
    .step.done .step-num { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
    .step.done .step-label { color: rgba(255,255,255,.4); }

    /*  Layout  */
    .outer { max-width: 920px; margin: 0 auto; padding: 28px 16px 60px; }
    .split { display: flex; gap: 20px; align-items: flex-start; }
    .main-panel { flex: 1; min-width: 0; }

    /*  Card  */
    .card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 24px;
      margin-bottom: 14px;
      animation: fadeUp .3s ease both;
    }

    /*  Labels  */
    .section-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--ink-muted);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .subsection-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--ink-soft);
      margin-top: 22px;
      margin-bottom: 14px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    /*  Info Panel (Sidebar)  */
    .info-panel {
      width: 240px;
      flex-shrink: 0;
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 22px;
      position: sticky;
      top: 20px;
    }
    .info-avatar {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
      overflow: hidden;
    }
    .info-avatar svg { width: 26px; height: 26px; stroke: var(--ink-muted); }
    .info-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
    .info-name { font-size: 14px; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 6px; }
    .info-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin-bottom: 14px; }
    .info-tag {
      font-size: 11px; font-weight: 500;
      color: var(--accent);
      background: #edf4fb;
      border-radius: 20px;
      padding: 2px 9px;
    }
    .info-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
    .info-row { display: flex; gap: 8px; margin-bottom: 10px; }
    .info-row-icon svg { width: 12px; height: 12px; stroke: var(--ink-muted); margin-top: 3px; flex-shrink: 0; }
    .info-row-label { font-size: 10px; font-weight: 500; color: var(--ink-muted); margin-bottom: 1px; text-transform: uppercase; letter-spacing: .04em; }
    .info-row-val { font-size: 12px; color: var(--ink-soft); line-height: 1.5; }
    .info-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 14px; }
    .btn-change {
      width: 100%; padding: 9px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px; font-weight: 500;
      color: var(--ink-soft); cursor: pointer;
      transition: border-color .2s, background .2s;
      display: flex; align-items: center; justify-content: center; gap: 5px;
      margin-bottom: 6px;
    }
    .btn-change svg { width: 12px; height: 12px; stroke: currentColor; }
    .btn-change:hover { border-color: var(--accent); background: #edf4fb; color: var(--accent); }

    /*  Consultant Cards  */
    .consultants { display: flex; flex-direction: column; gap: 10px; }
    .consultants-loading { text-align: center; padding: 32px; color: var(--ink-muted); }
    .consultants-loading p { margin-top: 8px; font-size: 13px; }
    .consultant-card {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      background: var(--surface);
    }
    .consultant-card:hover { border-color: var(--accent); background: #f7fbfe; }
    .consultant-avatar-sm {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; overflow: hidden;
    }
    .consultant-avatar-sm svg { width: 20px; height: 20px; stroke: var(--ink-muted); }
    .consultant-avatar-sm img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
    .consultant-info { flex: 1; min-width: 0; }
    .consultant-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
    .consultant-tag {
      display: inline-block; font-size: 10px; font-weight: 500;
      color: var(--accent); background: #edf4fb;
      border-radius: 20px; padding: 1px 8px; margin-bottom: 5px;
    }
    .consultant-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.5; }
    .consultant-arrow { color: var(--border); flex-shrink: 0; align-self: center; }
    .consultant-arrow svg { width: 18px; height: 18px; }
    .consultant-card:hover .consultant-arrow { color: var(--accent); }

    /*  Calendar  */
    .cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
    .cal-month { font-size: 14px; font-weight: 600; color: var(--ink); }
    .cal-nav { display: flex; gap: 4px; }
    .cal-nav button {
      width: 30px; height: 30px;
      border: 1px solid var(--border); border-radius: 6px;
      background: var(--surface); color: var(--ink-soft); cursor: pointer;
      transition: border-color .2s, background .2s;
      display: flex; align-items: center; justify-content: center; padding: 0;
    }
    .cal-nav button svg { width: 14px; height: 14px; stroke: currentColor; }
    .cal-nav button:hover { border-color: var(--accent); background: #edf4fb; color: var(--accent); }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .cal-hdr { text-align: center; font-size: 10px; font-weight: 500; color: var(--ink-muted); padding: 5px 0; text-transform: uppercase; letter-spacing: .03em; }
    .cal-day {
      aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
      border-radius: 7px; border: 1px solid transparent;
      font-size: 12px; color: var(--ink-muted);
      cursor: default; transition: all .15s;
      min-height: 34px; position: relative;
    }
    .cal-day.empty { pointer-events: none; }
    .cal-day.past { color: #ccd8e2; pointer-events: none; }
    .cal-day.today { border-color: var(--accent); color: var(--accent); font-weight: 500; }
    .cal-day.available {
      background: #edf4fb; border-color: #c5ddf0;
      color: var(--ink); font-weight: 500; cursor: pointer;
    }
    .cal-day.available:hover { background: #d8ecf8; border-color: var(--accent); }
    .cal-day.selected { background: var(--accent) !important; border-color: var(--accent) !important; color: #fff !important; font-weight: 600; }
    .cal-day.holiday { background: #fdf0f1; border-color: #f0b8bc; color: #b02530; pointer-events: none; }
    .cal-day.available::after { content: ''; position: absolute; bottom: 3px; width: 3px; height: 3px; border-radius: 50%; background: var(--accent); }
    .cal-day.selected::after { background: rgba(255,255,255,.6); }
    .cal-day.holiday::after { content: none; }
    .cal-legend { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
    .leg { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--ink-muted); }
    .leg-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
    .cal-loading { text-align: center; padding: 28px; color: var(--ink-muted); }
    .cal-loading p { margin-top: 8px; font-size: 13px; }

    /*  Spinner  */
    .spinner {
      width: 24px; height: 24px;
      border: 2px solid var(--border);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes btn-spin { to { transform: rotate(360deg); } }
    .btn-spinner {
      width: 14px; height: 14px; flex-shrink: 0;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      animation: btn-spin 0.7s linear infinite;
      display: inline-block;
    }

    /*  Time Slots  */
    .slots-date { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
    .slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 7px; }
    .slot {
      padding: 10px 4px; text-align: center; border-radius: 7px;
      border: 1px solid var(--border);
      font-size: 12px; font-weight: 500; cursor: pointer;
      transition: all .15s; color: var(--ink-soft); background: var(--surface);
    }
    .slot:hover { border-color: var(--accent); color: var(--accent); background: #edf4fb; }
    .slot.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
    .slot.booked { background: #fdf0f1; border-color: #f0b8bc; color: #b02530; cursor: not-allowed; }
    .no-slots { text-align: center; padding: 20px; color: var(--ink-muted); font-size: 13px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .no-slots svg { width: 28px; height: 28px; stroke: var(--ink-muted); }
    .slots-period-label { grid-column: 1 / -1; font-size: 10px; font-weight: 500; color: var(--ink-muted); padding: 6px 0 2px; text-transform: uppercase; letter-spacing: .04em; }

    /*  Phone Input with Country Code  */
    .phone-input-wrap {
      display: flex;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    .phone-input-wrap:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(33,118,174,.1);
    }
    .phone-input-wrap.error { border-color: var(--danger); }
    .phone-input-wrap.error:focus-within { box-shadow: 0 0 0 3px rgba(201,48,63,.1); }
    .country-select-wrap {
      position: relative;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
      background: var(--bg);
    }
    .country-select-wrap select {
      appearance: none; -webkit-appearance: none;
      background: transparent;
      border: none;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: var(--ink);
      padding: 10px 28px 10px 10px;
      cursor: pointer;
      width: 100%;
      min-width: 90px;
    }
    .country-select-wrap::after {
      content: '';
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid var(--ink-muted);
      pointer-events: none;
    }
    .phone-number-input {
      flex: 1;
      border: none !important;
      border-radius: 0 !important;
      outline: none;
      padding: 10px 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: var(--ink);
      background: var(--surface);
      box-shadow: none !important;
      min-width: 0;
    }
    .phone-number-input:disabled,
    .phone-number-input[readonly] { background: var(--bg); color: var(--ink-soft); }

    /*  Word Counter  */
    .word-counter {
      font-size: 11px;
      color: var(--ink-muted);
      text-align: right;
      margin-top: 4px;
      transition: color .2s;
    }
    .word-counter.warn { color: #e07800; }
    .word-counter.over { color: var(--danger); font-weight: 600; }

    /*  Form Fields  */
    .field { margin-bottom: 13px; }
    .field label { display: block; font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-bottom: 5px; }
    .field label .req { color: var(--danger); margin-left: 2px; }
    .field label .opt { font-size: 11px; font-weight: 400; color: var(--ink-muted); margin-left: 3px; }
    .field input,
    .field select,
    .field textarea {
      width: 100%; padding: 10px 12px;
      border: 1px solid var(--border); border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 13px;
      color: var(--ink); background: var(--surface);
      transition: border-color .2s, box-shadow .2s; outline: none;
    }
    .field select {
      appearance: none; -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%238aa3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 12px center;
      padding-right: 34px; cursor: pointer;
    }
    .field textarea { resize: vertical; min-height: 85px; line-height: 1.55; }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(33,118,174,.1); }
    .field input.error,
    .field select.error,
    .field textarea.error { border-color: var(--danger); }
    .field input.error:focus,
    .field select.error:focus,
    .field textarea.error:focus { box-shadow: 0 0 0 3px rgba(201,48,63,.1); }
    .field-error { font-size: 11px; color: var(--danger); margin-top: 4px; display: none; }
    .field-error.show { display: block; }
    .field input[readonly],
    .field-readonly { background: var(--bg) !important; color: var(--ink-soft) !important; cursor: default !important; }
    .field select:disabled { background: var(--bg); color: var(--ink-soft); cursor: default; opacity: 1; }
    .field-row { display: flex; gap: 10px; }
    .field-row .field { flex: 1; }
    .field-row-3 { display: flex; gap: 10px; }
    .field-row-3 .field { flex: 1; }
    .optional-group { padding: 14px; background: var(--bg); border-radius: 8px; margin-bottom: 13px; }
    .optional-group-label { font-size: 11px; font-weight: 500; color: var(--ink-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }

    /*  Buttons  */
    .btn {
      width: 100%; padding: 12px;
      border: none; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
      cursor: pointer; transition: background .2s, border-color .2s;
      display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    }
    .btn svg { width: 14px; height: 14px; stroke: currentColor; }
    .btn-primary { background: var(--accent); color: #fff; }
    .btn-primary:hover { background: #1a65a0; }
    .btn-primary:disabled { opacity: .5; cursor: not-allowed; }
    .btn-ghost { background: transparent; color: var(--ink-soft); border: 1px solid var(--border); }
    .btn-ghost:hover { border-color: var(--ink-soft); background: var(--bg); }

    /*  Reminders  */
    .reminder-intro { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }
    .reminder-list { list-style: none; display: flex; flex-direction: column; }
    .reminder-list li { display: flex; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
    .reminder-list li:last-child { border-bottom: none; }
    .reminder-num { width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); color: var(--ink-muted); font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }

    /*  Custom Checkbox  */
    .check-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-top: 16px; }
    .check-row input[type="checkbox"] { display: none; }
    .check-row-label { font-size: 13px; color: var(--ink); line-height: 1.55; cursor: pointer; }
    .custom-checkbox {
      width: 17px; height: 17px; min-width: 17px; border-radius: 4px;
      border: 1.5px solid var(--border); background: var(--surface);
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s; margin-top: 3px;
    }
    .custom-checkbox svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 3; display: none; }
    .custom-checkbox.checked { background: var(--success); border-color: var(--success); }
    .custom-checkbox.checked svg { display: block; }

    /*  Client Type  */
    .client-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 4px; }
    .client-type-card {
      border: 1px solid var(--border); border-radius: 8px;
      padding: 20px 16px; cursor: pointer;
      transition: border-color .2s, background .2s;
      text-align: center; background: var(--surface);
    }
    .client-type-card:hover { border-color: var(--accent); background: #f7fbfe; }
    .client-type-card.selected { border-color: var(--accent); background: #edf4fb; }
    .client-type-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
    .client-type-icon svg { width: 20px; height: 20px; }
    .new-icon { background: #edf4fb; }
    .new-icon svg { stroke: var(--accent); }
    .ret-icon { background: #edf6ec; }
    .ret-icon svg { stroke: var(--success); }
    .client-type-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
    .client-type-desc { font-size: 11px; color: var(--ink-muted); line-height: 1.5; }

    /*  Client Lookup  */
    .lookup-result-box { background: #edf4fb; border: 1px solid #c5ddf0; border-radius: 8px; padding: 12px 16px; margin-top: 12px; display: none; }
    .lookup-result-box.show { display: block; }
    .lookup-result-label { font-size: 10px; font-weight: 500; color: var(--accent); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
    .lookup-result-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
    .lookup-result-sub { font-size: 12px; color: var(--ink-muted); }
    .lookup-not-found { background: #fdf0f1; border: 1px solid #f0b8bc; border-radius: 8px; padding: 10px 16px; margin-top: 12px; display: none; font-size: 13px; color: var(--danger); }
    .lookup-not-found.show { display: block; }

    /*  Consent Box  */
    .consent-box { background: var(--bg); border-radius: 8px; padding: 16px; margin-bottom: 16px; border: 1px solid var(--border); }
    .consent-box-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
    .consent-box-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
    .consent-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
    .consent-step { display: flex; align-items: flex-start; gap: 8px; }
    .consent-step-num { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
    .consent-step-text { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
    .btn-download {
      display: flex; align-items: center; justify-content: center; gap: 7px;
      padding: 10px 16px;
      background: var(--accent); color: #fff;
      border: none; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
      cursor: pointer; text-decoration: none;
      transition: background .2s;
      margin-left: auto;
    }
    .btn-download:hover { background: #1a65a0; }
    .btn-download.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
    .btn-download svg { width: 13px; height: 13px; flex-shrink: 0; }
    .consent-agree-box { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 16px; margin-bottom: 14px; }
    .consent-agree-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .consent-agree-text { font-size: 12px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
    .consent-agree-text p { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
    .consent-agree-text p:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

    /*  File Upload  */
    .upload-area {
      border: 1.5px dashed var(--border); border-radius: 8px;
      padding: 18px; text-align: center; cursor: pointer;
      transition: border-color .2s, background .2s; position: relative;
    }
    .upload-area:hover,
    .upload-area.drag-over { border-color: var(--accent); background: #edf4fb; }
    .upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
    .upload-area-icon svg { width: 22px; height: 22px; stroke: var(--ink-muted); }
    .upload-area-text { font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 2px; }
    .upload-area-sub { font-size: 11px; color: var(--ink-muted); }
    .upload-preview { display: flex; align-items: center; gap: 8px; background: #edf4fb; border: 1px solid #c5ddf0; border-radius: 7px; padding: 8px 12px; margin-top: 8px; }
    .upload-preview svg { width: 14px; height: 14px; stroke: var(--accent); flex-shrink: 0; }
    .upload-preview-name { font-size: 12px; font-weight: 500; color: var(--ink-soft); flex: 1; word-break: break-all; }
    .upload-preview-remove { background: none; border: none; cursor: pointer; padding: 2px; color: var(--ink-muted); display: flex; align-items: center; }
    .upload-preview-remove:hover { color: var(--danger); }

    /*  Payment  */
    .payment-info-block {
      background: linear-gradient(135deg, #0d1f35 0%, #1a3a5c 100%);
      border-radius: 10px;
      padding: 18px 20px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }
    .payment-info-block::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 0%, rgba(84,161,213,.3) 0%, transparent 60%);
    }
    .payment-info-block > * { position: relative; z-index: 1; }
    .payment-info-title { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
    .payment-amount { font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 1px; }
    .payment-amount-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
    .payment-detail-row { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; border-top: 1px solid rgba(255,255,255,.1); gap: 12px; }
    .payment-detail-key { font-size: 12px; color: rgba(255,255,255,.5); flex-shrink: 0; }
    .payment-detail-val { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.9); text-align: right; }
    .payment-detail-val.mono { letter-spacing: .05em; }
    .payment-notice { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 18px; font-size: 12px; color: var(--danger); line-height: 1.6; }
    .payment-notice svg { width: 13px; height: 13px; stroke: var(--danger); flex-shrink: 0; margin-top: 3px; }

    /*  Review  */
    .review-section-hdr { font-size: 11px; font-weight: 500; color: var(--ink-muted); margin-top: 20px; margin-bottom: 10px; padding-top: 18px; border-top: 1px solid var(--border); text-transform: uppercase; letter-spacing: .04em; }
    .review-section-hdr:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
    .review-field { margin-bottom: 12px; }
    .review-field label { display: block; font-size: 11px; font-weight: 500; color: var(--ink-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
    .review-input { width: 100%; padding: 8px 11px; border: 1px solid var(--border); border-radius: 7px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--ink); background: var(--bg); line-height: 1.5; white-space: pre-wrap; word-break: break-word; min-height: 36px; }
    .review-input.multiline { min-height: 68px; }
    .review-field-row { display: flex; gap: 10px; }
    .review-field-row .review-field { flex: 1; }
    .review-field-row-3 { display: flex; gap: 10px; }
    .review-field-row-3 .review-field { flex: 1; }

    /*  Toast  */
    .toast { background: #fdf0f1; border: 1px solid #f0b8bc; border-radius: 8px; padding: 10px 13px; font-size: 12px; color: var(--danger); margin-bottom: 14px; display: none; }
    .toast.show { display: block; }

    /*  Follow-up Notice  */
    .followup-notice { background: #edf4fb; border: 1px solid #c5ddf0; border-radius: 8px; padding: 12px 14px; margin-bottom: 14px; font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

    /*  Success  */
    .success-screen { text-align: center; padding: 32px 16px; }
    .success-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; animation: popIn .4s cubic-bezier(.175,.885,.32,1.275); }
    .success-icon.green { background: var(--success); }
    .success-icon.blue  { background: var(--accent); }
    .success-icon svg { width: 30px; height: 30px; stroke: #fff; }
    .success-screen h2 { font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
    .success-screen > p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 20px; }

    /*  Pending Notice  */
    .pending-notice { text-align: left; }
    .pending-notice-title { font-size: 12px; font-weight: 600; color: var(--ink-soft); margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
    .pending-notice-title svg { width: 12px; height: 12px; stroke: var(--ink-muted); }
    .pending-notice p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

    /*  Pages  */
    .page { display: none; }
    .page.active { display: block; }

    /*  Animations  */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes popIn  { from { transform: scale(0); opacity: 0; }        to { transform: scale(1); opacity: 1; } }

    /*  Responsive  */
    @media (max-width: 680px) {
      .split { flex-direction: column; }
      .info-panel { width: 100%; position: static; }
      .field-row,
      .field-row-3,
      .review-field-row,
      .review-field-row-3 { flex-direction: column; gap: 0; }
      .client-type-grid { grid-template-columns: 1fr; }
      .payment-amount { font-size: 24px; }
    }
    @media (max-width: 400px) {
      .slots-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ── RESPONSIVE ADDITIONS ── */

@media (max-width: 860px) {
  .outer { padding: 20px 12px 48px; }
  .split { flex-direction: column; }
  .info-panel {
    width: 100%;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }
  .info-avatar { margin: 0 auto 8px; }
  .info-name { text-align: center; }
  .info-tags { justify-content: center; }
  .info-desc { display: none; }
  .info-divider { grid-column: 1 / -1; margin: 4px 0; }
  .btn-change { width: 100%; }
}

@media (max-width: 680px) {
  .hero { padding: 24px 16px 20px; }
  .hero h1 { font-size: 18px; }
  .hero-brand-name { font-size: 12px; }

  .stepper { gap: 0; margin-top: 18px; }
  .step-label { display: none; }
  .step-num { width: 24px; height: 24px; font-size: 10px; }
  .step-connector { min-width: 4px; }

  .card { padding: 16px; }
  .split { flex-direction: column; }
  .info-panel {
    width: 100%;
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
  }
  .info-row { flex: 1 1 45%; }
  .info-avatar { display: none; }
  .info-desc { display: none; }

  .field-row,
  .field-row-3,
  .review-field-row,
  .review-field-row-3 { flex-direction: column; gap: 0; }

  .client-type-grid { grid-template-columns: 1fr; }

  .payment-amount { font-size: 22px; }
  .payment-info-block { padding: 14px; }

  .review-section-hdr { margin-top: 14px; padding-top: 12px; }

  .cal-grid { gap: 2px; }
  .cal-day { height: 32px; font-size: 11px; border-radius: 5px; }

  .slots-grid { grid-template-columns: repeat(3, 1fr); }

  .consultant-card { padding: 10px; }
  .consultant-desc { display: none; }

  .consent-steps { gap: 6px; }
  .consent-agree-text { font-size: 11px; }

  .btn-download { font-size: 12px; padding: 9px 12px; }

  .upload-area { padding: 14px; }
  .upload-area-text { font-size: 12px; }
}

@media (max-width: 400px) {
  .hero-logo { gap: 6px; }
  .hero-logo img { height: 18px; }
  .hero-brand-name { font-size: 11px; }
  .hero-brand-sub { display: none; }

  .stepper { padding: 0 4px; }

  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .slot { padding: 8px 2px; font-size: 11px; }

  .card { padding: 12px; }

  .country-select-wrap select { min-width: 78px; font-size: 12px; padding: 10px 22px 10px 8px; }
  .phone-number-input { font-size: 12px; }

  .payment-amount { font-size: 20px; }
  .payment-detail-row { flex-direction: column; gap: 1px; }
  .payment-detail-val { text-align: left; }
}