/* Amazon Seller Services — Main Stylesheet */
:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green: #22c55e;
  --green-dark: #15803d;
  --blue: #3b82f6;
  --red: #ef4444;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.muted { color: var(--gray-600); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--orange-600);
  color: var(--orange-600) !important;
}
.btn-outline:hover {
  background: var(--orange-600);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.btn-subtle {
  background: var(--gray-100);
  color: var(--gray-700) !important;
}
.btn-subtle:hover {
  background: var(--gray-200);
  color: var(--gray-900) !important;
}
.btn-support {
  background: var(--orange-50);
  color: var(--orange-700);
  border: 1px solid var(--orange-200, #fed7aa);
}
.btn-support:hover {
  background: var(--orange-100);
  border-color: var(--orange-500);
  color: var(--orange-800, #9a3412);
  transform: translateY(-1px);
}
.btn-support-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
  flex-shrink: 0;
}
.btn-support-circle:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.65);
}
.btn-support-circle svg {
  display: block;
  stroke: #ffffff;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* Form Controls & Password Input */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange-600);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-input-wrap input {
  padding-right: 4.5rem;
}
.password-toggle-btn {
  position: absolute;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  border-radius: 4px;
}
.password-toggle-btn:hover {
  color: var(--orange-600);
  background: var(--gray-100);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--gray-200);
  height: 72px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--orange-600);
  text-decoration: none;
}
.logo-brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  line-height: 0;
}
.logo-img {
  height: 46px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  /* Removed mix-blend-mode:multiply — caused logo to disappear on white bg */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.logo-brand:hover .logo-img {
  transform: scale(1.03);
  opacity: 0.88;
}
.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange-600);
  line-height: 1.3;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.main-nav a:not(.btn):not(.btn-support-circle):hover { color: var(--orange-600); }
/* Ensure .btn inside nav never turns orange on hover — keep own styles */
.main-nav .btn:hover { color: #ffffff !important; }
.nav-auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all 0.3s ease;
}

main { padding-top: 72px; }

/* Hero Section */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--orange-50), #fff 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
}
.hero h1 span { color: var(--orange-600); }
.hero-lead { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-600);
  font-weight: 800;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}
.package-card-head {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.package-card-head h3 { margin: 0 0 0.25rem; font-size: 1.35rem; }
.package-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  font-weight: 500;
}
.package-row .ok { color: var(--green); font-weight: 700; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--gray-50); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 0.75rem; font-weight: 800; }
.section-head p { color: var(--gray-600); margin: 0; font-size: 1.05rem; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #141414 0%, #252525 55%, #1a1a1a 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.45);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 2; }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.35s ease;
}
.service-card:hover .service-icon {
  background: rgba(249, 115, 22, 0.22);
  transform: scale(1.08);
}
.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  transition: color 0.35s ease;
}
.service-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  transition: color 0.35s ease;
}
.service-card:hover h3 { color: #fff; }
.service-card:hover p { color: rgba(229, 231, 235, 0.88); }

/* Steps / Roadmap */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--orange-600);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.step h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 700; }
.step p { margin: 0; font-size: 0.9rem; color: var(--gray-600); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border: 2px solid var(--orange-600);
  box-shadow: var(--shadow-lg);
}
.badge-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 0 14px 0 8px;
}
.price-card h3 { margin: 0 0 0.25rem; font-size: 1.5rem; }
.price-amount { font-size: 2.25rem; font-weight: 800; margin: 1rem 0; color: var(--gray-900); }
.price-amount small { font-size: 1rem; font-weight: 500; color: var(--gray-600); }
.feature-list { list-style: none; padding: 0; margin: 1.25rem 0 0; flex-grow: 1; }
.feature-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  font-size: 0.92rem;
  position: relative;
}
.feature-list li.yes::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.feature-list li.no { color: var(--gray-400); }
.feature-list li.no::before { content: '×'; position: absolute; left: 0; }

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-100);
  color: var(--orange-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.form-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
}

/* Alerts */
.alert {
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }

