﻿* {
  box-sizing: border-box;
}

:root {
  --bg: #3a3286;
  --card: #121a2f;
  --card-text: #f5f6ff;
  --muted: #cdd3f7;
  --muted-2: rgba(205, 211, 247, 0.7);
  --white: #ffffff;
  --border: rgba(205, 211, 247, 0.25);
  --shadow: 0 30px 60px rgba(10, 14, 29, 0.45);
  --accent: #f97316;
  --primary: #f97316;
  --danger: #f87171;
  --success: #10b981;
  --info: #8b9aff;
  --navy: #1a1f3a;
  --orange: #ff7417;
}

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

/* Reserve space so React mount does not collapse the viewport (CLS). */
#root {
  min-height: 100vh;
}

.page {
  min-height: 420px;
}


.site-header {
  background: #1a1f3a;
  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;
}

.disclosure-bar {
  background: #d7ebf7;
  color: #0b3a5c;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(11, 58, 92, 0.12);
}

.hero-eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0 8px;
}

.link-as-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-disclosure,
.footer-bottom {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@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: 200px;
  object-fit: contain;
  display: block;
}

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

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

.header-logo .brand-mark {
  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 .brand-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: #ffffff;
  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: #0b3a5c;
  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: #ffffff;
  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: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: rgba(205, 211, 247, 0.1);
}

.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 .brand-wordmark,
  .header-logo .brand-mark {
    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: #121a2f;
  color: #f5f6ff;
  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;
}

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

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

.checkout-shell {
  padding: 28px 34px 34px;
}

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

.checkout-intro {
  text-align: center;
  color: #4a657a;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
  font-weight: 600;
}

.checkout-intro.checkout-intro-emphasis {
  color: #ffffff;
  font-weight: 800;
}

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

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

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

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

.checkout-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(249, 115, 22, 0.55);
}

.checkout-step.active .checkout-step-circle {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.95);
  color: #ffffff;
}

.checkout-step-title {
  font-size: 12px;
  font-weight: 800;
  color: #0b3a5c;
}

.checkout-step-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #4a657a;
}

/* Phone Bill Pay brand block at the top of the payment card */
.checkout-shell .brand {
  display: grid;
  place-items: center;
  margin: 4px auto 18px;
  max-width: 220px;
  background: transparent;
  padding: 0;
  text-transform: none;
}

.checkout-shell .brand span {
  color: #0b3a5c;
}

.checkout-shell .brand-logo-img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}

/* Tighten checkout headings */
.checkout-shell h1 {
  margin-top: 0;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.checkout-shell h1.home-page-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
}

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

/* Hide legacy header block inside checkout */
.checkout-shell header {
  display: none;
}

.brand {
  background: #2f2f66;
  border-radius: 10px;
  padding: 18px 24px;
  display: grid;
  gap: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  place-items: center;
  color: #ffffff;
}

.brand-logo-img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.brand.brand-metro {
  max-width: 220px;
  margin: 0 auto 4px;
  background: #2f2f66;
}

.brand.brand-metro .brand-name {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1;
}

.service-disclosure {
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.modal-content .service-disclosure,
.receipt-container .service-disclosure {
  color: #1a2330;
  background: #eef3f8;
  border-color: #c5d0dc;
}

.auth-checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.45;
}

.auth-checkbox-field input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

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

.brand.brand-text .brand-name {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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: #cdd3f7;
}

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

.field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #cdd3f7;
}

input {
  padding: 12px 14px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  background: #f5f6ff;
  color: #1b1f2a;
}

input:focus {
  outline: 2px solid rgba(249, 115, 22, 0.6);
  border-color: transparent;
}

select {
  padding: 12px 14px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  background: #f5f6ff;
  color: #1b1f2a;
  min-height: 46px;
}

select:focus {
  outline: 2px solid rgba(249, 115, 22, 0.6);
  border-color: transparent;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: #f5f6ff;
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
  border: none;
}

.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(205, 211, 247, 0.3);
  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: #0b3a5c;
}

.status.warning {
  color: #facc15;
}

.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(249, 115, 22, 0.28);
  justify-self: end;
  min-width: 190px;
}

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

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

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

.ghost-button {
  border: 1px solid rgba(205, 211, 247, 0.4);
  background: transparent;
  color: #4a657a;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  width: fit-content;
}

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

