/* ============================================================
   ACCESSOS PAGE
   ============================================================ */

/* Product accent stripe (signals "product page", not service page) */
.aos-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-vivid) 35%, var(--amber) 100%);
  position: relative;
  z-index: 2;
}

/* AccessOS-specific footer treatment */
.aos-footer .footer-content {
  /* keep default footer grid, no override */
}

.aos-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.aos-wordmark {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-vivid) 0%, var(--amber-vivid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BMS Hero */
.aos-hero {
  /* padding standardised globally */
  text-align: center;
  
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.aos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--gradient-mesh);
  background-size: 100% 100%;
  pointer-events: none;
}

.aos-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(86, 180, 233, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.aos-hero .container {
  position: relative;
  z-index: 1;
}

.aos-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.aos-hero-content {
  text-align: left;
}

.aos-hero-content .aos-label {
  text-align: left;
}

.aos-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* AccessOS dashboard hero card — brand-styled (cyan→amber stripe + clean header) */
.aos-visual-card {
  width: 100%;
  max-width: 400px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.18), 0 8px 20px rgba(10, 37, 64, 0.08);
  position: relative;
}

/* Brand-thread stripe at top (matches AccessOS accent + Ships gradient + wordmark) */
.aos-v-brand-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-vivid) 45%, var(--amber-vivid) 100%);
}

.aos-v-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aos-v-title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.aos-v-title-eyebrow {
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.aos-v-eb-sep {
  opacity: 0.4;
}

.aos-v-title-eyebrow .aos-v-dot {
  width: 6px;
  height: 6px;
}

.aos-v-title {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.aos-v-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.aos-v-dot--green {
  background: #28c840;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.18);
  animation: statusPulse 2s ease-in-out infinite;
}

.aos-v-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aos-v-stat {
  text-align: center;
}

.aos-v-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.aos-v-anim-1 { animation-delay: 0.3s; }
.aos-v-anim-2 { animation-delay: 0.5s; }
.aos-v-anim-3 { animation-delay: 0.7s; }
.aos-v-anim-4 { animation-delay: 1.0s; }
.aos-v-anim-5 { animation-delay: 1.2s; }
.aos-v-anim-6 { animation-delay: 1.4s; }
.aos-v-anim-7 { animation-delay: 1.6s; }

.aos-v-stat span:last-child {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.aos-v-activity {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aos-v-row {
  display: grid;
  grid-template-columns: 32px 1fr 36px;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  opacity: 0;
  animation: slideUp 0.4s var(--ease-out-expo) forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Highlight on a freshly-added row (fades out after 1.4s) */
.aos-v-row-new {
  background: linear-gradient(90deg, rgba(86,180,233,0.18) 0%, rgba(86,180,233,0) 80%);
  border-radius: 4px;
  margin: 0 -6px;
  padding-left: 6px;
  padding-right: 6px;
  transition: background 1s ease, margin 1s ease, padding 1s ease;
}

/* Brief bounce on the Active counter when it ticks — uses transition, not animation,
   so it doesn't compete with the entrance fadeIn animation (which kept opacity at 1) */
.aos-v-stat-num {
  transition: transform 0.45s var(--ease-out-expo, ease-out), color 0.45s ease-out;
}

.aos-v-tick {
  transform: scale(1.18);
  color: var(--blue-vivid);
}

.aos-v-badge {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-align: center;
  letter-spacing: 0.04em;
}

.aos-v-badge--in {
  background: rgba(40, 200, 64, 0.15);
  color: #28c840;
}

.aos-v-badge--out {
  background: rgba(255, 95, 87, 0.15);
  color: #ff5f57;
}

.aos-v-name {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  width: 70%;
}

.aos-v-time {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

.aos-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--blue-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.aos-hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.aos-hero-subtitle {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--steel);
  letter-spacing: 0.02em;
  margin-bottom: 8px !important;
}

.aos-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 44px;
  line-height: 1.7;
}

.aos-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.aos-hero-stat {
  text-align: center;
}

.aos-hero-stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.aos-hero-stat span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* BMS Challenge */
.aos-challenge {
  padding: 96px 0;
}

.aos-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aos-problem {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), border-color 0.35s;
}

.aos-problem:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.aos-problem-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--blue);
}

.aos-problem h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.aos-problem p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* BMS Modules */
.aos-modules {
  padding: 96px 0;
  background: var(--light-bg);
}

.aos-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aos-module {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), border-color 0.35s;
}

