/*
 * Azkiweb Order Experience v2
 * Design-only layer for order.php.
 * No workflow/API/database changes. Cascade is handled without force overrides.
 */

.order-page {
  --order-bg: #070b14;
  --order-surface: rgba(14, 20, 34, 0.82);
  --order-surface-strong: rgba(18, 26, 44, 0.96);
  --order-surface-soft: rgba(255, 255, 255, 0.035);
  --order-line: rgba(148, 163, 184, 0.16);
  --order-line-strong: rgba(56, 189, 248, 0.3);
  --order-text: #f7f9fc;
  --order-muted: #9aa8bd;
  --order-blue: #38bdf8;
  --order-blue-2: #2563eb;
  --order-violet: #8b5cf6;
  --order-green: #34d399;
  --order-orange: #fb923c;
  --order-danger: #fb7185;
  --order-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --order-radius-xl: 28px;
  --order-radius-lg: 22px;
  --order-radius-md: 16px;
  --order-radius-sm: 12px;
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.11), transparent 30%),
    radial-gradient(circle at 16% 28%, rgba(139, 92, 246, 0.09), transparent 26%),
    var(--order-bg);
  color: var(--order-text);
}

.order-page .order-container,
.order-page .order-container * {
  box-sizing: border-box;
}

.order-page .order-container {
  position: relative;
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-areas:
    "progress progress"
    "content sidebar";
  gap: 24px;
  isolation: isolate;
}

.order-page .order-container::before,
.order-page .order-container::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.13;
  pointer-events: none;
  z-index: -1;
}

.order-page .order-container::before {
  top: 90px;
  right: -150px;
  background: #2563eb;
}

.order-page .order-container::after {
  bottom: 4%;
  left: -160px;
  background: #7c3aed;
}

/* --------------------------------------------------------------------------
   Progress / stepper
   -------------------------------------------------------------------------- */
.order-page .order-progress {
  grid-area: progress;
  position: relative;
  padding: 22px 26px 20px;
  background: linear-gradient(145deg, rgba(16, 24, 40, 0.93), rgba(8, 13, 24, 0.9));
  border: 1px solid var(--order-line);
  border-radius: var(--order-radius-xl);
  box-shadow: var(--order-shadow);
  overflow: hidden;
}

.order-page .order-progress::before {
  content: none;
}

.order-page .order-progress-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.order-page .order-progress-heading__title {
  color: #e5edf7;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 850;
}

.order-page .order-progress-heading__hint {
  color: #68788f;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 550;
}

.order-page .progress-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(74px, 1fr));
  gap: 8px;
  z-index: 2;
  direction: rtl;
}

.order-page .progress-steps.is-website-flow {
  grid-template-columns: repeat(9, minmax(74px, 1fr));
}

.order-page .progress-steps::before {
  content: none;
  display: none;
}

.order-page .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-width: 0;
  text-align: center;
  color: #64748b;
  transition: color .24s ease, transform .24s ease;
}

.order-page .step-number {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  transition: border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.order-page .step-title {
  max-width: 100%;
  min-height: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: inherit;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 650;
}

.order-page .step.active {
  color: #e0f2fe;
  transform: translateY(-1px);
}

.order-page .step.active .step-number {
  color: #fff;
  border-color: rgba(56, 189, 248, 0.7);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.36), rgba(37, 99, 235, 0.38));
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.order-page .step.completed {
  color: #a7f3d0;
}

.order-page .step.completed .step-number {
  color: transparent;
  border-color: rgba(52, 211, 153, 0.58);
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.18);
}

.order-page .step.completed .step-number::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.order-page .progress-bar {
  position: relative;
  height: 5px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.09);
}

.order-page .progress-fill {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(270deg, var(--order-green), var(--order-blue), var(--order-violet));
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.28);
  transform-origin: right center;
  transition: width .42s cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   Main step surface
   -------------------------------------------------------------------------- */
.order-page .order-content {
  grid-area: content;
  min-width: 0;
}

.order-page .order-step {
  display: none;
}

.order-page .order-step.active {
  display: block;
  animation: orderStepIn .34s ease both;
}

@keyframes orderStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-page .step-content {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--order-line);
  border-radius: var(--order-radius-xl);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(8, 13, 24, 0.94)),
    rgba(8, 13, 24, 0.9);
  box-shadow: var(--order-shadow);
  overflow: hidden;
}

.order-page .step-content::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 68%);
  pointer-events: none;
}

.order-page .step-content > h2 {
  position: relative;
  margin: 0;
  color: #f8fafc;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.order-page .step-content > h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--order-blue), var(--order-violet));
}

.order-page .step-description {
  position: relative;
  margin: 12px 0 28px;
  color: var(--order-muted);
  font-size: 14px;
  line-height: 1.9;
}

.order-page .hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   Welcome step
   -------------------------------------------------------------------------- */
.order-page .welcome-step {
  min-height: 0;
  padding-block: 34px;
}

.order-page .welcome-hero {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 6px 0 28px;
  text-align: center;
}

.order-page .welcome-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.055);
  color: #a7dff8;
  font-size: 11px;
  font-weight: 800;
}

.order-page .welcome-kicker i {
  color: #67e8f9;
  font-size: 10px;
}

.order-page .welcome-icon-wrapper {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
}

.order-page .welcome-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(99, 102, 241, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.24);
  transform: rotate(-4deg);
}

.order-page .welcome-icon-glow {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background: rgba(56, 189, 248, 0.3);
  filter: blur(26px);
}

.order-page .welcome-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.order-page .welcome-hero .lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: #dbeafe;
  font-size: 16px;
  line-height: 2;
  font-weight: 650;
}

.order-page .welcome-hero .sub-lead {
  margin: 7px 0 0;
  color: #8291a8;
  font-size: 12.5px;
  line-height: 1.9;
}

.order-page .welcome-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.order-page .welcome-features-grid .feature-card {
  min-width: 0;
  min-height: 154px;
  padding: 18px 14px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.033), rgba(255, 255, 255, 0.018));
  text-align: center;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.order-page .welcome-features-grid .feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.24);
  background: rgba(56, 189, 248, 0.045);
}

.order-page .welcome-features-grid .feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dd3fc;
  font-size: 17px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(56, 189, 248, 0.075);
}

.order-page .welcome-features-grid h3 {
  margin: 0 0 7px;
  color: #f8fafc;
  font-size: 13.5px;
  font-weight: 850;
}

.order-page .welcome-features-grid p {
  margin: 0;
  color: #8291a8;
  font-size: 10.8px;
  line-height: 1.85;
}

.order-page .welcome-cta {
  margin-top: 14px;
  padding: 12px 15px;
  border: 1px solid rgba(52, 211, 153, 0.13);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.06), rgba(56, 189, 248, 0.03));
}

.order-page .welcome-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #aebcd0;
}

.order-page .welcome-cta__label {
  color: #8af0cb;
  font-size: 11px;
  font-weight: 850;
}

.order-page .welcome-cta .cta-content i {
  color: var(--order-green);
  font-size: 11px;
}

.order-page .welcome-cta p {
  margin: 0;
  font-size: 11.5px;
}

/* --------------------------------------------------------------------------
   Service cards / database-driven cards
   -------------------------------------------------------------------------- */
.order-page .service-selection-grid,
.order-page .options-grid,
.order-page .packages-grid {
  display: grid;
  gap: 18px;
}

.order-page .service-choice-step {
  padding-top: 30px;
}

.order-page .step-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.order-page .step-heading-row > div:first-child {
  min-width: 0;
}

.order-page .step-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-bottom: 8px;
  padding: 4px 9px;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #86d8f7;
  font-size: 9.5px;
  font-weight: 850;
}

.order-page .step-heading-row h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  font-weight: 900;
}

.order-page .step-heading-row .step-description {
  margin: 8px 0 0;
}

.order-page .step-heading-note {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: #8291a8;
  font-size: 10px;
  line-height: 1.8;
}

.order-page .step-heading-note i {
  flex: 0 0 auto;
  color: #67e8f9;
}

.order-page .service-selection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin: 0 auto;
}

.order-page .options-grid,
.order-page .packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.order-page .service-card,
.order-page .modern-feature-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 29, 48, 0.82), rgba(10, 16, 29, 0.9));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.order-page .service-card {
  display: flex;
  flex-direction: column;
  min-height: 425px;
  padding: 24px;
}

.order-page .service-card::before,
.order-page .modern-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.07), transparent 42%, rgba(139, 92, 246, 0.055));
  opacity: 0;
  transition: opacity .25s ease;
}

.order-page .service-card--seo::before {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.065), transparent 44%, rgba(34, 211, 238, 0.045));
}

.order-page .service-card:hover,
.order-page .modern-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.order-page .service-card:hover::before,
.order-page .modern-feature-card:hover::before {
  opacity: 1;
}

.order-page .modern-feature-card.selected {
  border-color: rgba(52, 211, 153, 0.56);
  background: linear-gradient(145deg, rgba(15, 54, 48, 0.72), rgba(9, 21, 30, 0.94));
  box-shadow: 0 20px 54px rgba(16, 185, 129, 0.12), inset 0 0 0 1px rgba(52, 211, 153, 0.08);
}

.order-page .service-card--website.selected {
  border-color: rgba(56, 189, 248, 0.58);
  background: linear-gradient(145deg, rgba(14, 42, 68, 0.86), rgba(8, 19, 34, 0.96));
  box-shadow: 0 20px 54px rgba(14, 165, 233, 0.12), inset 0 0 0 1px rgba(56, 189, 248, 0.08);
}

.order-page .service-card--seo.selected {
  border-color: rgba(52, 211, 153, 0.58);
  background: linear-gradient(145deg, rgba(14, 50, 45, 0.84), rgba(8, 24, 30, 0.96));
  box-shadow: 0 20px 54px rgba(16, 185, 129, 0.12), inset 0 0 0 1px rgba(52, 211, 153, 0.08);
}

.order-page .service-card__topline {
  position: relative;
  z-index: 1;
  min-height: 29px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.order-page .service-card__badge,
.order-page .service-card__selected-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 850;
  white-space: nowrap;
}

.order-page .service-card--website .service-card__badge {
  color: #9edcff;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(56, 189, 248, 0.055);
}

.order-page .service-card--seo .service-card__badge {
  color: #9cebcf;
  border: 1px solid rgba(52, 211, 153, 0.16);
  background: rgba(52, 211, 153, 0.055);
}

.order-page .service-card__selected-mark {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  color: #b7f7dc;
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.08);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.order-page .service-card.selected .service-card__selected-mark {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-page .service-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #7dd3fc;
  font-size: 25px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.08);
}

.order-page .service-card--seo .service-icon {
  color: #86efcf;
  border-color: rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.07);
}

.order-page .service-card.selected .service-icon {
  transform: translateY(-1px);
}

.order-page .service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  color: #f8fafc;
  font-size: 21px;
  font-weight: 900;
}

.order-page .service-card > p {
  position: relative;
  z-index: 1;
  min-height: 72px;
  margin: 0 0 18px;
  color: #91a0b6;
  font-size: 12.5px;
  line-height: 1.95;
}

.order-page .service-features {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.order-page .service-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b7c3d5;
  font-size: 11.5px;
  line-height: 1.7;
}

.order-page .service-features li i {
  color: var(--order-green);
  font-size: 9px;
}

.order-page .service-card__footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  color: #8291a8;
  font-size: 10.5px;
  font-weight: 800;
}

.order-page .service-card--website .service-card__footer i {
  color: #67e8f9;
}

.order-page .service-card--seo .service-card__footer i {
  color: #6ee7b7;
}

.order-page .service-card.selected .service-card__footer {
  color: #dbeafe;
}

.order-page .modern-feature-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 29, 48, 0.82), rgba(10, 16, 29, 0.9));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.order-page .service-card {
  padding: 30px;
}

.order-page .service-card::before,
.order-page .modern-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.07), transparent 42%, rgba(139, 92, 246, 0.055));
  opacity: 0;
  transition: opacity .25s ease;
}

.order-page .service-card:hover,
.order-page .modern-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.order-page .service-card:hover::before,
.order-page .modern-feature-card:hover::before {
  opacity: 1;
}

.order-page .service-card.selected,
.order-page .modern-feature-card.selected {
  border-color: rgba(52, 211, 153, 0.56);
  background: linear-gradient(145deg, rgba(15, 54, 48, 0.72), rgba(9, 21, 30, 0.94));
  box-shadow: 0 20px 54px rgba(16, 185, 129, 0.12), inset 0 0 0 1px rgba(52, 211, 153, 0.08);
}

.order-page .service-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #7dd3fc;
  font-size: 27px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.08);
}

.order-page .service-card.selected .service-icon {
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.1);
}

.order-page .service-card h3 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 21px;
  font-weight: 850;
}

.order-page .service-card > p {
  margin: 0 0 20px;
  color: #91a0b6;
  font-size: 13px;
  line-height: 1.9;
}

.order-page .service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.order-page .service-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b7c3d5;
  font-size: 12px;
}

.order-page .service-features li i {
  color: var(--order-green);
  font-size: 10px;
}

.order-page .modern-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 26px 22px 20px;
  opacity: 1;
}

.order-page .feature-card-glow {
  position: absolute;
  inset: -35%;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.14), transparent 36%);
  opacity: 0;
  transition: opacity .25s ease;
}

.order-page .modern-feature-card:hover .feature-card-glow,
.order-page .modern-feature-card.selected .feature-card-glow {
  opacity: 1;
}

.order-page .feature-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.order-page .feature-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(99, 102, 241, 0.18));
  border: 1px solid rgba(56, 189, 248, 0.16);
  transform: rotate(5deg);
}

.order-page .feature-main-icon {
  position: relative;
  z-index: 1;
  color: #7dd3fc;
  font-size: 29px;
}

.order-page .modern-feature-card.selected .feature-icon-bg {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.25);
}

.order-page .modern-feature-card.selected .feature-main-icon {
  color: #a7f3d0;
}

.order-page .feature-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.order-page .feature-title {
  margin: 0 0 9px;
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 820;
}

.order-page .feature-desc {
  margin: 0;
  color: #8493aa;
  font-size: 12px;
  line-height: 1.85;
}

.order-page .feature-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.order-page .feature-price-tag {
  min-width: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
}

.order-page .price-amount {
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 850;
}

.order-page .price-currency {
  color: #728198;
  font-size: 10px;
}

.order-page .feature-check-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.order-page .modern-feature-card.selected .feature-check-icon {
  color: #052e2b;
  border-color: var(--order-green);
  background: var(--order-green);
}

.order-page .package-recommended-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.22);
  font-size: 10px;
  font-weight: 750;
}

.order-page .package-features-list {
  list-style: none;
  padding: 14px 0 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.12);
}

.order-page .package-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #a8b5c8;
  font-size: 11px;
  line-height: 1.65;
}

.order-page .package-features-list i {
  margin-top: 4px;
  color: var(--order-green);
  font-size: 9px;
}

/* --------------------------------------------------------------------------
   Technology chooser
   -------------------------------------------------------------------------- */
.order-page .tech-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.order-page .tech-sidebar,
.order-page .tech-content {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.022);
}

.order-page .tech-sidebar {
  padding: 14px;
}

.order-page .tech-section + .tech-section {
  margin-top: 12px;
}

.order-page .modern-tech-category-btn {
  position: relative;
  min-height: 118px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.order-page .modern-tech-category-btn:hover {
  transform: translateX(-2px);
  border-color: rgba(56, 189, 248, 0.28);
}

.order-page .modern-tech-category-btn.active {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(16, 185, 129, 0.07);
}

.order-page .tech-btn-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 44%);
  pointer-events: none;
}