.payment-section .section-title {
  color: #f5f6ff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

/* Token / step-2 card fields on dark checkout card */
.checkout-shell .form .field span:first-child,
.payment-section .field span:first-child {
  color: #f5f6ff;
  font-weight: 600;
  font-size: 15px;
}

.checkout-shell .form .field input,
.checkout-shell .form .field select,
.payment-section .field input,
.payment-section .field select {
  background: #ffffff !important;
  color: #1b1f2a !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 10px !important;
  min-height: 48px;
  font-size: 15px;
}

.checkout-shell .form .field input:focus,
.checkout-shell .form .field select:focus,
.payment-section .field input:focus,
.payment-section .field select:focus {
  outline: 2px solid rgba(249, 115, 22, 0.55);
  border-color: rgba(249, 115, 22, 0.75) !important;
}

.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: #4a657a;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.option-card.active {
  background: #0b3a5c;
  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);
}

.whop-panel {
  margin-top: 4px;
}

.whop-panel.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.whop-embed-host {
  margin-top: 8px;
}

.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-panel.disabled {
  opacity: 0.65;
  pointer-events: none;
}

/* NMI Payment Information layout (reference form style) */
.nmi-payment-info {
  margin-top: 4px;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  gap: 10px;
}

.nmi-payment-info.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.nmi-info-heading {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
}

.nmi-req {
  color: #f97316;
  font-style: normal;
  font-weight: 700;
}

.nmi-field-hint {
  font-size: 13px;
  font-weight: 500;
  color: rgba(205, 211, 247, 0.9);
  margin-top: 4px;
  line-height: 1.45;
}

.nmi-payment-info .field {
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.nmi-payment-info .field span:first-child {
  color: #f5f6ff !important;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}

.nmi-payment-info .field input,
.nmi-payment-info .field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #d1d5db !important;
  color: #1b1f2a !important;
  padding: 12px 14px !important;
  font-size: 15px;
  min-height: 48px;
  box-shadow: none;
}

.nmi-payment-info .field input::placeholder,
.nmi-payment-info .field select {
  color: #64748b;
}

.nmi-payment-info .field input:focus,
.nmi-payment-info .field select:focus {
  outline: 2px solid rgba(249, 115, 22, 0.55);
  border-color: rgba(249, 115, 22, 0.75) !important;
  background: #ffffff !important;
}

.nmi-payment-info .field input[readonly] {
  background: #f5f6ff !important;
  cursor: default;
}

.nmi-triple-row,
.nmi-double-row {
  display: grid !important;
  gap: 14px !important;
  width: 100%;
  align-items: start;
}

.nmi-triple-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.nmi-double-row {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.nmi-triple-row > .field,
.nmi-double-row > .field {
  margin: 0;
  min-width: 0;
}

.nmi-payment-info .nmi-hosted-field {
  padding: 0;
  min-height: 48px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #ffffff;
}

.nmi-payment-info .nmi-hosted-field iframe {
  width: 100%;
  min-height: 48px;
  border: 0;
}

.nmi-card-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.nmi-card-brands-img {
  display: block;
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nmi-payment-info .token-actions {
  margin-top: 2px;
  gap: 10px;
}

.nmi-payment-info .token-actions .primary-button,
.nmi-payment-info .token-actions .secondary-button {
  padding: 10px 14px;
  font-size: 14px;
  min-width: 0;
}

@media (max-width: 640px) {
  .nmi-triple-row,
  .nmi-double-row {
    grid-template-columns: 1fr;
  }

  .nmi-card-brands-img {
    max-width: 120px;
  }
}

.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: 10px;
  border: 1px solid var(--border);
  background: transparent;
  min-height: 46px;
}

.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: #ffffff;
  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-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%, #ffffff 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: #4a657a;
  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: #4a657a;
  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: #4a657a;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  max-width: 200px;
}

.receipt-value.order-number {
  font-size: 16px;
  color: #2bb3a3;
  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: #4a657a;
  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%, #ffffff 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: #ffffff;
  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: #4a657a;
  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: #2bb3a3;
  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(205, 211, 247, 0.75);
  font-weight: 600;
  font-size: 13px;
}

.ghost-button-small {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid rgba(205, 211, 247, 0.4);
  background: transparent;
  color: #4a657a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.ghost-button-small:hover {
  background: rgba(205, 211, 247, 0.1);
}

/* 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: #2bb3a3;
}

.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: #0b3a5c;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

.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: #4a657a;
  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: #4a657a;
  margin-bottom: 12px;
}

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

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

.info-list li:before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: #2bb3a3;
  font-weight: bold;
}

ol.info-list {
  list-style: decimal;
  padding-left: 24px;
  margin: 16px 0;
}

ol.info-list li {
  padding-left: 8px;
}

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

.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: #ffffff;
  font-weight: 800;
}

.info-heading-2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
}

.info-heading-4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.info-ordered-list {
  list-style: decimal;
  padding-left: 24px;
  margin: 16px 0;
}

.info-ordered-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #4a657a;
  margin-bottom: 10px;
  padding-left: 6px;
}

.home-hero-subtitle {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #4a657a;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion {
  margin-top: 16px;
}

.info-section .faq-accordion .faq-item {
  margin-bottom: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(205, 211, 247, 0.18);
}

.info-section .faq-accordion .faq-item.open {
  border-radius: 16px;
}

.faq-header {
  background: transparent;
  border: none;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: inherit;
  text-align: left;
  font-family: inherit;
}

.faq-question-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  display: block;
  flex: 1;
  padding-right: 8px;
  color: #fff;
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #111;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  margin-top: 10px;
  font-size: 14px;
  color: #e5e7eb;
}

.faq-accordion .faq-item:not(.open) .faq-answer {
  display: none;
}

.faq-answer p {
  margin: 0;
}

.header-logo .tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin: 8px 0 4px;
}


/* Footer */
.site-footer {
  background: #1a1f3a;
  padding: 56px 28px 28px;
  display: block;
  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: rgba(255, 255, 255, 0.78);
  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: #f97316;
  filter: none;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  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: #4a657a;
  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: #e8f1f8;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  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: #4a657a;
  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: #4a657a;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #4a657a;
  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: #2bb3a3;
  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: #4a657a;
  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: #0b3a5c;
  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: #0b3a5c;
  font-size: 24px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #4a657a;
  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: #0b3a5c;
}

/* Match the Phone Bill Pay reference payment form. */
.page {
  padding: 32px 16px 0;
}

.page > .card {
  max-width: 660px;
  border-radius: 18px;
  padding: 28px 32px 34px;
  overflow: visible;
}

.checkout-shell {
  padding: 0;
}

.checkout-shell .brand {
  width: auto;
  max-width: 220px;
  margin: 0 auto;
}

.checkout-shell h1.home-page-title {
  margin: 18px 0 0;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-shell .subtitle {
  margin: 14px auto 0;
}

.checkout-intro,
.checkout-stepper {
  display: none;
}

.checkout-shell .form {
  margin-top: 24px;
}

.checkout-shell .section-title.section-title-emphasis {
  color: #cdd3f7;
  font-weight: 600;
}

.checkout-shell .primary-button {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  border-radius: 999px;
  box-shadow: none;
}

@media (max-width: 480px) {
  .page {
    padding: 20px 12px 0;
  }

  .page > .card {
    padding: 24px 20px 28px;
  }
}

@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: #0b3a5c;
  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;
  }
}

