@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Lora:ital@1&family=Inter:wght@300;400;500&display=swap');

/* ── RESET & ROOT ── */
.nso-wrap *, .nso-wrap *::before, .nso-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

.nso-wrap {
  --teal:      #0D7A6B;
  --teal-light:#E8F5F3;
  --teal-mid:  #B2D8D3;
  --black:     #1A1A1A;
  --grey-dark: #333;
  --grey-mid:  #767676;
  --grey-light:#F5F5F5;
  --border:    #E5E5E5;
  --white:     #FFFFFF;
  --radius:    10px;
  --shadow:    0 1px 3px rgba(0,0,0,.08);

  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: #F8F8F8;
  min-height: 100vh;
  max-width: 780px;
  margin: 0 auto;
}

/* ── HEADER ── */
.nso-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nso-header-logo strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.nso-header-logo span {
  font-size: 10px;
  color: var(--grey-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nso-header-phone {
  font-size: 14px;
  color: var(--grey-dark);
  text-decoration: none;
  font-weight: 500;
}

/* ── HERO ── */
.nso-hero {
  background: var(--white);
  padding: 48px 40px 36px;
  border-bottom: 1px solid var(--border);
}
.nso-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 14px;
}
.nso-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.nso-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.nso-subtitle {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 20px;
  font-weight: 300;
}
.nso-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--grey-dark);
  font-weight: 500;
}
.nso-price-pill span:first-child { font-weight: 700; color: var(--black); }
.nso-sep { color: var(--grey-mid); }

/* ── STEPPER ── */
.nso-stepper {
  display: flex;
  align-items: center;
  padding: 24px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.nso-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.nso-step-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-mid);
  background: var(--white);
  transition: all .25s;
}
.nso-step span {
  font-size: 12px;
  color: var(--grey-mid);
  white-space: nowrap;
  font-weight: 400;
}
.nso-step.active .nso-step-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.nso-step.active span { color: var(--teal); font-weight: 600; }
.nso-step.done .nso-step-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.nso-step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}

/* ── PANEL ── */
.nso-panel {
  background: var(--white);
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.nso-hidden { display: none !important; }

/* ── SECTION ── */
.nso-section {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.nso-section:last-of-type { border-bottom: none; }
.nso-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

/* ── FIELDS ── */
.nso-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .nso-grid-2 { grid-template-columns: 1fr; } }

.nso-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.nso-field:last-child { margin-bottom: 0; }
.nso-field label { font-size: 13px; font-weight: 500; color: var(--grey-dark); }
.nso-field small { font-size: 11px; color: var(--grey-mid); }
.req { color: var(--teal); }

.nso-wrap input[type="text"],
.nso-wrap input[type="email"],
.nso-wrap input[type="tel"],
.nso-wrap textarea,
.nso-wrap select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
}
.nso-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aaa' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.nso-wrap input::placeholder, .nso-wrap textarea::placeholder { color: #bbb; }
.nso-wrap input:focus, .nso-wrap textarea:focus, .nso-wrap select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,122,107,.1);
}
.nso-wrap textarea { resize: vertical; }

/* ── TOGGLE (pol) ── */
.nso-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nso-toggle-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey-mid);
  cursor: pointer;
  transition: all .18s;
}
.nso-toggle-btn.active { background: var(--teal); color: var(--white); font-weight: 500; }

/* ── CHECKBOXES ── */
.nso-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nso-check {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 14px;
  color: var(--grey-dark);
}
.nso-check input[type="checkbox"] {
  width: 17px; height: 17px;
  border: 1px solid var(--border);
  border-radius: 4px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── UPLOAD ── */
.nso-upload-zone {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  background: var(--grey-light);
  transition: border-color .2s;
  cursor: pointer;
}
.nso-upload-zone:hover { border-color: var(--teal); }
.nso-upload-icon { font-size: 28px; color: var(--grey-mid); margin-bottom: 10px; }
.nso-upload-title { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.nso-upload-sub { font-size: 12px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 16px; }
.nso-upload-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--teal);
  border-radius: 100px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s;
}
.nso-upload-btn:hover { background: var(--teal); color: var(--white); }
.nso-file-list { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.nso-file-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 7px 12px;
  font-size: 12px; color: var(--grey-dark);
}

