/**
 * RoFame Design System & Stylesheet
 * Ultra-Clean Black & Crimson Red Theme for Roblox Follower Store & Customer Hub
 * Responsive (Mobile-First), 60FPS Animations, Real-time Validation States
 */

:root {
  /* Core Color Tokens */
  --bg-black: #050507;
  --bg-surface-1: #0c0c10;
  --bg-surface-2: #121217;
  --bg-surface-3: #181820;
  --bg-card: #0e0e13;
  --bg-input: #09090d;

  --red-primary: #e50914;
  --red-bright: #ff1e27;
  --red-hover: #ff3840;
  --red-glow: rgba(255, 30, 39, 0.35);
  --red-glow-subtle: rgba(255, 30, 39, 0.12);
  --red-border: rgba(255, 30, 39, 0.28);
  --red-border-bright: rgba(255, 30, 39, 0.65);

  --green-status: #10b981;
  --green-glow: rgba(16, 185, 129, 0.2);

  --text-main: #ffffff;
  --text-muted: #94949e;
  --text-dim: #656570;
  --text-red: #ff3b44;

  --border-dark: #1e1e24;
  --border-subtle: #282832;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 9px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.75);
  --shadow-red-sm: 0 4px 16px rgba(255, 30, 39, 0.3);
  --shadow-red-lg: 0 8px 30px rgba(255, 30, 39, 0.45);

  /* Safe Area */
  --sab: env(safe-area-inset-bottom, 0px);
  --sat: env(safe-area-inset-top, 0px);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(96px + var(--sab));
}

/* Background Atmosphere */
.app-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.red-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

.orb-1 {
  width: min(650px, 90vw);
  height: min(650px, 90vw);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(229, 9, 20, 0.28) 0%, rgba(0,0,0,0) 70%);
}

.orb-2 {
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  bottom: 5%;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 30, 39, 0.12) 0%, rgba(0,0,0,0) 70%);
}

.dark-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 30, 39, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 30, 39, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.7;
}

/* ===================================================================
   Announcement Bar
   =================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #120002 0%, #290004 50%, #120002 100%);
  border-bottom: 1px solid rgba(255, 30, 39, 0.3);
  padding: 0.45rem 1rem;
  position: relative;
  z-index: 100;
}

.announcement-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-badge {
  background: rgba(255, 30, 39, 0.2);
  color: var(--red-bright);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  border: 1px solid var(--red-border);
}

.announcement-text {
  color: #eee;
}

.announcement-cta {
  background: transparent;
  border: none;
  color: var(--red-bright);
  font-weight: 800;
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  text-decoration: none;
  transition: transform 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.announcement-cta:hover {
  transform: translateX(2px);
  text-decoration: underline;
}

/* ===================================================================
   Header
   =================================================================== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 5, 7, 0.92);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #0d0d12;
  border: 1.5px solid var(--red-bright);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--red-glow);
}

.logo-icon.small {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.brand-cube {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-primary));
  transform: rotate(45deg);
  border-radius: 2px;
}

.logo-icon.small .brand-cube {
  width: 10px;
  height: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-highlight {
  color: var(--red-bright);
}

.brand-tag {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Menu */
.saas-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.saas-nav-link, .saas-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.saas-nav-link i, .saas-nav-btn i {
  width: 15px;
  height: 15px;
}

.saas-nav-link:hover, .saas-nav-btn:hover {
  color: #fff;
  background: rgba(255, 30, 39, 0.09);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.auth-guest-controls, .auth-user-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-btn {
  background: #111116;
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 38px;
  white-space: nowrap;
}

.action-btn i {
  width: 15px;
  height: 15px;
}

.action-btn:hover {
  background: #191922;
  border-color: var(--red-border);
}

.cta-red-btn {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  box-shadow: var(--shadow-red-sm);
  transition: all 0.15s ease;
  min-height: 38px;
  white-space: nowrap;
}

.cta-red-btn i {
  width: 15px;
  height: 15px;
}

.cta-red-btn:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red-lg);
  transform: translateY(-1px);
}

/* ===================================================================
   Main Content Layout
   =================================================================== */
.main-content {
  position: relative;
  z-index: 10;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem 1.25rem;
}

.app-view {
  width: 100%;
}

.app-view.active-view {
  display: flex !important;
  flex-direction: column;
  gap: 2.75rem;
}

/* ===================================================================
   Hero Section
   =================================================================== */
.store-hero {
  text-align: center;
  padding: 1rem 0;
  width: 100%;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 30, 39, 0.09);
  border: 1px solid var(--red-border);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--red-bright);
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-bright);
  flex-shrink: 0;
}

