/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg-dark: #070708;
  --color-card-bg: rgba(30, 30, 32, 0.7);
  --color-card-border: rgba(255, 252, 0, 0.15);
  --color-primary: #FFFC00;
  --color-primary-glow: rgba(255, 252, 0, 0.4);
  --color-gradient-start: #FFFC00;
  --color-gradient-end: #FFA500;
  --color-text-main: #FFFFFF;
  --color-text-muted: #A1A1A6;
  --color-success: #00FF7F;
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Ambient glow backgrounds */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
}

.bg-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  right: -50px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--color-gradient-end);
  bottom: 10%;
  left: -150px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  background: rgba(255, 252, 0, 0.1);
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 252, 0, 0.3);
}

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

.contact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-text-main);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-pill:hover {
  background: rgba(255, 252, 0, 0.08);
  border-color: rgba(255, 252, 0, 0.3);
}

.admin-pill {
  background: rgba(255, 252, 0, 0.08);
  border-color: rgba(255, 252, 0, 0.35);
  color: var(--color-primary);
  font-weight: 600;
}

.admin-pill:hover {
  background: rgba(255, 252, 0, 0.18);
  box-shadow: 0 0 10px rgba(255, 252, 0, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 252, 0, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 252, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 252, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 252, 0, 0);
  }
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promo-badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-gradient-start) 30%, var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 30px auto;
  font-weight: 400;
}

.subtitle strong {
  color: white;
}

.price-banner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 252, 0, 0.08), rgba(255, 165, 0, 0.05));
  border: 1px solid var(--color-card-border);
  padding: 16px 36px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(255, 252, 0, 0.3);
}

/* Benefits Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}

.feature-card {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 252, 0, 0.25);
  box-shadow: 0 15px 35px rgba(255, 252, 0, 0.05);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Configurator Interactive Box */
.configurator-section {
  margin-bottom: 70px;
}

.configurator-box {
  background: rgba(18, 18, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Accentuated configurator box when focused in hero */
.hero-focused-box {
  border: 2px solid rgba(255, 252, 0, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 252, 0, 0.06);
}

/* Steps Navigation Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 15px;
  position: relative;
  top: -15px;
  transition: all 0.4s ease;
}

.step-line.active {
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #252528;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-dot.active .step-num {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: black;
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.step-dot.completed .step-num {
  background: black;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}

.step-dot.active .step-label {
  color: var(--color-primary);
}

.step-dot.completed .step-label {
  color: white;
}

/* Step Panes with animations */
.step-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: paneEntrance 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

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

.step-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.step-desc {
  color: var(--color-text-muted);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 35px auto;
  font-size: 0.95rem;
}

/* Step 1 Form Elements */
.form-group {
  max-width: 480px;
  margin: 0 auto 35px auto;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #171719;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 6px 20px;
  transition: all 0.3s ease;
}

/* Emphasized input zone with pulsing neon glow */
.focus-glow-input {
  border: 2px solid rgba(255, 252, 0, 0.4);
  background: #141415;
  padding: 10px 24px;
  box-shadow: 0 0 15px rgba(255, 252, 0, 0.05);
  animation: inputPulseGlow 3s infinite alternate;
}

@keyframes inputPulseGlow {
  0% {
    border-color: rgba(255, 252, 0, 0.35);
    box-shadow: 0 0 15px rgba(255, 252, 0, 0.05);
  }
  100% {
    border-color: rgba(255, 252, 0, 0.8);
    box-shadow: 0 0 25px rgba(255, 252, 0, 0.2);
  }
}

.focus-glow-input input {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.input-prefix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 8px;
  user-select: none;
}

.focus-glow-input .input-prefix {
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(255, 252, 0, 0.5);
}

.input-wrapper input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 0;
}

.input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.input-error {
  display: none;
  color: #FF453A;
  font-size: 0.85rem;
  margin-top: 8px;
  margin-left: 10px;
  font-weight: 500;
}

.input-error.visible {
  display: block;
}

/* Step 2 Category Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.category-card {
  background: #171719;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.category-card:hover {
  background: rgba(255, 252, 0, 0.03);
  border-color: rgba(255, 252, 0, 0.2);
  transform: scale(1.02);
}

.category-card.selected {
  background: rgba(255, 252, 0, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(255, 252, 0, 0.08);
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.category-card:hover .cat-icon {
  transform: translateY(-3px) scale(1.1);
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.category-card.selected h3 {
  color: var(--color-primary);
}

/* Step 3 Summary Box */
.summary-box {
  background: #171719;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 28px;
  max-width: 550px;
  margin: 0 auto 30px auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.summary-label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.summary-val {
  font-weight: 600;
  color: white;
  font-size: 1.05rem;
}

#summary-username {
  color: var(--color-primary);
}

.highlight-row {
  background: rgba(255, 252, 0, 0.04);
  margin: 10px -28px 0 -28px;
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 252, 0, 0.15);
  border-bottom: 1px solid rgba(255, 252, 0, 0.15);
}