/* ── ACTIONS ── */
.nso-actions {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nso-actions--right { justify-content: flex-end; gap: 16px; }
.nso-actions--between { justify-content: space-between; }
.nso-req-note { font-size: 12px; color: var(--grey-mid); }

.nso-btn-primary {
  padding: 12px 28px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, transform .1s;
  white-space: nowrap;
}
.nso-btn-primary:hover { background: var(--teal); transform: translateY(-1px); }
.nso-btn-primary:active { transform: translateY(0); }
.nso-btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.nso-btn-ghost {
  padding: 12px 20px;
  background: transparent;
  color: var(--grey-mid);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all .18s;
}
.nso-btn-ghost:hover { border-color: var(--grey-mid); color: var(--black); }

/* ── ORDER TABLE ── */
.nso-order-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nso-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--grey-dark);
  border-bottom: 1px solid var(--border);
}
.nso-order-row:last-child { border-bottom: none; }
.nso-order-total {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  background: var(--grey-light);
}

/* ── PAYMENT ── */
.nso-payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
@media (max-width: 520px) { .nso-payment-options { grid-template-columns: 1fr; } }

.nso-payment-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.nso-payment-card.active {
  border-color: var(--teal);
  background: var(--teal-light);
}
.nso-payment-card strong { font-size: 14px; font-weight: 600; color: var(--black); display: block; margin-bottom: 4px; }
.nso-payment-card p { font-size: 12px; color: var(--grey-mid); line-height: 1.5; }
.nso-payment-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.nso-bank-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nso-bank-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.nso-bank-row:last-child { border-bottom: none; }
.nso-bank-row span:first-child { color: var(--grey-mid); }
.nso-bank-row span:last-child { font-weight: 500; color: var(--black); text-align: right; }

/* ── NOTICE ── */
.nso-notice {
  margin: 0 32px 0;
  padding: 14px 18px;
  background: #FFF8F0;
  border: 1px solid #FDDCB5;
  border-radius: var(--radius);
  margin-bottom: 0;
}
.nso-notice p { font-size: 13px; color: #7A4A1A; line-height: 1.6; }
.nso-notice--warning { background: #FFF3F3; border-color: #FFCECE; }
.nso-notice--warning p { color: #7A1A1A; }

/* ── CONFIRM / STEP 3 ── */
.nso-confirm-hero {
  text-align: center;
  padding: 48px 32px 32px;
  border-bottom: 1px solid var(--border);
}
.nso-confirm-check {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 20px;
}
.nso-confirm-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.nso-confirm-hero p { font-size: 14px; color: var(--grey-mid); max-width: 420px; margin: 0 auto 18px; line-height: 1.7; }
.nso-confirm-id {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-dark);
  letter-spacing: .05em;
  font-family: monospace;
}

.nso-confirm-steps { padding: 24px 32px; display: flex; flex-direction: column; gap: 0; }
.nso-confirm-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.nso-confirm-step:last-child { border-bottom: none; }
.nso-confirm-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grey-light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-mid);
  flex-shrink: 0;
  margin-top: 2px;
}
.nso-confirm-step strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.nso-confirm-step p { font-size: 13px; color: var(--grey-mid); line-height: 1.6; }

/* ── FOOTER ── */
.nso-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 32px;
  text-align: center;
  font-size: 12px;
  color: var(--grey-mid);
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* ── ERROR STATE ── */
.nso-wrap input.nso-error,
.nso-wrap select.nso-error,
.nso-wrap textarea.nso-error {
  border-color: #D94848;
  box-shadow: 0 0 0 3px rgba(217,72,72,.1);
}
.nso-error-msg { font-size: 11px; color: #D94848; margin-top: 4px; }