/* =========================================================
   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: #f5f6ff;
}

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

.steps-title {
  display: block;
}

.steps-container {
  gap: 18px;
}

.step-item {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid transparent;
  box-shadow: 0 10px 22px rgba(10, 14, 29, 0.35);
}

.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: rgba(18, 26, 47, 0.6);
  border-radius: 28px;
  border: 1px solid rgba(205, 211, 247, 0.1);
  box-shadow: 0 18px 40px rgba(10, 14, 29, 0.4);
  color: #0b3a5c;
}

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

.info-intro {
  color: #4a657a;
  margin-top: 0;
}

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

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

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

.info-heading-2,
.info-heading-4,
.info-section .faq-question-title {
  color: #ffffff;
}

.info-block p,
.info-list li,
.info-ordered-list li,
.info-section .faq-answer,
.info-section .faq-answer p {
  color: #4a657a;
}

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

.info-list li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.info-list li:before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

ol.info-list,
.info-ordered-list {
  list-style: decimal;
  padding-left: 24px;
}

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

.info-section .faq-accordion .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(205, 211, 247, 0.18);
}

.info-section .faq-icon {
  background: #fff;
  color: #111;
  border-color: rgba(148, 163, 184, 0.8);
}

/* Footer */
.site-footer {
  background: #1a1f3a;
  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: #ffffff;
  border: 1px solid rgba(205, 211, 247, 0.1);
  box-shadow: var(--shadow);
  color: #0b3a5c;
}

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

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

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

.contact-card,
.faq-item {
  background: rgba(18, 26, 47, 0.6);
  border: 1px solid rgba(205, 211, 247, 0.1);
}

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

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

.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: #10b981;
}

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

