/* ================================================================
   RemitIraqMvp – Public Site Stylesheet
   Design: Calm Fintech / Trustworthy / Persian RTL
   ================================================================ */

/* ── Google Font ── */
/* Vazirmatn loaded via Google Fonts with Tahoma fallback — see font-family stack below */

/* ── CSS Variables ── */
:root {
  --color-primary:      #1a3c6e;
  --color-primary-mid:  #1e4a8a;
  --color-primary-light:#e8eef7;
  --color-success:      #16a34a;
  --color-success-light:#dcfce7;
  --color-warning:      #d97706;
  --color-warning-light:#fef3c7;
  --color-danger:       #dc2626;
  --color-danger-light: #fee2e2;
  --color-info:         #0369a1;
  --color-info-light:   #e0f2fe;

  --color-bg:           #f4f6f9;
  --color-card:         #ffffff;
  --color-border:       #e2e8f0;
  --color-border-light: #f1f5f9;

  --color-text:         #1e293b;
  --color-text-mid:     #475569;
  --color-muted:        #94a3b8;
  --color-heading:      #0f172a;

  --radius-sm:          6px;
  --radius-md:          12px;
  --radius-lg:          16px;
  --radius-xl:          24px;

  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-card: 0 4px 20px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);

  --transition: .18s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.35;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header / Navbar ── */
.site-header {
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
}

.site-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.header-support {
  font-size: 0.82rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-support i { color: var(--color-success); }

/* ── Footer ── */
.site-footer {
  background: var(--color-heading);
  color: #94a3b8;
  padding: 40px 0 24px;
  margin-top: 80px;
  font-size: 0.875rem;
}

.site-footer h6 {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: #94a3b8; transition: color var(--transition); }
.footer-links a:hover { color: #e2e8f0; text-decoration: none; }

.footer-divider {
  border-color: #334155;
  margin: 28px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #64748b;
}

/* ── Cards ── */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card-elevated {
  box-shadow: var(--shadow-card);
  border: none;
}

.card-section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--color-card);
}

.card-section + .card-section { margin-top: 16px; }

.card-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}

/* ── Buttons ── */
.btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1.4;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-mid);
  border-color: var(--color-primary-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,60,110,.3);
  text-decoration: none;
}

.btn-success {
  background: var(--color-success);
  color: #fff;
  border-color: var(--color-success);
}
.btn-success:hover {
  background: #15803d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-mid);
  border-color: var(--color-border);
}
.btn-outline:hover {
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary:hover {
  background: var(--color-primary-light);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-mid);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
}

/* Loading state */
.btn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-outline.loading::after,
.btn-ghost.loading::after {
  border-color: rgba(0,0,0,.2);
  border-top-color: var(--color-primary);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form Controls ── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--color-danger);
  margin-right: 3px;
}

.form-control, .form-select {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.5;
  direction: rtl;
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,60,110,.12);
}

.form-control.is-invalid, .form-select.is-invalid {
  border-color: var(--color-danger);
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}