.order-page .tech-btn-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-page .tech-btn-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.16);
}

.order-page .tech-btn-icon {
  position: relative;
  color: #7dd3fc;
  font-size: 21px;
}

.order-page .tech-btn-content {
  position: relative;
  min-width: 0;
}

.order-page .tech-btn-content h3 {
  margin: 0 0 4px;
  color: #eef2ff;
  font-size: 14px;
  font-weight: 800;
}

.order-page .tech-btn-content p {
  margin: 0;
  color: #76869c;
  font-size: 10.5px;
  line-height: 1.55;
}

.order-page .tech-content {
  min-height: 350px;
  padding: 22px;
}

.order-page .tech-section-content {
  display: none;
}

.order-page .tech-section-content.active {
  display: block;
}

.order-page .tech-content-title {
  margin: 0 0 18px;
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 800;
}

.order-page .tech-custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.order-page .tech-placeholder {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #627087;
  text-align: center;
}

.order-page .tech-placeholder i {
  font-size: 36px;
  color: rgba(56, 189, 248, 0.34);
}

.order-page .tech-placeholder p {
  margin: 0;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Delivery
   -------------------------------------------------------------------------- */
.order-page .delivery-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.order-page .delivery-option {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 240px;
  padding: 28px 22px 22px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 22px;
  color: inherit;
  background: linear-gradient(145deg, rgba(19, 28, 47, 0.8), rgba(9, 15, 27, 0.9));
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.order-page .delivery-option:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

.order-page .delivery-option.selected {
  border-color: rgba(52, 211, 153, 0.5);
  background: linear-gradient(145deg, rgba(15, 58, 49, 0.68), rgba(9, 20, 29, 0.92));
}

.order-page .delivery-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dd3fc;
  font-size: 24px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.17);
}

.order-page .delivery-option h3 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 18px;
  font-weight: 850;
}

.order-page .delivery-time {
  margin: 0;
  color: #aebbd0;
  font-size: 13px;
}

.order-page .delivery-price {
  margin: 12px 0 0;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 750;
}

.order-page .delivery-description {
  margin: 10px auto 0;
  max-width: 250px;
  color: #8190a7;
  font-size: 11px;
  line-height: 1.8;
}

.order-page .delivery-selected-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 999px;
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.06);
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .2s ease, transform .2s ease;
}

.order-page .delivery-option.selected .delivery-selected-mark {
  opacity: 1;
  transform: translateY(0);
}

.order-page .delivery-option.selected .delivery-price {
  color: #6ee7b7;
}

.order-page .delivery-options-loading,
.order-page .delivery-options-empty {
  grid-column: 1 / -1;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  color: #8190a7;
  background: rgba(255, 255, 255, 0.018);
  text-align: center;
  font-size: 12px;
}

.order-page .delivery-options-loading i,
.order-page .delivery-options-empty i {
  color: #7dd3fc;
}

.order-page .delivery-option .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: #fed7aa;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 999px;
  font-size: 9px;
}

/* --------------------------------------------------------------------------
   Forms / SEO URL / keyword fields
   -------------------------------------------------------------------------- */
.order-page .customer-form,
.order-page .seo-url-container,
.order-page .keywords-input-container,
.order-page .seo-analysis-container,
.order-page .keywords-analysis-container {
  max-width: 920px;
  margin: 0 auto;
}

.order-page .customer-form,
.order-page .seo-url-container,
.order-page .keywords-input-container {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.023);
}

.order-page .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-page .form-group {
  margin-bottom: 17px;
}

.order-page .form-group label,
.order-page .url-input-wrapper label {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}

.order-page .form-group input,
.order-page .form-group textarea,
.order-page .url-input,
.order-page .keyword-input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 13px;
  outline: none;
  color: #f8fafc;
  background: rgba(3, 7, 18, 0.54);
  font-family: inherit;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.order-page .form-group input,
.order-page .url-input,
.order-page .keyword-input {
  min-height: 48px;
  padding: 0 15px;
}

.order-page .form-group textarea {
  min-height: 108px;
  padding: 13px 15px;
  resize: vertical;
  line-height: 1.8;
}

.order-page .form-group input:focus,
.order-page .form-group textarea:focus,
.order-page .url-input:focus,
.order-page .keyword-input:focus {
  border-color: rgba(56, 189, 248, 0.58);
  background: rgba(3, 7, 18, 0.72);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.07);
}

.order-page .url-input.error {
  border-color: rgba(251, 113, 133, 0.68);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.07);
}

.order-page .url-validation-message {
  display: none;
  margin-top: 8px;
  color: #fda4af;
  font-size: 11px;
}

.order-page .url-validation-message.show {
  display: block;
}

.order-page .url-help,
.order-page .keywords-help {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 13px;
  color: #8fa1b9;
  background: rgba(56, 189, 248, 0.045);
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.order-page .url-help i,
.order-page .keywords-help i {
  margin-top: 4px;
  color: #7dd3fc;
}

.order-page .url-help p,
.order-page .keywords-help p {
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}

.order-page .analyze-button-container {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.order-page .analyze-btn,
.order-page .add-keyword-btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.order-page .analyze-btn:hover,
.order-page .add-keyword-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.25);
}

.order-page .keywords-list {
  display: grid;
  gap: 10px;
}

.order-page .keyword-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 10px;
}

.order-page .remove-keyword {
  width: 44px;
  height: 44px;
  align-self: center;
  border: 1px solid rgba(251, 113, 133, 0.18);
  border-radius: 12px;
  color: #fda4af;
  background: rgba(251, 113, 133, 0.06);
  cursor: pointer;
}

.order-page .add-keyword-btn {
  margin-top: 12px;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: none;
  color: #bae6fd;
}

/* --------------------------------------------------------------------------
   Analysis / issue cards
   -------------------------------------------------------------------------- */
.order-page .analysis-loading {
  padding: 60px 20px;
  text-align: center;
  color: #9fb0c7;
}

.order-page .spinner,
.order-page .loading {
  display: inline-block;
  border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.16);
  border-top-color: var(--order-blue);
  animation: orderSpin .8s linear infinite;
}

.order-page .spinner {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.order-page .loading {
  width: 18px;
  height: 18px;
}

@keyframes orderSpin { to { transform: rotate(360deg); } }

.order-page .analysis-results,
.order-page .keywords-results {
  display: grid;
  gap: 18px;
}

.order-page .score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.13);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.07), rgba(139, 92, 246, 0.045));
}

.order-page .score-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 7px solid rgba(56, 189, 248, 0.13);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.12);
}

