/* ── Loading Screen ─────────────────────────────────────────────────────────── */
#loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(248, 250, 252, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.75s ease;
}

#loading-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 220px;
  margin-left: -100px;
  margin-top: -110px;
  z-index: 10000;
  display: block;
  transform-origin: center center;
  animation: logo-breathe 1.6s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.12); }
}

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --brand:        #0EA5E9;
  --brand-dark:   #0284C7;
  --brand-light:  #E0F2FE;
  --slate-900:    #0F172A;
  --slate-800:    #1E293B;
  --slate-700:    #334155;
  --slate-600:    #475569;
  --slate-500:    #64748B;
  --slate-400:    #94A3B8;
  --slate-300:    #CBD5E1;
  --slate-200:    #E2E8F0;
  --slate-100:    #F1F5F9;
  --slate-50:     #F8FAFC;
  --white:        #FFFFFF;
  --radius-sm:    0.5rem;
  --radius-md:    0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.25rem;
  --radius-2xl:   1.5rem;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-brand: 0 4px 14px rgba(14,165,233,0.35);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 5.5rem; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 5.5rem;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
.font-orbitron { font-family: 'Orbitron', sans-serif; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand);
  color: var(--white);
  font-weight: 600; font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-brand);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 6px 20px rgba(14,165,233,0.45); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  color: var(--slate-700);
  font-weight: 500; font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--slate-200);
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--slate-50); border-color: var(--slate-300); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--brand); font-weight: 600; font-size: 0.9375rem;
  transition: gap 0.15s;
}
.btn-ghost:hover { gap: 0.625rem; }