.aos-module:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.aos-module-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  transition: background 0.3s, transform 0.3s;
}

.aos-module:hover .aos-module-icon {
  background: rgba(86, 180, 233, 0.22);
  transform: scale(1.05);
}

.aos-module h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.aos-module p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* BMS Audience */
.aos-audience {
  padding: 96px 0;
  background: var(--gradient-navy);
  position: relative;
}

.aos-audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 256px 256px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.aos-audience .container {
  position: relative;
  z-index: 1;
}

.aos-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aos-audience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.aos-audience-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(86, 180, 233, 0.25);
  transform: translateY(-3px);
}

.aos-audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.aos-audience-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.aos-audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.aos-audience-tags span {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(86, 180, 233, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(86, 180, 233, 0.15);
}

/* BMS Flow */
.aos-flow {
  padding: 96px 0;
}

/* Permission matrix (replaces aos-flow-grid card layout) */
.aos-matrix {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  overflow-x: auto;
}

.aos-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  text-align: center;
}

.aos-matrix-table thead th {
  padding: 12px 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.aos-matrix-table thead .aos-matrix-rolehead {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.aos-matrix-table tbody tr:nth-child(even) {
  background: rgba(86, 180, 233, 0.03);
}

.aos-matrix-table tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
}

.aos-matrix-table tbody tr:last-child td {
  border-bottom: none;
}

.aos-matrix-role {
  text-align: left;
  padding: 14px 16px !important;
}

.aos-matrix-role strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 2px;
}

.aos-matrix-role span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.aos-cell {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  vertical-align: middle;
}

.aos-cell-full {
  background: var(--blue);
}

.aos-cell-read {
  background: transparent;
  border: 1.5px solid var(--blue);
}

.aos-cell-scoped {
  background: var(--blue);
  opacity: 0.45;
}

.aos-cell-none {
  width: 10px;
  height: 1.5px;
  border-radius: 0;
  background: var(--border);
}

.aos-matrix-legend {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.aos-matrix-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .aos-matrix {
    padding: 18px 8px;
  }
  .aos-matrix-table {
    min-width: 560px;
  }
  .aos-matrix-role span {
    display: none;
  }
}

.aos-flow-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}

.aos-flow-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.aos-flow-type {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 8px;
}

.aos-flow-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.aos-flow-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.aos-flow-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin-bottom: 20px;
}

.aos-flow-steps li {
  counter-increment: step;
  padding: 14px 0 14px 40px;
  border-top: 1px solid var(--border);
  position: relative;
}

.aos-flow-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aos-flow-steps li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.aos-flow-steps li span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.aos-flow-note {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
}

.aos-flow-note--green {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
}

.aos-flow-note--navy {
  background: rgba(10, 37, 64, 0.06);
  color: var(--navy);
}

/* Route 4-step list (uniform across all 3 routes in Three Ways section) */
.aos-route-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.aos-route-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

.aos-route-list li:nth-child(even) {
  background: rgba(86, 180, 233, 0.04);
}

.aos-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.aos-step-text {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

/* BMS Trust */
.aos-trust {
  padding: 96px 0;
  background: var(--light-bg);
}

.aos-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.aos-trust-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}

.aos-trust-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.aos-trust-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}

.aos-trust-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.aos-trust-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.aos-deploy {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.aos-deploy strong {
  color: var(--navy);
}

/* BMS Why */
.aos-why {
  padding: 96px 0;
  background: var(--gradient-navy);
  position: relative;
}

.aos-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 256px 256px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.aos-why .container {
  position: relative;
  z-index: 1;
}

.aos-why-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.aos-why-item {
  flex: 1;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 24px 16px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.aos-why-item:hover strong {
  background: var(--blue-vivid);
  box-shadow: 0 0 0 6px rgba(86, 180, 233, 0.15);
}

.aos-why-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy-deep);
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}

.aos-why-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: rgba(86, 180, 233, 0.35);
  z-index: 1;
}

.aos-why-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.aos-why-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .aos-why-grid {
    flex-direction: column;
    gap: 14px;
  }
  .aos-why-item::after {
    display: none;
  }
}