.order-page .score-number {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.order-page .score-label {
  color: #7890aa;
  font-size: 9px;
}

.order-page .grade-badge {
  padding: 10px 18px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.09);
  border: 1px solid rgba(59, 130, 246, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.order-page .grade-message-box,
.order-page .analysis-info-box,
.order-page .summary-info-box,
.order-page .order-confirmation-notice {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.order-page .grade-message-box {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #a9b8cc;
}

.order-page .grade-message-box i {
  margin-top: 4px;
  color: #7dd3fc;
}

.order-page .grade-message-box p {
  margin: 0;
  line-height: 1.8;
  font-size: 12px;
}

.order-page .issues-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.order-page .issues-section {
  padding: 17px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.order-page .issues-section h3 {
  margin: 0 0 14px;
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 800;
}

.order-page .critical-section h3 i { color: #fb7185; }
.order-page .warning-section h3 i { color: #fbbf24; }
.order-page .info-section h3 i { color: #60a5fa; }

.order-page .issues-list {
  display: grid;
  gap: 8px;
}

.order-page .issue-item,
.order-page .no-issues {
  padding: 11px;
  border-radius: 11px;
  background: rgba(3, 7, 18, 0.38);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.order-page .issue-title {
  color: #d9e2ef;
  font-size: 11px;
  font-weight: 700;
}

.order-page .issue-description {
  margin-top: 5px;
  color: #748399;
  font-size: 10px;
  line-height: 1.7;
}

.order-page .no-issues {
  color: #86efac;
  font-size: 10px;
}

.order-page .analysis-info-box {
  margin: 18px 0;
  border-color: rgba(52, 211, 153, 0.15);
  background: rgba(16, 185, 129, 0.045);
}

.order-page .analysis-info-box h4 {
  margin: 0 0 12px;
  color: #86efac;
  font-size: 13px;
}

.order-page .analysis-info-box p,
.order-page .analysis-info-box li {
  color: #9fb0c3;
  font-size: 11px;
  line-height: 1.8;
}

.order-page .analysis-info-box ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

.order-page .analysis-info-box li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(52, 211, 153, 0.08);
}

.order-page .analysis-info-box li:last-child {
  border-bottom: 0;
}

.order-page .analysis-info-box li i,
.order-page .analysis-info-box p i {
  color: var(--order-green);
  margin-left: 8px;
}

.order-page .analysis-confirmation {
  margin-top: 18px;
}

.order-page .confirmation-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  color: #b8c5d7;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.order-page .confirmation-checkbox input {
  margin-top: 4px;
  accent-color: var(--order-green);
}

.order-page .checkmark { display: none; }

/* --------------------------------------------------------------------------
   Keyword analysis
   -------------------------------------------------------------------------- */
.order-page .keywords-summary {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.022);
}

.order-page .keywords-summary h3 {
  margin: 0 0 15px;
  color: #eef2ff;
  font-size: 15px;
}

.order-page .summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.order-page .stat-item {
  padding: 14px;
  text-align: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.order-page .stat-number {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.order-page .stat-label {
  display: block;
  margin-top: 4px;
  color: #8090a7;
  font-size: 9px;
}

.order-page .stat-item.easy { border-color: rgba(52, 211, 153, 0.18); }
.order-page .stat-item.medium { border-color: rgba(251, 191, 36, 0.18); }
.order-page .stat-item.hard { border-color: rgba(251, 113, 133, 0.18); }

.order-page .keywords-list-results {
  display: grid;
  gap: 10px;
}

.order-page .keyword-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.order-page .keyword-name {
  color: #edf2f7;
  font-size: 12px;
  font-weight: 750;
}

.order-page .keyword-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  color: #7f8da3;
  font-size: 9.5px;
}

.order-page .difficulty-badge {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.order-page .difficulty-badge.easy { color: #86efac; background: rgba(34, 197, 94, 0.08); }
.order-page .difficulty-badge.medium { color: #fde68a; background: rgba(245, 158, 11, 0.08); }
.order-page .difficulty-badge.hard { color: #fda4af; background: rgba(244, 63, 94, 0.08); }

.order-page .keyword-price {
  color: #bae6fd;
  font-size: 11px;
  font-weight: 750;
}

.order-page .total-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.06), rgba(56, 189, 248, 0.035));
}

.order-page .price-label { color: #9eb0c6; font-size: 12px; }
.order-page .price-value { color: #a7f3d0; font-size: 18px; font-weight: 900; }

/* --------------------------------------------------------------------------
   Review / summaries
   -------------------------------------------------------------------------- */
.order-page .order-confirmation-notice {
  margin-bottom: 22px;
  border-color: rgba(56, 189, 248, 0.14);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.06));
}

.order-page .order-confirmation-notice h3 {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 15px;
}

.order-page .order-confirmation-notice p {
  margin: 0;
  color: #9cadc3;
  font-size: 11px;
  line-height: 1.9;
}

.order-page .order-summary {
  display: grid;
  gap: 14px;
}

.order-page .summary-section {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.order-page .summary-section h3 {
  margin: 0 0 14px;
  color: #e8eef8;
  font-size: 13px;
  font-weight: 800;
}

.order-page .summary-section h3 i {
  margin-left: 6px;
  color: #7dd3fc;
}

.order-page .summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  color: #8e9db3;
  border-bottom: 1px solid rgba(148, 163, 184, 0.07);
  font-size: 11px;
}

.order-page .summary-item:last-child { border-bottom: 0; }
.order-page .summary-item strong { color: #c7d2e2; }
.order-page .summary-item span { color: #e2e8f0; text-align: left; overflow-wrap: anywhere; }

.order-page .summary-info-box {
  margin-top: 14px;
  border-color: rgba(52, 211, 153, 0.15);
  background: rgba(16, 185, 129, 0.045);
}

.order-page .summary-info-box p {
  margin: 0;
  color: #a7f3d0;
  font-size: 11px;
  line-height: 1.8;
}

.order-page .whitelist-message {
  padding: 34px 20px;
  text-align: center;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.045);
}

.order-page .whitelist-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #86efac;
  font-size: 28px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.16);
}

.order-page .whitelist-message h2 { margin: 0 0 10px; color: #f0fdf4; font-size: 20px; }
.order-page .whitelist-message p { margin: 0 0 18px; color: #9fb0c3; font-size: 12px; }

/* --------------------------------------------------------------------------
   Price summary / navigation
   -------------------------------------------------------------------------- */
.order-page .order-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.order-page .price-summary {
  position: relative;
  top: auto;
  align-self: auto;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15, 24, 41, 0.96), rgba(8, 13, 24, 0.96));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.order-page .price-summary::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  filter: blur(45px);
  pointer-events: none;
}

.order-page .price-summary h3 {
  position: relative;
  margin: 0 0 18px;
  color: #f8fafc;
  font-size: 16px;
  font-weight: 850;
}

.order-page .price-summary h3::after {
  content: "قیمت لحظه‌ای انتخاب‌ها";
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 9px;
  font-weight: 500;
}

.order-page .price-items {
  position: relative;
  display: grid;
  gap: 0;
}

.order-page .price-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  color: #8392a8;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 10.5px;
}

.order-page .price-item span:last-child {
  color: #dbe5f2;
  text-align: left;
  font-weight: 700;
}

.order-page .price-total {
  position: relative;
  margin-top: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  color: #a8b8ce;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(56, 189, 248, 0.06));
  border: 1px solid rgba(52, 211, 153, 0.14);
  font-size: 11px;
}

.order-page .price-total span:last-child {
  color: #a7f3d0;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.order-page .order-navigation {
  grid-area: navigation;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--order-line);
  border-radius: 20px;
  background: rgba(9, 15, 27, 0.82);
  backdrop-filter: blur(16px);
}

.order-page .order-navigation .btn,
.order-page .whitelist-message .btn {
  min-height: 48px;
  min-width: 124px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.order-page .order-navigation .btn:hover,
.order-page .whitelist-message .btn:hover {
  transform: translateY(-2px);
}

.order-page .order-navigation .btn-primary,
.order-page .whitelist-message .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.order-page .order-navigation .btn-secondary {
  color: #c5d2e3;
  background: rgba(148, 163, 184, 0.055);
  border-color: rgba(148, 163, 184, 0.14);
}

.order-page .order-navigation .btn-success {
  color: #052e2b;
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.18);
}

.order-page .order-navigation .btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* Workflow visibility stays controlled by order.js; this rule only preserves its hidden state. */
.order-page .order-navigation .btn.hidden {
  display: none;
}

@media (min-width: 992px) {
  .order-page .order-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-page .order-sidebar > .price-summary,
  .order-page .order-sidebar > .order-navigation {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .order-page .order-navigation {
    grid-area: auto;
    position: relative;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 10px;
    border-radius: 18px;
    border-color: rgba(56, 189, 248, 0.2);
    background: linear-gradient(145deg, rgba(15, 24, 41, 0.94), rgba(8, 13, 24, 0.94));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    transform: none;
  }

  .order-page .order-navigation::before {
    content: none;
    display: none;
  }

  .order-page .order-nav-context {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 1 auto;
    min-width: 0;
    min-height: 46px;
    padding-inline: 10px;
    color: #9aabc0;
    font-size: 10px;
    line-height: 1.7;
    font-weight: 750;
    white-space: nowrap;
  }

  .order-page #prev-btn:not(.hidden) + .order-nav-context {
    display: none;
  }

  .order-page .order-navigation .btn {
    flex: 0 0 auto;
    min-height: 46px;
    min-width: 112px;
    padding-inline: 16px;
  }

  .order-page .order-navigation #submit-btn {
    min-width: 132px;
  }
}

/* --------------------------------------------------------------------------
   Notification styles folded into the order-specific stylesheet
   -------------------------------------------------------------------------- */
.order-page .notification-container {
  position: fixed;
  top: 92px;
  left: 18px;
  z-index: 10000;
  width: min(390px, calc(100vw - 36px));
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.order-page .notification,
.order-page .toast-notification {
  pointer-events: auto;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .order-page .order-container {
    width: min(1080px, calc(100% - 36px));
    padding-top: 44px;
    grid-template-columns: minmax(0, 1fr) 285px;
  }

  .order-page .welcome-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-page .progress-steps {
    overflow-x: auto;
    grid-template-columns: repeat(8, minmax(88px, 1fr));
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .order-page .progress-steps.is-website-flow {
    grid-template-columns: repeat(9, minmax(88px, 1fr));
  }
}

@media (max-width: 991px) {
  .order-page .order-sidebar {
    display: contents;
  }

  .order-page .price-summary {
    grid-area: price;
  }

  .order-page .order-navigation {
    grid-area: navigation;
  }

  .order-page .order-container {
    width: min(760px, calc(100% - 28px));
    grid-template-columns: 1fr;
    grid-template-areas:
      "progress"
      "content"
      "price"
      "navigation";
    gap: 16px;
    padding-top: 40px;
  }

  .order-page .price-summary {
    position: relative;
    top: auto;
    padding: 18px;
  }

  .order-page .step-content {
    min-height: auto;
    padding: 26px;
  }

  .order-page .tech-layout {
    grid-template-columns: 1fr;
  }

  .order-page .tech-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .order-page .tech-section + .tech-section {
    margin-top: 0;
  }

  .order-page .delivery-options,
  .order-page .issues-container {
    grid-template-columns: 1fr;
  }

  .order-page .delivery-option {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .order-page .order-container {
    width: calc(100% - 20px);
    padding-top: 30px;
    padding-bottom: 164px;
  }

  .order-page .order-progress {
    padding: 17px 14px 15px;
    border-radius: 20px;
  }

  .order-page .order-progress-heading {
    align-items: flex-start;
    margin-bottom: 14px;
    padding-bottom: 11px;
  }

  .order-page .order-progress-heading__title {
    font-size: 12px;
  }

  .order-page .order-progress-heading__hint {
    display: none;
  }

  .order-page .progress-steps {
    padding-top: 2px;
  }

  .order-page .step-number {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 11px;
  }

  .order-page .step-title {
    font-size: 9px;
    min-height: 27px;
  }

  .order-page .step-content {
    padding: 21px 16px;
    border-radius: 20px;
  }

  .order-page .step-content > h2 {
    font-size: 23px;
  }

  .order-page .welcome-step {
    min-height: auto;
  }

  .order-page .welcome-icon-wrapper {
    width: 76px;
    height: 76px;
  }

  .order-page .welcome-icon {
    border-radius: 22px;
    font-size: 28px;
  }

  .order-page .welcome-hero h1 {
    font-size: 29px;
  }

  .order-page .welcome-hero .lead {
    font-size: 14px;
  }

  .order-page .welcome-kicker {
    margin-bottom: 14px;
  }

  .order-page .welcome-cta .cta-content {
    justify-content: space-between;
    text-align: right;
  }

  .order-page .welcome-features-grid,
  .order-page .service-selection-grid,
  .order-page .form-row,
  .order-page .summary-stats {
    grid-template-columns: 1fr;
  }

  .order-page .step-heading-row {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }

  .order-page .step-heading-note {
    flex-basis: auto;
    width: 100%;
  }

  .order-page .welcome-features-grid .feature-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas: "icon title" "icon text";
    column-gap: 13px;
    text-align: right;
    padding: 15px;
  }

  .order-page .welcome-features-grid .feature-icon {
    grid-area: icon;
    margin: 0;
  }

  .order-page .welcome-features-grid h3 { grid-area: title; margin: 2px 0 3px; }
  .order-page .welcome-features-grid p { grid-area: text; }

  .order-page .service-card {
    min-height: 0;
    padding: 19px;
  }

  .order-page .service-card__topline {
    margin-bottom: 15px;
  }

  .order-page .service-card > p {
    min-height: 0;
  }

  .order-page .service-card__footer {
    margin-top: 18px;
  }

  .order-page .options-grid,
  .order-page .packages-grid,
  .order-page .tech-custom-grid {
    grid-template-columns: 1fr;
  }

  .order-page .modern-feature-card {
    min-height: 0;
  }

  .order-page .tech-sidebar {
    grid-template-columns: 1fr;
  }

  .order-page .modern-tech-category-btn {
    min-height: 92px;
  }

  .order-page .customer-form,
  .order-page .seo-url-container,
  .order-page .keywords-input-container {
    padding: 16px;
  }

  .order-page .score-card,
  .order-page .total-price-card {
    flex-direction: column;
    align-items: stretch;
  }

  .order-page .score-circle {
    margin: 0 auto;
  }

  .order-page .keyword-result {
    grid-template-columns: 1fr;
  }

  .order-page .summary-item {
    flex-direction: column;
    gap: 5px;
  }

  .order-page .summary-item span {
    text-align: right;
  }

  .order-page .order-navigation {
    position: sticky;
    right: auto;
    bottom: 8px;
    z-index: 25;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 10px;
    border-radius: 16px;
    background: rgba(7, 11, 20, 0.95);
    transform: none;
  }

  .order-page .order-navigation::before {
    content: none;
    display: none;
  }

  .order-page .order-nav-context {
    display: none;
  }

  .order-page .order-navigation .btn {
    min-width: 0;
    flex: 1;
    min-height: 46px;
    padding: 0 12px;
    font-size: 11px;
  }
}


/* Mobile order dock: price is a separate line above the navigation surface. */
@media (max-width: 767px) {
  .order-page .order-container {
    grid-template-areas:
      "progress"
      "content";
  }

  .order-page .order-sidebar {
    grid-area: auto;
    position: fixed;
    top: auto;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 40;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  /* The live website-design total sits outside the navigation card. */
  .order-page .order-sidebar > .price-summary {
    grid-area: auto;
    order: 1;
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    direction: rtl;
  }

  .order-page .order-sidebar > .price-summary::before {
    content: none;
    display: none;
  }

  .order-page .order-sidebar > .price-summary h3 {
    margin: 0;
    color: #dce7f5;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 800;
  }

  .order-page .order-sidebar > .price-summary h3::after,
  .order-page .order-sidebar > .price-summary .price-items {
    content: none;
    display: none;
  }

  .order-page .order-sidebar > .price-summary .price-total {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: 0;
    border-radius: 0;
    background: transparent;
    white-space: nowrap;
  }

  .order-page .order-sidebar > .price-summary .price-total span:first-child {
    display: none;
  }

  .order-page .order-sidebar > .price-summary .price-total span:last-child {
    color: #86efac;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
    text-align: left;
  }

  /* Navigation keeps its own glass card; price is not inside this surface. */
  .order-page .order-sidebar > .order-navigation {
    grid-area: auto;
    order: 2;
    position: static;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 18px;
    background: rgba(7, 11, 20, 0.96);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .order-page .order-sidebar > .order-navigation .order-nav-context {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 44px;
    padding-inline: 6px;
    color: #9aabc0;
    font-size: 10px;
    line-height: 1.6;
    font-weight: 750;
    white-space: normal;
  }

  .order-page .order-sidebar > .order-navigation #prev-btn:not(.hidden) + .order-nav-context {
    display: none;
  }

  .order-page .order-sidebar > .order-navigation .btn {
    flex: 0 0 112px;
    min-width: 112px;
    min-height: 46px;
    padding: 0 12px;
    font-size: 11px;
  }

  .order-page .order-sidebar > .order-navigation #submit-btn {
    flex-basis: 132px;
    min-width: 132px;
  }
}

/* Price is relevant only after Website Design is selected.
   SEO orders intentionally keep the price summary hidden. */
.order-page .order-container:not(:has(.service-card[data-service="website"].selected)) .order-sidebar > .price-summary {
  display: none;
}

@media (max-width: 430px) {
  .order-page .order-container {
    width: calc(100% - 14px);
  }

  .order-page .order-progress {
    padding-inline: 10px;
  }

  .order-page .step-content {
    padding-inline: 13px;
  }

  .order-page .welcome-hero h1 {
    font-size: 25px;
  }

  .order-page .price-summary {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-page .order-step.active,
  .order-page .spinner,
  .order-page .loading {
    animation: none;
  }

  .order-page .service-card,
  .order-page .modern-feature-card,
  .order-page .delivery-option,
  .order-page .order-navigation .btn,
  .order-page .analyze-btn,
  .order-page .add-keyword-btn {
    transition: none;
  }
}
.order-page .analysis-info-note {
  margin-top: 14px;
  padding: 12px 13px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.055);
}


/* Notification states used by js/notification.js */
.order-page .notification-container {
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 28px));
}

.order-page .notification {
  position: relative;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.order-page .notification::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
}

.order-page .notification-success::before { background: #10b981; }
.order-page .notification-error::before { background: #ef4444; }
.order-page .notification-warning::before { background: #f59e0b; }
.order-page .notification-info::before { background: #3b82f6; }

.order-page .notification-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 16px;
}

.order-page .notification-success .notification-icon { color: #a7f3d0; background: rgba(16, 185, 129, .1); }
.order-page .notification-error .notification-icon { color: #fecdd3; background: rgba(239, 68, 68, .1); }
.order-page .notification-warning .notification-icon { color: #fde68a; background: rgba(245, 158, 11, .1); }
.order-page .notification-info .notification-icon { color: #bfdbfe; background: rgba(59, 130, 246, .1); }

.order-page .notification-content { flex: 1; min-width: 0; }
.order-page .notification-message { color: #dbe5f2; font-size: 11.5px; line-height: 1.75; }
.order-page .notification-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: #7f8da3;
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
}

.order-page .notification-enter { opacity: 0; transform: translateY(-12px) scale(.98); }
.order-page .notification-show { opacity: 1; transform: translateY(0) scale(1); transition: opacity .25s ease, transform .25s ease; }
.order-page .notification-exit { opacity: 0; transform: translateY(-12px) scale(.98); transition: opacity .2s ease, transform .2s ease; }

.order-page .notification-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.order-page .notification-modal.show { opacity: 1; pointer-events: auto; }
.order-page .notification-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .78);
  backdrop-filter: blur(10px);
}

.order-page .notification-modal-content {
  position: relative;
  width: min(460px, calc(100% - 30px));
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 27, 46, .98), rgba(8, 13, 24, .98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
  text-align: center;
  transform: translateY(8px) scale(.98);
  transition: transform .22s ease;
}

.order-page .notification-modal.show .notification-modal-content { transform: translateY(0) scale(1); }
.order-page .notification-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(56, 189, 248, .16);
  font-size: 24px;
}

.order-page .notification-modal-title { margin: 0 0 8px; color: #f8fafc; font-size: 18px; }
.order-page .notification-modal-message { margin: 0; color: #93a4bb; font-size: 12px; line-height: 1.9; }
.order-page .notification-modal-actions { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.order-page .btn-modal {
  min-width: 110px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, .15);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.order-page .btn-cancel { color: #cbd5e1; background: rgba(148, 163, 184, .05); }
.order-page .btn-confirm { color: #fff; background: linear-gradient(135deg, #0284c7, #2563eb); border-color: rgba(56, 189, 248, .26); }


/* ==========================================================================
   Website design flow · Step 3: website type
   DB-driven cards only — no order logic changes
   ========================================================================== */
.order-page #step-3-website .website-type-step {
  position: relative;
}

.order-page #step-3-website .website-type-heading {
  align-items: center;
  margin-bottom: 16px;
}

.order-page #step-3-website .website-type-note {
  flex-basis: 300px;
  border-color: rgba(52, 211, 153, 0.14);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.055), rgba(56, 189, 248, 0.025));
}

.order-page #step-3-website .website-type-note i {
  color: #6ee7b7;
}

.order-page .website-type-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.04), rgba(15, 23, 42, 0.38));
}

.order-page .website-type-guide__item,
.order-page .website-type-guide__status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.order-page .website-type-guide__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 12px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.06);
}

.order-page .website-type-guide__item > span:last-child {
  display: grid;
  gap: 3px;
}

.order-page .website-type-guide strong {
  color: #dce7f5;
  font-size: 11.5px;
  font-weight: 850;
}

.order-page .website-type-guide small {
  color: #7f8ea4;
  font-size: 9.5px;
  line-height: 1.7;
}

.order-page .website-type-guide__status {
  flex: 0 0 auto;
  color: #8ea0b7;
  font-size: 9.5px;
  font-weight: 700;
}

.order-page .website-type-guide__status i {
  color: #6ee7b7;
}

.order-page #website-types-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.order-page #website-types-grid:has(> .modern-feature-card:only-child) {
  grid-template-columns: minmax(280px, 430px);
  justify-content: center;
}

.order-page #website-types-grid:has(> .modern-feature-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(280px, 410px));
  justify-content: center;
}

.order-page #website-types-grid .modern-feature-card {
  min-height: 310px;
  padding: 24px 22px 19px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(18, 29, 49, 0.88), rgba(8, 14, 26, 0.94));
}

.order-page #website-types-grid .modern-feature-card::after {
  content: attr(data-category);
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  min-height: 24px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 999px;
  background: rgba(7, 13, 24, 0.66);
  color: #76869d;
  font-size: 8.5px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.order-page #website-types-grid .modern-feature-card:hover::after {
  color: #a5dcf3;
  border-color: rgba(56, 189, 248, 0.2);
}

.order-page #website-types-grid .modern-feature-card.selected::after {
  content: "انتخاب شما";
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(16, 185, 129, 0.08);
}

.order-page #website-types-grid .feature-icon-wrapper {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

.order-page #website-types-grid .feature-title {
  padding-inline-end: 0;
  font-size: 17px;
}

.order-page #website-types-grid .feature-desc {
  min-height: 67px;
  color: #8b9ab0;
  font-size: 11.5px;
  line-height: 1.9;
}

.order-page #website-types-grid .feature-footer {
  margin-top: 18px;
  padding-top: 15px;
}

.order-page #website-types-grid .feature-price-tag {
  flex: 1 1 auto;
}

.order-page #website-types-grid .feature-price-tag::before {
  content: "قیمت پایه";
  flex: 0 0 100%;
  color: #67778e;
  font-size: 8.5px;
  font-weight: 750;
}

.order-page #website-types-grid .price-amount {
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 900;
}

.order-page #website-types-grid .modern-feature-card.selected .price-amount,
.order-page #website-types-grid .modern-feature-card.selected .price-currency {
  color: #86efc6;
}

