/* ===== RESET & BASE ===== */
:root {
  --navy: #0B1D3A;
  --navy-mid: #132B52;
  --navy-light: #1A3A6E;
  --blue: #2E7CF6;
  --blue-glow: #5B9EFF;
  --cyan: #00D4FF;
  --green: #00E676;
  --orange: #FF9100;
  --red: #FF5252;
  --white: #F4F7FB;
  --gray-100: #E8ECF2;
  --gray-200: #C5CDD8;
  --gray-400: #7B8A9E;
  --gray-600: #4A5568;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(46,124,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,124,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.glow-orb.orb1 { width: 500px; height: 500px; background: var(--blue); top: -150px; right: -100px; animation: float1 12s ease-in-out infinite; }
.glow-orb.orb2 { width: 400px; height: 400px; background: var(--cyan); bottom: -100px; left: -100px; animation: float2 15s ease-in-out infinite; }
.glow-orb.orb3 { width: 300px; height: 300px; background: #6C3AED; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: float3 18s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -40px); } }
@keyframes float3 { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.2); } }

/* ===== LAYOUT ===== */
.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.site-header {
  padding: 20px 0;
  animation: fadeDown 0.8s ease;
  position: relative;
  z-index: 10000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(46,124,246,0.4);
}
.site-logo span { color: var(--cyan); }

/* Primary navigation */
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.primary-nav a {
  color: var(--gray-200);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item a { color: var(--cyan); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  position: relative;
  z-index: 100000;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 80px 0 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,124,246,0.12);
  border: 1px solid rgba(46,124,246,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-glow);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-glow), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SEARCH BOX ===== */