.store-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5.8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.store-subtitle {
  font-size: clamp(0.95rem, 2.3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.55;
}

.store-subtitle strong {
  color: #fff;
}

.hero-mode-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0.6rem 0;
}

.mode-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 48px;
}

.mode-switch-btn.primary {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  color: #fff;
  box-shadow: var(--shadow-red-sm);
}

.mode-switch-btn.primary:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red-lg);
  transform: translateY(-1px);
}

.mode-switch-btn.secondary {
  background: #111116;
  border: 1px solid var(--border-subtle);
  color: #fff;
}

.mode-switch-btn.secondary:hover {
  background: #181822;
  border-color: var(--red-border);
  transform: translateY(-1px);
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-item i {
  width: 15px;
  height: 15px;
  color: var(--red-bright);
}

/* ===================================================================
   Step Cards & Form Sections
   =================================================================== */
.step-card-section {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.step-number {
  width: 34px;
  height: 34px;
  background: var(--red-bright);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 0 14px var(--red-glow);
  flex-shrink: 0;
}

.step-info h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.step-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Search Form */
.user-search-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.15s ease;
  min-height: 50px;
}

.search-input:focus {
  outline: none;
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px var(--red-glow-subtle);
}

.search-submit-btn {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.8rem 1.45rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-red-sm);
  transition: all 0.15s ease;
  min-height: 50px;
  white-space: nowrap;
}

.search-submit-btn:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red-lg);
}

.quick-picks-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.quick-picks-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.quick-picks-label i {
  width: 13px;
  height: 13px;
  color: var(--red-bright);
}

.quick-pills-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.quick-pill {
  background: #09090e;
  border: 1px solid var(--border-dark);
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.12s ease;
}

.quick-pill:hover {
  border-color: var(--red-border);
  color: #fff;
  background: #14141d;
}

/* Profile Preview Card */
.account-preview-card {
  background: #09090e;
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 0 24px rgba(255, 30, 39, 0.08);
  width: 100%;
}

.preview-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.preview-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  border: 2px solid var(--red-bright);
  object-fit: cover;
  background: #000;
}

.preview-verified-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #000;
  border-radius: 50%;
  color: var(--red-bright);
  display: flex;
}

.preview-verified-badge i {
  width: 17px;
  height: 17px;
}

.preview-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.preview-names {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preview-names h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.preview-username {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.preview-stats-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preview-stat-chip {
  background: #101016;
  border: 1px solid var(--border-dark);
  font-size: 0.75rem;
  color: #bbb;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.preview-stat-chip strong {
  color: #fff;
}

.preview-stat-chip.red {
  background: rgba(255, 30, 39, 0.1);
  border-color: var(--red-border);
  color: var(--red-bright);
}

.preview-stat-chip.red strong {
  color: var(--red-bright);
}

.preview-stat-chip i {
  width: 13px;
  height: 13px;
}

/* ===================================================================
   STEP 2: Slider & Packages
   =================================================================== */
.slider-master-card {
  background: #09090e;
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.slider-hero-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.follower-display-box, .price-display-box {
  background: #050507;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.follower-sub-label, .price-sub-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.follower-counter-huge {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.price-huge {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1.1;
}

.follower-rate-pill {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red-bright);
  background: rgba(255, 30, 39, 0.1);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  margin-top: 0.25rem;
}

.discount-pill {
  font-size: 0.75rem;
  font-weight: 900;
  color: #10b981; /* Emerald Green */
  background: rgba(16, 185, 129, 0.15);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  margin-top: 0.25rem;
  display: inline-block;
}

.unit-price-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Slider Track */
.range-slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.range-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.smooth-red-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 14px;
  border-radius: var(--radius-full);
  background: #1a1a22;
  outline: none;
  cursor: pointer;
  margin: 10px 0;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.8);
}

.smooth-red-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red-bright);
  box-shadow: 0 0 18px var(--red-glow), 0 2px 8px rgba(0,0,0,0.6);
  cursor: grab;
  transition: transform 0.1s ease;
}

.smooth-red-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.smooth-red-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.22);
}

.smooth-red-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red-bright);
  box-shadow: 0 0 18px var(--red-glow);
  cursor: grab;
}

.slider-tick-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* Preset Chips */
.slider-controls-flex {
  background: #050507;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.preset-chips-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.chips-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
  width: 100%;
}

.preset-chip {
  background: #0e0e14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.25rem;
  color: #ccc;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  min-height: 42px;
}