.order-page #website-types-grid .feature-check-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 991px) {
  .order-page #step-3-website .website-type-heading {
    align-items: stretch;
  }

  .order-page #step-3-website .website-type-note {
    flex-basis: auto;
  }

  .order-page .website-type-guide {
    align-items: flex-start;
  }

  .order-page #website-types-grid,
  .order-page #website-types-grid:has(> .modern-feature-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .order-page .website-type-guide {
    display: grid;
    gap: 10px;
    padding: 12px;
  }

  .order-page .website-type-guide__status {
    padding-inline-start: 48px;
  }

  .order-page #website-types-grid,
  .order-page #website-types-grid:has(> .modern-feature-card:only-child),
  .order-page #website-types-grid:has(> .modern-feature-card:nth-child(2):last-child) {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-page #website-types-grid .modern-feature-card {
    min-height: 0;
    padding: 20px 18px 16px;
  }

  .order-page #website-types-grid .modern-feature-card::after {
    top: 12px;
    left: 12px;
  }

  .order-page #website-types-grid .feature-icon-wrapper {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .order-page #website-types-grid .feature-title {
    font-size: 15px;
  }

  .order-page #website-types-grid .feature-desc {
    min-height: 0;
    font-size: 10.5px;
  }
}


/* ==========================================================================\n   Website order · Step 3 technology chooser · v2.1\n   ========================================================================== */
.order-page #step-3 .technology-step-content {
  overflow: hidden;
}

.order-page #step-3 .order-step-heading {
  margin-bottom: 16px;
}

.order-page #step-3 .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-3 .order-step-heading__number,
.order-page #step-3 .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-3 .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-3 .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-3 .technology-choice-note {
  margin: 0 0 18px;
  padding: 11px 13px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 13px;
  background: rgba(16, 185, 129, 0.035);
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-3 .technology-choice-note i {
  margin-top: 4px;
  color: #34d399;
}

.order-page #step-3 .tech-layout {
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.order-page #step-3 .tech-sidebar {
  position: relative;
  padding: 10px;
  border-color: rgba(125, 211, 252, 0.11);
  background: linear-gradient(180deg, rgba(12, 21, 36, 0.9), rgba(8, 15, 27, 0.76));
}

.order-page #step-3 .modern-tech-category-btn {
  min-height: 104px;
  padding: 15px;
  border-radius: 15px;
  background: rgba(15, 23, 42, 0.66);
}

.order-page #step-3 .modern-tech-category-btn::after {
  content: "انتخاب مسیر";
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.07);
  color: #718197;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .02em;
}

.order-page #step-3 .modern-tech-category-btn.active::after {
  content: "فعال";
  background: rgba(52, 211, 153, 0.1);
  color: #6ee7b7;
}

.order-page #step-3 .modern-tech-category-btn.active {
  box-shadow: inset 3px 0 0 rgba(52, 211, 153, 0.68);
}

.order-page #step-3 .tech-btn-icon-wrapper {
  width: 44px;
  height: 44px;
}

.order-page #step-3 .tech-btn-content h3 {
  font-size: 13.5px;
}

.order-page #step-3 .tech-btn-content p {
  padding-left: 40px;
}

.order-page #step-3 .tech-content {
  min-height: 386px;
  padding: 18px;
  border-color: rgba(148, 163, 184, 0.1);
  background: linear-gradient(145deg, rgba(12, 21, 36, 0.77), rgba(7, 13, 24, 0.72));
}

.order-page #step-3 .tech-content-title {
  position: relative;
  margin: 0 0 15px;
  padding: 0 12px 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.09);
  font-size: 14px;
}

.order-page #step-3 .tech-content-title::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 3px;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #38bdf8, #34d399);
}

.order-page #step-3 .tech-custom-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.order-page #step-3 .tech-custom-grid .modern-feature-card {
  min-height: 238px;
  padding: 19px 16px 16px;
  border-radius: 18px;
}

.order-page #step-3 .tech-custom-grid .modern-feature-card::after {
  content: "تکنولوژی";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 8px;
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.055);
  color: #718197;
  font-size: 8px;
  font-weight: 800;
}

.order-page #step-3 .tech-custom-grid .modern-feature-card.selected::after {
  content: "انتخاب شما";
  border-color: rgba(52, 211, 153, 0.18);
  background: rgba(52, 211, 153, 0.08);
  color: #6ee7b7;
}

.order-page #step-3 .tech-custom-grid .feature-icon-wrapper {
  width: 54px;
  height: 54px;
  margin-bottom: 15px;
}

.order-page #step-3 .tech-custom-grid .feature-main-icon {
  font-size: 24px;
}

.order-page #step-3 .tech-custom-grid .feature-title {
  font-size: 14px;
}

.order-page #step-3 .tech-custom-grid .feature-desc {
  min-height: 50px;
  font-size: 10.5px;
  line-height: 1.75;
}

.order-page #step-3 .tech-custom-grid .feature-price-tag {
  position: relative;
  padding-top: 16px;
}

.order-page #step-3 .tech-custom-grid .feature-price-tag::before {
  content: "هزینه افزوده";
  position: absolute;
  top: 0;
  right: 0;
  color: #627087;
  font-size: 8px;
  font-weight: 700;
}

.order-page #step-3 .tech-placeholder {
  min-height: 348px;
  padding: 28px;
  border: 1px dashed rgba(125, 211, 252, 0.11);
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.018);
}

.order-page #step-3 .tech-placeholder::before {
  content: "ابتدا مسیر اجرا را انتخاب کنید";
  color: #a9b6c8;
  font-size: 13px;
  font-weight: 800;
}

.order-page #step-3 .tech-placeholder p {
  max-width: 330px;
  color: #6f7f95;
  font-size: 10.5px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .order-page #step-3 .tech-layout {
    grid-template-columns: 1fr;
  }

  .order-page #step-3 .tech-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-page #step-3 .tech-section + .tech-section {
    margin-top: 0;
  }

  .order-page #step-3 .modern-tech-category-btn {
    min-height: 96px;
  }
}

@media (max-width: 575px) {
  .order-page #step-3 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-3 .order-step-heading__number,
  .order-page #step-3 .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-3 .technology-choice-note {
    padding: 10px 11px;
    font-size: 9.5px;
  }

  .order-page #step-3 .tech-sidebar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .order-page #step-3 .modern-tech-category-btn {
    min-height: 104px;
    padding: 13px 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .order-page #step-3 .modern-tech-category-btn::after {
    top: 7px;
    left: 7px;
  }

  .order-page #step-3 .tech-btn-icon-wrapper {
    width: 38px;
    height: 38px;
  }

  .order-page #step-3 .tech-btn-content p {
    display: none;
  }

  .order-page #step-3 .tech-content {
    min-height: 310px;
    padding: 13px;
  }

  .order-page #step-3 .tech-custom-grid .modern-feature-card {
    min-height: 0;
  }

  .order-page #step-3 .tech-placeholder {
    min-height: 275px;
  }
}

.order-page #step-3 .modern-tech-category-btn.is-disabled {
  cursor: not-allowed;
  opacity: .48;
}

.order-page #step-3 .modern-tech-category-btn:focus-visible {
  outline: 2px solid rgba(56, 189, 248, .55);
  outline-offset: 3px;
}

.order-page #step-3 .wordpress-custom-panel {
  display: grid;
  gap: 18px;
}

.order-page #step-3 .wordpress-custom-panel__header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, .12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(56, 189, 248, .045), rgba(15, 23, 42, .34));
}

.order-page #step-3 .wordpress-custom-panel__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .15);
  border-radius: 16px;
  background: rgba(56, 189, 248, .055);
  color: #7dd3fc;
  font-size: 27px;
}

.order-page #step-3 .wordpress-custom-panel__eyebrow {
  display: inline-flex;
  margin-bottom: 5px;
  color: #6ee7b7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
}

.order-page #step-3 .wordpress-custom-panel__header h3 {
  margin: 0 0 7px;
  color: #e8eef7;
  font-size: 16px;
  font-weight: 900;
}

.order-page #step-3 .wordpress-custom-panel__header p {
  margin: 0;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.9;
}

.order-page #step-3 .wordpress-custom-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.order-page #step-3 .wordpress-custom-point {
  min-height: 132px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, .09);
  border-radius: 14px;
  background: rgba(15, 23, 42, .42);
}

.order-page #step-3 .wordpress-custom-point__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(52, 211, 153, .065);
  color: #6ee7b7;
  font-size: 12px;
}

.order-page #step-3 .wordpress-custom-point div {
  display: grid;
  gap: 5px;
}

.order-page #step-3 .wordpress-custom-point strong {
  color: #dce6f4;
  font-size: 11px;
  font-weight: 800;
}

.order-page #step-3 .wordpress-custom-point span {
  color: #7c8da4;
  font-size: 9.5px;
  line-height: 1.8;
}

.order-page #step-3 .wordpress-economy-note {
  padding: 14px 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid rgba(251, 191, 36, .13);
  border-radius: 14px;
  background: rgba(245, 158, 11, .035);
}

.order-page #step-3 .wordpress-economy-note > i {
  margin-top: 3px;
  color: #fbbf24;
}

.order-page #step-3 .wordpress-economy-note div {
  display: grid;
  gap: 4px;
}

.order-page #step-3 .wordpress-economy-note strong {
  color: #d8e0eb;
  font-size: 10.5px;
  font-weight: 800;
}

.order-page #step-3 .wordpress-economy-note span {
  color: #8797ac;
  font-size: 9.5px;
  line-height: 1.85;
}

.order-page #step-3 .tech-content-lead {
  margin: -5px 0 15px;
  color: #7f8fa5;
  font-size: 10px;
  line-height: 1.85;
}


@media (max-width: 991px) {
  .order-page #step-3 .tech-layout {
    grid-template-columns: 1fr;
  }

  .order-page #step-3 .tech-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-page #step-3 .tech-section + .tech-section {
    margin-top: 0;
  }

  .order-page #step-3 .modern-tech-category-btn {
    min-height: 96px;
  }
}

@media (max-width: 575px) {
  .order-page #step-3 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-3 .order-step-heading__number,
  .order-page #step-3 .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-3 .technology-choice-note {
    padding: 10px 11px;
    font-size: 9.5px;
  }

  .order-page #step-3 .tech-sidebar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .order-page #step-3 .modern-tech-category-btn {
    min-height: 104px;
    padding: 13px 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .order-page #step-3 .modern-tech-category-btn::after {
    top: 7px;
    left: 7px;
  }

  .order-page #step-3 .tech-btn-icon-wrapper {
    width: 38px;
    height: 38px;
  }

  .order-page #step-3 .tech-btn-content p {
    display: none;
  }

  .order-page #step-3 .wordpress-custom-panel__header {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 13px;
  }

  .order-page #step-3 .wordpress-custom-panel__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 22px;
  }

  .order-page #step-3 .wordpress-custom-points {
    grid-template-columns: 1fr;
  }

  .order-page #step-3 .wordpress-custom-point {
    min-height: 0;
  }

  .order-page #step-3 .wordpress-economy-note {
    padding: 12px;
  }

  .order-page #step-3 .tech-content {
    min-height: 310px;
    padding: 13px;
  }

  .order-page #step-3 .tech-custom-grid .modern-feature-card {
    min-height: 0;
  }

  .order-page #step-3 .tech-placeholder {
    min-height: 275px;
  }
}

.order-page #step-3 .wordpress-custom-point__icon > i {
  display: block;
  line-height: 1;
}

/* Explicitly override the more specific step placeholder layout when a route is active. */
.order-page #step-3 .tech-placeholder.hidden,
.order-page #step-3 .tech-placeholder[hidden] {
  display: none;
}

/* ==========================================================================
   Website order · Step 4 features chooser · v2.3
   ========================================================================== */
.order-page #step-4 .features-step-content {
  overflow: hidden;
}

.order-page #step-4 .features-step-heading {
  margin-bottom: 16px;
}

.order-page #step-4 .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-4 .order-step-heading__number,
.order-page #step-4 .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-4 .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-4 .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-4 .features-choice-note {
  margin: 0 0 18px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-4 .features-choice-note__item {
  min-width: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-4 .features-choice-note__item i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #34d399;
}

.order-page #step-4 .features-choice-note__item--price {
  color: #9aabc0;
}

.order-page #step-4 #features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.order-page #step-4 #features-grid:has(> .modern-feature-card:only-child) {
  grid-template-columns: minmax(280px, 390px);
  justify-content: center;
}

.order-page #step-4 #features-grid:has(> .modern-feature-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(280px, 390px));
  justify-content: center;
}

.order-page #step-4 #features-grid .modern-feature-card {
  min-height: 250px;
  padding: 21px 19px 17px;
  border-radius: 19px;
}

.order-page #step-4 #features-grid .modern-feature-card::after {
  content: "افزودن";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  min-height: 25px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #8192a9;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.order-page #step-4 #features-grid .modern-feature-card.selected::after {
  content: "انتخاب شد";
  color: #b7f7dc;
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.09);
}

.order-page #step-4 #features-grid .feature-icon-wrapper {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.order-page #step-4 #features-grid .feature-icon-bg {
  border-radius: 16px;
}

.order-page #step-4 #features-grid .feature-main-icon {
  font-size: 24px;
}

.order-page #step-4 #features-grid .feature-title {
  margin-bottom: 7px;
  font-size: 15px;
}

.order-page #step-4 #features-grid .feature-desc {
  color: #8594aa;
  font-size: 11px;
  line-height: 1.8;
}

.order-page #step-4 #features-grid .feature-footer {
  margin-top: 17px;
  padding-top: 14px;
}

.order-page #step-4 #features-grid .feature-price-tag::before {
  content: "هزینه افزوده";
  width: 100%;
  margin-bottom: 1px;
  color: #66758b;
  font-size: 8.5px;
  line-height: 1.4;
  font-weight: 700;
}

.order-page #step-4 #features-grid .price-amount {
  font-size: 14px;
}

.order-page #step-4 #features-grid .modern-feature-card.selected .price-amount,
.order-page #step-4 #features-grid .modern-feature-card.selected .price-currency {
  color: #6ee7b7;
}

.order-page #step-4 #features-grid .feature-check-icon {
  width: 30px;
  height: 30px;
}

@media (max-width: 1180px) {
  .order-page #step-4 #features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .order-page #step-4 .features-choice-note {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 10px 11px;
  }

  .order-page #step-4 .features-choice-note__item {
    font-size: 9.5px;
  }

  .order-page #step-4 #features-grid,
  .order-page #step-4 #features-grid:has(> .modern-feature-card:only-child),
  .order-page #step-4 #features-grid:has(> .modern-feature-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }

  .order-page #step-4 #features-grid .modern-feature-card {
    min-height: 0;
    padding: 17px 15px 14px;
  }

  .order-page #step-4 #features-grid .modern-feature-card::after {
    top: 11px;
    left: 11px;
  }

  .order-page #step-4 #features-grid .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
  }

  .order-page #step-4 #features-grid .feature-main-icon {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .order-page #step-4 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-4 .order-step-heading__number,
  .order-page #step-4 .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-4 #features-grid {
    gap: 10px;
  }
}

/* ========================================================================== 
   Website order · Step 5 support packages · v2.5
   ========================================================================== */
.order-page #step-5 .support-step-content {
  overflow: hidden;
}

.order-page #step-5 .support-step-heading {
  margin-bottom: 16px;
}

.order-page #step-5 .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-5 .order-step-heading__number,
.order-page #step-5 .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-5 .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-5 .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-5 .support-choice-note {
  margin: 0 0 18px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-5 .support-choice-note__item {
  min-width: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-5 .support-choice-note__item i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #34d399;
}

.order-page #step-5 .support-choice-note__item--price {
  color: #9aabc0;
}

