/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #1a1a1a; background: #fff; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ===== Layout ===== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-5xl { max-width: 64rem; margin: 0 auto; }
.max-w-6xl { max-width: 72rem; margin: 0 auto; }
.max-w-7xl { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.min-h-screen { min-height: 100vh; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* ===== Flex & Grid ===== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }

/* ===== Spacing ===== */
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* ===== Typography ===== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.15; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* ===== Colors ===== */
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-100 { color: #dbeafe; }
.text-red-900 { color: #7f1d1d; }
.text-red-400 { color: #f87171; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-900 { color: #14532d; }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: #7e22ce; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-blue-500 { color: #3b82f6; }
.text-blue-800 { color: #1e40af; }
.text-yellow-600 { color: #ca8a04; }
.text-indigo-600 { color: #4f46e5; }
.text-red-600 { color: #dc2626; }

.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-900 { background-color: #111827; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-red-50 { background-color: #fef2f2; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-orange-100 { background-color: #ffedd5; }

/* ===== Borders & Rounded ===== */
.border { border: 1px solid #e5e7eb; }
.border-b { border-bottom: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.border-2 { border-width: 2px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-800 { border-color: #1f2937; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-600 { border-color: #2563eb; }
.border-red-100 { border-color: #fee2e2; }
.border-green-100 { border-color: #dcfce7; }
.border-white { border-color: #fff; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* ===== Shadows ===== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* ===== Sizing ===== */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover:not(:disabled) { background: #1d4ed8; }
.btn-outline { background: #fff; color: #2563eb; border: 1px solid #2563eb; }
.btn-outline:hover:not(:disabled) { background: #f9fafb; }
.btn-white { background: #fff; color: #2563eb; }
.btn-white:hover:not(:disabled) { background: #f3f4f6; }
.btn-dark { background: #111827; color: #fff; }
.btn-dark:hover:not(:disabled) { background: #1f2937; }
.btn-ghost { background: transparent; color: #374151; border: 1px solid #d1d5db; }
.btn-ghost:hover:not(:disabled) { background: #f9fafb; }

/* ===== Nav ===== */
.site-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.2s ease;
}
.site-nav:hover { box-shadow: 0 1px 8px rgb(0 0 0 / 0.06); }
.site-nav .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 4rem; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 0.5rem;
  color: #fff;
}
.nav-logo-icon svg { width: 1.125rem; height: 1.125rem; }
.site-nav .nav-links { display: none; align-items: center; gap: 1.75rem; }
.site-nav .nav-links a {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s;
  position: relative;
}
.site-nav .nav-links a:hover { color: #2563eb; }
.site-nav .nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: #2563eb;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.site-nav .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(37,99,235,0.3);
  transition: all 0.15s ease;
}
.nav-cta:hover { box-shadow: 0 2px 8px rgba(37,99,235,0.4); transform: translateY(-1px); }
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #374151;
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-menu {
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.mobile-menu a {
  display: block;
  padding: 0.625rem 0;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}
.mobile-menu a:hover { color: #2563eb; }
.sub-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.sub-nav .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 4rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-gradient { background: linear-gradient(180deg, #eff6ff, #fff); }

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* ===== Pricing ===== */
.pricing-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.15s;
}
.pricing-card:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.pricing-card.featured { border: 2px solid #2563eb; position: relative; }
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== FAQ / Details ===== */
.faq-item {
  margin-bottom: 1rem;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  transition: border-color 0.15s;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: #2563eb; margin-left: 1rem; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { border-color: #bfdbfe; }
.faq-item .faq-answer { padding: 0 1.5rem 1.5rem; color: #4b5563; }

/* ===== CTA ===== */
.cta-section { background: #2563eb; }

/* ===== Forms ===== */
.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline: none;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.form-input:focus { box-shadow: 0 0 0 2px #2563eb40; border-color: #2563eb; }

/* ===== Footer ===== */
.site-footer { background: #111827; color: #fff; }
.site-footer a { color: #9ca3af; transition: color 0.15s; }
.site-footer a:hover { color: #fff; }

/* ===== Code ===== */
code {
  display: block;
  background: #f3f4f6;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}
.code-dark {
  background: #111827;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.code-dark pre {
  color: #4ade80;
  font-size: 0.875rem;
  overflow-x: auto;
  white-space: pre;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

/* ===== Misc utilities ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.transition { transition: all 0.15s ease; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.opacity-70 { opacity: 0.7; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }
.transform { transform: translateX(0); }
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }
.left-half { left: 50%; transform: translateX(-50%); }

/* Icon circles */
.icon-circle {
  width: 4rem; height: 4rem;
  background: #dbeafe;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle-sm {
  width: 3rem; height: 3rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step circles */
.step-circle {
  width: 4rem; height: 4rem;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Star rating */
.stars { color: #2563eb; }

/* Pill/badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Checkmark list */
.check-list li {
  display: flex;
  align-items: flex-start;
}
.check-list .check {
  color: #2563eb;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Table */
.table-simple th { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid #e5e7eb; }
.table-simple td { padding: 0.5rem 0; border-bottom: 1px solid #e5e7eb; }
.table-simple tr:last-child td { border-bottom: none; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:text-5xl { font-size: 3rem; line-height: 1.15; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1.1; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .site-nav .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
  .mobile-menu { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* ===== Hero Upgrade ===== */
.hero {
  background: linear-gradient(160deg, #0a0f1e 0%, #0f1d3d 35%, #162a5a 60%, #1e40af 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero .hero-bg {
  background: none;
  opacity: 1;
}
.hero .hero-bg::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.03) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content { animation: heroFadeUp 0.7s ease-out; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #4ade80;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: 3.25rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.025em;
}
.hero-title .hero-accent {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #94a3b8;
}
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero .trust-item {
  color: #94a3b8;
}
.hero .trust-item svg {
  color: #60a5fa;
}
.trust-divider {
  width: 1px;
  height: 1rem;
  background: rgba(148,163,184,0.2);
}
.btn-glow {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  box-shadow: 0 0 24px rgba(37,99,235,0.35), 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 36px rgba(37,99,235,0.5), 0 6px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-outline-hero {
  background: rgba(255,255,255,0.04);
  color: #e2e8f0;
  border: 1px solid rgba(148,163,184,0.25);
  backdrop-filter: blur(4px);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(148,163,184,0.45);
}
.hero-mockup {
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  animation: mockupFadeUp 0.8s ease-out 0.2s both;
}
@keyframes mockupFadeUp {
  from { opacity: 0; transform: translateY(2rem) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.mockup-bar {
  background: rgba(30,41,59,0.8);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(148,163,184,0.08);
}
.mockup-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
}
.mockup-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mockup-stat {
  background: rgba(30,41,59,0.4);
  border: 1px solid rgba(148,163,184,0.08);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: border-color 0.2s ease;
}
.mockup-stat:hover { border-color: rgba(148,163,184,0.18); }
.mockup-stat .stat-label {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.mockup-stat .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e2e8f0;
}
.mockup-stat .stat-change {
  font-size: 0.7rem;
  color: #4ade80;
  margin-top: 0.125rem;
}
.mockup-table {
  margin-top: 1rem;
  grid-column: 1 / -1;
}
.mockup-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.06);
  font-size: 0.75rem;
  color: #94a3b8;
}
.mockup-table-row.header {
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}
.mockup-table-row .asset-name { color: #e2e8f0; }
.status-dot {
  display: inline-block;
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  margin-right: 0.375rem;
}
.status-dot.active { background: #4ade80; }
.status-dot.warning { background: #fbbf24; }
.status-dot.inactive { background: #64748b; }

@media (min-width: 768px) {
  .hero-title { font-size: 4.75rem; line-height: 1.05; }
  .hero-sub { font-size: 1.35rem; }
}
@media (max-width: 640px) {
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-table-row { grid-template-columns: 1fr 1fr; }
  .mockup-table-row > :nth-child(3),
  .mockup-table-row > :nth-child(4) { display: none; }
  .trust-divider { display: none; }
  .hero-trust-bar { gap: 0.75rem; }
}