/* ── Badges ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.badge-brand { background: rgba(14,165,233,0.1); color: var(--brand); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ── Section Headers ───────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Card Base ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* NAV                                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1160px;
  z-index: 100;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(14,165,233,0.12), 0 1px 4px rgba(14,165,233,0.06);
  overflow: hidden;
}
.nav-inner {
  display: flex; align-items: center;
  height: 64px; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1.0625rem;
  color: var(--slate-900);
  flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-tagline {
  font-size: 0.6875rem; font-weight: 400;
  color: var(--slate-400);
  padding-left: 0.75rem;
  margin-left: 0.25rem;
  border-left: 1px solid var(--slate-200);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--slate-600);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-actions {
  display: flex; align-items: center; gap: 0.75rem;
  margin-left: 1.5rem;
}
.nav-signin {
  font-size: 0.875rem; font-weight: 500;
  color: var(--slate-600);
  padding: 0.375rem 0.875rem;
  transition: color 0.15s;
}
.nav-signin:hover { color: var(--slate-900); }
.nav-cta {
  font-size: 0.875rem; font-weight: 600;
  background: var(--brand);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px rgba(14,165,233,0.3);
  transition: background 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { background: var(--brand-dark); box-shadow: 0 4px 14px rgba(14,165,233,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-700); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column; gap: 0.25rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--slate-100);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9375rem; font-weight: 500;
  color: var(--slate-700);
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--slate-50); }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* HERO                                                                        */
/* ─────────────────────────────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(160deg, var(--white) 0%, #F0F9FF 50%, var(--white) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge { margin-bottom: 1.25rem; }
.hero-badge .badge { font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; }
.hero-badge .badge-dot { width: 6px; height: 6px; }
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--brand); }
.hero-motto {
  font-size: 1.125rem; font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 480px;
}
.hero-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.hero-bullet-item {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--slate-600);
}
.hero-bullet-item .bullet-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(14,165,233,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-bullet-item .bullet-check svg { width: 9px; height: 9px; color: var(--brand); }
.hero-audience {
  font-size: 0.75rem; font-weight: 500;
  color: var(--slate-400);
  margin-bottom: 1.75rem;
}
.hero-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--slate-400);
  display: flex; align-items: center; gap: 0.375rem;
}
.hero-note svg { width: 14px; height: 14px; color: var(--brand); }

/* ── App Mockup ─────────────────────────────────────────────────────────────── */
.app-mockup-wrap {
  position: relative;
}
.app-mockup-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at 60% 40%, rgba(14,165,233,0.12), transparent 70%);
  pointer-events: none; z-index: 0;
}
.app-mockup {
  position: relative; z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  font-size: 0.7rem;
}
.mock-chrome {
  display: flex; align-items: center; gap: 0.75rem;
  background: #F1F5F9;
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid var(--slate-200);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FEBC2E; }
.mock-dots span:nth-child(3) { background: #28C840; }
.mock-url {
  flex: 1; background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem; color: var(--slate-400);
  font-family: 'Inter', sans-serif;
}
.mock-body { display: flex; height: 320px; }
.mock-sidebar {
  width: 120px; flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--slate-100);
  display: flex; flex-direction: column;
}
.mock-logo {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0 0.75rem;
  height: 40px;
  border-bottom: 1px solid var(--slate-100);
  flex-shrink: 0;
}
.mock-logo-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mock-logo-icon svg { width: 20px; height: 20px; fill: #0F172A; }
.mock-logo-text-wrap { min-width: 0; }
.mock-logo-org { font-weight: 600; font-size: 0.5625rem; color: var(--slate-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-logo-sub { font-size: 0.4375rem; color: var(--slate-400); margin-top: 1px; }
.mock-nav {
  flex: 1; padding: 0.375rem 0;
  display: flex; flex-direction: column;
}
.mock-nav-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4375rem 0.75rem;
  color: var(--slate-500);
  font-size: 0.625rem; font-weight: 500;
  cursor: default;
}
.mock-nav-item.active {
  background: rgba(14,165,233,0.1);
  color: var(--brand);
}
.mock-nav-item svg { width: 11px; height: 11px; flex-shrink: 0; stroke: var(--slate-400); }
.mock-nav-item.active svg { stroke: var(--brand); }
.mock-user-area {
  border-top: 1px solid var(--slate-100);
  padding: 0.375rem 0;
}
.mock-user-row {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem;
}
.mock-user-avatar {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(14,165,233,0.1);
  color: var(--brand);
  font-size: 0.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-user-name { font-size: 0.5625rem; font-weight: 500; color: var(--slate-700); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-content { flex: 1; overflow: hidden; display: flex; flex-direction: column; background: #F8FAFC; }
.mock-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--slate-100);
}
.mock-page-title { font-weight: 700; font-size: 0.8125rem; color: var(--slate-900); font-family: 'Orbitron', sans-serif; }
.mock-page-sub { font-size: 0.625rem; color: var(--slate-400); margin-top: 1px; }
.mock-btn {
  background: var(--brand); color: white;
  font-size: 0.625rem; font-weight: 600;
  padding: 0.3125rem 0.625rem;
  border-radius: 8px;
  white-space: nowrap;
}
.mock-tabs {
  display: flex; gap: 0.125rem;
  padding: 0 0.625rem;
  border-bottom: 1px solid var(--slate-100);
}
.mock-tab {
  font-size: 0.625rem; font-weight: 500;
  padding: 0.5rem 0.5rem;
  color: var(--slate-400);
  border-bottom: 2px solid transparent;
  cursor: default; white-space: nowrap;
}
.mock-tab.active { color: var(--brand); border-color: var(--brand); font-weight: 600; }
.mock-table { width: 100%; border-collapse: collapse; flex: 1; }
.mock-table thead th {
  font-size: 0.5625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--slate-400); padding: 0.375rem 0.5rem;
  text-align: left; border-bottom: 1px solid var(--slate-100);
  background: var(--white);
}
.mock-table tbody tr { border-bottom: 1px solid var(--slate-50); }
.mock-table tbody tr:hover { background: rgba(248,250,252,0.8); }
.mock-table tbody td { padding: 0.4375rem 0.5rem; vertical-align: middle; }
.mock-customer-name { font-weight: 600; font-size: 0.6875rem; color: var(--slate-900); }
.mock-customer-email { font-size: 0.5625rem; color: var(--slate-400); }
.mock-items-count { font-size: 0.6875rem; color: var(--slate-500); }
.mock-price { font-weight: 600; font-size: 0.6875rem; color: var(--slate-900); }
.mock-lead { font-size: 0.6875rem; color: var(--slate-400); }
.status-pill {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  padding: 0.1875rem 0.5rem;
  font-size: 0.5625rem; font-weight: 700;
  white-space: nowrap;
}
.status-pill.pending        { background: #FEF3C7; color: #B45309; }
.status-pill.printing       { background: #DBEAFE; color: #1D4ED8; }
.status-pill.post-proc      { background: #EDE9FE; color: #6D28D9; }
.status-pill.fulfilled      { background: #DCFCE7; color: #15803D; }
.status-pill.shipped        { background: var(--slate-100); color: var(--slate-500); }
.mock-table-footer {
  font-size: 0.5625rem; color: var(--slate-400);
  padding: 0.375rem 0.875rem;
  border-top: 1px solid var(--slate-100);
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* TRUST BAR                                                                   */
/* ─────────────────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 1.75rem 0;
}
.trust-inner {
  display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.8125rem; font-weight: 500;
  color: var(--slate-400); white-space: nowrap;
}
.trust-divider {
  width: 1px; height: 24px;
  background: var(--slate-200);
  flex-shrink: 0;
}
.trust-logos {
  display: flex; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-size: 0.875rem; font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.trust-logo:hover { color: var(--slate-400); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* PROBLEM / SOLUTION                                                          */
/* ─────────────────────────────────────────────────────────────────────────── */
.ps-list {
  list-style: none;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ps-pair {
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ps-solution {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: rgba(14,165,233,0.05);
  border-bottom: 1px solid rgba(14,165,233,0.12);
  flex: 1;
}
.ps-problem {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
}
.ps-icon {
  width: 17px; height: 17px;
  flex-shrink: 0; margin-top: 2px;
}
.ps-icon-x     { stroke: var(--slate-300); }
.ps-icon-check { stroke: var(--brand); }
.ps-problem span {
  font-size: 0.8125rem;
  color: var(--slate-400);
  line-height: 1.5;
  text-decoration: line-through;
  text-decoration-color: var(--slate-300);
}
.ps-solution div {
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.6;
}
.ps-solution strong {
  color: var(--slate-900);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* FEATURES                                                                    */
/* ─────────────────────────────────────────────────────────────────────────── */
.features-bg { background: var(--white); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--slate-100);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: var(--brand); letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700; color: var(--slate-900);
  line-height: 1.25; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.feature-desc {
  font-size: 1rem; color: var(--slate-500);
  line-height: 1.75; margin-bottom: 1.5rem;
}
.feature-bullets { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-bullet {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9rem; color: var(--slate-600); line-height: 1.5;
}
.bullet-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0; margin-top: 0.45rem;
}
.feature-caps { display: flex; flex-direction: column; gap: 0; }
.feature-cap-block {
  border-bottom: 1px solid var(--slate-100);
  padding: 0.75rem 0;
}
.feature-cap-block:last-child { border-bottom: none; }
.feature-cap-toggle {
  display: flex; align-items: center; gap: 0.625rem;
  width: 100%; text-align: left;
  cursor: pointer; background: none; border: none;
  padding: 0;
}
.feature-cap-toggle:hover .cap-title { color: var(--brand); }
.cap-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.cap-title {
  font-size: 0.9375rem; font-weight: 700;
  color: var(--slate-900); line-height: 1.3;
  flex: 1; transition: color 0.15s;
}
.cap-chevron {
  width: 16px; height: 16px;
  color: var(--slate-400); flex-shrink: 0;
  transition: transform 0.25s;
}
.feature-cap-block.open .cap-chevron { transform: rotate(180deg); }
.feature-cap-block.open .cap-dot { background: var(--brand-dark); }
.feature-cap-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1.25rem;
}
.feature-cap-block.open .feature-cap-body { max-height: 200px; }
.feature-cap-body p {
  padding-top: 0.5rem;
  font-size: 0.875rem; color: var(--slate-500); line-height: 1.65;
}

/* Feature visuals */
.feature-visual-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 0.7rem;
}
.fv-header {
  background: var(--slate-800); padding: 0.625rem 0.875rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.fv-dots { display: flex; gap: 4px; }
.fv-dots span { width: 8px; height: 8px; border-radius: 50%; }
.fv-dots span:nth-child(1) { background: #FF5F57; }
.fv-dots span:nth-child(2) { background: #FEBC2E; }
.fv-dots span:nth-child(3) { background: #28C840; }
.fv-title { font-size: 0.625rem; color: rgba(255,255,255,0.5); font-family: 'Orbitron', sans-serif; font-weight: 600; }
.fv-body { padding: 1rem; }

/* Inventory visual */
.inv-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.inv-kpi {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 0.625rem;
  padding: 0.625rem 0.75rem;
}
.inv-kpi-label { font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate-400); }
.inv-kpi-value { font-size: 1rem; font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-top: 0.125rem; }
.spool-grid { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.spool-card {
  width: 90px; background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.spool-accent { height: 3px; width: 100%; }
.spool-inner { padding: 0.5rem; }
.spool-row { display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.375rem; }
.spool-color-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.08); }
.spool-name { font-weight: 700; font-size: 0.5625rem; color: var(--slate-900); }
.spool-brand { font-size: 0.5rem; color: var(--slate-400); font-weight: 400; }
.spool-weight { font-size: 0.625rem; font-weight: 600; color: var(--slate-700); }
.spool-low { background: #FEF3C7; color: #B45309; font-size: 0.4375rem; font-weight: 700; text-transform: uppercase; padding: 0.125rem 0.375rem; border-radius: 999px; margin-left: auto; }

/* Receipt / pricing visual */
.receipt-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 0.75rem;
  overflow: hidden;
}
.receipt-header {
  background: var(--slate-50);
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--slate-100);
  font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--slate-400);
}
.receipt-rows { padding: 0.625rem 0.875rem; }
.receipt-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--slate-50);
  font-size: 0.625rem;
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row-label { color: var(--slate-500); font-weight: 500; }
.receipt-row-value { color: var(--slate-900); font-weight: 600; }
.receipt-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0.875rem;
  border-top: 2px solid var(--slate-200);
  margin-top: 0.25rem;
}
.receipt-total-label { font-size: 0.625rem; font-weight: 700; color: var(--slate-700); text-transform: uppercase; letter-spacing: 0.07em; }
.receipt-total-value { font-size: 1rem; font-weight: 800; color: var(--slate-900); }
.config-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 0.75rem; }
.config-item { background: var(--slate-50); border-radius: 0.5rem; padding: 0.5rem 0.625rem; }
.config-key { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate-400); }
.config-val { font-size: 0.6875rem; font-weight: 700; color: var(--slate-800); margin-top: 0.125rem; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* TESTIMONIALS                                                                */
/* ─────────────────────────────────────────────────────────────────────────── */
.testimonials-bg { background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: #F59E0B; font-size: 0.875rem; }
.testimonial-text {
  font-size: 0.9375rem; color: var(--slate-600);
  line-height: 1.75; flex: 1; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.reviewer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
}
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  color: white; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.875rem; color: var(--slate-900); }
.reviewer-role { font-size: 0.8125rem; color: var(--slate-400); margin-top: 1px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* PRICING                                                                     */
/* ─────────────────────────────────────────────────────────────────────────── */
.pricing-bg { background: var(--white); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 3rem;
}
.toggle-label { font-size: 0.9375rem; font-weight: 500; color: var(--slate-500); }
.toggle-label.active { color: var(--slate-900); font-weight: 600; }
.toggle-switch {
  position: relative; width: 44px; height: 24px;
  background: var(--brand); border-radius: 999px;
  cursor: pointer; transition: background 0.2s;
}
.toggle-switch::after {
  content: ''; position: absolute;
  top: 2px; left: 22px;
  width: 20px; height: 20px;
  background: white; border-radius: 50%;
  transition: left 0.2s;
}
.toggle-switch.annual::after { left: 2px; }
.pricing-grid {
  display: flex;
  justify-content: center;
}
.pricing-card {
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex; flex-direction: column;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card-solo {
  max-width: 560px;
  width: 100%;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12), var(--shadow-md);
}
.plan-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.plan-solo-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--brand);
}
.plan-billing-tag {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem;
}
.plan-billing-tag-type {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--slate-500);
}
.plan-billing-tag-save {
  background: rgba(14,165,233,0.1);
  color: var(--brand);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.2rem 0.625rem; border-radius: 999px;
  transition: opacity 0.2s;
}
.plan-billing-tag-save.hidden { opacity: 0; pointer-events: none; }
.plan-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.price-prefix { font-size: 0.875rem; font-weight: 700; color: var(--slate-500); letter-spacing: 0.05em; margin-bottom: 0.3rem; align-self: flex-end; }
.price-amount { font-size: 2.75rem; font-weight: 800; line-height: 1; color: var(--slate-900); letter-spacing: -0.03em; }
.price-period { font-size: 0.875rem; color: var(--slate-400); }
.plan-billing-note { font-size: 0.8125rem; color: var(--slate-400); margin-bottom: 1.25rem; }
.plan-trial-note {
  font-size: 0.8125rem; color: var(--slate-400);
  text-align: center; margin-bottom: 1.75rem;
}
.plan-cta {
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9375rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  margin-bottom: 0.625rem;
  transition: all 0.15s;
  width: 100%;
}
.plan-cta-primary {
  background: var(--brand); color: white;
  box-shadow: var(--shadow-brand);
}
.plan-cta-primary:hover { background: var(--brand-dark); }
.plan-features-title {
  font-size: 0.75rem; font-weight: 700;
  color: var(--slate-500); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 0.875rem;
}
.plan-features { display: flex; flex-direction: column; gap: 0.625rem; }
.plan-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.plan-feature {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: var(--slate-600);
}
.check-icon {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(14,165,233,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-icon svg { width: 9px; height: 9px; color: var(--brand); }
.plan-divider {
  border: none; border-top: 1px solid var(--slate-100);
  margin: 1.25rem 0;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* FAQ                                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */
.faq-bg { background: var(--slate-50); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem; font-weight: 600; color: var(--slate-900);
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--slate-50); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--slate-400);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 900px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: 0.9375rem; color: var(--slate-500);
  line-height: 1.75; border-top: 1px solid var(--slate-100); padding-top: 1rem;
}
.faq-answer p + p,
.faq-answer ul + p { border-top: none; padding-top: 0; margin-top: 0.75rem; }
.faq-answer ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  display: flex; flex-direction: column; gap: 0.3125rem;
}
.faq-answer li {
  font-size: 0.9375rem; color: var(--slate-500);
  line-height: 1.65; list-style: disc;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* CONTACT                                                                     */
/* ─────────────────────────────────────────────────────────────────────────── */
.contact-bg { background: var(--slate-50); }

/* Layout: phone card stacked above form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Phone card */
.contact-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  color: var(--slate-900);
  text-decoration: none;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--slate-300); }
.contact-card-primary { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,165,233,0.1), var(--shadow-sm); }
.contact-card-primary:hover { box-shadow: 0 0 0 3px rgba(14,165,233,0.15), var(--shadow-md); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-lg);
  background: rgba(14,165,233,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--brand); }
.contact-card-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate-400); margin-bottom: 0.25rem; }
.contact-card-value { font-size: 1.125rem; font-weight: 700; color: var(--slate-900); }

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.contact-form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
}
.contact-form-label span { color: var(--brand); }
.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--slate-900);
  background: var(--slate-50);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  box-sizing: border-box;
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
  background: var(--white);
}
.contact-form-textarea { resize: vertical; min-height: 110px; }
.contact-form-submit {
  align-self: flex-start;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-form-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
.contact-form-submit:active { transform: translateY(0); }
.contact-form-field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  min-height: 1em;
}
.contact-form-status-wrap {
  display: none;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.contact-form-status-wrap[data-fs-success] { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.contact-form-status-wrap[data-fs-error]   { background: #fff5f5; border: 1px solid #feb2b2; color: #9b1c1c; }
.contact-form-success { margin: 0; }

@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* FINAL CTA BANNER                                                            */
/* ─────────────────────────────────────────────────────────────────────────── */
.final-cta-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0C2847 100%);
  padding: 6rem 0;
  position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; text-align: center; }
.final-cta-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(14,165,233,0.15); color: #7DD3FC;
  font-size: 0.8125rem; font-weight: 600;
  padding: 0.375rem 1rem; border-radius: 999px;
  border: 1px solid rgba(14,165,233,0.25);
  margin-bottom: 1.5rem;
}
.final-cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; color: white;
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.final-cta-sub {
  font-size: 1.0625rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 540px; margin: 0 auto 2.5rem;
}
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand); color: white;
  font-weight: 700; font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 24px rgba(14,165,233,0.45);
  transition: all 0.15s;
}
.btn-primary-lg:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(14,165,233,0.5); }
.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-xl);
  transition: all 0.15s;
}
.btn-outline-lg:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.35); }
.final-cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.35);
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                      */
/* ─────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.5);
  padding: 3.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1.0625rem;
  color: white; margin-bottom: 0.875rem;
}
.footer-brand-desc { font-size: 0.875rem; line-height: 1.65; max-width: 260px; }
.footer-col-title {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-link:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.8125rem; color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* SCROLL ANIMATIONS                                                           */
/* ─────────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-tagline { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .app-mockup-wrap { max-width: 600px; margin: 0 auto; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse .feature-visual { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 3rem 0 2rem; }
  .section { padding: 3rem 0; }
  .section-sub { font-size: 0.9375rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card-solo { max-width: 100%; }
  .ps-list { grid-template-columns: 1fr; }
  .plan-features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Mockup */
  .mock-body { height: 280px; }
  .mock-sidebar { width: 70px; }
  .mock-nav-item span { display: none; }
  .mock-logo-text-wrap { display: none; }
  /* Hide Items + Lead columns — keep Customer, Status, Price */
  .mock-table th:nth-child(2), .mock-table td:nth-child(2),
  .mock-table th:nth-child(5), .mock-table td:nth-child(5) { display: none; }
  /* Trust */
  .trust-logos { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  /* Feature visuals */
  .inv-kpis { grid-template-columns: 1fr 1fr; }
  .config-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-inner { gap: 2rem; }
  .hero-title { font-size: 1.75rem; }
  .hero-sub { font-size: 0.875rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  /* Mockup: hide sidebar entirely, shrink height */
  .mock-sidebar { display: none; }
  .mock-body { height: 240px; }
  .app-mockup { font-size: 0.6rem; }
  /* On tiny screens keep only Customer + Status */
  .mock-table th:nth-child(4), .mock-table td:nth-child(4) { display: none; }
  .mock-topbar { padding: 0.5rem 0.625rem; }
  .mock-tabs { padding: 0 0.5rem; gap: 0.375rem; }
  /* Feature */
  .feature-title { font-size: 1.25rem !important; }
  .feature-desc { font-size: 0.875rem; }
  .feature-cap-block h3 { font-size: 0.875rem; }
  .fv-body { padding: 0.625rem; }
  /* Spool grid: 2 columns */
  .spool-grid { grid-template-columns: 1fr 1fr; }
  /* Config grid: 2 columns */
  .config-grid { grid-template-columns: 1fr 1fr; }
  /* Pricing */
  .pricing-card { padding: 1.5rem; }
  .price-amount { font-size: 2.25rem; }
  /* Final CTA */
  .final-cta-actions { flex-direction: column; align-items: center; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; max-width: 320px; justify-content: center; }
  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
}