.order-page #step-5 #support-packages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.order-page #step-5 #support-packages-grid:has(> .modern-package-card:only-child) {
  grid-template-columns: minmax(300px, 430px);
  justify-content: center;
}

.order-page #step-5 #support-packages-grid:has(> .modern-package-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(290px, 410px));
  justify-content: center;
}

.order-page #step-5 .modern-package-card {
  min-height: 360px;
  padding: 22px 20px 18px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(17, 27, 45, 0.88), rgba(8, 15, 27, 0.94));
}

.order-page #step-5 .modern-package-card:hover {
  border-color: rgba(125, 211, 252, 0.28);
}

.order-page #step-5 .modern-package-card.selected {
  border-color: rgba(52, 211, 153, 0.58);
  background: linear-gradient(155deg, rgba(13, 49, 44, 0.76), rgba(8, 19, 28, 0.96));
}

.order-page #step-5 .modern-package-card .feature-icon-wrapper {
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
}

.order-page #step-5 .modern-package-card .feature-icon-bg {
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(45, 212, 191, 0.1));
}

.order-page #step-5 .modern-package-card .feature-main-icon {
  font-size: 25px;
}

.order-page #step-5 .modern-package-card .feature-title {
  margin-bottom: 6px;
  font-size: 17px;
}

.order-page #step-5 .modern-package-card .feature-desc {
  color: #8b9bb0;
  font-size: 11px;
  line-height: 1.8;
}

.order-page #step-5 .modern-package-card .package-features-list {
  margin-top: 15px;
  padding-top: 14px;
  gap: 9px;
  border-top-color: rgba(148, 163, 184, 0.1);
}

.order-page #step-5 .modern-package-card .package-features-list li {
  gap: 9px;
  color: #a9b6c8;
  font-size: 10.7px;
  line-height: 1.7;
}

.order-page #step-5 .modern-package-card .package-features-list i {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.08);
  color: #6ee7b7;
  font-size: 7px;
}

.order-page #step-5 .modern-package-card .feature-footer {
  margin-top: 18px;
  padding-top: 15px;
}

.order-page #step-5 .modern-package-card .feature-price-tag::before {
  content: "هزینه پشتیبانی";
  width: 100%;
  margin-bottom: 1px;
  color: #66758b;
  font-size: 8.5px;
  line-height: 1.4;
  font-weight: 700;
}

.order-page #step-5 .modern-package-card .price-amount {
  font-size: 15px;
}

.order-page #step-5 .modern-package-card.selected .price-amount,
.order-page #step-5 .modern-package-card.selected .price-currency {
  color: #6ee7b7;
}

.order-page #step-5 .modern-package-card .feature-check-icon {
  width: 31px;
  height: 31px;
}

.order-page #step-5 .package-recommended-badge {
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: #fde7c7;
  background: rgba(251, 146, 60, 0.075);
  border-color: rgba(251, 146, 60, 0.18);
  font-size: 9px;
}

@media (max-width: 1180px) {
  .order-page #step-5 #support-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .order-page #step-5 .support-choice-note {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 10px 11px;
  }

  .order-page #step-5 .support-choice-note__item {
    font-size: 9.5px;
  }

  .order-page #step-5 #support-packages-grid,
  .order-page #step-5 #support-packages-grid:has(> .modern-package-card:only-child),
  .order-page #step-5 #support-packages-grid:has(> .modern-package-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }

  .order-page #step-5 .modern-package-card {
    min-height: 0;
    padding: 18px 16px 15px;
  }

  .order-page #step-5 .modern-package-card .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
  }

  .order-page #step-5 .modern-package-card .feature-main-icon {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .order-page #step-5 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-5 .order-step-heading__number,
  .order-page #step-5 .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-5 #support-packages-grid {
    gap: 10px;
  }
}

/* ========================================================================== 
   Website order · Step 6 delivery time · v2.7
   ========================================================================== */
.order-page #step-6 .delivery-step-content {
  overflow: hidden;
}

.order-page #step-6 .delivery-step-heading {
  margin-bottom: 16px;
}

.order-page #step-6 .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-6 .order-step-heading__number,
.order-page #step-6 .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-6 .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-6 .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-6 .delivery-choice-note {
  margin: 0 0 18px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-6 .delivery-choice-note__item {
  min-width: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-6 .delivery-choice-note__item i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #34d399;
}

.order-page #step-6 .delivery-choice-note__item--price {
  color: #9aabc0;
}

.order-page #step-6 #delivery-options-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.order-page #step-6 #delivery-options-grid:has(> .delivery-option:only-child) {
  grid-template-columns: minmax(300px, 430px);
  justify-content: center;
}

.order-page #step-6 #delivery-options-grid:has(> .delivery-option:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(290px, 410px));
  justify-content: center;
}

.order-page #step-6 .delivery-option {
  min-height: 292px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(17, 27, 45, 0.88), rgba(8, 15, 27, 0.94));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.order-page #step-6 .delivery-option::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.065), transparent 44%, rgba(45, 212, 191, 0.045));
  opacity: 0;
  transition: opacity .25s ease;
}

.order-page #step-6 .delivery-option:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.28);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.order-page #step-6 .delivery-option:hover::before,
.order-page #step-6 .delivery-option.selected::before {
  opacity: 1;
}

.order-page #step-6 .delivery-option.selected {
  border-color: rgba(52, 211, 153, 0.58);
  background: linear-gradient(155deg, rgba(13, 49, 44, 0.76), rgba(8, 19, 28, 0.96));
  box-shadow: 0 20px 54px rgba(16, 185, 129, 0.12), inset 0 0 0 1px rgba(52, 211, 153, 0.08);
}

.order-page #step-6 .delivery-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin: 0 0 17px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dd3fc;
  font-size: 25px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(45, 212, 191, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.16);
}

.order-page #step-6 .delivery-option.selected .delivery-icon {
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.24);
  background: rgba(52, 211, 153, 0.09);
}

.order-page #step-6 .delivery-option h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  color: #f8fafc;
  font-size: 17px;
  font-weight: 850;
}

.order-page #step-6 .delivery-time {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: rgba(56, 189, 248, 0.045);
  color: #9edcff;
  font-size: 10px;
  font-weight: 750;
}

.order-page #step-6 .delivery-time::before {
  content: "بازه تحویل · ";
  color: #69788d;
  font-weight: 650;
}

.order-page #step-6 .delivery-description {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: #8b9bb0;
  font-size: 11px;
  line-height: 1.85;
}

.order-page #step-6 .delivery-price {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: #9edcff;
  font-size: 14px;
  font-weight: 850;
}

.order-page #step-6 .delivery-price::before {
  content: "هزینه تحویل";
  display: block;
  margin-bottom: 3px;
  color: #66758b;
  font-size: 8.5px;
  line-height: 1.4;
  font-weight: 700;
}

.order-page #step-6 .delivery-option.selected .delivery-price {
  color: #6ee7b7;
}

.order-page #step-6 .delivery-selected-mark {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 17px;
  margin: 0;
  min-height: 28px;
  padding: 5px 9px;
  border-color: rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.08);
  font-size: 9px;
}

.order-page #step-6 .delivery-option .badge {
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: #fde7c7;
  background: rgba(251, 146, 60, 0.075);
  border-color: rgba(251, 146, 60, 0.18);
  font-size: 9px;
  font-weight: 800;
}

.order-page #step-6 .delivery-options-loading,
.order-page #step-6 .delivery-options-empty {
  min-height: 180px;
  border-radius: 20px;
  color: #8d9caf;
  background: linear-gradient(155deg, rgba(17, 27, 45, 0.56), rgba(8, 15, 27, 0.74));
}

@media (max-width: 1180px) {
  .order-page #step-6 #delivery-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .order-page #step-6 .delivery-choice-note {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 10px 11px;
  }

  .order-page #step-6 .delivery-choice-note__item {
    font-size: 9.5px;
  }

  .order-page #step-6 #delivery-options-grid,
  .order-page #step-6 #delivery-options-grid:has(> .delivery-option:only-child),
  .order-page #step-6 #delivery-options-grid:has(> .delivery-option:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }

  .order-page #step-6 .delivery-option {
    min-height: 0;
    padding: 18px 16px 15px;
  }

  .order-page #step-6 .delivery-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    font-size: 22px;
  }

  .order-page #step-6 .delivery-price {
    margin-top: 16px;
    padding-left: 88px;
  }

  .order-page #step-6 .delivery-selected-mark {
    bottom: 14px;
    left: 14px;
  }
}

@media (max-width: 575px) {
  .order-page #step-6 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-6 .order-step-heading__number,
  .order-page #step-6 .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-6 #delivery-options-grid {
    gap: 10px;
  }
}

/* ========================================================================== 
   Website order · Step 7 customer information · v2.8
   ========================================================================== */
.order-page #step-7 .customer-step-content {
  overflow: hidden;
}

.order-page #step-7 .customer-step-heading {
  margin-bottom: 16px;
}

.order-page #step-7 .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-7 .order-step-heading__number,
.order-page #step-7 .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-7 .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-7 .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-7 .customer-choice-note {
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-7 .customer-choice-note__item {
  min-width: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-7 .customer-choice-note__item i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #34d399;
  font-size: 10px;
}

.order-page #step-7 .customer-form {
  max-width: 920px;
  padding: 20px;
  border-color: rgba(148, 163, 184, 0.13);
  background: linear-gradient(155deg, rgba(17, 27, 45, 0.62), rgba(8, 15, 27, 0.78));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.order-page #step-7 .customer-form__header {
  margin-bottom: 19px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.order-page #step-7 .customer-form__header-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 13px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.065);
  font-size: 17px;
}

.order-page #step-7 .customer-form__header-copy {
  min-width: 0;
}

.order-page #step-7 .customer-form__header-copy h3 {
  margin: 0 0 3px;
  color: #eef2ff;
  font-size: 14px;
  font-weight: 850;
}

.order-page #step-7 .customer-form__header-copy p {
  margin: 0;
  color: #7f8ea4;
  font-size: 10.5px;
  line-height: 1.7;
}

.order-page #step-7 .customer-form__required-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 999px;
  color: #9cebcf;
  background: rgba(52, 211, 153, 0.05);
  font-size: 9.5px;
  font-weight: 750;
  white-space: nowrap;
}

.order-page #step-7 .customer-form__required-note i {
  font-size: 7px;
}

.order-page #step-7 .form-row {
  gap: 14px;
}

.order-page #step-7 .form-group {
  margin-bottom: 14px;
}

.order-page #step-7 .form-group label {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.order-page #step-7 .form-group label > span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
}

.order-page #step-7 .form-group label > span i {
  width: 15px;
  color: #7dd3fc;
  font-size: 10px;
  text-align: center;
}

.order-page #step-7 .form-group label small {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1px solid rgba(52, 211, 153, 0.14);
  border-radius: 999px;
  color: #86efcf;
  background: rgba(52, 211, 153, 0.045);
  font-size: 8px;
  font-weight: 750;
}

.order-page #step-7 .form-group label small.optional {
  color: #8fa0b7;
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(148, 163, 184, 0.035);
}

.order-page #step-7 .form-group input,
.order-page #step-7 .form-group textarea {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(4, 9, 19, 0.58);
}

.order-page #step-7 .form-group input {
  min-height: 50px;
}

.order-page #step-7 .form-group input::placeholder,
.order-page #step-7 .form-group textarea::placeholder {
  color: #56657a;
  opacity: 1;
}

.order-page #step-7 #customer-email,
.order-page #step-7 #customer-phone {
  text-align: left;
}

.order-page #step-7 .customer-form__wide-field {
  margin-bottom: 14px;
}

.order-page #step-7 .customer-form__footer-note {
  margin-top: 2px;
  padding: 11px 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px dashed rgba(125, 211, 252, 0.14);
  border-radius: 12px;
  color: #8392a8;
  background: rgba(56, 189, 248, 0.025);
  font-size: 10px;
  line-height: 1.75;
}

.order-page #step-7 .customer-form__footer-note i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #7dd3fc;
  font-size: 10px;
}

@media (max-width: 767px) {
  .order-page #step-7 .customer-choice-note {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 10px 11px;
  }

  .order-page #step-7 .customer-choice-note__item {
    font-size: 9.5px;
  }

  .order-page #step-7 .customer-form {
    padding: 15px;
    border-radius: 17px;
  }

  .order-page #step-7 .customer-form__header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .order-page #step-7 .customer-form__required-note {
    grid-column: 1 / -1;
    width: max-content;
    margin-right: 54px;
  }

  .order-page #step-7 .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .order-page #step-7 .form-group input {
    min-height: 48px;
  }

  .order-page #step-7 .form-group textarea {
    min-height: 96px;
  }
}

@media (max-width: 575px) {
  .order-page #step-7 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-7 .order-step-heading__number,
  .order-page #step-7 .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-7 .customer-form__header-icon {
    width: 40px;
    height: 40px;
  }

  .order-page #step-7 .customer-form__required-note {
    margin-right: 50px;
  }
}


/* --------------------------------------------------------------------------
   Final review heading alignment — website order v3.0
   -------------------------------------------------------------------------- */
.order-page #step-8 .review-step-heading {
  margin-bottom: 16px;
}

.order-page #step-8 .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-8 .order-step-heading__number,
.order-page #step-8 .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-8 .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-8 .order-step-heading__hint i {
  color: #34d399;
}

@media (max-width: 767px) {
  .order-page #step-8 .order-step-heading__meta {
    align-items: stretch;
  }

  .order-page #step-8 .order-step-heading__number,
  .order-page #step-8 .order-step-heading__hint {
    justify-content: center;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Final review — website order v2.9
   -------------------------------------------------------------------------- */
.order-page .review-step-content {
  display: grid;
  gap: 18px;
}

.order-page .review-choice-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-page .review-choice-note__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.035);
  color: #9fb0c6;
  font-size: 11px;
  line-height: 1.8;
}

.order-page .review-choice-note__item i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #7dd3fc;
}

.order-page .review-choice-note__item--confirm {
  border-color: rgba(52, 211, 153, 0.13);
  background: rgba(16, 185, 129, 0.035);
}

.order-page .review-choice-note__item--confirm i {
  color: #6ee7b7;
}

.order-page .review-summary {
  gap: 16px;
}

.order-page .review-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.order-page .review-card--customer {
  border-color: rgba(56, 189, 248, 0.13);
}

.order-page .review-card--project {
  border-color: rgba(129, 140, 248, 0.13);
}

.order-page .review-card--price {
  border-color: rgba(52, 211, 153, 0.14);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.04), rgba(255, 255, 255, 0.012));
}

.order-page .review-card__header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.order-page .review-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.055);
  color: #7dd3fc;
}

.order-page .review-card--project .review-card__icon {
  border-color: rgba(129, 140, 248, 0.16);
  background: rgba(129, 140, 248, 0.055);
  color: #c4b5fd;
}

.order-page .review-card--price .review-card__icon {
  border-color: rgba(52, 211, 153, 0.16);
  background: rgba(16, 185, 129, 0.055);
  color: #6ee7b7;
}

.order-page .review-card__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #71839a;
  font-size: 9px;
  font-weight: 750;
}

.order-page .review-card__header h3 {
  margin: 0;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 850;
}

.order-page .review-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-page .review-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.018);
}

.order-page .review-field--wide {
  grid-column: 1 / -1;
}

.order-page .review-field__label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7f91a8;
  font-size: 10px;
  font-weight: 700;
}

.order-page .review-field__label i {
  color: #6d829b;
  font-size: 10px;
}