.preset-chip:hover {
  background: #161622;
  border-color: var(--red-border);
  color: #fff;
}

.preset-chip.active {
  background: rgba(255, 30, 39, 0.16);
  border-color: var(--red-bright);
  color: #fff;
  box-shadow: 0 0 14px var(--red-glow-subtle);
}

/* Manual Input Box */
.manual-input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-dark);
}

.manual-input-box label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.manual-input-box input {
  background: #000;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.45rem 0.75rem;
  width: 140px;
  text-align: right;
}

.manual-input-box input:focus {
  outline: none;
  border-color: var(--red-bright);
}

/* ===================================================================
   STEP 3: Speed Selector
   =================================================================== */
.speed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.speed-card {
  background: #09090e;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  position: relative;
  transition: all 0.18s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.speed-card input {
  position: absolute;
  opacity: 0;
}

.speed-card:hover {
  border-color: rgba(255, 30, 39, 0.4);
  background: #101018;
}

.speed-card.active {
  border-color: var(--red-bright);
  background: rgba(255, 30, 39, 0.08);
  box-shadow: 0 0 20px rgba(255, 30, 39, 0.15);
}

.speed-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #14141c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.speed-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.speed-header-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.speed-header-row strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.speed-pill-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(255, 30, 39, 0.2);
  color: var(--red-bright);
}

.speed-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===================================================================
   Sticky Checkout Bar
   =================================================================== */
.order-checkout-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 12, 0.94);
  border-top: 1px solid var(--red-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 1.25rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 80;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
}

.checkout-bar-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-bar-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.bar-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--red-bright);
  object-fit: cover;
}

.bar-order-summary {
  display: flex;
  flex-direction: column;
}

.bar-user-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.bar-package-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.bar-package-title strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.bar-speed-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 30, 39, 0.15);
  color: var(--red-bright);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
}

.checkout-bar-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.bar-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bar-total-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.bar-price-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
}

.bar-checkout-btn {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-red-sm);
  transition: all 0.15s ease;
  min-height: 46px;
  white-space: nowrap;
}

.bar-checkout-btn:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red-lg);
  transform: translateY(-1px);
}

/* ===================================================================
   Reviews & How It Works
   =================================================================== */
.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

.section-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red-bright);
  background: rgba(255, 30, 39, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--red-border);
  text-transform: uppercase;
}

.section-header-center h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.section-header-center p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 600px;
}

.how-cards-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.how-card, .review-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.how-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 30, 39, 0.1);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
}

.how-icon-box i {
  width: 22px;
  height: 22px;
}

.how-step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red-bright);
}

.how-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.how-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-stars .star-icon {
  width: 15px;
  height: 15px;
  color: #f59e0b;
  fill: #f59e0b;
}

.review-text {
  font-size: 0.88rem;
  color: #ddd;
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 0.85rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a1a22;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  flex-shrink: 0;
}

.author-avatar i {
  width: 16px;
  height: 16px;
}

.review-author strong {
  font-size: 0.85rem;
  color: #fff;
  display: block;
}

.review-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===================================================================
   FAQ Accordion
   =================================================================== */
.faq-section {
  scroll-margin-top: 5.5rem;
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.faq-item.active {
  border-color: var(--red-border);
  background: #09090e;
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.15rem 1.35rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  cursor: pointer;
  min-height: 52px;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--red-bright);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
}

.faq-item.active .faq-answer-panel {
  max-height: 320px;
  opacity: 1;
}

.faq-answer-panel p {
  padding: 0 1.35rem 1.35rem 1.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-answer-panel strong {
  color: #fff;
}

/* ===================================================================
   Modals (Stripe Checkout & Live Tracker)
   =================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  width: 100%;
}

.modal-card {
  background: #09090e;
  border: 1px solid var(--red-border);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 35px rgba(255, 30, 39, 0.15);
  animation: modalScaleIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes modalScaleIn {
  0% { opacity: 0; transform: scale(0.96) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-icon-accent {
  color: var(--red-bright);
  width: 20px;
  height: 20px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.modal-close-btn {
  background: #14141d;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: var(--red-bright);
  color: #fff;
}

.modal-close-btn i {
  width: 16px;
  height: 16px;
}

.modal-body {
  padding: 1.35rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ===================================================================
   Dedicated Checkout Page View (#checkoutView)
   =================================================================== */
.checkout-page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-dark);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.checkout-back-link:hover {
  border-color: var(--red-border);
  color: var(--red-bright);
  background: #121218;
  transform: translateX(-2px);
}