.form-control::placeholder { color: var(--color-muted); }
.form-helper {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error {
  font-size: 0.8rem;
  color: var(--color-danger);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* آیکون خطا فقط وقتی پیام وجود دارد نمایش داده می‌شود */
.field-error:not(:empty)::before {
  content: "\F332";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.input-with-icon {
  position: relative;
}
.input-with-icon .form-control {
  padding-left: 14px;
  padding-right: 40px;
}
.input-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 1rem;
  pointer-events: none;
}

/* amount input special */
.amount-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.amount-input-wrap .form-control {
  padding-left: 70px;
  font-size: 1.2rem;
  font-weight: 600;
  height: 56px;
}
.amount-unit {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 0 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-right: none;
  border-radius: 0 0 0 var(--radius-sm);
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ── Status Badges ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-pending  { background: var(--color-warning-light); color: #92400e; }
.badge-pending::before  { background: var(--color-warning); }
.badge-processing { background: var(--color-info-light); color: #075985; }
.badge-processing::before { background: var(--color-info); }
.badge-completed  { background: var(--color-success-light); color: #14532d; }
.badge-completed::before  { background: var(--color-success); }
.badge-cancelled  { background: #f1f5f9; color: #64748b; }
.badge-cancelled::before  { background: #94a3b8; }

/* ── Hero Section ── */
.hero {
  background: linear-gradient(150deg, var(--color-primary) 0%, #0f2a52 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Calculator card on hero */
.hero-calc-card {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.hero-calc-card .calc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

/* ── Trust Chips ── */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.trust-chip i { font-size: 0.85rem; color: #6ee7b7; }

/* ── Steps Section ── */
.steps-section {
  padding: 56px 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--color-heading);
}

.step-card p {
  font-size: 0.83rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    height: 1px;
    background: var(--color-border);
    margin-top: -60px;
    position: relative;
  }
}

/* ── Trust Indicators ── */
.trust-section { padding: 56px 0; }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

.trust-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-item h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--color-heading);
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section { padding: 56px 0; }

.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.accordion-item {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-heading) !important;
  background: var(--color-card) !important;
  border: none;
  padding: 16px 20px;
  direction: rtl;
  text-align: right;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary) !important;
  box-shadow: none !important;
  background: var(--color-primary-light) !important;
}

.accordion-button::after {
  margin-right: auto;
  margin-left: 0;
}

.accordion-body {
  font-size: 0.88rem;
  color: var(--color-text-mid);
  line-height: 1.8;
  padding: 0 20px 16px;
  direction: rtl;
}

/* ── Quote Page ── */
.quote-page { padding: 40px 0 60px; }

.quote-summary-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.quote-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a8a 100%);
  color: #fff;
  padding: 24px 28px;
}

.quote-header .from-to { display:flex; align-items:center; gap:8px; font-size:.82rem; font-weight:600; color:var(--color-muted); direction:rtl; }

.quote-header h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.quote-body { padding: 28px; }

.quote-amount-primary {
  text-align: center;
  padding: 24px;
  background: var(--color-success-light);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1.5px solid #bbf7d0;
}

.quote-amount-primary .label {
  font-size: 0.8rem;
  color: var(--color-success);
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.quote-amount-primary .value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-success);
  line-height: 1.1;
  direction: ltr;
}

.quote-amount-primary .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-success);
  margin-top: 4px;
}

.quote-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.875rem;
}

.quote-meta-row:last-child { border-bottom: none; }

.quote-meta-row .meta-label {
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.quote-meta-row .meta-value {
  font-weight: 600;
  color: var(--color-text);
}

.quote-meta-row .meta-value.danger { color: var(--color-danger); }

.quote-note {
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--color-primary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  line-height: 1.6;
}

.quote-footer { padding: 0 28px 28px; }

/* ── Order Form ── */
.order-page { padding: 40px 0 60px; }

.order-amount-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.order-amount-banner .amounts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-amount-banner .amount-label { color: rgba(255,255,255,.7); font-size: 0.8rem; }

.order-amount-banner .amount-value {
  font-weight: 700;
  font-size: 1rem;
}

.order-amount-banner .arrow { color: rgba(255,255,255,.5); }

.order-amount-banner .iqd { color: #6ee7b7; }

/* ── Progress Stepper ── */
.form-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  flex: 1;
}

.stepper-step.active { color: var(--color-primary); }
.stepper-step.done { color: var(--color-success); }

.stepper-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  background: transparent;
}

.stepper-step.active .stepper-dot {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.stepper-step.done .stepper-dot {
  background: var(--color-success);
  color: #fff;
  border-color: var(--color-success);
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 8px;
}

.stepper-line.done { background: var(--color-success); }

.stepper-label { display: none; }
@media (min-width: 576px) { .stepper-label { display: inline; } }

/* sticky summary on desktop */
.order-sticky-summary {
  position: sticky;
  top: 80px;
}

.summary-card {
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.summary-card-header {
  background: var(--color-primary);
  color: #fff;
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.summary-card-body { padding: 20px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px dashed var(--color-border-light);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .s-label { color: var(--color-muted); }
.summary-row .s-value { font-weight: 600; }

.summary-total {
  background: var(--color-success-light);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total .label { font-size: 0.8rem; color: var(--color-success); font-weight: 600; }
.summary-total .value { font-size: 1.2rem; font-weight: 800; color: var(--color-success); }

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.security-note i { color: var(--color-success); margin-top: 2px; flex-shrink: 0; }

/* ── Confirmation Page ── */
.confirmation-page { padding: 48px 0 80px; }

.confirm-success-icon {
  width: 80px;
  height: 80px;
  background: var(--color-success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--color-success);
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275);
}

@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.tracking-code-box {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin: 20px 0;
}

.tracking-code-box .tc-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tracking-code-box .tc-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
  font-family: 'Courier New', monospace;
  line-height: 1.2;
}

.btn-copy {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.btn-copy:hover { background: rgba(255,255,255,.22); }
.btn-copy.copied { background: rgba(110,231,183,.25); border-color: rgba(110,231,183,.4); }

.next-steps { counter-reset: step; }

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.875rem;
}

.next-step-item:last-child { border-bottom: none; }

.next-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.next-step-text { color: var(--color-text-mid); line-height: 1.6; }
.next-step-text strong { color: var(--color-text); }

/* ── Section Utilities ── */
.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* ── Alert / Notification ── */
.alert-banner {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  border: 1px solid transparent;
}

.alert-banner i { flex-shrink: 0; margin-top: 1px; }

.alert-info  { background: var(--color-info-light);    color: #075985; border-color: #bae6fd; }
.alert-success{ background: var(--color-success-light); color: #14532d; border-color: #bbf7d0; }
.alert-warning{ background: var(--color-warning-light); color: #78350f; border-color: #fde68a; }
.alert-danger { background: var(--color-danger-light);  color: #991b1b; border-color: #fecaca; }

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-muted);
}

.empty-state-icon {
  font-size: 3rem;
  color: var(--color-border);
  margin-bottom: 16px;
  display: block;
}

.empty-state h6 { font-size: 0.95rem; color: var(--color-text-mid); margin-bottom: 6px; }
.empty-state p  { font-size: 0.83rem; margin: 0; }

/* ── Page Breadcrumb ── */
.page-breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-breadcrumb a { color: var(--color-muted); }
.page-breadcrumb a:hover { color: var(--color-primary); text-decoration: none; }
.page-breadcrumb .sep { color: var(--color-border); }
.page-breadcrumb .current { color: var(--color-text); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero { padding: 36px 0 200px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-calc-card { margin-top: -160px; }

  .btn-lg { font-size: 0.95rem; padding: 12px 20px; }

  .quote-amount-primary .value { font-size: 1.7rem; }
  .quote-body { padding: 20px; }
  .quote-header { padding: 18px 20px; }
  .quote-footer { padding: 0 20px 20px; }

  .tracking-code-box .tc-value { font-size: 1.4rem; letter-spacing: 2px; }

  .trust-chip span { display: none; }
  .trust-chips { gap: 7px; }
}

@media (min-width: 768px) {
  .hero { padding: 72px 0 90px; }
  .hero h1 { font-size: 2.2rem; }
}

@media (min-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
}

/* ── Site Nav (Header) ── */
.site-nav { gap: 4px; }
.site-nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-mid);
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.site-nav-link:hover { background: var(--color-bg); color: var(--color-primary); text-decoration: none; }

/* ── Hero Social Proof Bar ── */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 14px 20px;
  max-width: 420px;
}
.hsp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.hsp-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hsp-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
  text-align: center;
}
.hsp-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  margin: 0 4px;
}

/* ── Step Icon ── */
.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}
.step-number {
  display: none;
}

/* ── Comparison Table ── */
.compare-section {
  padding: 56px 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.compare-table thead th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: .82rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.compare-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: #fafbfd; }

.compare-th-us {
  color: var(--color-primary);
  background: var(--color-primary-light) !important;
}
.compare-th-them { color: var(--color-muted); }

.compare-yes { color: var(--color-success); font-weight: 600; }
.compare-no  { color: #94a3b8; }
.compare-partial { color: var(--color-warning); font-weight: 600; }
.compare-yes i, .compare-no i, .compare-partial i { margin-left: 5px; }

/* ── Final CTA ── */
.final-cta-section {
  padding: 0 0 64px;
  background: var(--color-bg);
}
.final-cta-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2a52 100%);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