.order-page .review-field__value {
  min-width: 0;
  color: #e7edf6;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.order-page .review-field__value--ltr {
  direction: ltr;
  text-align: right;
  unicode-bidi: plaintext;
}

.order-page .review-field__value--multiline {
  white-space: pre-line;
}

.order-page .review-empty-value {
  color: #71839a;
  font-weight: 600;
}

.order-page .review-selection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.order-page .review-selection-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  min-height: 106px;
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.085);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.order-page .review-selection-card--wide {
  grid-column: span 2;
}

.order-page .review-selection-card__step {
  color: #71839a;
  font-size: 9px;
  font-weight: 750;
}

.order-page .review-selection-card__icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: rgba(129, 140, 248, 0.06);
  color: #a5b4fc;
  font-size: 11px;
}

.order-page .review-selection-card strong {
  color: #e6edf7;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.order-page .review-features-block {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.085);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.order-page .review-features-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.order-page .review-features-block__header > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.order-page .review-features-block__header span {
  color: #9eacc0;
  font-size: 10px;
  font-weight: 750;
}

.order-page .review-features-block__header strong {
  color: #dbeafe;
  font-size: 10px;
}

.order-page .review-features-block__header > i {
  color: #8b9bb0;
  font-size: 12px;
}

.order-page .review-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-page .review-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.035);
  color: #d7e5df;
  font-size: 10px;
  line-height: 1.5;
}

.order-page .review-feature-chip > i {
  color: #6ee7b7;
  font-size: 8px;
}

.order-page .review-feature-chip > span {
  overflow-wrap: anywhere;
}

.order-page .review-feature-chip small {
  color: #86a796;
  font-size: 8px;
  white-space: nowrap;
}

.order-page .review-price-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.085);
  border-radius: 14px;
  background: rgba(5, 10, 18, 0.22);
}

.order-page .review-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.065);
  color: #8799af;
  font-size: 10px;
}

.order-page .review-price-row:last-child {
  border-bottom: 0;
}

.order-page .review-price-row strong {
  color: #d8e2ef;
  font-size: 10px;
  font-weight: 800;
  text-align: left;
}

.order-page .review-price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 11px;
  padding: 14px;
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.055);
}

.order-page .review-price-total span {
  color: #b5c5bf;
  font-size: 11px;
  font-weight: 750;
}

.order-page .review-price-total strong {
  color: #6ee7b7;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
}

.order-page .review-confirmation-notice {
  margin: 0;
  border-color: rgba(52, 211, 153, 0.14);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.055), rgba(56, 189, 248, 0.025));
}

.order-page .review-confirmation-notice h3 i {
  margin-left: 6px;
  color: #6ee7b7;
}

@media (max-width: 1100px) {
  .order-page .review-selection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .order-page .review-choice-note,
  .order-page .review-fields-grid,
  .order-page .review-selection-grid {
    grid-template-columns: 1fr;
  }

  .order-page .review-card {
    padding: 14px;
    border-radius: 16px;
  }

  .order-page .review-field--wide,
  .order-page .review-selection-card--wide {
    grid-column: auto;
  }

  .order-page .review-selection-card {
    min-height: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .order-page .review-selection-card__step,
  .order-page .review-selection-card strong {
    grid-column: 2;
  }

  .order-page .review-selection-card__icon {
    grid-row: 1 / span 2;
  }

  .order-page .review-feature-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .order-page .review-feature-chip {
    justify-content: flex-start;
    width: 100%;
    border-radius: 12px;
  }

  .order-page .review-feature-chip small {
    margin-right: auto;
  }

  .order-page .review-price-row,
  .order-page .review-price-total {
    gap: 10px;
  }

  .order-page .review-price-total strong {
    font-size: 15px;
  }
}

/* ==========================================================================
   SEO order · Steps 3–4 URL + friendly first analysis · v3.3
   ========================================================================== */
.order-page #step-3-seo .seo-url-step-content,
.order-page #step-4-seo .seo-analysis-step-content {
  overflow: hidden;
}

.order-page #step-3-seo .seo-url-step-heading,
.order-page #step-4-seo .seo-analysis-step-heading {
  margin-bottom: 16px;
}

.order-page #step-3-seo .order-step-heading__meta,
.order-page #step-4-seo .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-3-seo .order-step-heading__number,
.order-page #step-3-seo .order-step-heading__hint,
.order-page #step-4-seo .order-step-heading__number,
.order-page #step-4-seo .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-3-seo .order-step-heading__number,
.order-page #step-4-seo .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-3-seo .order-step-heading__hint i,
.order-page #step-4-seo .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-3-seo .seo-url-choice-note {
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-3-seo .seo-url-choice-note__item {
  min-width: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-3-seo .seo-url-choice-note__item:first-child {
  flex: 0 1 auto;
}

.order-page #step-3-seo .seo-url-choice-note__item--active-project {
  flex: 1 1 440px;
}

.order-page #step-3-seo .seo-url-choice-note__item i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #34d399;
}

.order-page #step-3-seo .seo-url-choice-note bdi {
  color: #bae6fd;
  direction: ltr;
  unicode-bidi: isolate;
}

.order-page #step-3-seo .seo-url-container {
  max-width: 920px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.order-page #step-3-seo .seo-url-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 189, 248, 0.08), transparent 34%),
    linear-gradient(155deg, rgba(17, 27, 45, 0.76), rgba(8, 15, 27, 0.9));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.order-page #step-3-seo .seo-url-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, #38bdf8, #34d399);
  opacity: 0.7;
}

.order-page #step-3-seo .seo-url-card__intro {
  margin-bottom: 18px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.09);
}

.order-page #step-3-seo .seo-url-card__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.07);
  font-size: 17px;
}

.order-page #step-3-seo .seo-url-card__intro strong,
.order-page #step-3-seo .seo-url-card__intro small {
  display: block;
}

.order-page #step-3-seo .seo-url-card__intro strong {
  margin-bottom: 4px;
  color: #edf6ff;
  font-size: 13px;
  font-weight: 800;
}

.order-page #step-3-seo .seo-url-card__intro small {
  color: #8293a9;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-3-seo .url-input-wrapper label {
  margin-bottom: 9px;
}

.order-page #step-3-seo .seo-url-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.order-page #step-3-seo .seo-url-input-shell > i {
  position: absolute;
  right: 15px;
  z-index: 1;
  color: #64748b;
  font-size: 12px;
  pointer-events: none;
}

.order-page #step-3-seo .url-input {
  min-height: 54px;
  padding: 0 42px 0 15px;
  direction: ltr;
  text-align: left;
  border-color: rgba(125, 211, 252, 0.16);
  border-radius: 15px;
  background: rgba(2, 8, 23, 0.68);
  font-size: 13px;
}

.order-page #step-3-seo .url-input::placeholder {
  color: #526177;
}

.order-page #step-3-seo .analyze-button-container {
  margin-top: 16px;
  justify-content: flex-start;
}

.order-page #step-3-seo .analyze-btn {
  min-width: 190px;
  min-height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7, #2563eb 54%, #4f46e5);
}

.order-page #step-3-seo .seo-url-scope-note {
  margin-top: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #71839a;
  font-size: 9.8px;
  line-height: 1.8;
}

.order-page #step-3-seo .seo-url-scope-note i {
  margin-top: 4px;
  color: #60a5fa;
}

.order-page #step-4-seo .seo-analysis-container {
  max-width: 920px;
  margin: 0 auto;
}

.order-page #step-4-seo .analysis-loading {
  padding: 48px 20px;
  border: 1px solid rgba(125, 211, 252, 0.11);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(17, 27, 45, 0.6), rgba(8, 15, 27, 0.74));
}

.order-page #step-4-seo .analysis-loading h3 {
  margin: 0 0 6px;
  color: #dbeafe;
  font-size: 14px;
}

.order-page #step-4-seo .analysis-loading p {
  max-width: 560px;
  margin: 0 auto;
  color: #788aa1;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-4-seo .analysis-results {
  gap: 14px;
}

.order-page #step-4-seo .seo-simple-overview,
.order-page #step-4-seo .seo-whitelist-state {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(17, 27, 45, 0.74), rgba(8, 15, 27, 0.88));
}

.order-page #step-4-seo .seo-simple-overview::after,
.order-page #step-4-seo .seo-whitelist-state::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.75), rgba(52, 211, 153, 0.75), transparent);
}

.order-page #step-4-seo .seo-simple-overview--attention {
  border-color: rgba(251, 191, 36, 0.18);
  background: linear-gradient(155deg, rgba(37, 27, 23, 0.48), rgba(8, 15, 27, 0.9));
}

.order-page #step-4-seo .seo-simple-overview--improve {
  border-color: rgba(56, 189, 248, 0.16);
}

.order-page #step-4-seo .seo-simple-overview--good,
.order-page #step-4-seo .seo-whitelist-state {
  border-color: rgba(52, 211, 153, 0.17);
}

.order-page #step-4-seo .seo-simple-overview__icon,
.order-page #step-4-seo .seo-whitelist-state__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 18px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.07);
  font-size: 21px;
}

.order-page #step-4-seo .seo-simple-overview--attention .seo-simple-overview__icon {
  border-color: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.07);
}

.order-page #step-4-seo .seo-simple-overview--good .seo-simple-overview__icon,
.order-page #step-4-seo .seo-whitelist-state__icon {
  border-color: rgba(52, 211, 153, 0.18);
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.07);
}

.order-page #step-4-seo .seo-simple-overview__content,
.order-page #step-4-seo .seo-whitelist-state__content {
  min-width: 0;
  flex: 1;
}

.order-page #step-4-seo .seo-simple-status-badge {
  margin-bottom: 7px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.055);
  font-size: 9px;
  font-weight: 800;
}

.order-page #step-4-seo .seo-simple-status-badge--attention {
  border-color: rgba(251, 191, 36, 0.17);
  color: #fde68a;
  background: rgba(251, 191, 36, 0.055);
}

.order-page #step-4-seo .seo-simple-status-badge--good,
.order-page #step-4-seo .seo-simple-status-badge--active {
  border-color: rgba(52, 211, 153, 0.17);
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.055);
}

.order-page #step-4-seo .seo-simple-overview h3,
.order-page #step-4-seo .seo-whitelist-state h3 {
  margin: 0 0 6px;
  color: #f1f5f9;
  font-size: 15px;
  line-height: 1.65;
}

.order-page #step-4-seo .seo-simple-overview p,
.order-page #step-4-seo .seo-whitelist-state p {
  margin: 0;
  color: #8a9bb0;
  font-size: 10.5px;
  line-height: 1.85;
}

.order-page #step-4-seo .seo-simple-overview__url,
.order-page #step-4-seo .seo-whitelist-state__url {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #71859e;
  font-size: 9.5px;
}

.order-page #step-4-seo .seo-simple-overview__url i,
.order-page #step-4-seo .seo-whitelist-state__url i {
  color: #60a5fa;
}

.order-page #step-4-seo .seo-simple-overview__url bdi,
.order-page #step-4-seo .seo-whitelist-state__url bdi {
  direction: ltr;
  unicode-bidi: isolate;
}

.order-page #step-4-seo .seo-simple-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.order-page #step-4-seo .seo-simple-category {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.02);
}

.order-page #step-4-seo .seo-simple-category--attention {
  border-color: rgba(251, 191, 36, 0.14);
  background: rgba(251, 191, 36, 0.025);
}

.order-page #step-4-seo .seo-simple-category--improve {
  border-color: rgba(56, 189, 248, 0.13);
  background: rgba(56, 189, 248, 0.02);
}

.order-page #step-4-seo .seo-simple-category--good {
  border-color: rgba(52, 211, 153, 0.11);
  background: rgba(52, 211, 153, 0.018);
}

.order-page #step-4-seo .seo-simple-category__head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.order-page #step-4-seo .seo-simple-category__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 12px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.05);
  font-size: 13px;
}

.order-page #step-4-seo .seo-simple-category--attention .seo-simple-category__icon {
  border-color: rgba(251, 191, 36, 0.16);
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.05);
}

.order-page #step-4-seo .seo-simple-category--good .seo-simple-category__icon {
  border-color: rgba(52, 211, 153, 0.14);
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.045);
}

.order-page #step-4-seo .seo-simple-category__head h3 {
  margin: 0 0 3px;
  color: #e7eef8;
  font-size: 12px;
  font-weight: 800;
}

.order-page #step-4-seo .seo-simple-category__head p {
  margin: 0;
  color: #71839a;
  font-size: 9px;
  line-height: 1.65;
}

.order-page #step-4-seo .seo-simple-category__state {
  min-height: 24px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #9fb0c3;
  background: rgba(148, 163, 184, 0.055);
  font-size: 8.5px;
  white-space: nowrap;
}

.order-page #step-4-seo .seo-simple-category--attention .seo-simple-category__state {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.06);
}

.order-page #step-4-seo .seo-simple-category--improve .seo-simple-category__state {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.06);
}

.order-page #step-4-seo .seo-simple-category--good .seo-simple-category__state {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.06);
}

.order-page #step-4-seo .seo-simple-category__issues {
  margin: 13px 0 0;
  padding: 12px 0 0;
  display: grid;
  gap: 8px;
  list-style: none;
  border-top: 1px solid rgba(148, 163, 184, 0.07);
}

.order-page #step-4-seo .seo-simple-category__issues li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #91a1b5;
  font-size: 9.8px;
  line-height: 1.75;
}

.order-page #step-4-seo .seo-simple-category__issues li i {
  margin-top: 4px;
  color: #64748b;
  font-size: 8px;
}

.order-page #step-4-seo .seo-simple-category__empty {
  margin-top: 13px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(52, 211, 153, 0.07);
  color: #86cdb1;
  font-size: 9.5px;
}

.order-page #step-4-seo .seo-simple-category__empty i {
  color: #34d399;
}

.order-page #step-4-seo .seo-simple-category__more {
  margin-top: 9px;
  color: #65758b;
  font-size: 8.8px;
}

.order-page #step-4-seo .seo-analysis-explain,
.order-page #step-4-seo .seo-whitelist-next-note {
  padding: 14px 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-4-seo .seo-analysis-explain__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.06);
}

.order-page #step-4-seo .seo-analysis-explain strong {
  display: block;
  margin-bottom: 4px;
  color: #d9fbe9;
  font-size: 10.5px;
}

.order-page #step-4-seo .seo-analysis-explain p,
.order-page #step-4-seo .seo-whitelist-next-note span {
  margin: 0;
  color: #8496aa;
  font-size: 9.8px;
  line-height: 1.8;
}

.order-page #step-4-seo .seo-whitelist-next-note > i {
  margin-top: 4px;
  color: #34d399;
}

.order-page #step-4-seo .analysis-confirmation {
  margin-top: 0;
}

.order-page #step-4-seo .confirmation-checkbox {
  padding: 13px 14px;
  border-color: rgba(125, 211, 252, 0.12);
  background: rgba(56, 189, 248, 0.025);
}