/* METRO10 promo popup */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 14, 29, 0.72);
  backdrop-filter: blur(4px);
}
.promo-popup-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(165deg, #1a1f3a 0%, #121a2f 100%);
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(205, 211, 247, 0.18);
  text-align: center;
}
.promo-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.promo-popup-close:hover { color: #fff; }
.promo-popup-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f97316;
}
.promo-popup-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.promo-popup-code {
  margin: 0 0 12px;
  font-size: 18px;
  color: #cdd3f7;
}
.promo-popup-code strong {
  color: #f97316;
  letter-spacing: 0.06em;
}
.promo-popup-text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.promo-popup-cta {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: #f97316;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.35);
}
.promo-popup-cta:hover { filter: brightness(1.06); }

/* Receipts (success/track/modal) */
.receipt-container,
.unpaid-receipt {
  background: linear-gradient(135deg, #1a2332 0%, #ffffff 100%);
  border: 1px solid rgba(205, 211, 247, 0.1);
  box-shadow: 0 12px 30px rgba(10, 14, 29, 0.4);
}

.receipt-container {
  margin-top: 0;
  border-radius: 22px;
  padding: 28px 26px;
}

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

.receipt-subtitle {
  color: #4a657a;
}

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

.receipt-row {
  border-bottom: 1px solid rgba(205, 211, 247, 0.1);
}

.receipt-label,
.receipt-label-small {
  color: #4a657a;
}

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

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

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

.receipt-value.transaction-id {
  color: #4a657a;
}

.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(18, 26, 47, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(205, 211, 247, 0.12);
}

.receipt-message.receipt-message-completed {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

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

.receipt-message.receipt-message-cancel .status-message {
  color: #fecaca;
}

.receipt-message.receipt-message-processing .status-message {
  color: #dbe5ff;
}

.receipt-message.receipt-message-cancel {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.35);
}

.receipt-message.receipt-message-processing {
  background: rgba(139, 154, 255, 0.1);
  border-color: rgba(139, 154, 255, 0.3);
}

.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(205, 211, 247, 0.12);
  padding-top: 16px;
  margin-top: 8px;
  border-bottom: none;
}

/* Footer logo */
.footer-logo .brand-wordmark {
  font-size: 30px;
  font-weight: 600;
  color: #8b9aff;
  line-height: 1;
}

.footer-logo .brand-mark {
  font-size: 30px;
  font-weight: 600;
  color: #2bb3a3;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-logo .brand-dot {
  width: 8px;
  height: 8px;
  background: #2bb3a3;
  border-radius: 50%;
  display: inline-block;
}

/* Modal */
.modal-content {
  background: #0b3a5c;
  color: #0b3a5c;
}

.modal-header h2 {
  color: #0b3a5c;
}

.modal-close {
  color: #4a657a;
}

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


/* =========================================================
   Phone Bill Pay — dark QuickPay theme (branding only swap)
   ========================================================= */