.checkout-back-link i {
  width: 16px;
  height: 16px;
}

.checkout-step-pills {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
}

.step-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-pill-icon i {
  width: 14px;
  height: 14px;
}

.step-pill.done {
  color: #10b981;
}

.step-pill.current {
  color: var(--red-bright);
}

.step-pill-line {
  width: 16px;
  height: 1.5px;
  background: var(--border-subtle);
}

/* Checkout Page Grid */
.checkout-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 2rem;
  width: 100%;
  align-items: start;
}

.checkout-page-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-page-card.payment-card {
  border-color: var(--red-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px var(--red-glow-subtle);
  background: linear-gradient(180deg, #0f0f15 0%, #0a0a0f 100%);
}

.card-header-styled {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-dark);
}

.card-header-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 30, 39, 0.12);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  flex-shrink: 0;
}

.card-header-icon.stripe-icon {
  background: rgba(99, 91, 255, 0.12);
  border-color: rgba(99, 91, 255, 0.35);
  color: #818cf8;
}

.card-header-icon i {
  width: 22px;
  height: 22px;
}

.card-header-styled h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.card-header-styled .card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

/* Target Profile Card */
.target-profile-card {
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkout-page-avatar {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 2px solid var(--red-bright);
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 14px var(--red-glow);
  flex-shrink: 0;
}

.target-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.target-profile-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.target-profile-title strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.verified-icon-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.verified-icon-chip i {
  width: 12px;
  height: 12px;
}

.target-profile-handle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.target-account-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 2px;
}

.target-account-note i {
  width: 11px;
  height: 11px;
}

/* Order Specs List */
.order-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}

.spec-label {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.spec-label i {
  width: 15px;
  height: 15px;
  color: var(--red-bright);
}

.spec-value {
  color: #fff;
  font-weight: 700;
}

.spec-value.highlight-green {
  color: #10b981;
}

/* Price Breakdown */
.price-breakdown-box {
  background: #060609;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-line.total-price-line {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.95rem;
  margin-top: 0.35rem;
}

.total-label-wrap strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
}

.total-label-wrap span {
  font-size: 0.74rem;
  color: var(--text-dim);
  display: block;
  margin-top: 2px;
}

.total-amount-display {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--red-bright);
}

.edit-selection-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.15s ease;
}

.edit-selection-link:hover {
  border-color: var(--red-border);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.edit-selection-link i {
  width: 15px;
  height: 15px;
}

/* Stripe Official Banner */
.stripe-official-banner {
  background: rgba(99, 91, 255, 0.07);
  border: 1px solid rgba(99, 91, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stripe-branding-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stripe-logo-wrap {
  font-size: 0.85rem;
  color: #c7d2fe;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stripe-badge-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.stripe-ssl-tag {
  font-size: 0.76rem;
  color: #a5b4fc;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stripe-ssl-tag i {
  width: 14px;
  height: 14px;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.method-chip {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(99, 91, 255, 0.2);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: #e0e7ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.method-chip i {
  width: 14px;
  height: 14px;
  color: #818cf8;
}

/* Checkout Page Form */
.checkout-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 100%;
}

.form-group-block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-block-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.required-star {
  color: var(--red-bright);
  font-weight: 900;
}

.input-with-icon-styled {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.field-icon-left {
  position: absolute;
  left: 1.15rem;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.styled-checkout-input {
  width: 100%;
  height: 52px;
  background: #060609;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0 1.25rem 0 3.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}

.styled-checkout-input:focus {
  border-color: var(--red-bright);
  box-shadow: 0 0 16px var(--red-glow);
  background: #09090e;
}

.field-helper-text {
  font-size: 0.76rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.45;
}

.field-helper-text i {
  width: 14px;
  height: 14px;
  color: var(--red-bright);
  flex-shrink: 0;
}

/* Guarantee Features Grid */
.guarantee-features-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.guarantee-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.feature-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 30, 39, 0.1);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  flex-shrink: 0;
}

.feature-icon-wrap i {
  width: 16px;
  height: 16px;
}

.feature-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.feature-text-wrap strong {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 700;
}

.feature-text-wrap span {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkout-pay-cta-btn {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 900;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-red-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-pay-cta-btn:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red-lg);
  transform: translateY(-2px);
}

.checkout-pay-cta-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.checkout-pay-cta-btn i {
  width: 20px;
  height: 20px;
}

.checkout-footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.checkout-footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.checkout-footer-badges i {
  width: 14px;
  height: 14px;
  color: #10b981;
}

@media (max-width: 900px) {
  .checkout-page-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* Live Order Tracker Page View */
.tracker-page-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

.tracker-page-nav {
  display: flex;
  align-items: center;
}

.tracker-page-card {
  background: rgba(13, 13, 18, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.tracker-page-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(255, 30, 39, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-dark);
}

.tracker-page-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}

.tracker-page-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Tracker Status Components */
.tracker-status-box {
  background: #050507;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.tracker-target-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.tracker-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--red-bright);
  object-fit: cover;
}

.tracker-target-meta {
  display: flex;
  flex-direction: column;
}

.tracker-target-meta strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
}

.tracker-target-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.status-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red-bright);
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
}

.status-live-pill.completed {
  color: #10b981;
}

.status-live-pill.pending {
  color: #f59e0b;
}

.pulsing-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-bright);
  animation: liveDotPulse 1.5s infinite ease-in-out;
}