@media (max-width: 767px) {
  .order-page #step-3-seo .order-step-heading__meta,
  .order-page #step-4-seo .order-step-heading__meta {
    gap: 8px;
  }

  .order-page #step-3-seo .order-step-heading__number,
  .order-page #step-3-seo .order-step-heading__hint,
  .order-page #step-4-seo .order-step-heading__number,
  .order-page #step-4-seo .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-3-seo .seo-url-choice-note {
    display: grid;
    gap: 8px;
    padding: 10px 11px;
  }

  .order-page #step-3-seo .seo-url-choice-note__item--active-project {
    flex: initial;
  }

  .order-page #step-3-seo .seo-url-card {
    padding: 16px;
    border-radius: 17px;
  }

  .order-page #step-3-seo .seo-url-card__intro {
    align-items: flex-start;
  }

  .order-page #step-3-seo .seo-url-card__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .order-page #step-3-seo .url-input {
    min-height: 50px;
    font-size: 12px;
  }

  .order-page #step-3-seo .analyze-button-container {
    justify-content: stretch;
  }

  .order-page #step-3-seo .analyze-btn {
    width: 100%;
    min-width: 0;
  }

  .order-page #step-4-seo .analysis-loading {
    padding: 36px 16px;
  }

  .order-page #step-4-seo .seo-simple-overview,
  .order-page #step-4-seo .seo-whitelist-state {
    padding: 16px;
    align-items: flex-start;
  }

  .order-page #step-4-seo .seo-simple-overview__icon,
  .order-page #step-4-seo .seo-whitelist-state__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
    font-size: 18px;
  }

  .order-page #step-4-seo .seo-simple-categories {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .order-page #step-4-seo .seo-simple-category {
    padding: 14px;
  }

  .order-page #step-4-seo .seo-simple-category__head {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .order-page #step-4-seo .seo-simple-category__state {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }

  .order-page #step-4-seo .seo-analysis-explain,
  .order-page #step-4-seo .seo-whitelist-next-note {
    padding: 12px;
  }
}

.order-page #step-4-seo .analysis-results.hidden {
  display: none;
}


/* ========================================================================== 
   SEO order · Step 5 target keywords · v3.4
   ========================================================================== */
.order-page #step-5-seo .seo-keywords-step-content {
  overflow: hidden;
}

.order-page #step-5-seo .seo-keywords-step-heading {
  margin-bottom: 16px;
}

.order-page #step-5-seo .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-5-seo .order-step-heading__number,
.order-page #step-5-seo .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-5-seo .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-5-seo .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-5-seo .seo-keywords-guide {
  max-width: 920px;
  margin: 0 auto 14px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
}

.order-page #step-5-seo .seo-keywords-guide__item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.85;
}

.order-page #step-5-seo .seo-keywords-guide__item strong {
  color: #cbd5e1;
  font-weight: 800;
}

.order-page #step-5-seo .seo-keywords-guide__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 9px;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.055);
}

.order-page #step-5-seo .seo-keywords-entry-card {
  position: relative;
  padding: 20px;
  border-color: rgba(125, 211, 252, 0.13);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.62), rgba(7, 12, 23, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.order-page #step-5-seo .seo-keywords-entry-head {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-page #step-5-seo .seo-keywords-entry-head__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #7dd3fc;
  font-size: 9.5px;
  font-weight: 800;
}

.order-page #step-5-seo .seo-keywords-entry-head h3 {
  margin: 0;
  color: #eef6ff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.6;
}

.order-page #step-5-seo .seo-keywords-counter {
  flex: 0 0 auto;
  min-width: 68px;
  min-height: 38px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 12px;
  color: #8fa1b9;
  background: rgba(56, 189, 248, 0.055);
  font-size: 10px;
  font-weight: 700;
}

.order-page #step-5-seo .seo-keywords-counter #keyword-fields-count {
  color: #67e8f9;
  font-size: 14px;
  font-weight: 900;
}

.order-page #step-5-seo .keywords-list {
  gap: 9px;
}

.order-page #step-5-seo .keyword-item {
  grid-template-columns: 36px minmax(0, 1fr) 42px;
  gap: 9px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 14px;
  background: rgba(3, 7, 18, 0.34);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.order-page #step-5-seo .keyword-item:focus-within {
  border-color: rgba(56, 189, 248, 0.27);
  background: rgba(3, 7, 18, 0.52);
}

.order-page #step-5-seo .keyword-item__index {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.13);
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.05);
  font-size: 10px;
  font-weight: 850;
}

.order-page #step-5-seo .keyword-input {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.order-page #step-5-seo .keyword-input:focus {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.order-page #step-5-seo .keyword-input::placeholder {
  color: #5f6d82;
}

.order-page #step-5-seo .remove-keyword {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.order-page #step-5-seo .remove-keyword:hover {
  border-color: rgba(251, 113, 133, 0.32);
  color: #fecdd3;
  background: rgba(251, 113, 133, 0.1);
  transform: translateY(-1px);
}

.order-page #step-5-seo .seo-keywords-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-page #step-5-seo .add-keyword-btn {
  margin-top: 0;
  min-height: 43px;
  padding: 0 15px;
  border-color: rgba(52, 211, 153, 0.2);
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.065);
}

.order-page #step-5-seo .add-keyword-btn:hover {
  border-color: rgba(52, 211, 153, 0.34);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.08);
}

.order-page #step-5-seo .seo-keywords-actions__hint {
  color: #6f8096;
  font-size: 9.5px;
  line-height: 1.8;
}

.order-page #step-5-seo .keywords-help {
  margin-top: 13px;
  border-color: rgba(56, 189, 248, 0.11);
  background: rgba(56, 189, 248, 0.035);
}

@media (max-width: 767px) {
  .order-page #step-5-seo .order-step-heading__meta {
    gap: 8px;
  }

  .order-page #step-5-seo .order-step-heading__number,
  .order-page #step-5-seo .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-5-seo .seo-keywords-guide {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .order-page #step-5-seo .seo-keywords-entry-card {
    padding: 14px;
  }

  .order-page #step-5-seo .seo-keywords-entry-head {
    align-items: flex-start;
  }

  .order-page #step-5-seo .seo-keywords-entry-head h3 {
    font-size: 12.5px;
  }

  .order-page #step-5-seo .seo-keywords-counter {
    min-width: 61px;
    min-height: 34px;
    padding: 6px 8px;
  }

  .order-page #step-5-seo .keyword-item {
    grid-template-columns: 31px minmax(0, 1fr) 38px;
    gap: 6px;
    padding: 5px;
  }

  .order-page #step-5-seo .keyword-item__index {
    width: 30px;
    height: 30px;
  }

  .order-page #step-5-seo .keyword-input {
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .order-page #step-5-seo .remove-keyword {
    width: 36px;
    height: 36px;
  }

  .order-page #step-5-seo .seo-keywords-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .order-page #step-5-seo .add-keyword-btn {
    width: 100%;
  }
}

/* ========================================================================== 
   SEO order · Step 6 professional keyword difficulty · v3.5
   ========================================================================== */
.order-page #step-6-seo .seo-keyword-analysis-step-content {
  overflow: hidden;
}

.order-page #step-6-seo .seo-keyword-analysis-heading {
  margin-bottom: 16px;
}

.order-page #step-6-seo .order-step-heading__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-page #step-6-seo .order-step-heading__number,
.order-page #step-6-seo .order-step-heading__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.045);
  color: #93a4ba;
  font-size: 10.5px;
  font-weight: 700;
}

.order-page #step-6-seo .order-step-heading__number {
  color: #7dd3fc;
}

.order-page #step-6-seo .order-step-heading__hint i {
  color: #34d399;
}

.order-page #step-6-seo .seo-keyword-analysis-note {
  max-width: 920px;
  margin: 0 auto 14px;
  padding: 11px 13px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.035), rgba(56, 189, 248, 0.02));
  color: #8d9caf;
  font-size: 10.5px;
  line-height: 1.85;
}

.order-page #step-6-seo .seo-keyword-analysis-note i {
  margin-top: 4px;
  color: #6ee7b7;
}

.order-page #step-6-seo .seo-keyword-analysis-shell {
  max-width: 920px;
  margin-inline: auto;
}

.order-page #step-6-seo .seo-keyword-analysis-loading {
  min-height: 170px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.64), rgba(7, 12, 23, 0.82));
}

.order-page #step-6-seo .seo-keyword-analysis-loading strong {
  display: block;
  margin-bottom: 5px;
  color: #eaf4ff;
  font-size: 13px;
}

.order-page #step-6-seo .seo-keyword-analysis-loading p {
  margin: 0;
  color: #7f8fa5;
  font-size: 10.5px;
  line-height: 1.8;
}

.order-page #step-6-seo .seo-keyword-summary {
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.64), rgba(7, 12, 23, 0.78));
}

.order-page #step-6-seo .seo-keyword-summary__head {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-page #step-6-seo .seo-keyword-summary__head span {
  display: block;
  margin-bottom: 4px;
  color: #7dd3fc;
  font-size: 9.5px;
  font-weight: 800;
}

.order-page #step-6-seo .seo-keyword-summary__head h3 {
  margin: 0;
  color: #eef6ff;
  font-size: 14px;
  font-weight: 850;
}

.order-page #step-6-seo .seo-keyword-summary__head > i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 12px;
  color: #67e8f9;
  background: rgba(56, 189, 248, 0.055);
}

.order-page #step-6-seo .summary-stats {
  gap: 10px;
}

.order-page #step-6-seo .stat-item {
  min-height: 74px;
  border-radius: 14px;
  box-shadow: none;
}

.order-page #step-6-seo .seo-keyword-results-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.order-page #step-6-seo .seo-keyword-result-card {
  position: relative;
  overflow: hidden;
  padding: 17px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.58), rgba(5, 10, 20, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.order-page #step-6-seo .seo-keyword-result-card.easy {
  border-color: rgba(52, 211, 153, 0.17);
}

.order-page #step-6-seo .seo-keyword-result-card.medium {
  border-color: rgba(251, 191, 36, 0.18);
}

.order-page #step-6-seo .seo-keyword-result-card.hard {
  border-color: rgba(251, 113, 133, 0.18);
}

.order-page #step-6-seo .seo-keyword-result-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.order-page #step-6-seo .seo-keyword-result-card__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #6f8096;
  font-size: 9px;
  font-weight: 800;
}

.order-page #step-6-seo .seo-keyword-result-card__title h3 {
  margin: 0;
  color: #edf6ff;
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1.7;
}

.order-page #step-6-seo .difficulty-badge {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 7px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
}

.order-page #step-6-seo .seo-keyword-result-card__signals {
  margin-top: 12px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.order-page #step-6-seo .seo-keyword-result-card__signals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 5px 9px;
  border: 1px solid rgba(148, 163, 184, 0.09);
  border-radius: 999px;
  color: #8ea0b7;
  background: rgba(148, 163, 184, 0.035);
  font-size: 9.5px;
  font-weight: 700;
}

.order-page #step-6-seo .seo-keyword-result-card__signals i {
  color: #7dd3fc;
}

.order-page #step-6-seo .seo-keyword-result-card__signals .is-ranked {
  border-color: rgba(52, 211, 153, 0.14);
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.045);
}

.order-page #step-6-seo .seo-keyword-result-card__reason {
  margin: 12px 0 0;
  color: #8797ad;
  font-size: 10.5px;
  line-height: 1.95;
}

.order-page #step-6-seo .seo-keyword-result-card__footer {
  margin-top: 13px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.order-page #step-6-seo .seo-keyword-result-card__footer span {
  color: #718198;
  font-size: 9.5px;
}

.order-page #step-6-seo .seo-keyword-result-card__footer strong {
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 900;
}

.order-page #step-6-seo .seo-keyword-total-card {
  margin-top: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.06), rgba(56, 189, 248, 0.025));
}

.order-page #step-6-seo .seo-keyword-total-card .price-label {
  display: block;
  margin-bottom: 4px;
  color: #d9f9ec;
  font-size: 11px;
  font-weight: 850;
}

.order-page #step-6-seo .seo-keyword-total-card small {
  display: block;
  max-width: 520px;
  color: #73849a;
  font-size: 9px;
  line-height: 1.7;
}

.order-page #step-6-seo .seo-keyword-total-card .price-value {
  flex: 0 0 auto;
  color: #34d399;
  font-size: 16px;
  font-weight: 950;
}

@media (max-width: 767px) {
  .order-page #step-6-seo .order-step-heading__meta {
    gap: 8px;
  }

  .order-page #step-6-seo .order-step-heading__number,
  .order-page #step-6-seo .order-step-heading__hint {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9.5px;
  }

  .order-page #step-6-seo .seo-keyword-analysis-loading {
    min-height: 150px;
    padding: 18px 14px;
  }

  .order-page #step-6-seo .seo-keyword-summary,
  .order-page #step-6-seo .seo-keyword-result-card {
    padding: 14px;
  }

  .order-page #step-6-seo .summary-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-page #step-6-seo .stat-item {
    min-height: 66px;
    padding: 9px 5px;
  }

  .order-page #step-6-seo .seo-keyword-result-card__head {
    gap: 9px;
  }

  .order-page #step-6-seo .seo-keyword-result-card__signals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .order-page #step-6-seo .seo-keyword-result-card__signals span {
    width: 100%;
    border-radius: 10px;
  }

  .order-page #step-6-seo .seo-keyword-total-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-page #step-6-seo .seo-keyword-total-card .price-value {
    align-self: flex-end;
  }
}

/* Context-aware order features: CMS/custom + website type matrix */
.features-context-empty {
    grid-column: 1 / -1;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    color: #94a3b8;
    background: rgba(15, 23, 42, 0.38);
    text-align: center;
    line-height: 1.9;
}

.features-context-empty i {
    flex: 0 0 auto;
    color: #67e8f9;
}

.features-context-empty.is-error {
    color: #fda4af;
    border-color: rgba(251, 113, 133, 0.2);
    background: rgba(127, 29, 29, 0.1);
}

.features-context-empty.is-error i {
    color: #fb7185;
}

.modern-feature-card.is-included-feature {
    cursor: default;
    border-color: rgba(34, 197, 94, 0.3);
}

.modern-feature-card.is-included-feature .feature-check-icon {
    opacity: 1;
}

.included-feature-label,
.price-amount.is-free {
    color: #34d399;
}

/* Order matrix v2: required paid features */
.modern-feature-card.is-required-feature {
    border-color: rgba(255, 185, 74, 0.34);
    background: linear-gradient(145deg, rgba(255, 185, 74, 0.08), rgba(8, 13, 25, 0.94));
    cursor: default;
}

.modern-feature-card.is-required-feature .feature-check-icon {
    color: #ffc76a;
    border-color: rgba(255, 185, 74, 0.42);
    background: rgba(255, 185, 74, 0.12);
}

.modern-feature-card.is-required-feature .required-feature-label {
    color: #ffc76a;
    font-size: 0.88rem;
}

.modern-feature-card.is-required-feature:hover {
    transform: none;
}


