/* KwickStudio Pages - Shared Styles with Light/Dark Mode */

/* ============================================
   COLOR SCHEME - DARK MODE (Default)
   ============================================ */
:root {
  --gold: #c9a962;
  --gold-light: #e4d5a8;
  --gold-dark: #9a7b3c;

  /* Dark mode colors */
  --bg-body: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-surface: #242424;
  --bg-header: rgba(13, 13, 13, 0.95);
  --text-primary: #f5f5f5;
  --text-secondary: #999;
  --text-muted: #666;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 169, 98, 0.15);
  --shadow-color: rgba(0, 0, 0, 0.5);

  /* Accent colors */
  --accent-green: #4ade80;
  --accent-blue: #60a5fa;
  --accent-purple: #a78bfa;
  --accent-red: #f87171;
  --accent-orange: #fb923c;

  /* Skeleton animation */
  --skeleton-base: #1a1a1a;
  --skeleton-shine: #2a2a2a;
}

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] {
  --bg-body: #fafafa;
  --bg-card: #ffffff;
  --bg-surface: #f5f5f5;
  --bg-header: rgba(255, 255, 255, 0.95);
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --text-muted: #999;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(201, 169, 98, 0.25);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --skeleton-base: #e5e5e5;
  --skeleton-shine: #f0f0f0;
}

/* System preference detection */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg-body: #fafafa;
    --bg-card: #ffffff;
    --bg-surface: #f5f5f5;
    --bg-header: rgba(255, 255, 255, 0.95);
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-muted: #999;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(201, 169, 98, 0.25);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --skeleton-base: #e5e5e5;
    --skeleton-shine: #f0f0f0;
  }
}

/* ============================================
   BASE STYLES
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ============================================
   SKELETON LOADING ANIMATION
   ============================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--skeleton-base) 25%, var(--skeleton-shine) 50%, var(--skeleton-base) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-text { height: 1em; width: 80%; margin-bottom: 0.5em; }
.skeleton-title { height: 2.5rem; width: 60%; margin-bottom: 1rem; }
.skeleton-card { height: 200px; border-radius: 16px; }

.fonts-loading .serif-text { opacity: 0; }
.fonts-loaded .serif-text { opacity: 1; transition: opacity 0.3s ease; }

/* ============================================
   HEADER / MEGA MENU
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.25rem;
  height: 100%;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--gold);
  text-decoration: none;
}

.nav-link .material-symbols-rounded {
  font-size: 18px;
  transition: transform 0.2s;
}

.nav-item:hover .nav-link .material-symbols-rounded {
  transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 25px 50px var(--shadow-color);
  min-width: 800px;
}

.mega-menu.compact {
  min-width: 280px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu-section h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-gold);
}

.mega-menu-links {
  list-style: none;
}

.mega-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.15s;
  text-decoration: none;
}

.mega-menu-links a:hover {
  color: var(--text-primary);
  padding-left: 0.5rem;
}

.mega-menu-links .icon {
  font-size: 16px;
  color: var(--text-muted);
}

/* Mega Menu Footer */
.mega-menu-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.mega-menu-cta {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.mega-menu-cta:hover {
  color: var(--gold-light);
}

/* Language Menu */
.lang-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  color: var(--text-secondary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
}

.lang-menu li a:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.lang-menu li a.active {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.lang-menu .flag {
  font-size: 1.2rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--bg-surface);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: var(--border-gold);
  color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
  text-decoration: none;
  color: #000;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(201, 169, 98, 0.1);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--gold);
  text-decoration: none;
}

.btn-blue {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #3b82f6 100%);
  color: #fff;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
  color: #fff;
}

.btn-purple {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #7c3aed 100%);
  color: #fff;
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
  color: #fff;
}

/* ============================================
   PAGE LAYOUT
   ============================================ */
.page-main {
  padding-top: 70px;
  min-height: 100vh;
}

/* Hero Sections */
.page-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(201, 169, 98, 0.06) 0%, transparent 60%);
}

