/* ═══════════════════════════════════════════════════════
   NM-QUOTE — page-specific styles  (prefix: nm-quote-)
═══════════════════════════════════════════════════════ */

/* ── 1. HERO ────────────────────────────────────────── */
.nm-quote-hero {
  padding: 120px 0 48px;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.nm-quote-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse at 50% 30%, rgba(26,110,255,.14) 0%, transparent 68%);
  pointer-events: none;
}
.nm-quote-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.nm-quote-hero-h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--t1);
  margin-bottom: 16px;
}
.nm-quote-acc {
  background: linear-gradient(90deg, #1a6eff 0%, #7b61ff 55%, #3d8bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nm-quote-hero-desc {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 24px;
}
.nm-quote-hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.nm-quote-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  text-align: left;
}
.nm-quote-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 220px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .nm-quote-trust-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .nm-quote-trust-item {
    max-width: none;
    background: var(--bg-2);
    border: 1px solid var(--b-sub);
    border-radius: 12px;
    padding: 18px 16px;
  }
}
.nm-quote-trust-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(26,110,255,.12);
  border: 1px solid rgba(26,110,255,.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--blue-l);
}
.nm-quote-trust-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 3px;
}
.nm-quote-trust-sub {
  font-size: 11.5px;
  color: var(--t3);
  line-height: 1.5;
}

/* ── 2. MAIN (SIDEBAR + FORM) ─────────────────────── */
.nm-quote-main {
  padding: 24px 0 72px;
  background: var(--bg-0);
}
.nm-quote-main-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 28px;
  align-items: start;
}

/* sidebar */
.nm-quote-sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--b-sub);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 18px;
}
.nm-quote-sidebar-h2 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 22px;
}
.nm-quote-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nm-quote-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.nm-quote-why-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(26,110,255,.12);
  border: 1px solid rgba(26,110,255,.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue-l);
}
.nm-quote-why-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 2px;
}
.nm-quote-why-desc {
  font-size: 11.5px;
  color: var(--t3);
  line-height: 1.55;
}

.nm-quote-cta-box {
  background: linear-gradient(145deg, rgba(26,110,255,.18) 0%, rgba(11,22,40,.95) 100%);
  border: 1px solid rgba(26,110,255,.28);
  border-radius: 14px;
  padding: 22px 20px;
}
.nm-quote-cta-h3 {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 6px;
}
.nm-quote-cta-desc {
  font-size: 12.5px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.nm-quote-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--bg-0);
  border: 1px solid rgba(26,110,255,.45);
  color: var(--t1);
  font-size: 13px;
  font-weight: 600;
  transition: var(--ease);
}
.nm-quote-cta-btn i {
  font-size: 14px;
}
.nm-quote-cta-btn:hover {
  background: rgba(26,110,255,.15);
  border-color: var(--blue);
  color: var(--blue-l);
  transform: translateY(-2px);
}

/* form */
.nm-quote-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--b-sub);
  border-radius: 18px;
  padding: 36px 32px;
}
.nm-quote-form-h2 {
  font-family: var(--fd);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 24px;
  line-height: 1.25;
}
#nm-quote-alerts:empty {
  display: none;
}
#nm-quote-alerts .nm-alert-stack {
  margin-bottom: 22px;
}

.nm-quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.nm-quote-field {
  position: relative;
  margin-bottom: 14px;
}
.nm-quote-form-row .nm-quote-field {
  margin-bottom: 0;
}
.nm-quote-field--full {
  grid-column: 1 / -1;
}
.nm-quote-field-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--blue-l);
  opacity: .85;
  pointer-events: none;
  z-index: 1;
}
.nm-quote-field-ico--top {
  top: 15px;
  transform: none;
  font-size: 15px;
}

.nm-quote-input {
  width: 100%;
  background: var(--bg-1) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 10px !important;
  padding: 13px 16px 13px 44px !important;
  font-family: var(--ff) !important;
  font-size: 13.5px !important;
  color: var(--t1) !important;
  outline: none;
  transition: var(--ease);
  box-shadow: none !important;
  height: auto !important;
}
.nm-quote-input::placeholder {
  color: var(--t3) !important;
}
.nm-quote-input:focus {
  border-color: rgba(26,110,255,.45) !important;
  box-shadow: 0 0 0 3px rgba(26,110,255,.12) !important;
}
.nm-quote-textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 14px !important;
}

/* file upload */
.nm-quote-upload-block {
  margin-bottom: 18px;
}
.nm-quote-upload-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 12px;
}
.nm-quote-upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nm-quote-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 120px;
  padding: 18px 14px;
  background: var(--bg-1);
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--ease);
  text-align: center;
}
.nm-quote-drop:hover,
.nm-quote-drop.is-dragover {
  border-color: rgba(26,110,255,.45);
  background: rgba(26,110,255,.06);
}
.nm-quote-drop.has-file {
  border-style: solid;
  border-color: rgba(26,110,255,.35);
}
.nm-quote-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.nm-quote-drop-ico {
  font-size: 28px;
  color: var(--blue-l);
  opacity: .9;
}
.nm-quote-drop-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
}
.nm-quote-drop-name {
  font-size: 11px;
  color: var(--t3);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nm-quote-captcha {
  margin-bottom: 18px;
}

.nm-quote-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--ff);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 6px 24px var(--glow);
}
.nm-quote-submit i {
  font-size: 15px;
}
.nm-quote-submit:hover {
  background: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--glow);
}
.nm-quote-form-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--t3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nm-quote-form-note i {
  color: var(--blue);
  font-size: 13px;
}

/* ── 3. STATS ───────────────────────────────────────── */
.nm-quote-stats {
  padding: 0 0 56px;
  background: var(--bg-0);
}
.nm-quote-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-2);
  border: 1px solid var(--b-sub);
  border-radius: 16px;
  padding: 28px 32px;
}
.nm-quote-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nm-quote-stat-ico {
  width: 48px;
  height: 48px;
  background: rgba(26,110,255,.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--blue-l);
  flex-shrink: 0;
}
.nm-quote-stat-num {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 3px;
}
.nm-quote-stat-lbl {
  font-size: 11.5px;
  color: var(--t3);
}

/* ── 4. PARTNERS ────────────────────────────────────── */
.nm-quote-partners {
  padding: 0 0 88px;
  background: var(--bg-0);
  border-top: 1px solid var(--b-sub);
}
.nm-quote-partners-inner {
  padding-top: 56px;
  text-align: center;
}
.nm-quote-partners-h2 {
  font-family: var(--fd);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 32px;
}
.nm-quote-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}
.nm-quote-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--t3);
  opacity: .75;
  transition: var(--ease);
}
.nm-quote-brand i {
  font-size: 26px;
}
.nm-quote-brand:hover {
  opacity: 1;
  color: var(--t2);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .nm-quote-main-grid {
    grid-template-columns: 1fr;
  }
  .nm-quote-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .nm-quote-sidebar-card {
    margin-bottom: 0;
  }
  .nm-quote-cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nm-quote-hero {
    padding: 108px 0 36px;
  }
  .nm-quote-sidebar {
    grid-template-columns: 1fr;
  }
  .nm-quote-form-row,
  .nm-quote-upload-row {
    grid-template-columns: 1fr;
  }
  .nm-quote-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px 20px;
  }
  .nm-quote-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .nm-quote-stats-inner {
    grid-template-columns: 1fr;
  }
  .nm-quote-brands {
    gap: 20px 28px;
  }
}