/* Order option icons guaranteed by the local Font Awesome 6.4 font files. */
/* Keeps CMS/custom brand icons and configured feature/site icons visible without a CDN. */
.order-container i.fa-archive::before { content: "\f187"; }
.order-container i.fa-balance-scale::before { content: "\f24e"; }
.order-container i.fa-bell::before { content: "\f0f3"; }
.order-container i.fa-blog::before { content: "\f781"; }
.order-container i.fa-briefcase::before { content: "\f0b1"; }
.order-container i.fa-building::before { content: "\f1ad"; }
.order-container i.fa-calculator::before { content: "\f1ec"; }
.order-container i.fa-calendar-check::before { content: "\f274"; }
.order-container i.fa-chart-bar::before { content: "\f080"; }
.order-container i.fa-chart-line::before { content: "\f201"; }
.order-container i.fa-clipboard-list::before { content: "\f46d"; }
.order-container i.fa-code::before { content: "\f121"; }
.order-container i.fa-cogs::before { content: "\f085"; }
.order-container i.fa-coins::before { content: "\f51e"; }
.order-container i.fa-comment-dots::before { content: "\f4ad"; }
.order-container i.fa-comments::before { content: "\f086"; }
.order-container i.fa-concierge-bell::before { content: "\f562"; }
.order-container i.fa-credit-card::before { content: "\f09d"; }
.order-container i.fa-database::before { content: "\f1c0"; }
.order-container i.fa-dollar-sign::before { content: "\24"; }
.order-container i.fa-drupal::before { content: "\f1a9"; }
.order-container i.fa-dumbbell::before { content: "\f44b"; }
.order-container i.fa-envelope::before { content: "\f0e0"; }
.order-container i.fa-exchange-alt::before { content: "\f362"; }
.order-container i.fa-file-alt::before { content: "\f15c"; }
.order-container i.fa-file-excel::before { content: "\f1c3"; }
.order-container i.fa-file-invoice::before { content: "\f570"; }
.order-container i.fa-filter::before { content: "\f0b0"; }
.order-container i.fa-fire::before { content: "\f06d"; }
.order-container i.fa-font::before { content: "\f031"; }
.order-container i.fa-graduation-cap::before { content: "\f19d"; }
.order-container i.fa-hamburger::before { content: "\f805"; }
.order-container i.fa-hand-holding-heart::before { content: "\f4be"; }
.order-container i.fa-heading::before { content: "\f1dc"; }
.order-container i.fa-heart::before { content: "\f004"; }
.order-container i.fa-history::before { content: "\f1da"; }
.order-container i.fa-home::before { content: "\f015"; }
.order-container i.fa-hospital::before { content: "\f0f8"; }
.order-container i.fa-hotel::before { content: "\f594"; }
.order-container i.fa-id-card::before { content: "\f2c2"; }
.order-container i.fa-images::before { content: "\f302"; }
.order-container i.fa-joomla::before { content: "\f1aa"; }
.order-container i.fa-landmark::before { content: "\f66f"; }
.order-container i.fa-language::before { content: "\f1ab"; }
.order-container i.fa-link::before { content: "\f0c1"; }
.order-container i.fa-lock::before { content: "\f023"; }
.order-container i.fa-magic::before { content: "\f0d0"; }
.order-container i.fa-map-marked-alt::before { content: "\f5a0"; }
.order-container i.fa-mobile-alt::before { content: "\f3cd"; }
.order-container i.fa-moon::before { content: "\f186"; }
.order-container i.fa-music::before { content: "\f001"; }
.order-container i.fa-newspaper::before { content: "\f1ea"; }
.order-container i.fa-play-circle::before { content: "\f144"; }
.order-container i.fa-plug::before { content: "\f1e6"; }
.order-container i.fa-podcast::before { content: "\f2ce"; }
.order-container i.fa-project-diagram::before { content: "\f542"; }
.order-container i.fa-search::before { content: "\f002"; }
.order-container i.fa-search-plus::before { content: "\f00e"; }
.order-container i.fa-share-alt::before { content: "\f1e0"; }
.order-container i.fa-shield-alt::before { content: "\f3ed"; }
.order-container i.fa-shopping-cart::before { content: "\f07a"; }
.order-container i.fa-sitemap::before { content: "\f0e8"; }
.order-container i.fa-sliders::before { content: "\f1de"; }
.order-container i.fa-star::before { content: "\f005"; }
.order-container i.fa-tachometer-alt::before { content: "\f3fd"; }
.order-container i.fa-tag::before { content: "\f02b"; }
.order-container i.fa-tags::before { content: "\f02c"; }
.order-container i.fa-taxi::before { content: "\f1ba"; }
.order-container i.fa-ticket-alt::before { content: "\f3ff"; }
.order-container i.fa-truck::before { content: "\f0d1"; }
.order-container i.fa-university::before { content: "\f19c"; }
.order-container i.fa-user::before { content: "\f007"; }
.order-container i.fa-user-circle::before { content: "\f2bd"; }
.order-container i.fa-user-lock::before { content: "\f502"; }
.order-container i.fa-user-shield::before { content: "\f505"; }
.order-container i.fa-user-tie::before { content: "\f508"; }
.order-container i.fa-users::before { content: "\f0c0"; }
.order-container i.fa-users-cog::before { content: "\f509"; }
.order-container i.fa-utensils::before { content: "\f2e7"; }
.order-container i.fa-video::before { content: "\f03d"; }
.order-container i.fa-wifi::before { content: "\f1eb"; }
.order-container i.fa-wordpress::before { content: "\f19a"; }
.order-container i.fa-globe::before { content: "\f0ac"; }
.order-container i.fa-laptop-code::before { content: "\f5fc"; }
.order-container i.fa-puzzle-piece::before { content: "\f12e"; }
.order-container i.fa-store::before { content: "\f54e"; }
.order-container i.fa-clock::before { content: "\f017"; }
.order-container i.fa-bolt::before { content: "\f0e7"; }
.order-container i.fa-react::before { content: "\f41b"; }
.order-container i.fa-laravel::before { content: "\f3bd"; }
.order-container i.fa-php::before { content: "\f457"; }
.order-container i.fa-python::before { content: "\f3e2"; }
.order-container i.fa-node-js::before { content: "\f3d3"; }
.order-container i.fa-angular::before { content: "\f420"; }
.order-container i.fa-vuejs::before { content: "\f41f"; }
.order-container i.fa-js::before { content: "\f3b8"; }
.order-container i.fa-html5::before { content: "\f13b"; }
.order-container i.fa-css3-alt::before { content: "\f38b"; }
.order-container i.fa-bootstrap::before { content: "\f836"; }
.order-container i.fa-shopify::before { content: "\e057"; }
.order-container i.fa-github::before { content: "\f09b"; }
.order-container i.fa-git-alt::before { content: "\f841"; }
.order-container i.fa-npm::before { content: "\f3d4"; }
.order-container i.fa-apple::before { content: "\f179"; }
.order-container i.fa-android::before { content: "\f17b"; }
.order-container i.fa-windows::before { content: "\f17a"; }
.order-container i.fa-elementor::before { content: "\f430"; }
.order-container i.fa-wix::before { content: "\f5cf"; }
.order-container i.fa-squarespace::before { content: "\f5be"; }
.order-container i.fa-magento::before { content: "\f3c4"; }
.order-container i.fa-opencart::before { content: "\f23d"; }
.order-container i.fa-java::before { content: "\f4e4"; }

/* ================================================================
   Website Type Professional Filter — 110-type taxonomy
   ================================================================ */
.order-page .website-type-filter {
  margin: 0 0 20px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.075), transparent 34%),
    linear-gradient(145deg, rgba(14, 24, 42, 0.9), rgba(8, 14, 26, 0.94));
  box-shadow: 0 18px 46px rgba(2, 8, 23, 0.18);
}

.order-page .website-type-filter.is-disabled {
  opacity: 0.74;
}

.order-page .website-type-filter__top,
.order-page .website-type-filter__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-page .website-type-filter__top {
  margin-bottom: 14px;
}

.order-page .website-type-filter__heading {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.order-page .website-type-filter__heading-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 13px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.07);
}

.order-page .website-type-filter__heading > span:last-child {
  display: grid;
  gap: 3px;
}

.order-page .website-type-filter__heading strong {
  color: #edf6ff;
  font-size: 13px;
  font-weight: 900;
}

.order-page .website-type-filter__heading small {
  color: #7f8ea4;
  font-size: 9.5px;
  line-height: 1.7;
}

.order-page .website-type-filter__counter {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 999px;
  color: #9cafc5;
  background: rgba(7, 13, 24, 0.5);
  font-size: 9.5px;
  font-weight: 800;
}

.order-page .website-type-filter__counter i {
  color: #67e8f9;
}

.order-page .website-type-filter__search {
  position: relative;
  margin-bottom: 14px;
}

.order-page .website-type-filter__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.order-page .website-type-filter__search input {
  width: 100%;
  min-height: 50px;
  padding: 0 46px 0 46px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 15px;
  outline: none;
  color: #e5eef9;
  background: rgba(4, 10, 20, 0.62);
  font-family: inherit;
  font-size: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.order-page .website-type-filter__search input::placeholder {
  color: #61738b;
}

.order-page .website-type-filter__search input:focus {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(5, 13, 25, 0.82);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.07);
}

.order-page .website-type-filter__search input:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.order-page .website-type-filter__search-icon {
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 2;
  transform: translateY(-50%);
  color: #7890aa;
  pointer-events: none;
}

.order-page .website-type-filter__clear {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 10px;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.order-page .website-type-filter__clear:hover {
  color: #e2e8f0;
  border-color: rgba(56, 189, 248, 0.26);
}

.order-page .website-type-filter__clear[hidden],
.order-page .website-type-filter__reset[hidden] {
  display: none;
}

.order-page .website-type-filter__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.order-page .website-type-filter__category {
  min-height: 36px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  color: #8ea0b6;
  background: rgba(9, 17, 31, 0.58);
  font-family: inherit;
  font-size: 9.5px;
  font-weight: 800;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.order-page .website-type-filter__category:hover {
  color: #c8eafb;
  border-color: rgba(56, 189, 248, 0.22);
  transform: translateY(-1px);
}

.order-page .website-type-filter__category.is-active {
  color: #dff7ff;
  border-color: rgba(56, 189, 248, 0.36);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(59, 130, 246, 0.08));
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.04);
}

.order-page .website-type-filter__category i {
  color: #6f859e;
}

.order-page .website-type-filter__category.is-active i {
  color: #67e8f9;
}

.order-page .website-type-filter__category small {
  min-width: 23px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #71839a;
  background: rgba(148, 163, 184, 0.07);
  font-size: 8px;
  text-align: center;
}

.order-page .website-type-filter__category.is-active small {
  color: #bcecff;
  background: rgba(56, 189, 248, 0.1);
}

.order-page .website-type-filter__footer {
  min-height: 32px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.order-page .website-type-filter__summary {
  color: #72849b;
  font-size: 9.5px;
  font-weight: 700;
}

.order-page .website-type-filter__reset {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 5px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 9px;
  color: #8fa3ba;
  background: rgba(9, 17, 31, 0.48);
  font-family: inherit;
  font-size: 8.5px;
  font-weight: 800;
  cursor: pointer;
}

.order-page .website-type-filter__reset:hover {
  color: #d7e7f7;
  border-color: rgba(56, 189, 248, 0.22);
}

.order-page #website-types-grid .modern-feature-card::after {
  max-width: calc(100% - 30px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-page .website-type-filter-empty {
  grid-column: 1 / -1;
  min-height: 230px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px dashed rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  color: #8ea0b6;
  background: rgba(8, 14, 26, 0.52);
  text-align: center;
}

.order-page .website-type-filter-empty__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 15px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.06);
}

.order-page .website-type-filter-empty strong {
  color: #dce8f6;
  font-size: 13px;
}

.order-page .website-type-filter-empty p {
  margin: 0;
  color: #75879d;
  font-size: 10px;
  line-height: 1.8;
}

.order-page .website-type-filter-empty__reset {
  margin-top: 5px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 10px;
  color: #bdeeff;
  background: rgba(14, 165, 233, 0.09);
  font-family: inherit;
  font-size: 9.5px;
  font-weight: 850;
  cursor: pointer;
}

.order-page .website-type-load-more {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.order-page .website-type-load-more[hidden] {
  display: none;
}

.order-page .website-type-load-more button {
  min-width: 220px;
  min-height: 48px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
  color: #d4edf9;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(15, 23, 42, 0.62));
  font-family: inherit;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.order-page .website-type-load-more button:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.32);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(15, 23, 42, 0.72));
}

.order-page .website-type-load-more button > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 850;
}

.order-page .website-type-load-more button small {
  color: #758ca5;
  font-size: 8.5px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .order-page .website-type-filter {
    padding: 14px;
    border-radius: 17px;
  }

  .order-page .website-type-filter__top {
    align-items: flex-start;
  }

  .order-page .website-type-filter__counter {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 8px;
  }

  .order-page .website-type-filter__categories {
    flex-wrap: nowrap;
    margin-inline: -14px;
    padding: 0 14px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
  }

  .order-page .website-type-filter__category {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .order-page .website-type-filter__top,
  .order-page .website-type-filter__footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .order-page .website-type-filter__counter {
    justify-self: start;
  }

  .order-page .website-type-filter__search input {
    min-height: 48px;
    font-size: 11px;
  }

  .order-page .website-type-filter__reset {
    justify-self: start;
  }

  .order-page .website-type-load-more button {
    width: 100%;
  }
}



/* Stage: feature base/add-on professional filter */
.order-page #step-4 .feature-filter{margin:18px 0 22px;padding:16px;border:1px solid rgba(148,163,184,.16);border-radius:20px;background:linear-gradient(145deg,rgba(11,25,43,.9),rgba(9,20,35,.78));display:grid;grid-template-columns:auto minmax(260px,1fr);gap:14px;align-items:center}
.order-page #step-4 .feature-filter__tabs{display:flex;gap:8px;align-items:center}
.order-page #step-4 .feature-filter__tab{border:1px solid rgba(148,163,184,.16);background:rgba(255,255,255,.035);color:#afc0d2;border-radius:13px;min-height:46px;padding:0 14px;display:flex;align-items:center;gap:8px;font:inherit;cursor:pointer;transition:border-color .2s ease,background .2s ease,color .2s ease}
.order-page #step-4 .feature-filter__tab:hover{border-color:rgba(123,92,246,.45);color:#eef4fb}.order-page #step-4 .feature-filter__tab.is-active{background:rgba(123,92,246,.14);border-color:rgba(123,92,246,.62);color:#fff}
.order-page #step-4 .feature-filter__tab small{min-width:24px;height:24px;border-radius:999px;display:grid;place-items:center;background:rgba(255,255,255,.08);font-size:11px}.order-page #step-4 .feature-filter__tab.is-active small{background:rgba(123,92,246,.28)}
.order-page #step-4 .feature-filter__search{height:46px;border:1px solid rgba(148,163,184,.15);border-radius:13px;background:rgba(5,15,28,.72);display:flex;align-items:center;gap:10px;padding:0 13px;color:#7890a8}.order-page #step-4 .feature-filter__search:focus-within{border-color:rgba(123,92,246,.6);box-shadow:0 0 0 3px rgba(123,92,246,.08)}
.order-page #step-4 .feature-filter__search input{min-width:0;flex:1;border:0;outline:0;background:transparent;color:#edf4fb;font:inherit}.order-page #step-4 .feature-filter__search input::placeholder{color:#71869b}.order-page #step-4 .feature-filter__search button{border:0;background:transparent;color:#8499ae;cursor:pointer;padding:5px}.order-page #step-4 .feature-filter__search button[hidden]{display:none}
.order-page #step-4 .feature-filter__summary{grid-column:1/-1;color:#8ea2b7;font-size:12px;padding:0 2px}.order-page #step-4 #features-grid .is-included-feature{cursor:default}.order-page #step-4 #features-grid .is-included-feature:hover{transform:none}.order-page #step-4 #features-grid .included-feature-label{font-size:12px;color:#82d6b1}
@media(max-width:820px){.order-page #step-4 .feature-filter{grid-template-columns:1fr}.order-page #step-4 .feature-filter__tabs{display:grid;grid-template-columns:1fr 1fr}.order-page #step-4 .feature-filter__tab{justify-content:center}.order-page #step-4 .feature-filter__summary{grid-column:auto}}
@media(max-width:520px){.order-page #step-4 .feature-filter{padding:12px}.order-page #step-4 .feature-filter__tab{padding:0 9px;font-size:12px}.order-page #step-4 .feature-filter__tab small{min-width:22px;height:22px}.order-page #step-4 .feature-filter__search{height:44px}}