.search-wrap {
  max-width: 640px;
  margin: 0 auto;
  animation: fadeUp 0.8s 0.5s ease both;
}
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 6px 6px 6px 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.search-box:focus-within {
  border-color: var(--blue);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(46,124,246,0.15), 0 0 0 4px rgba(46,124,246,0.08);
}
.search-box .search-icon {
  color: var(--gray-400);
  margin-right: 12px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.search-box input[type="text"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  padding: 14px 0;
  min-width: 0;
}
.search-box input[type="text"]::placeholder { color: var(--gray-400); }
.search-box button {
  background: linear-gradient(135deg, var(--blue), #1A6BE0);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.search-box button:hover {
  background: linear-gradient(135deg, #3D88FF, var(--blue));
  box-shadow: 0 6px 24px rgba(46,124,246,0.4);
  transform: translateY(-1px);
}

.popular-searches {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.popular-searches > span {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}
.popular-searches a {
  font-size: 12px;
  color: var(--gray-200);
  background: rgba(255,255,255,0.06);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.popular-searches a:hover {
  background: rgba(46,124,246,0.15);
  border-color: rgba(46,124,246,0.3);
  color: var(--cyan);
}

/* ===== LOADER ===== */
.loader {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 40px;
}
.loader.active { display: flex; }
.loader-dot {
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  animation: loaderBounce 1.4s ease-in-out infinite both;
}
.loader-dot:nth-child(2) { animation-delay: 0.16s; }
.loader-dot:nth-child(3) { animation-delay: 0.32s; }
@keyframes loaderBounce {
  0%,80%,100% { transform: scale(0.4); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* ===== RESULTS PANEL ===== */
.results-panel {
  max-width: 900px;
  margin: 50px auto 0;
  display: none;
  animation: slideUp 0.6s ease;
}
.results-panel.active { display: block; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.result-domain {
  display: flex;
  align-items: center;
  gap: 14px;
}
.result-domain .favicon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.result-domain h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.worth-display { text-align: right; }
.worth-display .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}
.worth-display .value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.stat-card:hover::before { opacity: 1; }
.stat-card.blue::before { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.stat-card.green::before { background: linear-gradient(90deg, var(--green), #00E676); }
.stat-card.orange::before { background: linear-gradient(90deg, var(--orange), #FFB74D); }
.stat-card.red::before { background: linear-gradient(90deg, var(--red), #FF8A80); }
.stat-card.purple::before { background: linear-gradient(90deg, #6C3AED, #A78BFA); }
.stat-card.cyan::before { background: linear-gradient(90deg, var(--cyan), #84FFFF); }

.stat-card .stat-icon { font-size: 18px; margin-bottom: 10px; display: block; }
.stat-card .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 6px;
}
.stat-card .stat-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

/* Detail sections */
.detail-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 14px;
}
.detail-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--gray-400); font-size: 14px; }
.detail-row .value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag.good { background: rgba(0,230,118,0.12); color: var(--green); }
.tag.warn { background: rgba(255,145,0,0.12); color: var(--orange); }
.tag.bad { background: rgba(255,82,82,0.12); color: var(--red); }

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.social-item .s-icon { font-size: 18px; }
.social-item .s-name { font-size: 12px; color: var(--gray-400); }
.social-item .s-value { font-family: var(--font-mono); font-size: 14px; font-weight: 600; }

/* ===== SECTION BLOCKS ===== */
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--gray-400);
  font-size: 16px;
  margin-bottom: 50px;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
}
.step-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  border-color: rgba(46,124,246,0.2);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(46,124,246,0.3), rgba(0,212,255,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px; }
.step-card p { color: var(--gray-400); font-size: 14px; line-height: 1.6; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-icon.blue { background: rgba(46,124,246,0.12); }
.feature-icon.green { background: rgba(0,230,118,0.12); }
.feature-icon.orange { background: rgba(255,145,0,0.12); }
.feature-icon.purple { background: rgba(108,58,237,0.12); }
.feature-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--gray-400); line-height: 1.5; }

/* ===== RECENTLY CHECKED / TOP SITES TABLE ===== */
.sites-table {
  width: 100%;
  border-collapse: collapse;
}
.sites-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sites-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.sites-table tr:hover td { background: rgba(255,255,255,0.02); }
.sites-table .domain-cell {
  font-weight: 600;
  color: var(--blue-glow);
}
.sites-table .worth-cell {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--green);
}

/* ===== BLOG / CONTENT PAGES ===== */
.page-header {
  text-align: center;
  padding: 60px 0 40px;
}
.page-header h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.page-header p { color: var(--gray-400); font-size: 16px; }

.content-area {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.content-area h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin: 32px 0 12px; }
.content-area h3 { font-size: 20px; font-weight: 600; margin: 24px 0 10px; }
.content-area p { color: var(--gray-200); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.content-area ul, .content-area ol { color: var(--gray-200); margin: 0 0 16px 20px; line-height: 1.7; }
.content-area a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.content-area a:hover { color: var(--blue-glow); }
.content-area img { border-radius: 12px; margin: 24px 0; }
.content-area blockquote {
  border-left: 3px solid var(--blue);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(46,124,246,0.06);
  border-radius: 0 10px 10px 0;
  color: var(--gray-200);
  font-style: italic;
}

/* Blog post cards */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.post-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.post-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.post-card-thumb { width: 100%; height: 180px; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-body .meta { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.post-card-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.3px; }
.post-card-body p { font-size: 14px; color: var(--gray-400); line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner p { color: var(--gray-400); font-size: 13px; }
.footer-nav a {
  color: var(--gray-200);
  font-size: 13px;
  margin-left: 24px;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--cyan); }

/* Technology tags */
.tech-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(46,124,246,0.1);
  border: 1px solid rgba(46,124,246,0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-glow);
  letter-spacing: 0.3px;
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: 12px; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.pagination a:hover { background: rgba(46,124,246,0.15); border-color: rgba(46,124,246,0.3); color: var(--cyan); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: white; }

/* ===== TWO-COLUMN LAYOUT ===== */
.swc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.swc-main { min-width: 0; }

/* ===== SIDEBAR ===== */
.swc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
}
.sidebar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.sidebar-search-form {
  display: flex;
  gap: 8px;
}
.sidebar-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.sidebar-input::placeholder { color: var(--gray-400); }
.sidebar-input:focus { border-color: var(--blue); }
.sidebar-btn {
  background: linear-gradient(135deg, var(--blue), #1A6BE0);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.sidebar-btn:hover { box-shadow: 0 4px 16px rgba(46,124,246,0.3); }
.sidebar-list {
  display: flex;
  flex-direction: column;
}
.sidebar-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
  text-decoration: none;
}
.sidebar-list-item:last-child { border-bottom: none; }
.sidebar-list-item:hover { padding-left: 4px; }
.sidebar-domain {
  font-size: 13px;
  color: var(--blue-glow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.sidebar-list-item:hover .sidebar-domain { color: var(--cyan); }
.sidebar-worth {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.sidebar-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-400);
  transition: color 0.3s;
}
.sidebar-link:hover { color: var(--cyan); }
.swc-sidebar-sticky {
  position: sticky;
  top: 20px;
}

/* ===== AD SLOTS ===== */
.swc-ad {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
  min-height: 50px;
}

/* ===== STATS COUNTER BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 20px 0;
}
.stats-bar-item {
  text-align: center;
}
.stats-bar-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.stats-bar-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .result-header { flex-direction: column; text-align: center; }
  .worth-display { text-align: center; }
  #pagespeedGrid { grid-template-columns: repeat(2, 1fr) !important; }
  .primary-nav { display: none; }
  .mobile-toggle { display: block; }
  .swc-layout { grid-template-columns: 1fr; }
  .swc-sidebar { order: 2; }
  .sidebar-domain { max-width: 55vw; }
  .stats-bar { gap: 20px; flex-wrap: wrap; }
  .primary-nav.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11,29,58,0.98); padding: 100px 30px 30px; z-index: 99999; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow-y: auto; }
  .primary-nav.open ul { flex-direction: column; gap: 28px; align-items: center; }
  .primary-nav.open a { font-size: 20px; color: var(--white); }
  .hero { padding: 50px 0 30px; }
  .hero h1 { letter-spacing: -1px; }
  .section { padding: 50px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav a { margin: 0 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; padding: 12px; }
  .search-box input[type="text"] { width: 100%; padding: 12px; }
  .search-box button { width: 100%; }
  .search-box .search-icon { display: none; }
}