.font-large {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.text-center-row {
  justify-content: center;
  padding-bottom: 0;
}

.summary-sub-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.payment-notice {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 35px auto;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.payment-notice strong {
  color: white;
}

/* Button UI Components */
.btn-group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-group.split {
  justify-content: space-between;
  gap: 20px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: black;
  box-shadow: 0 10px 25px rgba(255, 252, 0, 0.15);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 252, 0, 0.25);
}

.btn-primary:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-hero-cta {
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: 18px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-success {
  background: var(--color-success);
  color: black;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(0, 255, 127, 0.2);
  width: 100%;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 255, 127, 0.35);
}

.arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary:hover .arrow {
  transform: translateX(-4px);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(255, 252, 0, 0.2);
  background: rgba(30, 30, 32, 0.95);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  user-select: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hide standard details marker */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.faq-content p {
  margin-bottom: 12px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content strong {
  color: white;
}

/* Admin Dashboard Extra Styles */
.admin-login-box {
  max-width: 400px;
  margin: 100px auto;
  background: rgba(18, 18, 20, 0.85);
  border: 1px solid rgba(255, 252, 0, 0.15);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.admin-login-box h2 {
  font-family: var(--font-display);
  margin-bottom: 24px;
  color: var(--color-primary);
}

.admin-container {
  background: rgba(18, 18, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.admin-title h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.admin-title p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Admin panel sections and grid layout */
.admin-section {
  margin-bottom: 40px;
}

.admin-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-primary);
  padding-left: 12px;
}

.admin-grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.admin-form-box {
  background: #171719;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
}

.admin-form-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.admin-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.admin-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #252528;
  color: white;
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.admin-input:focus {
  border-color: var(--color-primary);
}

/* Tabs interface */
.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  overflow-x: auto;
}

.admin-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.admin-tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

.admin-tab-btn.active {
  background: var(--color-primary);
  color: black;
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(255, 252, 0, 0.15);
}

.admin-pane {
  display: none;
}

.admin-pane.active {
  display: block;
  animation: paneEntrance 0.4s forwards ease;
}

/* Log Stats list */
.log-stats-list {
  max-height: 300px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-box {
  background: #171719;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat-box .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

/* Table custom styles */
.table-responsive {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table th {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.snap-username-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.snap-username-link:hover {
  text-decoration: underline;
}

/* Dropdown Status & Forms */
.status-select {
  background: #252528;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 12px;
  border-radius: 10px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
}

.status-select:focus {
  border-color: var(--color-primary);
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-pending { background: rgba(255, 165, 0, 0.15); color: #FFA500; border: 1px solid rgba(255, 165, 0, 0.3); }
.badge-progress { background: rgba(0, 191, 255, 0.15); color: #00BFFF; border: 1px solid rgba(0, 191, 255, 0.3); }
.badge-success { background: rgba(0, 255, 127, 0.15); color: #00FF7F; border: 1px solid rgba(0, 255, 127, 0.3); }
.badge-danger { background: rgba(255, 69, 58, 0.15); color: #FF453A; border: 1px solid rgba(255, 69, 58, 0.3); }

.btn-action {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #FF453A;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-action:hover {
  background: rgba(255, 69, 58, 0.1);
}

.alert-msg {
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.3);
  color: #00FF7F;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.95rem;
}

.alert-error {
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.3);
  color: #FF453A;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* Footer styling */
.main-footer {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-sub {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-sub strong {
  color: var(--color-primary);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .container {
    padding: 24px 16px;
  }
  
  .main-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .configurator-box {
    padding: 24px 16px;
    border-radius: 20px;
  }
  
  .steps-indicator {
    margin-bottom: 35px;
  }
  
  .step-label {
    display: none; /* Hide labels on mobile to prevent clutter */
  }
  
  .step-line {
    top: -4px;
    margin: 0 8px;
  }
  
  .step-dot {
    cursor: default;
  }
  
  .step-num {
    margin-bottom: 0;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .category-card {
    padding: 16px 8px;
  }
  
  .cat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .category-card h3 {
    font-size: 0.85rem;
  }
  
  .btn-group.split {
    flex-direction: column-reverse;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
  }
  
  .summary-box {
    padding: 16px;
  }
  
  .highlight-row {
    margin: 10px -16px 0 -16px;
    padding: 12px 16px;
  }

  .admin-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-tabs {
    flex-wrap: nowrap;
  }
}