.pulsing-live-dot.green {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.pulsing-live-dot.yellow {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

@keyframes liveDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.tracker-progress-section {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.progress-labels-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}

.progress-pct-number {
  color: var(--red-bright);
  font-family: var(--font-mono);
  font-weight: 800;
}

.tracker-progress-track {
  height: 8px;
  background: #181822;
  border-radius: 4px;
  overflow: hidden;
}

.tracker-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red-primary), var(--red-bright));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.tracker-counter-box {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.delivered-counter {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.target-counter {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.live-terminal-box {
  background: #020204;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.terminal-header {
  background: #0d0d14;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border-dark);
}

.terminal-header i {
  width: 14px;
  height: 14px;
  color: var(--red-bright);
}

.terminal-logs-body {
  padding: 0.85rem;
  max-height: 150px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #a1a1aa;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.log-entry {
  line-height: 1.4;
}

.tracker-actions-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.action-btn-secondary {
  flex: 1;
  background: #111116;
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.15s ease;
  min-height: 46px;
}

.action-btn-secondary:hover {
  background: #181822;
  border-color: var(--red-border);
}

.action-btn-primary {
  flex: 1;
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-red-sm);
  transition: all 0.15s ease;
  min-height: 46px;
}

.action-btn-primary:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-red-lg);
}

/* ===================================================================
   Toast Notifications
   =================================================================== */
.toast-container {
  position: fixed;
  bottom: calc(90px + var(--sab));
  right: 1.5rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: #101016;
  border: 1px solid var(--red-border);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.85);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.gold {
  border-color: #10b981;
  background: #0a1410;
}

.toast-icon-inline {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.toast-icon-inline.success {
  color: #10b981;
}

.toast-icon-inline.warning {
  color: #f59e0b;
}

.toast-icon-inline.error {
  color: var(--red-bright);
}

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

/* ===================================================================
   Footer
   =================================================================== */
.app-footer {
  background: #030305;
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 1.25rem 2rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 700;
}

.status-live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===================================================================
   Responsive Breakpoints & Mobile Optimization
   =================================================================== */
@media (max-width: 900px) {
  .how-cards-grid, .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .checkout-page-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.65rem 1rem;
  }

  .saas-nav {
    display: none;
  }

  .step-card-section {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
  }

  .checkout-page-card, .tracker-page-card {
    padding: 1.35rem;
  }

  .checkout-page-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .checkout-step-pills {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .slider-hero-header {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .chips-scroll-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .speed-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    flex-direction: column;
  }

  .search-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: calc(85px + var(--sab));
  }
}

@media (max-width: 480px) {
  .brand-tag {
    display: none;
  }

  .bar-user-tag, .bar-speed-pill {
    display: none;
  }

  .bar-package-title strong {
    font-size: 0.95rem;
  }

  .bar-price-val {
    font-size: 1.15rem;
  }

  .bar-checkout-btn {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ===================================================================
   Live Purchase Popup
   =================================================================== */
.live-purchase-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: rgba(13, 13, 18, 0.95);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 30, 39, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.live-purchase-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.live-popup-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.live-popup-left img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-subtle);
  background: #1a1a22;
}

.live-popup-info {
  display: flex;
  flex-direction: column;
}

.live-popup-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.live-popup-title strong {
  color: #fff;
  font-weight: 700;
}

.live-popup-desc {
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 1px;
}

.live-popup-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 600;
}

.live-popup-right i {
  color: #10b981;
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .live-purchase-popup {
    bottom: auto;
    top: 5rem;
    left: 1rem;
    right: 1rem;
    transform: translateY(-150%);
    padding: 0.75rem 1rem;
  }
}