/* Customer Authentication Cards */
.auth-card {
  max-width: 440px;
  margin: 1rem auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.auth-title { text-align: center; margin: 0 0 0.35rem; font-size: 1.75rem; font-weight: 800; }
.auth-subtitle { text-align: center; margin-bottom: 1.75rem; font-size: 0.95rem; }
.auth-footer { margin-top: 1.5rem; text-align: center; border-top: 1px solid var(--gray-200); padding-top: 1.25rem; }

.page-narrow { max-width: 600px; margin: 0 auto; padding: 1.5rem 0 3.5rem; }

/* Customer Dashboard Layout */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
}
.card-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.panel-head h2 { margin: 0; font-size: 1.25rem; }
.empty-state { text-align: center; padding: 2rem 1rem; color: var(--gray-600); }

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge-new { background: #dbeafe; color: #1e40af; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-onboarding { background: #e0e7ff; color: #3730a3; }
.badge-active { background: #dcfce7; color: #166534; }
.badge-closed { background: #f3f4f6; color: #4b5563; }
.badge-default { background: #e5e7eb; color: #374151; }

/* Responsive Table Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.data-table th,
table.data-table td {
  text-align: left;
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid var(--gray-200);
}
table.data-table th {
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-50);
}

/* Admin Layout Container */
.admin-wrap {
  min-height: 100vh;
  background: var(--gray-50);
}
.admin-card {
  max-width: 440px;
  margin: 4rem auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.admin-layout-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--gray-900);
  color: #fff;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-nav a {
  color: var(--gray-400);
  text-decoration: none;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s;
}
.admin-nav a:hover,
.admin-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.admin-main-content {
  padding: 2rem;
  background: var(--gray-50);
}
.admin-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.stat-icon {
  font-size: 2rem;
  width: 54px;
  height: 54px;
  background: var(--orange-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card h3 { margin: 0; font-size: 1.75rem; font-weight: 800; }
.stat-card p { margin: 0 0 0.25rem; font-size: 0.88rem; }
.stat-link { font-size: 0.82rem; font-weight: 600; color: var(--orange-600); text-decoration: none; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #050505;
  color: #e5e7eb;
  padding: 0;
}
.footer-smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.footer-smoke-1 {
  width: min(520px, 90vw);
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.85) 0%, rgba(234, 88, 12, 0.35) 45%, transparent 70%);
  top: -80px;
  left: -120px;
}
.footer-smoke-2 {
  width: min(480px, 85vw);
  height: 280px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.7) 0%, rgba(194, 65, 12, 0.25) 50%, transparent 72%);
  bottom: -60px;
  right: -100px;
}
.footer-smoke-3 {
  width: min(360px, 70vw);
  height: 220px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.45) 0%, transparent 65%);
  top: 40%;
  left: 35%;
  transform: translate(-50%, -50%);
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2rem 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-heading {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f97316;
}
.footer-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.78);
  max-width: 22rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}
.footer-links a {
  color: rgba(229, 231, 235, 0.88);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover {
  color: #fb923c;
  padding-left: 4px;
}
.footer-contact span {
  color: rgba(229, 231, 235, 0.75);
}
.footer-bottom {
  padding: 1.25rem 0 1.75rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(156, 163, 175, 0.9);
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES — Production-ready
   ========================================================= */

/* Tablet / Small Desktop */
@media (max-width: 1024px) {
  .admin-layout-container {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0.5rem;
  }
  .admin-sidebar-brand {
    width: 100%;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile — 900px breakpoint */
@media (max-width: 900px) {
  /* Layout stacking */
  .hero-grid,
  .services-grid,
  .steps,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile hamburger */
  .nav-toggle { display: flex; }

  /* Mobile nav dropdown */
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--gray-200);
    z-index: 99;
    gap: 0;
  }
  .main-nav.is-open { display: flex; }

  /* Nav links — full width rows */
  .main-nav > a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    font-size: 1rem;
  }

  /* Auth buttons block */
  .nav-auth-buttons {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 0.75rem;
    gap: 0.5rem;
  }
  .nav-auth-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Support circle → full-width pill on mobile */
  .nav-auth-buttons .btn-support-circle {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    gap: 0.5rem;
  }
  .nav-auth-buttons .btn-support-circle::after {
    content: 'Customer Support';
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
  }

  /* Sections */
  .hero { padding: 3rem 0 2.5rem; }
  .section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Steps — 2 columns on tablet, 1 on mobile */
  .steps { grid-template-columns: repeat(2, 1fr); }

  /* Contact grid */
  .contact-grid { gap: 1.5rem; }

  /* Auth card full width */
  .auth-card { margin: 0.5rem auto; }
  .page-narrow { padding: 1rem 0 2rem; }

  /* Admin */
  .admin-header-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .admin-main-content { padding: 1.25rem; }
}

/* Small Mobile — 600px breakpoint */
@media (max-width: 600px) {
  /* Steps single column */
  .steps { grid-template-columns: 1fr; }

  /* Admin */
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-card { margin: 1.5rem auto; padding: 1.75rem 1.25rem; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  .footer-about { grid-column: auto; }
  .footer-text { margin-inline: auto; }
  .footer-links a:hover { padding-left: 0; }

  /* Logo */
  .logo { font-size: 1rem; max-width: 55vw; }

  /* Cards */
  .package-card { padding: 1.25rem; }
  .service-card { padding: 1.35rem; }
  .step { padding: 1.15rem 1rem; }
  .auth-card { padding: 1.75rem 1.25rem; }

  /* Form row — stack on mobile */
  .form-row { grid-template-columns: 1fr !important; }

  /* Dashboard panels */
  .card-panel { padding: 1rem; }
  .dashboard-header { flex-direction: column; align-items: flex-start; }

  /* Pricing cards */
  .price-card { padding: 1.5rem; }
  .price-amount { font-size: 2rem; }

  /* Tables */
  table.data-table th,
  table.data-table td { padding: 0.6rem 0.4rem; font-size: 0.82rem; }
}

/* Very Small — 380px */
@media (max-width: 380px) {
  .container { width: 94%; }
  .hero h1 { font-size: 1.75rem; }
  .price-amount { font-size: 1.85rem; }
  .btn { font-size: 0.88rem; padding: 0.65rem 1.1rem; }
}
