* {
  box-sizing: border-box;
}

:root {
  --bg: #e6e6e6;
  --card: #8f8f8f;
  --card-text: #1b1b1b;
  --muted: rgba(0, 0, 0, 0.65);
  --muted-2: rgba(0, 0, 0, 0.5);
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.18);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --accent: #f28c1b; /* orange */
  --primary: #1f4dbf; /* blue */
  --danger: #c81e1e;
  --success: #127a3d;
  --info: #1f4dbf;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: #111;
}

.site-header {
  background: #0b0b0b;
  color: #ffffff;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1000;
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px 16px;
  }
  
  .mobile-menu-container {
    display: flex !important;
    margin-left: auto;
    align-items: center;
    gap: 12px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-container {
    display: none !important;
  }
}

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.header-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.site-header .header-logo-img {
  filter: none;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo .metro-text {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-logo .pcs-text {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-logo .pcs-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.header-logo .tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-top: 2px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.header-nav a:hover {
  opacity: 0.8;
}

.header-nav .track-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  appearance: none;
}

.header-nav .track-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-track-button-header {
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  
  .mobile-track-button-header:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
  }

  .primary-button {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobile-track-button-header {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* White hamburger inside black header */
.site-header .hamburger span {
  background: #ffffff;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Side Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85%;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-side-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.2);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #111;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-close:hover {
  opacity: 0.8;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.mobile-nav a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mobile-track-button {
  background: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #fff;
  margin: 16px 20px;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.mobile-track-button:hover {
  filter: brightness(1.06);
}

@media (max-width: 768px) {
  .header-logo {
    font-size: 24px;
  }

  .header-logo .metro-text,
  .header-logo .pcs-text {
    font-size: 24px;
  }

  .header-logo .tagline {
    font-size: 10px;
  }
}

.page {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 16px 0;
}

.card {
  width: 100%;
  max-width: 920px;
  background: #9b9b9b;
  color: #111;
  border-radius: 28px;
  padding: 0;
  box-shadow: var(--shadow);
  border: none;
  overflow: hidden;
  margin-bottom: 0;
}

/* Reduce gap between form card and next sections */
.card + .steps-section {
  margin-top: 12px;
}

.card.carrier-selection-card {
  padding-bottom: 0;
}

/* Boost-like form banner (inside the card) */
.boost-banner {
  background: var(--accent);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boost-banner img {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.boost-form-shell {
  padding: 28px 34px 34px;
}

@media (max-width: 768px) {
  .boost-form-shell {
    padding: 22px 18px 26px;
  }
}

.boost-intro {
  text-align: center;
  color: rgba(0, 0, 0, 0.78);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
  font-weight: 600;
}

.boost-intro.boost-intro-emphasis {
  color: #000;
  font-weight: 800;
}

.boost-stepper {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin: 10px 0 18px;
}

@media (max-width: 768px) {
  .boost-stepper {
    gap: 44px;
  }
}

.boost-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 120px;
  opacity: 0.55;
}

.boost-step.active {
  opacity: 1;
}

.boost-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #1b1b1b;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(31, 77, 191, 0.55);
}

.boost-step.active .boost-step-circle {
  background: rgba(31, 77, 191, 0.12);
  border-color: rgba(31, 77, 191, 0.85);
}

.boost-step-title {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.8);
}

.boost-step-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
}

/* In the boost form, hide the old brand block */
.boost-form-shell .brand {
  display: none;
}

/* Tighten headings to match screenshot */
.boost-form-shell h1 {
  margin-top: 0;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.boost-form-shell h1.home-page-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(0, 0, 0, 0.92);
}

.boost-form-shell .subtitle {
  margin-top: 10px;
}

/* The Boost reference form does not show this block */
.boost-form-shell header {
  display: none;
}

.brand {
  background: transparent;
  border-radius: 12px;
  padding: 10px 0 2px;
  display: grid;
  gap: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.brand small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

h1 {
  margin: 18px 0 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subtitle {
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
  max-width: 420px;
}

.form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.section-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.section-title.section-title-emphasis {
  color: #000;
  font-weight: 800;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}

input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
  color: #1b1f2a;
}

input:focus {
  outline: 3px solid rgba(242, 140, 27, 0.35);
  border-color: rgba(242, 140, 27, 0.5);
}

select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
  color: #1b1f2a;
  min-height: 46px;
}

select:focus {
  outline: 3px solid rgba(242, 140, 27, 0.35);
  border-color: rgba(242, 140, 27, 0.5);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.phone-prefix {
  padding: 12px 8px 12px 14px;
  font-size: 15px;
  color: #1b1f2a;
  font-weight: 600;
  user-select: none;
  pointer-events: none;
  background: transparent;
}

.phone-input-wrapper input {
  flex: 1;
  border-radius: 0;
  padding-left: 4px;
  padding-right: 14px;
  background: transparent;
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
  margin: 22px 0;
}

.paypal-container {
  min-height: 46px;
}

.paypal-container.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.status {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

.status.warning {
  color: rgba(0, 0, 0, 0.75);
}

.primary-button {
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 15px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(31, 77, 191, 0.22);
  justify-self: end;
  min-width: 190px;
}

.primary-button:hover {
  filter: brightness(1.06);
}

.summary {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  color: #cdd3f7;
}

.summary strong {
  color: #fff;
  font-size: 16px;
}

.ghost-button {
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: transparent;
  color: rgba(0, 0, 0, 0.72);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  width: fit-content;
}

.payment-section {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.payment-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.option-card {
  border: 1px solid rgba(205, 211, 247, 0.4);
  background: transparent;
  color: #cdd3f7;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.option-card.active {
  background: #f5f6ff;
  color: #1b1f2a;
  border-color: transparent;
}

.paypal-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.card-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  color: #1b1f2a;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.card-field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #1b1f2a;
}

.card-field input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e5f3;
  font-size: 15px;
  background: #ffffff;
  color: #111827;
}

.hosted-field {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e5f3;
  background: #ffffff;
  min-height: 44px;
}

.card-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.secondary-button {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.secondary-button:hover {
  background: rgba(0, 0, 0, 0.06);
}

.token-form-shell .section-title {
  color: #000;
  font-weight: 800;
}

.token-expiry-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

@media (max-width: 640px) {
  .token-expiry-row {
    grid-template-columns: 1fr;
  }
}

.token-disclaimer {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
}

.token-disclaimer-title {
  margin: 0 0 8px;
  font-weight: 800;
  color: #111;
}

.token-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5;
}

.token-check input {
  margin-top: 3px;
}

.token-disclaimer-links {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.token-disclaimer-links a {
  color: #1f4dbf;
  font-weight: 700;
  text-decoration: none;
}

.token-disclaimer-links a:hover {
  text-decoration: underline;
}

.token-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.token-actions .primary-button,
.token-actions .secondary-button {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  height: 46px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: button-spin 0.8s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .token-actions {
    grid-template-columns: 1fr;
  }
}

.receipt-container {
  margin-top: 24px;
  background: linear-gradient(135deg, #1a2332 0%, #121a2f 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-header {
  text-align: center;
  margin-bottom: 40px;
}

.receipt-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.receipt-header h1,
.receipt-header h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.receipt-subtitle {
  margin: 0;
  color: #cdd3f7;
  font-size: 14px;
}

.receipt-content {
  display: grid;
  gap: 32px;
}

.receipt-section {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-label {
  color: #cdd3f7;
  font-size: 14px;
  font-weight: 500;
}

.receipt-value {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.receipt-value.amount {
  font-size: 20px;
  color: #10b981;
  font-weight: 700;
}

.receipt-value.transaction-id {
  font-size: 12px;
  color: #cdd3f7;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  max-width: 200px;
}

.receipt-value.order-number {
  font-size: 16px;
  color: #f97316;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.receipt-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-note {
  color: #cdd3f7;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.unpaid-receipt {
  margin-top: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a2332 0%, #121a2f 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-header-small {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.receipt-icon-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(205, 211, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
  border: 2px solid rgba(205, 211, 247, 0.2);
}

.receipt-header-small h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
  font-weight: 600;
}

.receipt-content-small {
  display: grid;
  gap: 16px;
}

.receipt-section-small {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-row-small:last-child {
  border-bottom: none;
}

.receipt-label-small {
  color: #cdd3f7;
  font-size: 13px;
  font-weight: 500;
}

.receipt-value-small {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.receipt-value-small.amount-unpaid {
  font-size: 18px;
  color: #f97316;
  font-weight: 700;
}

.receipt-value-small.status-unpaid {
  font-size: 12px;
  color: var(--danger);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.receipt-value-small.receipt-order-pending {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
  font-size: 13px;
}

.ghost-button-small {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.65);
  color: #111;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.ghost-button-small:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Steps Section */
.steps-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}

.steps-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-item {
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  min-width: 240px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.step-item.active {
  border-color: #f97316;
}

.step-icon-section {
  background: #e5e7eb;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.step-item.active .step-icon-section {
  background: #f3f4f6;
}

.step-icon {
  font-size: 40px;
  filter: grayscale(100%);
}

.step-item.active .step-icon {
  filter: grayscale(0%);
}

.step-text-section {
  background: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #1b1f2a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-label {
  font-size: 13px;
  color: #1b1f2a;
  line-height: 1.4;
  font-weight: 400;
}

.step-arrow {
  font-size: 28px;
  color: #1b1f2a;
  font-weight: bold;
  margin: 0 8px;
}

/* Informational Section */
.info-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
  color: #f5f6ff;
}

.info-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.info-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 32px;
  text-align: center;
}

.info-block {
  margin-bottom: 32px;
  background: rgba(18, 26, 47, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.info-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.info-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 12px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.info-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item p {
  margin-bottom: 8px;
}

.faq-item strong {
  color: #000;
  font-weight: 800;
}


/* Footer */
.site-footer {
  background: #1a1f3a;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 100%;
  margin: 0;
}

.footer-column {
  color: #f5f6ff;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.footer-tagline {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #cdd3f7;
  margin-top: 12px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-icon {
  font-size: 18px;
  display: inline-block;
}

.contact-icon.email-icon,
.contact-icon.phone-icon {
  color: #ff00ff;
  filter: hue-rotate(0deg) saturate(1.5);
}

.footer-contact a {
  color: #cdd3f7;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cdd3f7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Content Pages */
.content-page {
  min-height: calc(100vh - 200px);
  padding: 60px 20px;
  background: #3a3286;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  background: #121a2f;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(10, 14, 29, 0.45);
}

.content-container h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.content-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 32px;
  text-align: center;
}

.content-section {
  margin-bottom: 32px;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.content-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd3f7;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(205, 211, 247, 0.1);
  text-align: center;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.contact-link {
  color: #f97316;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: rgba(18, 26, 47, 0.6);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(205, 211, 247, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #cdd3f7;
  margin: 0;
}

@media (max-width: 768px) {
  .content-container {
    padding: 24px;
  }

  .content-container h1 {
    font-size: 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  /* Steps Section Mobile */
  .steps-section {
    margin: 24px auto;
    padding: 0 12px;
  }

  .steps-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .steps-container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .step-item {
    min-width: 100%;
    width: 100%;
  }

  .step-icon-section {
    min-width: 60px;
    padding: 16px;
  }

  .step-icon {
    font-size: 32px;
  }

  .step-text-section {
    padding: 16px 14px;
  }

  .step-number {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .step-label {
    font-size: 12px;
  }

  .step-arrow {
    display: none;
  }

  /* Info Section Mobile */
  .info-section {
    margin: 26px auto 34px;
    padding: 26px 18px 30px;
  }

  .info-main-title {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .info-intro {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .info-block {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 8px;
  }

  .info-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .info-block p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .info-list {
    margin: 12px 0;
  }

  .info-list li {
    font-size: 14px;
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 20px;
  }

  /* FAQ Mobile */
  .faq-item {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .faq-item p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile devices */
  .steps-section {
    margin: 20px auto;
    padding: 0 8px;
  }

  .steps-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .step-icon-section {
    min-width: 50px;
    padding: 12px;
  }

  .step-icon {
    font-size: 28px;
  }

  .step-text-section {
    padding: 12px 10px;
  }

  .step-number {
    font-size: 11px;
  }

  .step-label {
    font-size: 11px;
  }

  .info-section {
    margin: 32px auto;
    padding: 0 8px;
  }

  .info-main-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .info-intro {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .info-block {
    padding: 12px;
    margin-bottom: 20px;
  }

  .info-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .info-block p {
    font-size: 13px;
  }

  .info-list li {
    font-size: 13px;
    padding-left: 18px;
  }

  .faq-item {
    padding: 12px;
    margin-bottom: 12px;
  }

  .faq-item h3 {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 13px;
  }
}

/* Track Order Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #1a1f3a;
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.modal-header h2 {
  margin: 0;
  color: #f5f6ff;
  font-size: 24px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #cdd3f7;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(205, 211, 247, 0.1);
  color: #f5f6ff;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .modal-content {
    padding: 20px 16px;
    max-width: 100%;
    margin: 0;
    max-height: calc(100vh - 40px);
    border-radius: 12px;
  }

  .modal-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-close {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }

  /* Receipt container in modal - mobile responsive */
  .modal-content .receipt-container {
    margin-top: 20px;
  }

  .modal-content .receipt-header {
    padding: 16px;
    margin-bottom: 16px;
  }

  .modal-content .receipt-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .modal-content .receipt-header h1,
  .modal-content .receipt-header h2 {
    font-size: 18px;
    margin: 8px 0 4px;
  }

  .modal-content .receipt-subtitle {
    font-size: 12px;
  }

  .modal-content .receipt-section {
    padding: 16px;
    border-radius: 8px;
  }

  .modal-content .receipt-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 4px;
  }

  .modal-content .receipt-label {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .modal-content .receipt-value {
    font-size: 14px;
    text-align: left;
    width: 100%;
    word-break: break-word;
  }

  /* Receipt container on success page - mobile responsive */
  .receipt-container {
    padding: 24px 20px;
    margin-top: 16px;
  }

  .receipt-header {
    margin-bottom: 24px;
  }

  .receipt-section {
    padding: 20px 16px;
  }

  .receipt-row {
    padding: 14px 0;
  }

  .receipt-content {
    gap: 24px;
  }

  .modal-content .receipt-value.amount {
    font-size: 18px;
  }

  .modal-content .receipt-value.order-number {
    font-size: 14px;
  }

  .modal-content .receipt-value.transaction-id {
    font-size: 11px;
    max-width: 100%;
  }

  /* Form fields in modal */
  .modal-content .field {
    margin-bottom: 16px;
  }

  .modal-content .field span {
    font-size: 13px;
  }

  .modal-content .field input {
    font-size: 14px;
    padding: 10px 12px;
  }

  .modal-content .field small {
    font-size: 11px;
  }

  .modal-content .primary-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Carrier selection box styles */
.carrier-selection-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  min-height: 400px;
}

.carrier-selection-box h2 {
  margin-bottom: 32px;
  color: #111;
  font-size: 24px;
  font-weight: 600;
}

.carrier-image-container {
  cursor: pointer;
  max-width: 100%;
  transition: transform 0.2s;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: var(--accent);
  padding: 22px 26px;
  min-width: 320px;
}

.carrier-image-container:hover {
  transform: scale(1.02);
}

.carrier-image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 140px;
}

@media (max-width: 768px) {
  .carrier-selection-box {
    padding: 32px 16px;
    min-height: 300px;
  }

  .carrier-selection-box h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .carrier-image-container {
    padding: 18px 18px;
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }
}

/* =========================================================
   Boost screenshot theme overrides (design-only)
   ========================================================= */

.link-reset {
  color: inherit;
  text-decoration: none;
}

.loading-block {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

.field-help {
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.field-help.alert {
  color: #b42318;
  background: #fdecec;
  border: 1px solid #f5c2c7;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  margin: 4px 0 10px;
}

.field-help.alert a {
  color: #8f1b14;
  font-weight: 800;
  text-decoration: underline;
}

.field-help.token-status-above-receipt {
  margin-top: 0;
  margin-bottom: 14px;
}

.uppercase-input {
  text-transform: uppercase;
}

.primary-button.full-width {
  width: 100%;
}

.status.error {
  color: var(--danger);
}

/* Carrier selection (website disabled) */
.carrier-selection-box h2 {
  color: #111;
}

/* Steps strip (3 cards) */
.steps-section {
  max-width: 1100px;
  margin: 12px auto 0;
  padding: 0 16px;
}

.steps-title {
  display: none;
}

.steps-container {
  gap: 18px;
}

.step-arrow {
  display: none;
}

.step-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.step-icon-section {
  background: transparent;
}

.step-text-section {
  background: transparent;
}

.step-number {
  color: rgba(0, 0, 0, 0.85);
}

.step-label {
  color: rgba(0, 0, 0, 0.72);
}

/* Info/content section */
.info-section {
  max-width: 1024px;
  margin: 22px auto 40px;
  padding: 34px 34px 38px;
  background: #8f8f8f;
  border-radius: 28px;
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.info-main-title {
  color: #000;
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.info-intro {
  color: rgba(0, 0, 0, 0.78);
  margin-top: 0;
}

.info-block {
  background: transparent;
  border: none;
  padding: 0;
  margin: 18px 0;
}

.info-subtitle {
  color: #000;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

/* Ensure all headings/emphasis are bold black */
.info-section h2,
.info-section h3,
.info-section strong {
  color: #000;
  font-weight: 800;
}

.info-block p,
.info-list li {
  color: rgba(0, 0, 0, 0.78);
}

.info-list {
  list-style: disc;
  padding-left: 22px;
  margin: 12px 0;
}

.info-list li {
  padding: 6px 0;
  padding-left: 0;
}

.info-list li:before {
  content: none;
}

/* Footer */
.site-footer {
  background: #0b0b0b;
  color: #fff;
  padding: 50px 40px 38px;
}

.footer-description,
.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-heading-spaced {
  margin-top: 20px;
}

/* Static content pages (about/contact/faq/etc.) */
.content-page {
  background: var(--bg);
}

.content-container {
  background: #bdbdbd;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow);
  color: #111;
}

.content-container h1 {
  color: #111;
}

.content-intro,
.content-section p,
.contact-intro {
  color: var(--muted);
}

.content-section h2,
.contact-card h3,
.faq-item h3 {
  color: #111;
}

.contact-card,
.faq-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.content-container .faq-item p {
  color: #000;
}

.contact-link {
  color: var(--primary);
}

.contact-link:hover {
  opacity: 0.85;
}

/* Promo code area (step 2) */
.promo-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.promo-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.promo-code-input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: #111;
  font-size: 14px;
  text-transform: uppercase;
}

.promo-valid {
  color: var(--success);
  font-size: 13px;
  margin-top: 4px;
}

.promo-invalid {
  color: var(--danger);
  font-size: 13px;
  margin-top: 4px;
}

.promo-discount {
  color: var(--success);
}

.promo-total-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* Receipts (success/track/modal) */
.receipt-container,
.unpaid-receipt {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* Light-theme overrides for success/track receipts */
.receipt-container {
  margin-top: 0;
  border-radius: 22px;
  padding: 28px 26px;
}

.receipt-header h1,
.receipt-header h2 {
  color: #000;
  font-weight: 800;
}

.receipt-subtitle {
  color: rgba(0, 0, 0, 0.65);
}

.receipt-section,
.receipt-section-small {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.receipt-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.receipt-label,
.receipt-label-small {
  color: rgba(0, 0, 0, 0.7);
}

.receipt-value,
.receipt-value-small {
  color: #111;
}

.receipt-value.amount {
  color: var(--success);
}

.receipt-value.order-number {
  color: var(--accent);
}

.receipt-value.transaction-id {
  color: rgba(0, 0, 0, 0.6);
}

.receipt-icon.status-processing {
  background: linear-gradient(135deg, #1f4dbf 0%, #173b90 100%);
  box-shadow: 0 10px 24px rgba(31, 77, 191, 0.24);
}

.receipt-icon.status-cancel {
  background: linear-gradient(135deg, #c81e1e 0%, #941616 100%);
  box-shadow: 0 10px 24px rgba(200, 30, 30, 0.2);
}

.receipt-icon.status-completed {
  background: linear-gradient(135deg, #127a3d 0%, #0f5f31 100%);
  box-shadow: 0 10px 24px rgba(18, 122, 61, 0.2);
}

.status-text {
  font-weight: 700;
  text-transform: uppercase;
}

.status-text.status-processing {
  color: var(--info);
}
.status-text.status-cancel {
  color: var(--danger);
}
.status-text.status-completed {
  color: var(--success);
}

.receipt-message {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.receipt-message.receipt-message-completed {
  background: rgba(18, 122, 61, 0.10);
  border-color: rgba(18, 122, 61, 0.35);
}

.receipt-message.receipt-message-completed .status-message {
  color: #000;
  font-weight: 800;
  font-size: 15px;
}

.receipt-message.receipt-message-cancel {
  background: rgba(200, 30, 30, 0.08);
  border-color: rgba(200, 30, 30, 0.28);
}

.receipt-message.receipt-message-processing {
  background: rgba(31, 77, 191, 0.08);
  border-color: rgba(31, 77, 191, 0.25);
}

.receipt-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  text-align: center;
}

.status-message {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  width: 100%;
}

.receipt-row.note-row {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 16px;
  margin-top: 8px;
  border-bottom: none;
}

/* Modal */
.modal-content {
  background: #ffffff;
  color: #111;
}

.modal-header h2 {
  color: #111;
}

.modal-close {
  color: rgba(0, 0, 0, 0.65);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111;
}