.page-hero.compact {
  padding: 3rem 2rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero h1 .highlight {
  color: var(--gold);
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .separator {
  margin: 0 0.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container.narrow { max-width: 800px; }
.container.wide { max-width: 1400px; }

/* Sections */
.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--bg-card);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  min-width: 140px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-value.blue { color: var(--accent-blue); }
.stat-value.purple { color: var(--accent-purple); }
.stat-value.green { color: var(--accent-green); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: rgba(201, 169, 98, 0.1);
}

.card-icon.blue { background: rgba(96, 165, 250, 0.1); color: var(--accent-blue); }
.card-icon.purple { background: rgba(167, 139, 250, 0.1); color: var(--accent-purple); }
.card-icon.green { background: rgba(74, 222, 128, 0.1); color: var(--accent-green); }

.card-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Tag/Pill */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.tag.blue { background: rgba(96, 165, 250, 0.1); color: var(--accent-blue); }
.tag.purple { background: rgba(167, 139, 250, 0.1); color: var(--accent-purple); }
.tag.green { background: rgba(74, 222, 128, 0.1); color: var(--accent-green); }

/* Pills row */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pill {
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.pill:hover, .pill.active {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* Feature List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .check {
  color: var(--accent-green);
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
  max-width: 700px;
  margin: 0 auto 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}

.search-box.inline {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-tabs button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s;
}

.search-tabs button.active,
.search-tabs button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-row {
  display: flex;
  gap: 1rem;
}

.search-row input,
.search-row select,
.search-box input,
.search-box select {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
}

.search-row input:focus,
.search-row select:focus,
.search-box input:focus,
.search-box select:focus {
  outline: none;
  border-color: var(--gold);
}

.search-box button:not(.search-tabs button) {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.search-box button:not(.search-tabs button):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.btn-full {
  width: 100%;
}

/* ============================================
   VERIFY RESULT (License Verification)
   ============================================ */
.verify-result {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border: 2px solid var(--border-color);
}

.verify-result.valid {
  border-color: var(--accent-green);
}

.verify-result.invalid {
  border-color: var(--accent-red);
}

.verify-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verify-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-icon.valid {
  background: rgba(74, 222, 128, 0.15);
  color: var(--accent-green);
}

.verify-icon.invalid {
  background: rgba(248, 113, 113, 0.15);
  color: var(--accent-red);
}

.verify-header h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.verify-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.verify-detail label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.verify-detail span {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.data-table,
.results-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td,
.results-table th,
.results-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th,
.results-table th {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-surface);
}

.data-table tr:hover,
.results-table tr:hover {
  background: rgba(201, 169, 98, 0.03);
}

.status-active { color: var(--accent-green); }
.status-expired { color: var(--accent-red); }
.status-pending { color: var(--accent-orange); }

/* ============================================
   BUSINESS LIST / JOB LIST
   ============================================ */
.item-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.item-card:hover {
  border-color: var(--border-gold);
}

.item-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.item-card .subtitle {
  color: var(--gold);
  font-size: 0.9rem;
}

.item-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.item-card .rating { color: var(--gold); }
.item-card .salary { color: var(--accent-green); font-weight: 500; }
.item-card .verified {
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  margin: 4rem 0;
  border: 1px solid var(--border-color);
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-section h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: inherit;
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header button {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  padding: 2rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .page-hero h1 { font-size: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2rem; }
  .search-box { padding: 1.5rem; }
  .search-box.inline { flex-direction: column; }
  .search-row { flex-direction: column; }
  .search-tabs { flex-wrap: wrap; }
  .verify-details { grid-template-columns: 1fr; }
  .stats-row { gap: 1rem; }
  .stat-card { min-width: 100px; padding: 1.25rem 1rem; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .item-card { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .results-table th,
  .results-table td { padding: 0.75rem 0.5rem; font-size: 0.85rem; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted, .muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