/* BMS Dashboard Mockups */
.aos-screens {
  padding: 96px 0;
  background: var(--light-bg);
}

.aos-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aos-screens-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 32px;
  font-weight: 500;
}

/* Mockup shared */
.mockup {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}

.mockup:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.1);
}

.mockup-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0.02em;
}

.mockup-body {
  display: flex;
  min-height: 200px;
}

/* Sidebar */
.mockup-sidebar {
  width: 48px;
  background: var(--navy-deep);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mockup-sidebar-item {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.mockup-sidebar-item.active {
  background: rgba(86, 180, 233, 0.25);
  border: 1px solid rgba(86, 180, 233, 0.4);
}

/* Main content */
.mockup-main {
  flex: 1;
  padding: 16px;
}

.mockup-main-full {
  padding: 16px;
}

/* Stats row */
.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-stats-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.mockup-stat-card {
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.mockup-stat-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.mockup-stat-green { background: linear-gradient(135deg, #059669, #10b981); }
.mockup-stat-purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.mockup-stat-navy { background: linear-gradient(135deg, var(--navy), #0d2f52); }

.mockup-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.mockup-stat-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* Table */
.mockup-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.mockup-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 8px 12px;
  background: var(--light-bg);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.mockup-bar-text {
  display: block;
  width: 70%;
  height: 8px;
  background: rgba(10, 37, 64, 0.08);
  border-radius: 4px;
}

.mockup-bar-short {
  display: block;
  width: 40%;
  height: 8px;
  background: rgba(10, 37, 64, 0.06);
  border-radius: 4px;
}

.mockup-badge-active {
  font-size: 0.55rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
  text-align: center;
}

/* Visitor Invitations */
.mockup-invite-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-invite-stat {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  background: var(--light-bg);
}

.mockup-invite-num {
  display: block;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}

.mockup-invite-stat span:last-child {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mockup-c-yellow { color: #d97706 !important; }
.mockup-c-green { color: #059669 !important; }
.mockup-c-blue { color: #2563eb !important; }
.mockup-c-red { color: #dc2626 !important; }

.mockup-invite-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-invite-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.mockup-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.mockup-badge-pending {
  font-size: 0.55rem;
  font-weight: 600;
  color: #d97706;
  background: rgba(217, 119, 6, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
}

.mockup-badge-approved {
  font-size: 0.55rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
}

.mockup-badge-checked {
  font-size: 0.55rem;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
}

/* QR Scanner */
.mockup-scanner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 8px;
}

.mockup-scanner-viewport {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.mockup-scanner-qr {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
}

.mockup-scanner-corners {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(86, 180, 233, 0.5);
  border-radius: 4px;
}

.mockup-scanner-line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(86, 180, 233, 0.6);
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  0%, 100% { top: 16px; }
  50% { top: calc(100% - 16px); }
}

.mockup-scanner-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.mockup-scanner-results {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.mockup-scanner-stat {
  text-align: center;
}

.mockup-scanner-stat span:first-child {
  display: block;
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.mockup-scanner-stat span:last-child {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* BMS Responsive */
@media (max-width: 768px) {
  .aos-hero {
    padding: 120px 0 56px;
    min-height: auto;
  }

  .aos-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aos-hero-content {
    text-align: center;
  }

  .aos-hero-visual {
    justify-content: center !important;
  }

  .aos-visual-card {
    max-width: 280px;
  }

  .aos-hero h1 {
    font-size: 2.4rem;
  }

  .aos-hero-stats {
    gap: 24px;
  }

  .aos-hero-stat strong {
    font-size: 1.8rem;
  }

  .aos-problems-grid,
  .aos-audience-grid,
  .aos-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aos-modules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aos-flow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aos-flow-card {
    padding: 24px 20px;
  }

  .aos-trust-grid {
    grid-template-columns: 1fr;
  }

  .aos-screens {
    padding: 64px 0;
  }

  .aos-screens-grid {
    grid-template-columns: 1fr;
  }

  .mockup-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-invite-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .aos-challenge,
  .aos-modules,
  .aos-audience,
  .aos-flow,
  .aos-trust,
  .aos-why {
    padding: 64px 0;
  }
}

@media (max-width: 400px) {
  .aos-hero h1 {
    font-size: 2rem;
  }

  .aos-hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}