:root {
  --bg: #3a3286;
  --card: #121a2f;
  --card-text: #f5f6ff;
  --muted: #cdd3f7;
  --muted-2: rgba(205, 211, 247, 0.7);
  --white: #ffffff;
  --border: rgba(205, 211, 247, 0.25);
  --shadow: 0 30px 60px rgba(10, 14, 29, 0.45);
  --accent: #f97316;
  --primary: #f97316;
  --orange: #ff7417;
  --navy: #1a1f3a;
  --danger: #f87171;
  --success: #10b981;
  --info: #8b9aff;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  background: #1a1f3a !important;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.header-brand { display: flex; align-items: center; }
.header-logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.site-header .header-logo-img { filter: none; }
.header-nav a { color: #fff; }
.header-nav .track-button,
.mobile-track-button-header {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}
.header-nav .track-button:hover,
.mobile-track-button-header:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}
.site-header .hamburger span { background: #fff; }
.disclosure-bar { display: none !important; }

.page {
  padding: 32px 16px 0;
  min-height: auto;
}
.page > .card,
.home-page .payment-card.card {
  max-width: 660px;
  margin: 0 auto;
  background: #121a2f !important;
  color: #f5f6ff !important;
  border-radius: 18px;
  padding: 28px 32px 34px;
  box-shadow: var(--shadow);
  overflow: visible;
}

.checkout-shell { padding: 0; }
.checkout-shell .brand,
.brand.brand-metro {
  background: #2f2f66 !important;
  border-radius: 10px;
  padding: 18px 24px !important;
  max-width: 220px;
  margin: 0 auto 8px !important;
  color: #fff;
  text-transform: lowercase;
}
.brand.brand-metro .brand-name {
  display: block;
  color: #fff !important;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1;
}
.checkout-shell h1.home-page-title,
.home-page-title {
  margin: 18px 0 0 !important;
  text-align: center;
  font-size: 20px !important;
  font-weight: 800;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.home-hero-subtitle,
.checkout-shell .subtitle {
  margin: 14px auto 0;
  text-align: center;
  color: #cdd3f7;
  max-width: 42rem;
  font-size: 15px;
  line-height: 1.55;
}
.checkout-intro,
.checkout-stepper { display: none !important; }

.form-helper {
  margin: 0 0 14px;
  font-size: 14px;
  color: #cdd3f7;
  text-align: left;
  font-weight: 500;
}

.form { gap: 16px; margin-top: 20px; }
.field { color: #cdd3f7 !important; font-size: 14px; }
.field span:first-child { color: #cdd3f7; }

input,
select,
.phone-input-wrapper {
  background: #f5f6ff !important;
  color: #1b1f2a !important;
  border: none !important;
  border-radius: 999px !important;
  min-height: 46px;
  font-size: 15px;
  box-shadow: none;
}
.nmi-payment-info input,
.nmi-payment-info select,
.payment-section .nmi-payment-info input,
.payment-section .nmi-payment-info select {
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: #ffffff !important;
}
.phone-prefix { color: #1b1f2a !important; font-weight: 600; }
.phone-input-wrapper input {
  border: none !important;
  background: transparent !important;
  min-height: 44px;
}
input:focus,
select:focus,
.phone-input-wrapper:focus-within {
  outline: 2px solid rgba(249, 115, 22, 0.6);
  box-shadow: none;
}

.primary-button {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  height: 48px;
  border-radius: 999px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none !important;
  margin-top: 8px;
}
.primary-button:hover { filter: brightness(1.06); }
.primary-button:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 2px;
}

.service-disclosure,
.form-disclosure {
  margin: 4px 0 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
}

.divider { background: rgba(205, 211, 247, 0.3); }
.section-title,
.section-title.section-title-emphasis { color: #cdd3f7 !important; }

.status { color: #f5f6ff; }
.auth-checkbox-field { color: #cdd3f7; font-size: 12px; line-height: 1.45; }

/* Steps — white cards on purple */
.steps-section {
  display: block !important;
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 16px 8px;
  background: transparent !important;
}
.steps-title {
  display: block !important;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.steps-container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  grid-template-columns: none !important;
}
.step-item {
  background: #fff !important;
  border-radius: 18px;
  border: 2px solid transparent;
  box-shadow: 0 10px 22px rgba(10, 14, 29, 0.35);
  display: flex !important;
  flex-direction: row !important;
  overflow: hidden;
  min-width: 240px;
  width: auto;
  padding: 0 !important;
  text-align: left;
  gap: 0;
}
.step-item.active { border-color: #f97316; }
.step-icon-section,
.step-text-section,
.step-number,
.step-label,
.step-arrow { display: block !important; }
.step-icon-section {
  background: transparent;
  padding: 22px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.step-icon {
  width: auto;
  height: auto;
  font-size: 36px;
  background: transparent;
  border-radius: 0;
  filter: none;
  color: inherit;
}
.step-text-section {
  background: transparent;
  padding: 22px 18px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.step-number {
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85) !important;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-label {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.72) !important;
  line-height: 1.4;
  font-weight: 400;
}
.step-arrow {
  font-size: 28px;
  color: #1b1f2a;
  font-weight: bold;
  margin: 0 4px;
}

.post-steps-disclosure {
  max-width: 720px;
  margin: 22px auto 8px;
  padding: 14px 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  background: rgba(18, 26, 47, 0.55);
  border: 1px solid rgba(205, 211, 247, 0.18);
  border-radius: 12px;
}

/* SEO / FAQ dark block */
.info-section {
  display: block !important;
  max-width: 1024px;
  margin: 28px auto 40px;
  padding: 34px 34px 38px;
  background: rgba(18, 26, 47, 0.72) !important;
  border-radius: 28px;
  border: 1px solid rgba(205, 211, 247, 0.1);
  box-shadow: 0 18px 40px rgba(10, 14, 29, 0.4);
  color: #f5f6ff;
}
.info-main-title {
  color: #fff !important;
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}
.info-intro {
  color: #cdd3f7 !important;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.7;
}
.info-block {
  background: transparent;
  border: none;
  padding: 0;
  margin: 22px 0;
}
.info-subtitle {
  color: #fff !important;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}
.info-block p,
.info-list li {
  color: #cdd3f7 !important;
  font-size: 15px;
  line-height: 1.75;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.info-list li {
  padding: 8px 0 8px 24px;
  position: relative;
}
.info-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.faq-accordion { margin-top: 12px; display: grid; gap: 12px; }
.faq-acc-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(205, 211, 247, 0.18);
  border-radius: 14px;
  overflow: hidden;
}
.faq-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
}
.faq-acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
}
.faq-acc-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-acc-item.open .faq-acc-icon::after { transform: rotate(225deg); top: 12px; }
.faq-acc-panel { padding: 0 18px 16px; }
.faq-acc-panel p {
  margin: 0;
  color: #cdd3f7;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  background: #1a1f3a !important;
  color: #fff;
  padding: 56px 28px 28px !important;
  display: block !important;
  max-width: none;
  margin: 0;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
  gap: 36px 40px;
  align-items: start;
}
.site-footer:not(:has(.footer-inner)) {
  display: grid !important;
  grid-template-columns: 1.5fr 1.2fr 1.3fr;
  gap: 36px 40px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px !important;
  padding-right: 28px !important;
}
.footer-column {
  color: #f5f6ff !important;
  min-width: 0;
}
.footer-brand-col .footer-disclosure {
  max-width: 280px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
.footer-heading {
  color: #fff !important;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer-disclosure,
.footer-description {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  line-height: 1.45;
}
.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none;
  word-break: break-word;
}
.footer-contact a:hover,
.footer-links a:hover {
  color: #fff !important;
}
.contact-icon {
  color: #f97316;
  flex: 0 0 auto;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 0 0 10px;
}
.footer-heading-spaced {
  margin-top: 28px;
}
.footer-bottom {
  max-width: 1120px;
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13px;
  line-height: 1.5;
  grid-column: auto;
  text-align: left;
}

@media (max-width: 900px) {
  .footer-inner,
  .site-footer:not(:has(.footer-inner)) {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-inner,
  .site-footer:not(:has(.footer-inner)) {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .footer-brand-col {
    grid-column: auto;
  }
  .footer-brand-col .footer-disclosure {
    max-width: none;
  }
  .site-footer {
    padding: 40px 20px 24px !important;
  }
}

.content-page { background: var(--bg) !important; }
.content-container {
  background: #121a2f !important;
  color: #f5f6ff !important;
  border: 1px solid rgba(205, 211, 247, 0.1) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow) !important;
}
.content-container h1,
.content-section h2,
.faq-item h3,
.contact-card h3 { color: #fff !important; }
.content-intro,
.content-section p,
.contact-intro,
.faq-item p,
.content-container .faq-item p { color: #cdd3f7 !important; }
.contact-card,
.faq-item {
  background: rgba(18, 26, 47, 0.6);
  border: 1px solid rgba(205, 211, 247, 0.1);
}
.contact-link { color: var(--accent) !important; }

.mobile-side-menu { background: #1a1f3a; }
.mobile-nav a { color: #fff; border-bottom-color: rgba(205, 211, 247, 0.12); }
.mobile-track-button {
  background: var(--accent);
  color: #fff;
  border: none;
}

.unpaid-receipt,
.receipt-container {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(205, 211, 247, 0.18) !important;
  color: #f5f6ff !important;
}
.receipt-header-small h3,
.receipt-label-small,
.receipt-value-small { color: #f5f6ff !important; }

.modal-content {
  background: #121a2f !important;
  color: #f5f6ff !important;
}
.modal-header h2 { color: #fff !important; }
.modal-close { color: #cdd3f7 !important; }
.modal-content .service-disclosure,
.receipt-container .service-disclosure {
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(0, 0, 0, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}
.modal-content .field { color: #cdd3f7 !important; }
.modal-content .field span { color: #cdd3f7 !important; }
.modal-content .field input {
  background: #f5f6ff !important;
  color: #1b1f2a !important;
}

@media (max-width: 768px) {
  .page { padding: 20px 12px 0; }
  .page > .card,
  .home-page .payment-card.card { padding: 24px 18px 28px; border-radius: 16px; }
  .steps-container { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .info-section { margin: 22px 14px 32px; padding: 24px 18px 28px; border-radius: 20px; }
  .site-footer { padding: 40px 20px 28px !important; }
  .primary-button,
  .track-button,
  .mobile-track-button-header { min-height: 44px; }
}
