/* ==========================================================================
   ArahaAIS Modern Page – arco-modern.css
   Light-first, spacious, RaySuite-inspired design
   ========================================================================== */

.page-arco-modern {
  --am-primary: #bb0b0b;
  --am-primary-light: rgba(187, 11, 11, 0.08);
  --am-accent: #bb0b0b;
  --am-accent-light: rgba(230, 81, 0, 0.08);
  --am-navy: #0f172a;
  --am-navy-light: #1e293b;
  --am-surface: #ffffff;
  --am-surface-alt: #f8fafc;
  --am-border: #e2e8f0;
  --am-text: #0f172a;
  --am-text-secondary: #475569;
  --am-text-muted: #94a3b8;
  --am-radius: 16px;
  --am-radius-sm: 10px;
  --am-radius-lg: 24px;
  --am-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --am-shadow-lg: 0 20px 60px -12px rgba(15, 23, 42, 0.12);
  --am-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --am-font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.page-arco-modern {
  font-family: var(--am-font);
  background: var(--am-surface);
  color: var(--am-text);
}

.page-arco-modern::before,
.page-arco-modern::after { display: none; }

/* ─── Highlight Text ─── */
.am-highlight {
  color: var(--am-accent);
  position: relative;
}

/* ─── Badge ─── */
.am-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--am-primary);
  background: var(--am-primary-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(187, 11, 11, 0.12);
}

/* ─── Section Base ─── */
.am-section {
  padding: 6rem 0;
}
.am-section--alt {
  background: var(--am-surface);
}
@media (max-width: 768px) {
  .am-section { padding: 4rem 0; }
}

.am-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.am-section__title {
  font-family: var(--am-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--am-text);
  margin: 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.am-section__sub {
  font-size: 1.0625rem;
  color: var(--am-text-secondary);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ─── HERO ─── */
.am-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--am-surface);
}
@media (max-width: 768px) {
  .am-hero { padding: 8rem 0 3rem; }
}

.am-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .am-hero__grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
}

.am-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--am-primary);
  background: var(--am-primary-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(187, 11, 11, 0.12);
  margin-bottom: 1.5rem;
}

.am-hero__title {
  font-family: var(--am-font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--am-text);
  margin-bottom: 1.25rem;
}
@media (max-width: 480px) {
  .am-hero__title { font-size: 1.5rem; }
}

.am-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--am-text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.am-hero__desc {
  font-size: 1.0625rem;
  color: var(--am-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}
@media (max-width: 992px) {
  .am-hero__desc { margin-left: auto; margin-right: auto; }
}

.am-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .am-hero__actions { justify-content: center; }
}

.am-hero__logo {
  margin-top: 1rem;
}
.am-hero__logo img {
  max-width: 200px;
  height: auto;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
}

.am-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Floating stat cards */
.am-float-card {
  position: absolute;
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius-sm);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--am-shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: float 5s ease-in-out infinite;
}
.am-float-card--top { top: 10%; right: -10%; animation-delay: 0s; }
.am-float-card--bottom { bottom: 15%; left: -8%; animation-delay: 2s; }
@media (max-width: 768px) {
  .am-float-card { display: none; }
}
.am-float-card__val {
  font-family: var(--am-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--am-primary);
}
.am-float-card__lbl {
  font-size: 0.6875rem;
  color: var(--am-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ─── DARK SHOWCASE SECTION ─── */
.am-dark-showcase {
  background: var(--am-surface);
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.am-dark-showcase::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(187, 11, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.am-dark-showcase__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.am-dark-showcase__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--am-accent);
  background: var(--am-primary-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.am-dark-showcase__title {
  font-family: var(--am-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--am-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.am-dark-showcase__desc {
  font-size: 1.0625rem;
  color: var(--am-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.am-dark-showcase__frame {
  max-width: 1200px;
  margin: 0 auto;
  animation: am-frame-float 6s ease-in-out infinite;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.18));
}
@keyframes am-frame-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.am-browser {
  border-radius: var(--am-radius-lg);
  overflow: hidden;
  box-shadow: var(--am-shadow-lg);
  border: 1px solid var(--am-border);
}
.am-browser__bar {
  background: #f8fafc;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.am-browser__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.am-browser__dot--r { background: #ef4444; }
.am-browser__dot--y { background: #f59e0b; }
.am-browser__dot--g { background: #22c55e; }
.am-browser__url {
  margin-left: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-family: monospace;
  flex: 1;
  text-align: center;
}
.am-browser__body {
  background: #f1f5f9;
  height: calc(100vh - 330px);
  min-height: 460px;
  max-height: 660px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.am-browser__body img {
  width: 65%;
  height: auto;
  display: block;
}

/* ─── CSS DASHBOARD ─── */
.am-dash {
  display: flex;
  flex: 1;
  height: 100%;
  min-height: 0;
  font-family: var(--am-font);
  font-size: 0.8125rem;
  color: #1e293b;
  background: #f1f5f9;
  overflow: hidden;
}
.am-dash__sidebar {
  width: 190px;
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.am-dash__logo {
  padding: 0 1rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.5rem;
}
.am-dash__logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.am-dash__user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
}
.am-dash__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--am-primary);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  animation: am-avatar-ring 3s ease-in-out infinite;
}
@keyframes am-avatar-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(187,11,11,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(187,11,11,0); }
}
.am-dash__user strong { font-size: 0.75rem; color: #0f172a; display: block; }
.am-dash__user small { font-size: 0.625rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }

.am-dash__nav {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}
.am-dash__nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #64748b;
  font-size: 0.75rem;
  border-left: 3px solid transparent;
  cursor: default;
  transition: all 0.2s;
}
.am-dash__nav-item--active {
  color: #2563eb;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.05);
  border-left-color: #2563eb;
  animation: am-nav-shimmer 3s ease-in-out infinite;
}
@keyframes am-nav-shimmer {
  0%, 100% { background: rgba(37, 99, 235, 0.05); }
  50% { background: rgba(37, 99, 235, 0.12); }
}
.am-dash__logout {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-top: auto;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
}

.am-dash__main {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  min-height: 0;
}

/* Stat cards */
.am-dash__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0.875rem 0.875rem 0;
  flex-shrink: 0;
}
.am-dash__card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 3px solid transparent;
  animation: am-dash-pulse 3s ease-in-out infinite;
}
.am-dash__card--green { border-top-color: #22c55e; animation-delay: 0s; }
.am-dash__card--blue { border-top-color: #3b82f6; animation-delay: 0.5s; }
.am-dash__card--red { border-top-color: #ef4444; animation-delay: 1s; }
@keyframes am-dash-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
  50% { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
}
.am-dash__card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: am-icon-bounce 2.5s ease-in-out infinite;
}
.am-dash__card--green .am-dash__card-icon { animation-delay: 0s; }
.am-dash__card--blue .am-dash__card-icon { animation-delay: 0.4s; }
.am-dash__card--red .am-dash__card-icon { animation-delay: 0.8s; }
@keyframes am-icon-bounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.15) rotate(-5deg); }
  60% { transform: scale(1) rotate(3deg); }
}
.am-dash__card-icon--green { background: #22c55e; }
.am-dash__card-icon--blue { background: #3b82f6; }
.am-dash__card-icon--red { background: #ef4444; }
.am-dash__card-info { display: flex; flex-direction: column; }
.am-dash__card-label {
  font-size: 0.625rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.am-dash__card-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  animation: am-num-pop 2s ease-in-out infinite alternate;
}
.am-dash__card-num--red { color: #ef4444; }
@keyframes am-num-pop {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.am-dash__card-link {
  font-size: 0.6875rem;
  color: #3b82f6;
  font-weight: 500;
}
.am-dash__card-link--red { color: #ef4444; }

/* Audit Snapshot */
.am-dash__snapshot {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.am-dash__section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.1rem;
}
.am-dash__section-sub {
  font-size: 0.625rem;
  color: #94a3b8;
  margin: 0;
}
.am-dash__snapshot-body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-height: 0;
}
.am-dash__donut-wrap {
  position: relative;
  width: 130px; height: 130px;
  flex-shrink: 0;
}
.am-dash__donut-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.am-dash__seg { transition: stroke-dasharray 1s ease; }
.am-dash__seg--1 { animation: am-seg1 1.2s ease forwards; }
.am-dash__seg--2 { animation: am-seg2 1.2s 0.2s ease forwards; }
.am-dash__seg--3 { animation: am-seg3 1.2s 0.4s ease forwards; }
.am-dash__seg--4 { animation: am-seg4 1.2s 0.6s ease forwards; }
.am-dash__seg--5 { animation: am-seg5 1.2s 0.8s ease forwards; }
@keyframes am-seg1 { from { stroke-dasharray: 0 278; } to { stroke-dasharray: 23 278; } }
@keyframes am-seg2 { from { stroke-dasharray: 0 278; } to { stroke-dasharray: 192 278; } }
@keyframes am-seg3 { from { stroke-dasharray: 0 278; } to { stroke-dasharray: 50 278; } }
@keyframes am-seg4 { from { stroke-dasharray: 0 278; } to { stroke-dasharray: 7 278; } }
@keyframes am-seg5 { from { stroke-dasharray: 0 278; } to { stroke-dasharray: 6 278; } }

.am-dash__donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.am-dash__donut-center strong { font-size: 1.5rem; font-weight: 800; color: #0f172a; animation: am-center-pulse 2s ease-in-out infinite alternate; }
@keyframes am-center-pulse {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.08); opacity: 1; }
}
.am-dash__donut-center small { font-size: 0.5rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }

.am-dash__legend {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.am-dash__legend-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #475569;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.am-dash__legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: am-ldot-ping 2.5s ease-in-out infinite;
}
.am-dash__legend-row:nth-child(1) .am-dash__legend-dot { animation-delay: 0s; }
.am-dash__legend-row:nth-child(2) .am-dash__legend-dot { animation-delay: 0.5s; }
.am-dash__legend-row:nth-child(3) .am-dash__legend-dot { animation-delay: 1s; }
.am-dash__legend-row:nth-child(4) .am-dash__legend-dot { animation-delay: 1.5s; }
.am-dash__legend-row:nth-child(5) .am-dash__legend-dot { animation-delay: 2s; }
@keyframes am-ldot-ping {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}
.am-dash__legend-val {
  margin-left: auto;
  font-weight: 700;
  color: #0f172a;
}
.am-dash__legend-pct {
  font-size: 0.625rem;
  color: #94a3b8;
  min-width: 2.5rem;
  text-align: right;
}

/* Recent Activity */
.am-dash__activity {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.am-dash__activity-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.am-dash__activity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid #f8fafc;
  font-size: 0.72rem;
  color: #1e293b;
  border-radius: 4px;
  transition: background 0.2s;
  opacity: 0;
  animation: am-activity-in 0.4s ease forwards;
}
.am-dash__activity-item:hover {
  background: #f8fafc;
}
.am-dash__anim--1 { animation-delay: 0.3s; }
.am-dash__anim--2 { animation-delay: 0.5s; }
.am-dash__anim--3 { animation-delay: 0.7s; }
.am-dash__anim--4 { animation-delay: 0.9s; }
.am-dash__anim--5 { animation-delay: 1.1s; }
@keyframes am-activity-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Activity body text + time */
.am-dash__activity-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.am-dash__activity-body span {
  font-size: 0.72rem;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.am-dash__activity-body small {
  font-size: 0.575rem;
  color: #94a3b8;
}
/* Live badge */
.am-dash__live-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.575rem;
  font-weight: 700;
  color: #22c55e;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.am-dash__live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: am-live-blink 1.2s ease-in-out infinite;
}
@keyframes am-live-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}
/* Panel head */
.am-dash__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.am-dash__panel-tag {
  font-size: 0.575rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
}
/* Content grid: snapshot + activity side by side */
.am-dash__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  padding: 0 0.875rem 0.875rem;
  overflow: hidden;
}
/* Dashboard top bar */
.am-dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.am-dash__topbar-left {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.am-dash__page-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.am-dash__topbar-sub {
  font-size: 0.6rem;
  color: #94a3b8;
}
.am-dash__topbar-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.am-dash__search-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.625rem;
  color: #94a3b8;
}
.am-dash__notif-btn {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex-shrink: 0;
}
.am-dash__notif-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 13px; height: 13px;
  background: #ef4444;
  color: white;
  font-size: 0.45rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: am-notif-pop 2s ease-in-out infinite;
}
@keyframes am-notif-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.am-dash__topbar-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--am-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
/* Stat card area */
.am-dash__cards-wrap {
  padding: 0.875rem 0.875rem 0;
}
/* Nav count badge */
.am-dash__nav-count {
  margin-left: auto;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 100px;
}
/* Badge amber */
.am-dash__activity-badge--amber { background: #fef3c7; color: #d97706; }
.am-dash__activity-badge--purple { background: #f5f3ff; color: #7c3aed; }
.am-dash__activity-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: am-adot-blink 2s ease-in-out infinite;
}
@keyframes am-adot-blink {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 currentColor; }
  50% { opacity: 0.6; transform: scale(1.6); box-shadow: 0 0 6px 2px currentColor; }
}
.am-dash__activity-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  text-transform: uppercase;
  animation: am-badge-pop 3s ease-in-out infinite;
}
@keyframes am-badge-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.am-dash__activity-badge--green { background: #dcfce7; color: #16a34a; }
.am-dash__activity-badge--blue { background: #dbeafe; color: #2563eb; }
.am-dash__activity-tag {
  font-size: 0.6rem;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}
.am-dash__activity-item small {
  margin-left: auto;
  color: #94a3b8;
  font-size: 0.625rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .am-dash { flex-direction: column; min-height: auto; }
  .am-dash__sidebar { width: 100%; flex-direction: row; overflow-x: auto; padding: 0.5rem 0.75rem; border-right: none; border-bottom: 1px solid #e2e8f0; }
  .am-dash__logo, .am-dash__user, .am-dash__logout { display: none; }
  .am-dash__nav { flex-direction: row; gap: 0; }
  .am-dash__nav-item { border-left: none; border-bottom: 2px solid transparent; padding: 0.4rem 0.6rem; white-space: nowrap; }
  .am-dash__nav-item--active { border-bottom-color: #2563eb; }
  .am-dash__cards { grid-template-columns: 1fr; }
  .am-dash__content-grid { grid-template-columns: 1fr; }
  .am-dash__snapshot-body { flex-direction: column; gap: 1rem; }
  .am-browser__body { height: auto; max-height: none; }
  .am-dark-showcase { min-height: auto; }
}

/* ─── BENEFITS ─── */
.am-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) { .am-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .am-benefits { grid-template-columns: 1fr; } }

.am-benefit {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.am-benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--am-shadow-lg);
}
.am-benefit__img {
  height: 180px;
  overflow: hidden;
}
.am-benefit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.am-benefit:hover .am-benefit__img img { transform: scale(1.05); }
.am-benefit__body {
  padding: 1.75rem;
}
.am-benefit__icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--am-radius-sm);
  background: var(--am-primary-light);
  color: var(--am-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.am-benefit__body h3 {
  font-family: var(--am-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--am-text);
}
.am-benefit__body p {
  font-size: 0.9375rem;
  color: var(--am-text-secondary);
  line-height: 1.6;
}

/* ─── BENEFITS VISUAL REDESIGN ─── */
.am-section--bv {
  padding: 4rem 0;
  background: var(--am-surface-alt);
}
.am-section--bv .am-section__header {
  margin-bottom: 2.5rem;
}
.am-bv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.am-bv-card {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  overflow: hidden;
  box-shadow: var(--am-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.am-bv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--am-shadow-lg);
}

/* Gradient top band */
.am-bv-top {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.am-bv-top--crimson { background: linear-gradient(135deg, #bb0b0b 0%, #e53935 100%); }
.am-bv-top--blue    { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.am-bv-top--emerald { background: linear-gradient(135deg, #064e3b 0%, #059669 100%); }

.am-bv-top__stat { display: flex; align-items: baseline; gap: 0.5rem; }
.am-bv-num {
  font-family: var(--am-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.am-bv-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mini UI panel */
.am-bv-ui {
  background: rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 0.7rem 0.75rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Audit form mini UI */
.am-bv-form__bar {
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 0.3rem;
  overflow: hidden;
}
.am-bv-form__fill {
  height: 100%;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
}
.am-bv-form__label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.45rem;
}
.am-bv-form__rows { display: flex; flex-direction: column; gap: 0.28rem; }
.am-bv-form__row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.6);
  padding: 0.18rem 0.3rem;
  border-radius: 4px;
}
.am-bv-form__row--done { color: rgba(255,255,255,0.88); }
.am-bv-form__row--active { background: rgba(255,255,255,0.14); color: #fff; font-weight: 600; }
.am-bv-form__row span:nth-child(2) { flex: 1; }
.am-bv-check {
  width: 13px; height: 13px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.45rem; flex-shrink: 0; color: #fff;
}
.am-bv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.28); flex-shrink: 0; margin-left: 3.5px;
}
.am-bv-grade {
  margin-left: auto; font-size: 0.48rem; font-weight: 700;
  padding: 0.08rem 0.3rem; border-radius: 3px;
}
.am-bv-grade--c     { background: rgba(34,197,94,0.3); color: #bbf7d0; }
.am-bv-grade--ofi   { background: rgba(59,130,246,0.3); color: #bfdbfe; }
.am-bv-grade--pending { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.am-bv-form__foot { margin-top: 0.45rem; text-align: right; }
.am-bv-btn {
  font-size: 0.53rem; font-weight: 700;
  background: rgba(255,255,255,0.18); color: #fff;
  padding: 0.18rem 0.5rem; border-radius: 4px;
}

/* Sites mini UI */
.am-bv-sites { display: flex; flex-direction: column; gap: 0.32rem; }
.am-bv-site {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.58rem; color: rgba(255,255,255,0.75);
  padding: 0.18rem 0.3rem; border-radius: 5px;
}
.am-bv-site--active { background: rgba(255,255,255,0.12); color: #fff; }
.am-bv-site-ico { font-size: 0.65rem; }
.am-bv-site-name { flex: 1; font-weight: 600; }
.am-bv-site-badge {
  font-size: 0.46rem; font-weight: 700;
  padding: 0.1rem 0.35rem; border-radius: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.am-bv-site-badge--green  { background: rgba(34,197,94,0.3);  color: #bbf7d0; }
.am-bv-site-badge--amber  { background: rgba(245,158,11,0.35); color: #fde68a; }
.am-bv-site-badge--blue   { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.am-bv-sites-foot { margin-top: 0.5rem; display: flex; gap: 0.35rem; flex-wrap: wrap; }
.am-bv-chip {
  font-size: 0.46rem; font-weight: 600;
  background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.8);
  padding: 0.12rem 0.42rem; border-radius: 10px;
}

/* Arch / tenant mini UI */
.am-bv-arch-hub-wrap { display: flex; justify-content: center; margin-bottom: 0.5rem; }
.am-bv-arch-hub {
  display: inline-block; font-size: 0.58rem; font-weight: 700;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 0.3rem 0.8rem; border-radius: 7px; text-align: center;
}
.am-bv-arch-tenants { display: flex; flex-direction: column; gap: 0.32rem; }
.am-bv-tenant {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.56rem; color: rgba(255,255,255,0.75);
}
.am-bv-tenant > span:first-child { width: 34px; flex-shrink: 0; }
.am-bv-tenant-track {
  flex: 1; height: 5px; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden;
}
.am-bv-tenant-bar { height: 100%; border-radius: 3px; opacity: 0.85; }
.am-bv-tenant-pct { font-size: 0.5rem; color: rgba(255,255,255,0.55); width: 24px; text-align: right; }

/* Card body */
.am-bv-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.am-bv-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 8px;
  background: var(--am-primary-light); color: var(--am-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.am-bv-icon--blue    { background: rgba(37,99,235,0.09); color: #2563eb; }
.am-bv-icon--emerald { background: rgba(5,150,105,0.1);  color: #059669; }
.am-bv-body h3 {
  font-family: var(--am-font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--am-text); margin-bottom: 0.45rem; line-height: 1.3;
}
.am-bv-body p {
  font-size: 0.875rem; color: var(--am-text-secondary);
  line-height: 1.6; margin-bottom: 0.75rem;
}
.am-bv-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.32rem; }
.am-bv-list li {
  font-size: 0.8125rem; color: var(--am-text-secondary);
  padding-left: 1.1rem; position: relative; line-height: 1.5;
}
.am-bv-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--am-primary); font-size: 0.72rem; line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .am-bv-grid { grid-template-columns: repeat(2, 1fr); }
  .am-section--bv { padding: 3.5rem 0; }
}
@media (max-width: 600px) {
  .am-bv-grid { grid-template-columns: 1fr; }
  .am-section--bv { padding: 2.5rem 0; }
}

/* ─── FEATURE CARDS ─── */
.am-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) { .am-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .am-features { grid-template-columns: 1fr; } }

.am-fcard {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.am-fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--am-shadow-lg);
  border-color: rgba(187, 11, 11, 0.2);
}
.am-fcard__img {
  height: 160px;
  overflow: hidden;
  background: var(--am-surface-alt);
}
.am-fcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.5s ease;
}
.am-fcard:hover .am-fcard__img img { transform: scale(1.04); }

/* Feature card CSS scenes - uses transform:scale to bypass browser min-font-size */
.am-fcard__scene { display: flex; align-items: flex-start; justify-content: center; padding: 0; height: 220px; overflow: hidden; position: relative; background: #e9edf2; }
.am-mini { width: 200%; height: 440px; display: flex; font-size: 12px; color: #334155; background: #edf0f4; line-height: 1.35; transform: scale(0.5); transform-origin: top left; border-radius: 10px 10px 0 0; border: 1px solid #94a3b8; border-bottom: none; position: absolute; top: 0; left: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Modal-style scenes: dark backdrop + centered floating panel */
.am-mini--clauses, .am-mini--report { border: none; background: rgba(15, 23, 42, 0.65); border-radius: 10px 10px 0 0; }
.am-mini--clauses .am-mini__modal, .am-mini--report .am-mini__modal { background: #fff; border-radius: 10px; box-shadow: 0 8px 40px rgba(0,0,0,0.3); margin: 16px auto; width: 92%; display: flex; flex-direction: column; overflow: hidden; max-height: 400px; }

/* Sidebar */
.am-mini__sb { width: 18%; min-width: 18%; background: #fff; border-right: 2px solid #e2e8f0; display: flex; flex-direction: column; padding: 14px 10px; gap: 2px; }
.am-mini__sb--collapsed { width: 6%; min-width: 6%; align-items: center; padding: 14px 6px; }
.am-mini__sb-logo { height: 20px; border-radius: 4px; width: 100%; }
.am-mini__sb-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left; }
.am-mini__sb-user { display: flex; align-items: center; gap: 6px; margin: 8px 0; padding-bottom: 8px; border-bottom: 1px solid #f1f5f9; }
.am-mini__avatar { width: 28px; height: 28px; border-radius: 50%; background: #2563eb; color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.am-mini__uname { font-size: 11px; font-weight: 700; color: #1e293b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.am-mini__sb-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.am-mini__sb-link { font-size: 12px; padding: 7px 10px; border-radius: 5px; color: #475569; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.am-mini__sb-link--active { background: #dbeafe; color: #2563eb; font-weight: 700; border-left: 3px solid #2563eb; }
.am-mini__sb-logout { font-size: 12px; color: #bb0b0b; margin-top: auto; padding: 7px 10px; }
.am-mini__sb-icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 16px; border-radius: 5px; }
.am-mini__sb-icon--active { background: #dbeafe; }

/* Main body */
.am-mini__body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 16px; overflow: hidden; }

/* Dashboard stats */
.am-mini__stats { display: flex; gap: 10px; }
.am-mini__stat { flex: 1; background: #fff; border-radius: 8px; padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; border: 1px solid #cbd5e1; position: relative; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.am-mini__stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.am-mini__stat--green { background: #f0fdf4; }
.am-mini__stat--green::before { background: #16a34a; }
.am-mini__stat--blue { background: #eff6ff; }
.am-mini__stat--blue::before { background: #2563eb; }
.am-mini__stat--red { background: #fef2f2; }
.am-mini__stat--red::before { background: #bb0b0b; }
.am-mini__stat-label { font-size: 9px; text-transform: uppercase; color: #94a3b8; font-weight: 700; letter-spacing: 0.04em; }
.am-mini__stat-num { font-size: 36px; font-weight: 800; color: #1e293b; line-height: 1.1; }
.am-mini__stat-link { font-size: 10px; color: #2563eb; margin-top: 4px; }
.am-mini__stat--red .am-mini__stat-link { color: #bb0b0b; }

/* Audit snapshot */
.am-mini__snapshot { background: #fff; border-radius: 8px; border: 1px solid #cbd5e1; padding: 14px; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.am-mini__snap-head { font-weight: 700; font-size: 14px; color: #1e293b; margin-bottom: 8px; }
.am-mini__snap-row { display: flex; align-items: center; gap: 16px; }
.am-mini__donut { width: 100px; height: 100px; border-radius: 50%; background: conic-gradient(#16a34a 0deg 28deg, #f59e0b 28deg 60deg, #bb0b0b 60deg 290deg, #2563eb 290deg 350deg, #94a3b8 350deg 360deg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; animation: am-spin 15s linear infinite; }
.am-mini__donut-txt { width: 64px; height: 64px; background: #fff; border-radius: 50%; font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; color: #1e293b; animation: am-spin 15s linear infinite reverse; }
.am-mini__legend { display: flex; flex-direction: column; gap: 6px; font-size: 12px; flex: 1; }
.am-mini__legend span { display: flex; justify-content: space-between; padding: 2px 0; }
.am-mini__legend b { font-weight: 700; }

/* Recent activity */
.am-mini__activity { background: #fff; border-radius: 8px; border: 1px solid #cbd5e1; padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.am-mini__act-head { font-weight: 700; font-size: 14px; color: #1e293b; margin-bottom: 4px; }
.am-mini__act-item { display: flex; align-items: center; gap: 6px; font-size: 12px; padding: 5px 6px; border-bottom: 1px solid #f1f5f9; background: #f8fafc; border-radius: 4px; }
.am-mini__act-item i { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.am-mini__act-item b { background: #dbeafe; color: #2563eb; padding: 1px 6px; border-radius: 4px; font-size: 10px; }
.am-mini__act-item small { color: #94a3b8; font-size: 9px; }

/* Top bar with progress */
.am-mini__topbar { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px 14px; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.am-mini__topbar b { font-size: 14px; color: #1e293b; white-space: nowrap; }
.am-mini__topbar small { font-size: 11px; color: #64748b; white-space: nowrap; }
.am-mini__pbar { flex: 1; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.am-mini__pbar-fill { display: block; height: 100%; width: 1%; background: linear-gradient(90deg, #2563eb 60%, #60a5fa); border-radius: 4px; animation: am-progress-fill 5s ease infinite; }
.am-mini__pbar-pct { font-size: 12px; color: #2563eb; font-weight: 700; }
.am-mini__toplinks { font-size: 11px; color: #64748b; white-space: nowrap; }

/* Meta row */
.am-mini__meta { display: flex; gap: 6px; background: #dbeafe; border-radius: 6px; padding: 10px 14px; border: 1px solid #bfdbfe; }
.am-mini__meta span { display: flex; flex-direction: column; flex: 1; min-width: 0; gap: 1px; }
.am-mini__meta small { font-size: 9px; color: #6366f1; text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em; }
.am-mini__meta b { font-size: 12px; color: #1e293b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Form */
.am-mini__form { background: #fff; border-radius: 8px; border: 1px solid #cbd5e1; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.am-mini__clause-h { font-weight: 700; font-size: 14px; color: #1e293b; border-bottom: 2px solid #e2e8f0; padding-bottom: 6px; }
.am-mini__clause-q { font-size: 13px; color: #475569; }
.am-mini__field-row { display: flex; align-items: flex-start; gap: 10px; }
.am-mini__field-lbl { font-weight: 700; font-size: 11px; color: #334155; min-width: 20%; white-space: nowrap; padding-top: 4px; }
.am-mini__field-input { flex: 1; height: 32px; border: 1px solid #cbd5e1; border-radius: 6px; background: #f8fafc; font-size: 11px; color: #94a3b8; padding: 4px 10px; overflow: hidden; white-space: nowrap; display: flex; align-items: center; }
.am-fcard:hover .am-mini__field-input { border-color: #bb0b0b; transition: border-color 0.4s; }
.am-mini__field-area { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.am-mini__field-area small { font-size: 10px; color: #94a3b8; }
.am-mini__email-input { flex: 1; border: 1px solid #e2e8f0; border-radius: 6px; padding: 4px 10px; font-size: 11px; color: #94a3b8; display: flex; align-items: center; gap: 6px; height: 32px; }
.am-mini__btn-circle { width: 22px; height: 22px; border-radius: 50%; background: #2563eb; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }

/* Buttons */
.am-mini__btn-blue { font-size: 11px; background: #2563eb; color: #fff; padding: 5px 12px; border-radius: 5px; font-weight: 600; white-space: nowrap; }
.am-mini__btn-red { font-size: 11px; background: #bb0b0b; color: #fff; padding: 5px 12px; border-radius: 5px; font-weight: 600; }
.am-mini__btn-green { font-size: 11px; background: #16a34a; color: #fff; padding: 5px 12px; border-radius: 5px; font-weight: 600; }
.am-mini__btn-gray { font-size: 11px; background: #64748b; color: #fff; padding: 5px 12px; border-radius: 5px; font-weight: 600; }

/* Grade buttons */
.am-mini__grades { display: flex; gap: 5px; align-items: center; flex: 1; }
.am-mini__grade { width: 36px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; border: 2px solid #e2e8f0; font-size: 12px; font-weight: 700; color: #64748b; background: #fff; }
.am-mini__grade--blue { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.am-mini__grade--yellow { border-color: #f59e0b; color: #f59e0b; background: #fffbeb; }
.am-mini__grade--red { border-color: #bb0b0b; color: #bb0b0b; background: #fef2f2; }
.am-mini__grade--green { border-color: #16a34a; color: #16a34a; background: #f0fdf4; }
.am-mini__grade-info { font-size: 14px; color: #f59e0b; }

/* Footer */
.am-mini__footer { display: flex; justify-content: flex-end; align-items: center; gap: 10px; font-size: 12px; color: #64748b; padding-top: 8px; border-top: 1px solid #e2e8f0; margin-top: auto; }

/* Clauses list */
.am-mini--clauses { flex-direction: column; background: #fff; }
.am-mini__cl-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid #e2e8f0; }
.am-mini__cl-head b { font-size: 16px; color: #1e293b; }
.am-mini__cl-status { font-size: 10px; color: #64748b; }
.am-mini__cl-views { font-size: 14px; color: #2563eb; letter-spacing: 2px; }
.am-mini__cl-filters { display: flex; gap: 8px; padding: 10px 18px; border-bottom: 1px solid #e2e8f0; }
.am-mini__input { flex: 1; background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 6px 10px; font-size: 11px; color: #94a3b8; }
.am-mini__cl-send { display: flex; align-items: center; gap: 8px; padding: 8px 18px; background: #f8fafc; border-bottom: 1px solid #e2e8f0; font-size: 12px; }
.am-mini__cl-send b { color: #1e293b; font-size: 13px; }

/* Table */
.am-mini__table { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.am-mini__tr { display: flex; align-items: center; gap: 6px; padding: 8px 18px; border-bottom: 1px solid #e2e8f0; font-size: 12px; }
.am-mini__tr:nth-child(even) { background: #f1f5f9; }
.am-mini__tr--head { background: #e2e8f0 !important; font-weight: 700; font-size: 10px; color: #334155; text-transform: uppercase; padding: 8px 18px; letter-spacing: 0.02em; }
.am-mini__tr span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.am-mini__tag-muted { color: #94a3b8; font-weight: 600; font-size: 10px; font-style: italic; }
.am-mini__tag-green { background: #dcfce7; color: #16a34a; padding: 2px 8px; border-radius: 4px; font-weight: 700; font-size: 10px; text-align: center; }
.am-mini__tag-gray-rpt { background: #f1f5f9; color: #64748b; padding: 2px 8px; border-radius: 4px; font-weight: 700; font-size: 10px; }
.am-mini__tag-amber { background: #fef3c7; color: #d97706; padding: 2px 8px; border-radius: 4px; font-weight: 700; font-size: 10px; }
.am-mini__chk { font-size: 14px; color: #cbd5e1; flex: none !important; width: 24px; text-align: center; }
.am-mini__chk--on { color: #2563eb; }
.am-mini__cl-foot { display: flex; justify-content: space-between; align-items: center; padding: 8px 18px; font-size: 10px; color: #64748b; border-top: 1px solid #e2e8f0; margin-top: auto; }
.am-mini__page-btn { background: #2563eb; color: #fff; padding: 2px 7px; border-radius: 4px; font-weight: 700; }

/* Tabs */
.am-mini__tabs { display: flex; gap: 6px; }
.am-mini__tab { font-size: 12px; padding: 6px 12px; border-radius: 6px; color: #64748b; background: #f1f5f9; font-weight: 600; white-space: nowrap; }
.am-mini__tab--active { background: #bb0b0b; color: #fff; }
.am-mini__tab b { font-weight: 800; }
.am-mini__btn-continue { font-size: 11px; background: #bb0b0b; color: #fff; padding: 4px 10px; border-radius: 5px; font-weight: 700; flex: none !important; white-space: nowrap; }

/* Report */
.am-mini--report { flex-direction: column; background: #fff; }
.am-mini__rpt-head { background: #bb0b0b; color: #fff; padding: 12px 18px; display: flex; align-items: center; gap: 10px; }
.am-mini__rpt-logo { width: 38px; height: 38px; background: #fff; color: #bb0b0b; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; flex-shrink: 0; }
.am-mini__rpt-head b { font-size: 16px; }
.am-mini__rpt-head small { font-size: 11px; opacity: 0.85; }
.am-mini__rpt-x { margin-left: auto; font-size: 18px; opacity: 0.7; cursor: pointer; }
.am-mini__rpt-meta1 { font-size: 11px; padding: 8px 18px; background: #fef2f2; color: #991b1b; display: flex; gap: 10px; flex-wrap: wrap; }
.am-mini__rpt-meta2 { font-size: 11px; padding: 6px 18px; background: #fff; border-bottom: 1px solid #e2e8f0; color: #475569; display: flex; gap: 10px; }
.am-mini__rpt-actions { display: flex; gap: 8px; padding: 8px 18px; justify-content: flex-end; }
.am-mini__rpt-tabs { display: flex; border-bottom: 2px solid #e2e8f0; padding: 0 18px; }
.am-mini__rpt-tab { font-size: 12px; padding: 8px 14px; color: #64748b; }
.am-mini__rpt-tab--active { color: #bb0b0b; border-bottom: 3px solid #bb0b0b; font-weight: 700; margin-bottom: -2px; }
.am-mini__table--rpt { flex: 1; }
.am-mini__table--rpt .am-mini__tr--head { background: #bb0b0b !important; color: #fff; }

/* Auditee */
.am-mini--auditee { flex-direction: column; background: #f8fafc; }
.am-mini__abar { padding: 10px 18px; background: #fff; border-bottom: 1px solid #e2e8f0; }

/* Hover effects */
.am-fcard:hover .am-mini { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
@keyframes am-spin { to { transform: rotate(360deg); } }
@keyframes am-progress-fill { 0% { width: 1%; } 50% { width: 60%; } 100% { width: 1%; } }

/* ── Mini-UI Animations ── */

/* Cursor blink in text inputs */
.am-mini__field-input::after { content: '|'; animation: am-cursor 1s step-end infinite; color: #bb0b0b; font-weight: 300; }
@keyframes am-cursor { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Table row scan highlight */
.am-mini__tr:not(.am-mini__tr--head) { position: relative; }
.am-mini__tr:not(.am-mini__tr--head)::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #bb0b0b; opacity: 0; border-radius: 0 2px 2px 0; }
.am-mini__table .am-mini__tr:nth-child(2)::after { animation: am-row-scan 6s 0s ease infinite; }
.am-mini__table .am-mini__tr:nth-child(3)::after { animation: am-row-scan 6s 1.5s ease infinite; }
.am-mini__table .am-mini__tr:nth-child(4)::after { animation: am-row-scan 6s 3s ease infinite; }
.am-mini__table .am-mini__tr:nth-child(5)::after { animation: am-row-scan 6s 4.5s ease infinite; }
@keyframes am-row-scan { 0%,10% { opacity: 0; } 15%,35% { opacity: 1; } 40%,100% { opacity: 0; } }

/* CONTINUE / action button pulse */
.am-mini__btn-continue { animation: am-btn-pulse 2s ease-in-out infinite; }
@keyframes am-btn-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(187,11,11,0.4); } 50% { box-shadow: 0 0 0 4px rgba(187,11,11,0); } }

/* Modal float for clauses & report */
.am-mini--clauses .am-mini__modal, .am-mini--report .am-mini__modal { animation: am-modal-float 4s ease-in-out infinite; }
@keyframes am-modal-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Activity items staggered fade-in loop */
.am-mini__act-item:nth-child(2) { animation: am-act-fade 4s 0s ease infinite; }
.am-mini__act-item:nth-child(3) { animation: am-act-fade 4s 0.8s ease infinite; }
.am-mini__act-item:nth-child(4) { animation: am-act-fade 4s 1.6s ease infinite; }
@keyframes am-act-fade { 0% { opacity: 0.3; transform: translateX(-6px); } 20%,80% { opacity: 1; transform: translateX(0); } 100% { opacity: 0.3; transform: translateX(-6px); } }

/* Stat card top-bar shimmer */
.am-mini__stat::after { content: ''; position: absolute; top: 0; left: -50%; width: 50%; height: 5px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent); }
.am-mini__stat--green::after { animation: am-stat-shimmer 4s 0s ease-in-out infinite; }
.am-mini__stat--blue::after  { animation: am-stat-shimmer 4s 1.3s ease-in-out infinite; }
.am-mini__stat--red::after   { animation: am-stat-shimmer 4s 2.6s ease-in-out infinite; }
@keyframes am-stat-shimmer { 0% { left: -50%; } 50%,100% { left: 150%; } }

/* Grade button active wobble on hover */
.am-fcard:hover .am-mini__grade--blue { animation: am-grade-pop 0.4s ease; }
@keyframes am-grade-pop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* Donut chart subtle glow pulse */
.am-mini__donut { box-shadow: 0 0 0 0 rgba(187,11,11,0.15); animation: am-spin 15s linear infinite, am-donut-glow 3s ease-in-out infinite; }
@keyframes am-donut-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(187,11,11,0.15); } 50% { box-shadow: 0 0 12px 4px rgba(187,11,11,0.15); } }

/* Sidebar active link subtle pulse */
.am-mini__sb-link--active { animation: am-nav-pulse 3s ease-in-out infinite; }
@keyframes am-nav-pulse { 0%,100% { background: #dbeafe; } 50% { background: #bfdbfe; } }

/* Report header shimmer accent */
.am-mini__rpt-head::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); animation: am-rpt-shimmer 5s ease-in-out infinite; }
.am-mini__rpt-head { position: relative; overflow: hidden; }
@keyframes am-rpt-shimmer { 0% { left: -100%; } 50%,100% { left: 200%; } }

/* Checkbox tick animation */
.am-mini__chk--on { animation: am-tick 2s ease infinite; }
@keyframes am-tick { 0%,80%,100% { color: #2563eb; } 90% { color: #1d4ed8; transform: scale(1.2); } }

/* Tag badge pop on table rows */
.am-mini__tag-green, .am-mini__tag-amber { animation: am-tag-pop 3s ease infinite; }
@keyframes am-tag-pop { 0%,90%,100% { transform: scale(1); } 95% { transform: scale(1.08); } }

/* Staggered reveal for cards */
.am-fcard:nth-child(2) { transition-delay: 0.08s; }
.am-fcard:nth-child(3) { transition-delay: 0.16s; }
.am-fcard:nth-child(4) { transition-delay: 0.24s; }
.am-fcard:nth-child(5) { transition-delay: 0.32s; }
.am-fcard:nth-child(6) { transition-delay: 0.4s; }
.am-fcard__body {
  padding: 1.5rem;
}
.am-fcard__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--am-accent-light), rgba(230, 81, 0, 0.04));
  color: var(--am-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(230, 81, 0, 0.15);
}
.am-fcard__body h3 {
  font-family: var(--am-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--am-text);
}
.am-fcard__body p {
  font-size: 0.875rem;
  color: var(--am-text-secondary);
  line-height: 1.6;
}

/* ─── FEATURE ORBIT (Single Viewport) ─── */
.am-feature-orbit {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(187, 11, 11, 0.08), rgba(187, 11, 11, 0) 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--am-border);
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.am-feature-orbit__canvas {
  position: relative;
  width: 100%;
  height: min(84vh, 860px);
  min-height: 700px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .am-feature-orbit { padding: 1rem; border-radius: 20px; }
  .am-feature-orbit__canvas { height: auto; min-height: auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem 0; }
  .am-orbit-loop { display: none; }
  .am-orbit-arrow { display: none; }
  .am-feature-orbit__center { position: static; transform: none; width: 160px; height: 160px; }
  .am-orbit-card { position: static; width: 100%; max-width: 280px; aspect-ratio: auto; border-radius: 16px; padding: 1.25rem; transform: none !important; flex-direction: row; gap: 1rem; }
  .am-orbit-card__icon { width: 44px; height: 44px; flex-shrink: 0; }
  .am-orbit-card__icon svg { width: 20px; height: 20px; }
  .am-orbit-card h4 { font-size: 0.8125rem; text-align: left; }
}

.am-orbit-loop {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: min(94%, 980px);
  height: min(94%, 980px);
  pointer-events: none;
}

.am-orbit-loop__ring {
  fill: none;
  stroke: rgba(148, 163, 184, 0.26);
  stroke-width: 2.4;
}

.am-orbit-loop__track {
  fill: none;
  stroke: #bb0b0b;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 5 7;
  animation: am-orbit-dash 12s linear infinite;
}

.am-feature-orbit__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(187, 11, 11, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14), inset 0 0 0 10px rgba(239, 68, 68, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
}

.am-feature-orbit__logo-wrap {
  width: 120px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.am-feature-orbit__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.am-feature-orbit__center h3 {
  margin: 0;
  font-family: var(--am-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.am-feature-orbit__center p {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.am-orbit-card {
  position: absolute;
  width: clamp(170px, 16vw, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(187, 11, 11, 0.24);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15), inset 0 0 0 10px rgba(248, 250, 252, 0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.1rem;
  gap: 0.5rem;
}

.am-orbit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.2), inset 0 0 0 10px rgba(254, 242, 242, 0.95);
  border-color: rgba(187, 11, 11, 0.55);
}

.am-orbit-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fee2e2 0%, #ffedd5 100%);
  color: #bb0b0b;
  border: 1px solid rgba(187, 11, 11, 0.2);
}

.am-orbit-card__icon svg {
  width: 26px;
  height: 26px;
}

.am-orbit-card h4 {
  margin: 0;
  font-family: var(--am-font-display);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.32;
  color: #0f172a;
}

.am-orbit-card--1 { top: 6%; left: 41%; transform: translateX(-50%); }
.am-orbit-card--2 { top: 24%; right: 4%; }
.am-orbit-card--3 { bottom: 14%; right: 12%; }
.am-orbit-card--4 { bottom: 6%; left: 41%; transform: translateX(-50%); }
.am-orbit-card--5 { bottom: 14%; left: 12%; }
.am-orbit-card--6 { top: 24%; left: 4%; }

.am-orbit-arrow {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(187, 11, 11, 0.4);
  border-left: 0;
  border-bottom: 0;
  border-radius: 3px;
  transform: rotate(45deg);
  z-index: 2;
  animation: am-orbit-arrow-pulse 1.8s ease-in-out infinite;
}

.am-orbit-arrow--1 { top: 17%; left: 60%; transform: rotate(35deg); animation-delay: 0s; }
.am-orbit-arrow--2 { top: 36%; right: 16%; transform: rotate(95deg); animation-delay: 0.2s; }
.am-orbit-arrow--3 { bottom: 20%; right: 24%; transform: rotate(150deg); animation-delay: 0.4s; }
.am-orbit-arrow--4 { bottom: 16%; left: 46%; transform: rotate(215deg); animation-delay: 0.6s; }
.am-orbit-arrow--5 { bottom: 24%; left: 22%; transform: rotate(270deg); animation-delay: 0.8s; }
.am-orbit-arrow--6 { top: 34%; left: 14%; transform: rotate(330deg); animation-delay: 1s; }

@keyframes am-orbit-dash {
  to { stroke-dashoffset: -300; }
}

@keyframes am-orbit-arrow-pulse {
  0%, 100% { opacity: 0.3; border-color: rgba(187, 11, 11, 0.35); }
  50% { opacity: 1; border-color: rgba(187, 11, 11, 0.9); }
}

/* ─── FEATURE BENTO GRID ─── */

/* ─── HUB & SPOKE FEATURES ─── */
.am-hub {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  margin: 0 auto 3.5rem;
  overflow: visible;
}

/* Orbit rings */
.am-hub__ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1.5px dashed rgba(187,11,11,.15);
  animation: am-hub-spin 60s linear infinite;
}
.am-hub__ring--2 {
  inset: 25%;
  border-color: rgba(187,11,11,.08);
  animation-duration: 90s;
  animation-direction: reverse;
}
@keyframes am-hub-spin { to { transform: rotate(360deg); } }

/* Center logo */
.am-hub__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(187,11,11,.15);
  box-shadow: 0 8px 40px rgba(187,11,11,.1), 0 0 0 8px rgba(187,11,11,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  z-index: 10;
}
.am-hub__logo { width: 110px; height: auto; }
.am-hub__name {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--am-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Connecting lines SVG */
.am-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.am-hub__line {
  stroke: rgba(187,11,11,.12);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

/* Nodes: unified transform centers circle at the left/top point */
.am-hub__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  transition: transform 0.3s ease;
  transform: translate(-50%, -40px);
}
.am-hub__node:hover { transform: translate(-50%, -40px) scale(1.08); }

.am-hub__circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(15,23,42,.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.am-hub__node:hover .am-hub__circle {
  box-shadow: 0 10px 32px rgba(15,23,42,.14);
}
.am-hub__circle svg { width: 32px; height: 32px; stroke-width: 1.8; }

.am-hub__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--am-text-secondary);
  text-align: center;
  line-height: 1.3;
  max-width: 110px;
}

/* Trig positions: 7 nodes at 360/7° intervals, radius = 42% from center */
.am-hub__node--1 { left: 50%;    top: 8%;    }
.am-hub__node--2 { left: 82.8%;  top: 23.8%; }
.am-hub__node--3 { left: 91%;    top: 59.3%; }
.am-hub__node--4 { left: 68.2%;  top: 87.8%; }
.am-hub__node--5 { left: 31.8%;  top: 87.8%; }
.am-hub__node--6 { left: 9%;     top: 59.3%; }
.am-hub__node--7 { left: 17.2%;  top: 23.8%; }

/* Responsive */
@media (max-width: 700px) {
  .am-hub { max-width: 420px; margin-bottom: 3rem; }
  .am-hub__circle { width: 64px; height: 64px; }
  .am-hub__circle svg { width: 26px; height: 26px; }
  .am-hub__center { width: 110px; height: 110px; }
  .am-hub__logo { width: 52px; }
  .am-hub__label { font-size: 0.5625rem; max-width: 85px; }
  .am-hub__node { transform: translate(-50%, -32px); }
  .am-hub__node:hover { transform: translate(-50%, -32px) scale(1.08); }
}
@media (max-width: 480px) {
  .am-hub { max-width: 320px; margin-bottom: 2.5rem; }
  .am-hub__circle { width: 52px; height: 52px; }
  .am-hub__circle svg { width: 22px; height: 22px; }
  .am-hub__center { width: 90px; height: 90px; }
  .am-hub__logo { width: 42px; }
  .am-hub__label { font-size: 0.5rem; max-width: 70px; }
  .am-hub__ring { border-width: 1px; }
  .am-hub__node { transform: translate(-50%, -26px); }
  .am-hub__node:hover { transform: translate(-50%, -26px) scale(1.08); }
}
.am-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* wide cards span 2 columns */
.am-fc--wide { grid-column: span 2; }

.am-fc {
  background: #fff;
  border: 1px solid var(--am-border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.am-fc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.am-fc:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -12px rgba(15,23,42,0.12); }

/* Wide card inner layout */
.am-fc--wide { flex-direction: row; align-items: flex-start; gap: 2rem; }
.am-fc--wide .am-fc__left { flex: 1; display: flex; flex-direction: column; gap: 0.875rem; min-width: 0; }
.am-fc__preview { flex: 1; min-width: 0; }

/* color accent top line */
.am-fc--crimson::after { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,#bb0b0b,#ef4444); border-radius:20px 20px 0 0; }
.am-fc--blue::after    { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,#2563eb,#60a5fa); border-radius:20px 20px 0 0; }
.am-fc--emerald::after { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,#16a34a,#4ade80); border-radius:20px 20px 0 0; }
.am-fc--amber::after   { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,#d97706,#fbbf24); border-radius:20px 20px 0 0; }
.am-fc--violet::after  { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,#7c3aed,#a78bfa); border-radius:20px 20px 0 0; }
.am-fc--slate::after   { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,#475569,#94a3b8); border-radius:20px 20px 0 0; }

.am-fc__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.am-fc__icon-wrap svg { width: 22px; height: 22px; }

.am-fc__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--am-text-muted);
  margin-top: 0.25rem;
}

.am-fc h3 {
  font-family: var(--am-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--am-text);
  line-height: 1.3;
  margin: 0;
}

.am-fc p {
  font-size: 0.875rem;
  color: var(--am-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Chips row */
.am-fc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.am-fc__chips span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background: var(--am-surface-alt);
  border: 1px solid var(--am-border);
  color: var(--am-text-secondary);
}

/* Timeline preview (card 1) */
.am-fc__preview--timeline {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  padding: 1.5rem 0;
  background: var(--am-surface-alt);
  border-radius: 12px;
}
.am-fct__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  flex-shrink: 0;
}
.am-fct__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 2px solid #cbd5e1;
}
.am-fct__step--done .am-fct__dot  { background: #16a34a; border-color: #16a34a; }
.am-fct__step--active .am-fct__dot { background: #bb0b0b; border-color: #bb0b0b; box-shadow: 0 0 0 4px rgba(187,11,11,.15); animation: am-fc-pulse 1.8s ease-in-out infinite; }
.am-fct__label {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.am-fct__step--done .am-fct__label  { color: #16a34a; }
.am-fct__step--active .am-fct__label { color: #bb0b0b; }
.am-fct__line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin-bottom: 18px;
  min-width: 20px;
}
.am-fct__line--done { background: #16a34a; }
@keyframes am-fc-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(187,11,11,.15); }
  50%      { box-shadow: 0 0 0 8px rgba(187,11,11,.08); }
}

/* Risk bar preview (card 4) */
.am-fc__risk-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.am-fc__risk-bar {
  flex: 1;
  height: 6px;
  border-radius: 100px;
  background: #f1f5f9;
  overflow: hidden;
  min-width: 40px;
}
.am-fc__risk-fill { height: 100%; border-radius: 100px; }
.am-fc__risk-row span { font-size: 0.5625rem; font-weight: 600; color: #94a3b8; white-space: nowrap; }

/* Report preview (card 5) */
.am-fc__preview--report {
  background: #f8fafc;
  border: 1px solid var(--am-border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.5625rem;
  font-family: var(--am-font);
}
.am-fcr__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--am-border);
  background: #fff;
}
.am-fcr__title { font-weight: 700; color: #0f172a; }
.am-fcr__btns { display: flex; gap: 0.3rem; }
.am-fcr__btns span {
  font-size: 0.5rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: default;
}
.am-fcr__row {
  display: grid;
  grid-template-columns: 0.5fr 0.8fr 2fr 0.8fr;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  align-items: center;
}
.am-fcr__row:last-child { border-bottom: none; }
.am-fcr__row--head { font-weight: 700; color: #0f172a; background: #f1f5f9; }
.am-fcr__grade {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  text-align: center;
}
.am-fcr__grade--c  { background: #dbeafe; color: #2563eb; }
.am-fcr__grade--na { background: #f1f5f9; color: #64748b; }

/* Responsive */
@media (max-width: 900px) {
  .am-feat-grid { grid-template-columns: 1fr 1fr; }
  .am-fc--wide { grid-column: span 2; flex-direction: column; }
}
@media (max-width: 600px) {
  .am-feat-grid { grid-template-columns: 1fr; }
  .am-fc--wide { grid-column: span 1; flex-direction: column; }
}

/* ─── METRICS ─── */
.am-metrics {
  background: var(--am-surface-alt);
  padding: 4rem 0;
}
.am-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .am-metrics__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .am-metrics__grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .am-metrics__grid { grid-template-columns: 1fr; } }

.am-metrics__item {
  text-align: center;
  padding: 1.5rem;
}
.am-metrics__val {
  display: block;
  font-family: var(--am-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--am-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.am-metrics__lbl {
  font-size: 0.875rem;
  color: var(--am-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─── CONTACT ─── */
.am-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 992px) { .am-contact { grid-template-columns: 1fr; gap: 3rem; } }

.am-contact__desc {
  font-size: 1.0625rem;
  color: var(--am-text-secondary);
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.am-contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.am-contact__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.am-contact__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--am-radius-sm);
  background: var(--am-accent-light);
  color: var(--am-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-contact__row h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--am-text);
  margin-bottom: 0.15rem;
}
.am-contact__row p {
  font-size: 0.875rem;
  color: var(--am-text-secondary);
}
.am-contact__row a {
  color: var(--am-text-secondary);
  transition: color 0.2s;
}
.am-contact__row a:hover { color: var(--am-primary); }

.am-contact__card {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  padding: 2.5rem;
  box-shadow: var(--am-shadow);
}
@media (max-width: 576px) {
  .am-contact__card { padding: 1.5rem; }
}

/* ─── CONTACT - PREMIUM LIGHT DESIGN ─── */
/* ═══════════════════════════════════════════
   CONTACT SECTION - am-contact-vp
   ═══════════════════════════════════════════ */

.am-contact-vp {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: #f1f5f9;
}

.am-cvp__card {
  display: grid;
  grid-template-columns: 44% 1fr;
  width: 100%;
  max-width: 1260px;
  height: calc(100vh - 12rem);
  max-height: 580px;
  min-height: 440px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px -16px rgba(15,23,42,.22), 0 0 0 1px rgba(15,23,42,.07);
}

/* ── LEFT PANEL - dark gradient ── */
.am-cvp__left {
  position: relative;
  background: linear-gradient(145deg, #0d1b2a 0%, #1e293b 55%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2.25rem;
  overflow: hidden;
}

/* Subtle grid mesh */
.am-cvp__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.am-cvp__left::after { display: none; }

/* Decorative glow orbs */
.am-cvp__left-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.am-cvp__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.am-cvp__orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(187,11,11,.35) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.am-cvp__orb--2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(79,70,229,.22) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

.am-cvp__left-inner {
  position: relative;
  z-index: 2;
  max-width: 400px;
  width: 100%;
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: none;
}
.am-cvp__left-inner::-webkit-scrollbar { display: none; }

.am-cvp__logo {
  height: 36px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}

/* Live indicator strip */
.am-cvp__live-strip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.am-cvp__live-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: am-cvp-pulse 1.6s ease-in-out infinite;
}
@keyframes am-cvp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.55); }
}

.am-cvp__title {
  font-family: var(--am-font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 .6rem;
  letter-spacing: -0.02em;
}
.am-cvp__title span {
  color: #bb0b0b;
  -webkit-text-fill-color: #bb0b0b;
}

.am-cvp__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Stat cards */
.am-cvp__stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.am-cvp__scard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .75rem .625rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .25s;
  cursor: default;
}
.am-cvp__scard:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.am-cvp__scard-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(187,11,11,.22);
  border: 1px solid rgba(187,11,11,.38);
  display: flex; align-items: center; justify-content: center;
  color: #ff8080;
  margin: 0 auto .625rem;
}
.am-cvp__scard-ico--blue {
  background: rgba(59,130,246,.18);
  border-color: rgba(59,130,246,.32);
  color: #93c5fd;
}
.am-cvp__scard-ico--amber {
  background: rgba(245,158,11,.18);
  border-color: rgba(245,158,11,.32);
  color: #fcd34d;
}
.am-cvp__scard strong {
  display: block;
  font-family: var(--am-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}
.am-cvp__scard span {
  font-size: .6rem;
  font-weight: 600;
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
}

/* Contact items */
.am-cvp__contacts {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.am-cvp__citem {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .7rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  text-decoration: none;
  transition: background .22s, border-color .22s, transform .22s;
}
.am-cvp__citem:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.15);
  transform: translateX(4px);
}
.am-cvp__cicon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9px;
  background: rgba(187,11,11,.2);
  border: 1px solid rgba(187,11,11,.3);
  display: flex; align-items: center; justify-content: center;
  color: #ff8080;
  flex-shrink: 0;
}
.am-cvp__clabel {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.35);
  margin-bottom: .12rem;
}
.am-cvp__cval {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

/* Standards trust strip */
.am-cvp__trust {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
}
.am-cvp__trust-label {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: .6rem;
}
.am-cvp__trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.am-cvp__trust-tags span {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: .25rem .7rem;
  border-radius: 100px;
  letter-spacing: .03em;
}

/* ── RIGHT PANEL ── */
.am-cvp__right {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.am-cvp__right::-webkit-scrollbar { display: none; }

.am-cvp__form-wrap {
  background: #fff;
  padding: 2.25rem 2rem 1.75rem;
  width: 100%;
  max-width: 520px;
}

.am-cvp__form-head { margin-bottom: 1.5rem; }

.am-cvp__form-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #bb0b0b;
  background: rgba(187,11,11,.08);
  border: 1px solid rgba(187,11,11,.2);
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: .875rem;
}

.am-cvp__form-head h3 {
  font-family: var(--am-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 .325rem;
  letter-spacing: -0.015em;
}
.am-cvp__form-head p { font-size: .875rem; color: #64748b; margin: 0; }

.am-cvp__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}
.am-cvp__field { display: flex; flex-direction: column; gap: .3rem; }
.am-cvp__field label {
  font-size: .73rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .01em;
}

.am-cvp__field .form-control {
  height: 44px;
  font-size: .875rem;
  padding: 0 .875rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--am-font);
}
.am-cvp__field .form-control::placeholder { color: #94a3b8; }
.am-cvp__field .form-control:focus {
  border-color: #bb0b0b;
  box-shadow: 0 0 0 3px rgba(187,11,11,.1);
  background: #fff;
}
.am-cvp__field textarea.form-control {
  height: auto; min-height: 68px;
  padding: .625rem .875rem;
  resize: none; line-height: 1.5;
}
.am-cvp__field select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394a3b8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.am-cvp__submit {
  display: flex; align-items: center; justify-content: center; gap: .625rem;
  width: 100%; height: 50px;
  background: #bb0b0b;
  color: #fff;
  font-size: .9375rem; font-weight: 700;
  border: none; border-radius: 12px; cursor: pointer;
  margin-top: .5rem;
  transition: opacity .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 20px rgba(187,11,11,.35);
  font-family: var(--am-font);
  letter-spacing: .01em;
}
.am-cvp__submit:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(187,11,11,.42);
}
.am-cvp__submit:active { transform: translateY(0); }

.am-cvp__note {
  display: flex; align-items: center; gap: .4rem;
  font-size: .725rem; color: #94a3b8;
  margin: .875rem 0 0; justify-content: center;
}
.am-cvp__note svg { color: #22c55e; flex-shrink: 0; }

/* Mini trust row below form */
.am-cvp__form-trust {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: .875rem;
  padding-top: .875rem;
  border-top: 1px solid #f1f5f9;
}
.am-cvp__ft-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  font-weight: 600;
  color: #94a3b8;
}
.am-cvp__ft-item svg { color: #22c55e; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .am-cvp__card { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .am-contact-vp { height: auto; min-height: unset; padding: 2.5rem 1rem; align-items: flex-start; }
  .am-cvp__card { grid-template-columns: 1fr; height: auto; max-height: none; border-radius: 20px; }
  .am-cvp__left { padding: 2.5rem 1.5rem; }
  .am-cvp__right { padding: 2rem 1.25rem; }
  .am-cvp__row { grid-template-columns: 1fr; }
  .am-cvp__form-wrap { padding: 1.5rem; }
  .am-cvp__form-trust { gap: .75rem; }
}
@media (max-width: 480px) {
  .am-cvp__stat-grid { grid-template-columns: 1fr 1fr; }
  .am-cvp__scard:last-child { grid-column: span 2; }
  .am-cvp__form-trust { flex-wrap: wrap; }
}

/* legacy helpers - keep hidden */
.am-cvp__analytics, .am-cvp__stats, .am-cvp__stat-div, .am-cvp__badge { display: none; }

/* ─── PRICING TABLE OVERRIDES ─── */
.page-arco-modern .arco-ptable-wrap {
  border-radius: var(--am-radius);
  border: 1px solid var(--am-border);
  overflow-x: auto;
  box-shadow: var(--am-shadow);
  background: var(--am-surface);
}
.page-arco-modern .arco-ptable {
  background: var(--am-surface);
}
.page-arco-modern .arco-ptable th,
.page-arco-modern .arco-ptable td {
  border-color: var(--am-border);
  color: var(--am-text-secondary);
}
.page-arco-modern .arco-plan-name {
  color: var(--am-text);
}
.page-arco-modern .arco-feat-name {
  color: var(--am-text);
  font-weight: 500;
}

/* ─── PRICING CARDS (Modern) ─── */
.pricing-currency-select {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--am-text-secondary);
}
.pricing-currency-select select {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--am-border);
  background: var(--am-surface);
  color: var(--am-text);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-currency-select select:focus {
  border-color: var(--am-accent, #bb0b0b);
  box-shadow: 0 0 0 3px rgba(187, 11, 11, 0.1);
  outline: none;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

.pricing-card {
  position: relative;
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--am-border), var(--am-border));
  transition: background 0.3s ease;
}
.pricing-card:hover::before {
  background: linear-gradient(90deg, var(--am-accent, #bb0b0b), #1565c0);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.18);
  border-color: transparent;
}

/* Featured card */
.pricing-card--featured {
  border-color: transparent;
  background: linear-gradient(var(--am-surface), var(--am-surface)) padding-box,
              linear-gradient(135deg, var(--am-accent, #bb0b0b), #1565c0) border-box;
  border: 2px solid transparent;
  box-shadow: 0 12px 40px -10px rgba(187, 11, 11, 0.2);
  transform: scale(1.02);
  z-index: 2;
}
.pricing-card--featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--am-accent, #bb0b0b), #1565c0);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 28px 64px -14px rgba(187, 11, 11, 0.28);
}

.pricing-card__popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--am-accent, #bb0b0b), #bb0b0b);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.25rem;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(187, 11, 11, 0.3);
}

.pricing-card__header {
  text-align: center;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.pricing-card__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--am-accent, #bb0b0b), #1565c0);
  border-radius: 2px;
  opacity: 0.5;
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 0.3rem 0.875rem;
  border-radius: 99px;
  margin-bottom: 0.875rem;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--am-text);
}

.pricing-card__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--am-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-card__price {
  background: linear-gradient(135deg, var(--am-accent, #bb0b0b), #d32f2f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card__period {
  font-size: 0.75rem;
  color: var(--am-text-muted, #6b7280);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-grow: 1;
}
.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--am-text-secondary);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}
.pricing-card__features li.disabled {
  color: var(--am-text-muted, #9ca3af);
  opacity: 0.6;
}
.pricing-card__features li.disabled::before {
  content: '-';
  background: rgba(156, 163, 175, 0.1);
  color: var(--am-text-muted, #9ca3af);
}
.pricing-card__features li strong {
  font-weight: 700;
  color: var(--am-text);
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  border-radius: 12px;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--am-text-secondary);
}
.pricing-note a {
  color: var(--am-accent, #bb0b0b);
  font-weight: 600;
  text-decoration: underline;
}

/* ─── COUNTRIES ─── */
.page-arco-modern .arco-countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2rem;
}
.page-arco-modern .arco-country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.page-arco-modern .arco-country-item img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--am-border);
  transition: transform 0.3s;
}
.page-arco-modern .arco-country-item:hover img { transform: scale(1.1); }
.page-arco-modern .arco-country-item span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--am-text-secondary);
}

/* ─── SHOWCASE LAYOUT ─── */
.sc-showcase {
  max-width: 960px;
  margin: 0 auto;
}

/* Stepper tabs */
.sc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.sc-stepper {
  display: flex;
  align-items: center;
  background: none;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  gap: 0;
}
.sc-stepper .arco-tab {
  all: unset;
  font-family: var(--am-font);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--am-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s;
  white-space: nowrap;
}
.sc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--am-border);
  color: var(--am-text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.35s;
}
.sc-step-label { transition: color 0.35s; }
.sc-step-line {
  width: 32px;
  height: 2px;
  background: var(--am-border);
  flex-shrink: 0;
  transition: background 0.35s;
}
.sc-stepper .arco-tab:hover { color: var(--am-text); }
.sc-stepper .arco-tab:hover .sc-step-num { background: #e2e8f0; }
.sc-stepper .arco-tab.active { color: var(--am-primary); }
.sc-stepper .arco-tab.active .sc-step-num {
  background: var(--am-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(187,11,11,0.3);
}
.sc-stepper .arco-tab.active ~ .sc-step-line { background: var(--am-border); }
.sc-stepper .arco-tab.active ~ .arco-tab .sc-step-num { background: var(--am-border); }

/* ─── LIVE PRODUCT WALKTHROUGH ─── */
.sc-live { width: 100%; }
.sc-live__browser {
  position: relative;
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius-lg);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.03),
    0 8px 30px -6px rgba(0,0,0,0.1),
    0 20px 60px -12px rgba(15,23,42,0.12);
  background: var(--am-surface);
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.sc-live__browser:hover {
  box-shadow:
    0 0 0 1px rgba(187,11,11,0.08),
    0 12px 40px -8px rgba(0,0,0,0.14),
    0 28px 70px -16px rgba(15,23,42,0.16);
}
.sc-live__browser .browser-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, #fafbfc, #f1f5f9);
  border-bottom: 1px solid var(--am-border);
  padding: 0.6rem 0.85rem;
}
.sc-live__url-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: 8px;
  padding: 0.3rem 0.65rem;
  min-width: 0;
}
.sc-live__lock { font-size: 0.6rem; opacity: 0.5; flex-shrink: 0; }
.sc-live__url {
  font-family: var(--am-font);
  font-size: 0.7rem;
  color: var(--am-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-live__caret {
  width: 1px;
  height: 12px;
  background: transparent;
  flex-shrink: 0;
}
.sc-live__caret--blink {
  background: var(--am-primary);
  animation: sc-caret-blink 0.5s steps(1) infinite;
}
@keyframes sc-caret-blink { 50% { opacity: 0; } }

/* Navigation - hidden (auto-play tour, no slider controls) */
.sc-live__actions { display: none; }

/* LIVE badge */
.sc-live__badge {
  font-family: var(--am-font);
  font-size: 0.6rem;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding-right: 0.5rem;
  animation: sc-live-pulse 2s ease infinite;
}
@keyframes sc-live-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Progress bar */
.sc-live__progress {
  display: none;
}
.sc-live__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--am-primary), #e53935);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(187,11,11,0.4);
}

/* Body - persistent sidebar + content area */
.sc-live__body {
  position: relative;
  display: flex;
  min-height: 380px;
  background: var(--am-surface-alt);
  overflow: hidden;
}

/* Persistent sidebar */
.sc-live-sidebar {
  display: flex;
  flex-direction: column;
  width: 140px;
  min-width: 0;
  background: #fff;
  border-right: 1px solid #e2e8f0;
  flex-shrink: 0;
  overflow: hidden;
  transition: padding 0.45s, opacity 0.3s;
  padding: 0;
  font-size: 0.55rem;
}
.sc-live-sidebar .sc-sb-logo { padding: 0.6rem 0.75rem; border-bottom: 1px solid #f1f5f9; }
.sc-live-sidebar .sc-sb-user { display: flex; align-items: center; gap: 0.3rem; padding: 0.5rem 0.6rem; border-bottom: 1px solid #f1f5f9; }
.sc-live-sidebar .sc-sb-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  cursor: default;
  white-space: nowrap;
  transition: background 0.35s, color 0.35s, box-shadow 0.35s;
  border-left: 3px solid transparent;
}
.sc-live-sidebar .sc-sb-item--active {
  background: #fef2f2;
  color: #bb0b0b;
  font-weight: 700;
  border-left-color: #bb0b0b;
}
.sc-live-sidebar .sc-sb-logout {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  margin-top: auto;
  white-space: nowrap;
  color: #94a3b8;
  font-size: 0.5rem;
}
.sc-live-sidebar .sc-sb-label { transition: opacity 0.3s; }

/* Mini mode */
.sc-live-sidebar.sc-live-sidebar--mini { width: 38px; }
.sc-live-sidebar--mini .sc-sb-label,
.sc-live-sidebar--mini .sc-sb-uinfo { display: none; }
.sc-live-sidebar--mini .sc-sb-item { justify-content: center; padding: 0.35rem 0; border-left-width: 0; }
.sc-live-sidebar--mini .sc-sb-logout { justify-content: center; padding: 0.35rem 0; }
.sc-live-sidebar--mini .sc-sb-user { justify-content: center; padding: 0.4rem 0; }
.sc-live-sidebar--mini .sc-sb-logo { padding: 0.4rem 0; text-align: center; }
.sc-live-sidebar--mini .sc-sb-logo .sc-sb-logo-img { display: none; }
.sc-live-sidebar--mini .sc-sb-logo .sc-sb-logo-icon { display: inline-block; }
.sc-sb-logo-icon { display: none; height: 18px; width: 18px; object-fit: contain; }

/* Hidden mode */
.sc-live-sidebar.sc-live-sidebar--hidden { width: 0; border-right: none; padding: 0; opacity: 0; }

/* Content area */
.sc-live-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.sc-live-content .sc-panel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
}
.sc-live-content .sc-panel.active {
  display: flex;
  opacity: 1;
  position: relative;
}

/* Hide embedded sidebars - persistent sidebar replaces them */
.sc-live-content .sc-sidebar,
.sc-live-content .sc-sidebar--mini { display: none !important; }
.sc-live-content .sc-main { flex: 1; }
@keyframes sc-live-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sc-live-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Cursor & click ripple */
.sc-cursor {
  position: absolute;
  top: 50%;
  left: 30%;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: left 0.7s cubic-bezier(0.4,0,0.2,1), top 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.sc-cursor--click { transform: scale(0.82); transition: transform 0.12s; }
.sc-click-ripple {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(187,11,11,0.2);
  border: 2px solid rgba(187,11,11,0.4);
  z-index: 19;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.sc-click-ripple--active {
  opacity: 1;
  animation: sc-ripple 0.45s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes sc-ripple {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  70%  { transform: translate(-50%,-50%) scale(2.5); opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}
.sc-click-target {
  outline: 2px solid rgba(187,11,11,0.35) !important;
  outline-offset: 2px;
  border-radius: 4px;
  transition: outline-color 0.3s;
}

/* Floating guide annotation */
.sc-live__info {
  position: absolute;
  top: auto;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 15;
  pointer-events: none;
}
.sc-live__title {
  font-family: var(--am-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--am-text);
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
}
.sc-live__desc {
  font-size: 0.68rem;
  color: var(--am-text-secondary);
  line-height: 1.5;
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

/* ─── SHOWCASE CSS PANELS ─── */
.sc-panel { display: none; font-family: var(--am-font); font-size: 0.72rem; color: #1e293b; width: 100%; height: 100%; opacity: 0; }
.sc-panel.active { display: flex; opacity: 1; animation: sc-panel-enter 0.5s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; height: 100%; }
@keyframes sc-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sc-panel-enter {
  from { transform: translateY(8px) scale(0.98); }
  to { transform: translateY(0) scale(1); }
}

/* Sidebar */
.sc-sidebar { width: 160px; background: #fff; border-right: 1px solid #e2e8f0; padding: 0; flex-shrink: 0; display: flex; flex-direction: column; }
.sc-sidebar--mini { width: 40px; align-items: center; padding-top: 0.5rem; }
.sc-sb-logo { padding: 0.6rem 0.75rem; border-bottom: 1px solid #f1f5f9; }
.sc-sb-logo-img { height: 16px; width: auto; }
.sc-sb-user { display: flex; align-items: center; gap: 0.35rem; padding: 0.6rem 0.75rem; border-bottom: 1px solid #f1f5f9; }
.sc-sb-avatar { width: 22px; height: 22px; border-radius: 50%; background: #bb0b0b; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; flex-shrink: 0; }
.sc-sb-uinfo { display: flex; flex-direction: column; line-height: 1.2; overflow: hidden; }
.sc-sb-name { font-weight: 700; font-size: 0.55rem; color: #0f172a; white-space: nowrap; }
.sc-sb-role { font-size: 0.45rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.03em; }
.sc-sb-caret { color: #94a3b8; font-size: 0.7rem; margin-left: auto; }
.sc-sb-icon { margin-right: 0.35rem; font-size: 0.55rem; }
.sc-sb-item { padding: 0.4rem 0.75rem; font-size: 0.58rem; color: #64748b; border-left: 3px solid transparent; display: flex; align-items: center; cursor: default; }
.sc-sb-item--active { color: #2563eb; font-weight: 600; background: rgba(37,99,235,0.06); border-left-color: #2563eb; }
.sc-sb-item:hover:not(.sc-sb-item--active) { background: #f8fafc; }
.sc-sb-logout { margin-top: auto; padding: 0.5rem 0.75rem; font-size: 0.58rem; color: #ef4444; display: flex; align-items: center; border-top: 1px solid #f1f5f9; }
.sc-sb-mini-item { padding: 0.35rem; font-size: 0.65rem; cursor: default; border-radius: 4px; }
.sc-sb-mini-item.sc-sb-item--active { background: rgba(37,99,235,0.08); }

/* Main area */
.sc-main { flex: 1; min-width: 0; padding: 0.85rem; display: flex; flex-direction: column; gap: 0.65rem; background: #f8fafc; overflow-y: auto; overflow-x: hidden; }
.sc-main--full { width: 100%; flex: 1; min-width: 0; }
.sc-main--center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sc-main--gray { background: #f1f5f9; }
.sc-main--white { background: #fff; }
.sc-main--col { display: flex; flex-direction: column; }
.sc-main--rel { position: relative; }

/* Dashboard stat cards */
.sc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.sc-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); animation: sc-card-bob 3s ease-in-out infinite; }
.sc-card-bar { height: 3px; }
.sc-card--green .sc-card-bar { background: #22c55e; }
.sc-card--blue .sc-card-bar { background: #3b82f6; }
.sc-card--red .sc-card-bar { background: #ef4444; }
.sc-card--green { animation-delay: 0s; }
.sc-card--blue { animation-delay: 0.5s; }
.sc-card--red { animation-delay: 1s; }
@keyframes sc-card-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.sc-card-body { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.65rem; }
.sc-card-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.sc-card-icon--green { background: #dcfce7; color: #16a34a; }
.sc-card-icon--blue { background: #dbeafe; color: #2563eb; }
.sc-card-icon--red { background: #fee2e2; color: #dc2626; }
.sc-card-label { font-size: 0.42rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.sc-card-n { display: block; font-size: 1.25rem; font-weight: 800; color: #0f172a; line-height: 1.2; }
.sc-card-link { font-size: 0.45rem; color: #2563eb; display: block; margin-top: 0.1rem; }
.sc-card-link--red { color: #ef4444; }

/* Audit Snapshot */
.sc-snapshot { background: #fff; border-radius: 6px; padding: 0.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); width: 100%; }
.sc-snapshot-head { margin-bottom: 0.5rem; }
.sc-snapshot-head strong { font-size: 0.75rem; }
.sc-snapshot-body { display: flex; align-items: center; gap: 1.5rem; }
.sc-donut { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.sc-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); animation: sc-spin 20s linear infinite; }
@keyframes sc-spin { to { transform: rotate(270deg); } }
.sc-donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sc-donut-num { font-weight: 800; font-size: 1.25rem; color: #0f172a; line-height: 1; }
.sc-donut-sub { font-size: 0.35rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.sc-seg { animation: sc-seg-in 1s ease forwards; }
@keyframes sc-seg-in { from { stroke-dasharray: 0 999; } }
.sc-legend-table { flex: 1; }
.sc-legend-row { display: flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.58rem; color: #475569; }
.sc-legend-val { margin-left: auto; font-weight: 600; color: #0f172a; }
.sc-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; vertical-align: middle; }

/* Feed */
.sc-feed { background: #fff; border-radius: 6px; padding: 0.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); width: 100%; }
.sc-feed-title { font-size: 0.75rem; margin-bottom: 0.4rem; }
.sc-feed-row { display: flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.55rem; opacity: 0; animation: sc-row-in 0.35s ease forwards; }
.sc-feed-row small { margin-left: auto; color: #94a3b8; font-size: 0.45rem; white-space: nowrap; }
.sc-badge { background: #dbeafe; color: #2563eb; font-size: 0.4rem; padding: 0.1rem 0.3rem; border-radius: 3px; font-weight: 600; }
.sc-badge--gray { background: #f1f5f9; color: #64748b; }
.sc-badge--blue { background: #dbeafe; color: #2563eb; }
.sc-badge--green { background: #dcfce7; color: #16a34a; }

/* Tabs */
.sc-tabs { display: flex; gap: 0.3rem; flex-wrap: nowrap; }
.sc-tab { padding: 0.35rem 0.6rem; border-radius: 100px; font-size: 0.58rem; font-weight: 500; color: #64748b; background: #fff; border: 1px solid #e2e8f0; display: flex; align-items: center; gap: 0.25rem; white-space: nowrap; }
.sc-tab--outline { background: transparent; border: 1px solid #e2e8f0; }
.sc-tab--active { color: #fff; border-color: transparent; font-weight: 600; }
.sc-tab--green { background: #22c55e; }
.sc-tab--red { background: #ef4444; }
.sc-tab--emerald { background: #22c55e; }
.sc-tab strong { font-weight: 700; }

/* Table controls bar */
.sc-tbar { display: flex; justify-content: space-between; align-items: center; font-size: 0.52rem; color: #64748b; }
.sc-tbar select { font-size: 0.5rem; border: 1px solid #e2e8f0; border-radius: 3px; padding: 0.1rem 0.2rem; margin: 0 0.15rem; }
.sc-tbar-search { display: flex; align-items: center; gap: 0.25rem; }
.sc-tbar-search input { width: 80px; font-size: 0.5rem; border: 1px solid #e2e8f0; border-radius: 3px; padding: 0.15rem 0.3rem; }

/* Tables */
.sc-table { width: 100%; border-collapse: collapse; font-size: 0.6rem; background: #fff; border-radius: 6px; overflow: hidden; table-layout: fixed; }
.sc-table th { background: #f8fafc; text-align: left; padding: 0.4rem 0.45rem; font-weight: 600; color: #475569; border-bottom: 2px solid #e2e8f0; font-size: 0.52rem; white-space: nowrap; }
.sc-table td { padding: 0.38rem 0.45rem; border-bottom: 1px solid #f1f5f9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-table tbody tr { opacity: 0; animation: sc-row-in 0.35s ease forwards; }
.sc-table tbody tr:hover { background: #f8fafc; }
.sc-table--clauses td:first-child { color: #3b82f6; font-weight: 600; }
.sc-table--report th { background: #bb0b0b; color: #fff; font-size: 0.45rem; }
.sc-table--modal { font-size: 0.55rem; table-layout: auto; }
.sc-table--modal td, .sc-table--modal th { padding: 0.4rem 0.75rem; }
.sc-table--report { table-layout: auto; }
.sc-tr--highlight { background: #eff6ff !important; }
.sc-td--border-blue { border-left: 3px solid #3b82f6; }

/* Row animation stagger */
.sc-anim--1 { animation-delay: 0.1s !important; }
.sc-anim--2 { animation-delay: 0.2s !important; }
.sc-anim--3 { animation-delay: 0.3s !important; }
.sc-anim--4 { animation-delay: 0.4s !important; }
.sc-anim--5 { animation-delay: 0.5s !important; }
.sc-anim--6 { animation-delay: 0.6s !important; }
@keyframes sc-row-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.sc-table-footer { font-size: 0.48rem; color: #94a3b8; padding: 0.4rem 0.35rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #e2e8f0; }
.sc-pagination { display: inline-flex; align-items: center; gap: 0.15rem; }
.sc-page { width: 16px; height: 16px; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.45rem; border: 1px solid #e2e8f0; color: #475569; }
.sc-page--active { background: #bb0b0b; color: #fff; border-color: #bb0b0b; }

/* Buttons */
.sc-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.55rem; font-weight: 600; color: #fff; cursor: default; white-space: nowrap; gap: 0.15rem; }
.sc-btn--pill { border-radius: 100px; }
.sc-btn--red { background: #bb0b0b; }
.sc-btn--blue { background: #2563eb; }
.sc-btn--green { background: #16a34a; }
.sc-btn--amber { background: #f59e0b; color: #fff; }
.sc-btn--gray { background: #94a3b8; }
.sc-btn--sm { font-size: 0.42rem; padding: 0.15rem 0.35rem; }
.sc-btn--lg { padding: 0.45rem 1.25rem; font-size: 0.65rem; border-radius: 6px; }
.sc-btn--full { display: block; width: 100%; text-align: center; }
.sc-btn--disabled { opacity: 0.5; }
.sc-btn--circle { width: 20px; height: 20px; border-radius: 50%; padding: 0; font-size: 0.7rem; }

/* Inputs */
.sc-input { background: #fff; border: 1px solid #e2e8f0; border-radius: 4px; padding: 0.3rem 0.5rem; color: #94a3b8; font-size: 0.52rem; }
.sc-select { background: #fff; border: 1px solid #e2e8f0; border-radius: 4px; padding: 0.25rem 0.4rem; color: #64748b; font-size: 0.48rem; white-space: nowrap; }
.sc-textarea { background: #fff; border: 1px solid #e2e8f0; border-radius: 4px; padding: 0.5rem; min-height: 36px; color: #94a3b8; font-size: 0.55rem; }
.sc-muted { color: #94a3b8; font-size: 0.52rem; margin: 0.1rem 0; }
.sc-status { font-size: 0.45rem; color: #94a3b8; font-style: italic; }

/* Execution form */
.sc-exec-bar { display: flex; align-items: center; gap: 0.4rem; background: #fff; padding: 0.5rem 0.65rem; border-radius: 6px; font-size: 0.55rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); width: 100%; }
.sc-exec-pct { color: #2563eb; font-weight: 600; font-size: 0.55rem; }
.sc-exec-links { font-size: 0.48rem; color: #64748b; margin-left: auto; white-space: nowrap; }
.sc-progress { flex: 1; height: 5px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.sc-progress-fill { height: 100%; background: #2563eb; border-radius: 3px; animation: sc-prog 1.5s ease forwards; }
@keyframes sc-prog { from { width: 0; } }
.sc-exec-meta { display: flex; gap: 0.75rem; background: #eff6ff; padding: 0.45rem 0.65rem; border-radius: 6px; font-size: 0.5rem; flex-wrap: wrap; width: 100%; }
.sc-exec-meta small { color: #3b82f6; text-transform: uppercase; font-size: 0.38rem; display: block; letter-spacing: 0.03em; font-weight: 600; }
.sc-exec-meta strong { font-size: 0.52rem; color: #0f172a; }
.sc-exec-meta--2row { flex-direction: column; gap: 0; padding: 0; background: #eff6ff; border-radius: 6px; overflow: hidden; }
.sc-exec-meta-row { display: flex; gap: 0.75rem; padding: 0.35rem 0.65rem; }
.sc-exec-meta-row + .sc-exec-meta-row { border-top: 1px solid #dbeafe; }
.sc-exec-meta-row small { color: #3b82f6; text-transform: uppercase; font-size: 0.38rem; display: block; font-weight: 600; }
.sc-exec-meta-row strong { font-size: 0.52rem; color: #0f172a; }
.sc-exec-form { background: #fff; border-radius: 6px; padding: 0.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); flex: 1; width: 100%; }
.sc-exec-form h4 { font-size: 0.78rem; margin: 0 0 0.15rem; }
.sc-field { margin-top: 0.45rem; }
.sc-field--row { display: flex; gap: 0.75rem; align-items: flex-start; }
.sc-field--row label { min-width: 70px; flex-shrink: 0; }
.sc-field--row > div, .sc-field--row > .sc-textarea { flex: 1; }
.sc-field label { display: block; font-weight: 600; font-size: 0.52rem; color: #0f172a; margin-bottom: 0.15rem; }
.sc-email-input { display: flex; align-items: center; gap: 0.3rem; flex: 1; }
.sc-attach-zone { border: 2px dashed #e2e8f0; border-radius: 6px; padding: 0.75rem; text-align: center; }
.sc-grades { display: flex; gap: 0.2rem; align-items: center; }
.sc-grade { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.45rem; font-weight: 700; border: 1.5px solid #e2e8f0; color: #475569; }
.sc-grade--blue { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.sc-grade--yellow { border-color: #f59e0b; color: #f59e0b; background: #fefce8; }
.sc-grade--green { border-color: #22c55e; color: #22c55e; background: #f0fdf4; }
.sc-grade--info { border-color: #ef4444; color: #ef4444; font-size: 0.5rem; }
.sc-exec-footer { display: flex; align-items: center; justify-content: flex-end; gap: 0.6rem; font-size: 0.52rem; color: #64748b; padding-top: 0.4rem; }

/* Clauses head & filters */
.sc-clauses-head { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; width: 100%; }
.sc-clauses-head h4 { font-size: 0.8rem; margin: 0; }
.sc-clauses-right { display: flex; align-items: center; gap: 0.75rem; }
.sc-status-dots { font-size: 0.45rem; color: #64748b; display: flex; align-items: center; gap: 0.4rem; }
.sc-view-toggle { display: flex; gap: 0.15rem; }
.sc-view-btn { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border: 1px solid #e2e8f0; border-radius: 4px; font-size: 0.6rem; color: #94a3b8; cursor: default; }
.sc-view-btn--active { background: #2563eb; color: #fff; border-color: #2563eb; }
.sc-filters { display: flex; gap: 0.3rem; margin-bottom: 0.4rem; width: 100%; }
.sc-send-bar { display: flex; align-items: center; gap: 0.4rem; background: #f8fafc; padding: 0.4rem 0.5rem; border-radius: 6px; margin-bottom: 0.4rem; font-size: 0.52rem; width: 100%; }

/* Grid cards */
.sc-grid-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.45rem; width: 100%; }
.sc-gcard { background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 0.5rem; font-size: 0.5rem; opacity: 0; animation: sc-row-in 0.35s ease forwards; }
.sc-gcard--selected { border-color: #2563eb; background: #eff6ff; }
.sc-gcard-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.45rem; color: #3b82f6; font-weight: 600; margin-bottom: 0.2rem; gap: 0.2rem; }
.sc-gcard-count { background: #fee2e2; color: #dc2626; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.35rem; }
.sc-gcard strong { font-size: 0.55rem; display: block; margin-bottom: 0.1rem; color: #0f172a; }
.sc-gcard p { margin: 0; color: #64748b; font-size: 0.45rem; line-height: 1.3; }
.sc-gcard-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 0.35rem; font-size: 0.45rem; color: #94a3b8; }
.sc-gcard-check { display: flex; align-items: center; gap: 0.15rem; font-size: 0.45rem; color: #64748b; }
.sc-gcard-check input[type="checkbox"] { width: 12px; height: 12px; accent-color: #2563eb; }

/* Dispatch confirmation */
.sc-dispatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 40%);
  gap: 0.9rem;
}
.sc-dispatch__hero { text-align: center; }
.sc-dispatch__check { width: 56px; height: 56px; margin: 0 auto 0.5rem; filter: drop-shadow(0 4px 12px rgba(34,197,94,0.3)); }
.sc-dispatch__check svg { width: 100%; height: 100%; }
.sc-dispatch__ring { stroke-dasharray: 240; stroke-dashoffset: 240; animation: sc-circle 0.6s ease forwards; }
.sc-dispatch__tick { stroke-dasharray: 60; stroke-dashoffset: 60; animation: sc-check 0.5s 0.4s ease forwards; }
@keyframes sc-check { to { stroke-dashoffset: 0; } }
@keyframes sc-circle { to { stroke-dashoffset: 0; } }
.sc-dispatch__heading { font-family: var(--am-font-display); font-size: 1rem; font-weight: 800; color: #166534; margin: 0; }
.sc-dispatch__sub { font-size: 0.65rem; color: #4b5563; margin: 0.2rem 0 0; }
.sc-dispatch__cards { display: flex; flex-direction: column; gap: 0.4rem; width: 100%; max-width: 380px; }
.sc-dispatch__card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sc-dispatch__card-icon { font-size: 0.9rem; flex-shrink: 0; }
.sc-dispatch__card-body { flex: 1; min-width: 0; }
.sc-dispatch__card-label { font-size: 0.5rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.03em; display: block; }
.sc-dispatch__card-body strong { font-size: 0.65rem; color: #1f2937; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-dispatch__card-status { font-size: 0.5rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 100px; white-space: nowrap; }
.sc-dispatch__card-status--sent { background: #dcfce7; color: #166534; }
.sc-dispatch__card-tag { font-size: 0.5rem; font-weight: 600; color: #6366f1; background: #eef2ff; padding: 0.15rem 0.45rem; border-radius: 100px; white-space: nowrap; }
.sc-dispatch__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.6rem 1.25rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sc-dispatch__stat { text-align: center; }
.sc-dispatch__stat-num { font-family: var(--am-font-display); font-size: 0.95rem; font-weight: 800; color: #111827; display: block; }
.sc-dispatch__stat-label { font-size: 0.5rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.02em; }
.sc-dispatch__stat-divider { width: 1px; height: 28px; background: #e5e7eb; }
.sc-dispatch__footer { display: flex; gap: 0.5rem; }
.sc-btn--green { background: #22c55e; color: #fff; border-radius: 8px; }
.sc-btn--green:hover { background: #16a34a; }
.sc-btn--outline { background: transparent; color: #6b7280; border: 1px solid #d1d5db; border-radius: 8px; }
.sc-btn--outline:hover { background: #f9fafb; color: #374151; }

/* Question List link */
.sc-exec-ql { color: #2563eb; cursor: pointer; text-decoration: underline; font-weight: 600; }

/* Panel modal popup (clauses list/grid overlay) */
.sc-panel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 10;
  transition: background 0.35s;
}
.sc-panel-modal-backdrop--visible { background: rgba(0,0,0,0.22); }
.sc-live-content .sc-panel.sc-panel--modal-open {
  position: absolute !important;
  top: 3%;
  left: 2.5%;
  right: 2.5%;
  bottom: 3%;
  width: auto !important;
  height: auto !important;
  z-index: 11;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.22);
  overflow: auto;
  opacity: 1 !important;
  display: flex !important;
  background: #fff;
}

/* Success modal overlay */
.sc-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.38); display: flex; align-items: center; justify-content: center; z-index: 15; }
.sc-modal-dialog { background: #fff; border-radius: 14px; padding: 1.5rem 2rem; box-shadow: 0 12px 40px rgba(0,0,0,0.18); text-align: center; max-width: 340px; width: 88%; animation: sc-modal-pop 0.45s cubic-bezier(0.16,1,0.3,1); }
@keyframes sc-modal-pop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sc-modal-check { margin: 0 auto 0.25rem; }
.sc-modal-title { margin: 0.5rem 0 0.4rem; font-size: 1.1rem; font-family: var(--am-font-display); color: #111827; }
.sc-modal-msg { font-size: 0.6rem; color: #374151; margin: 0.3rem 0 0.5rem; }
.sc-modal-detail { text-align: left; font-size: 0.55rem; color: #475569; line-height: 1.7; margin: 0 auto 0.5rem; padding: 0.4rem 0.6rem; background: #f8fafc; border-radius: 6px; }
.sc-modal-badge { font-size: 0.55rem; color: #6b7280; margin: 0.4rem 0 0.6rem; }
.sc-success-ok { display: inline-block; padding: 0.45rem 2.5rem; background: #2563eb; color: #fff; border: none; border-radius: 8px; font-size: 0.7rem; font-weight: 700; cursor: pointer; letter-spacing: 0.02em; }
.sc-success-ok:hover { background: #1d4ed8; }

/* Email card */
.sc-email-card { background: #fff; border-radius: 8px; padding: 1.5rem 2rem; max-width: 340px; width: 100%; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sc-email-card h3 { font-size: 0.85rem; }
.sc-email-card hr { border: none; border-top: 2px solid #e2e8f0; margin: 0.5rem 0; }
.sc-email-card p { font-size: 0.58rem; margin: 0.3rem 0; }
.sc-email-details { margin: 0.6rem 0; font-size: 0.58rem; }
.sc-email-details div { display: flex; justify-content: space-between; padding: 0.2rem 0; border-bottom: 1px solid #f1f5f9; }
.sc-email-details small { color: #64748b; font-weight: 600; }

/* OTP card */
.sc-otp-topbar { background: #fff; border-bottom: 2px solid #bb0b0b; padding: 0.5rem 1rem; width: 100%; }
.sc-otp-card { background: #fff; border-radius: 10px; padding: 1.5rem; text-align: center; max-width: 280px; width: 100%; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sc-otp-card h3 { font-size: 0.8rem; margin: 0 0 0.15rem; }
.sc-otp-boxes { display: flex; gap: 0.25rem; justify-content: center; margin: 0.5rem 0; }
.sc-otp-boxes span { width: 26px; height: 30px; border: 1.5px solid #e2e8f0; border-radius: 4px; }
.sc-otp-active { border-color: #bb0b0b !important; }
.sc-otp-filled { border-color: #bb0b0b !important; background: #fef2f2; color: #bb0b0b; font-weight: 700; font-size: 0.75rem; }

/* Auditee modal */
.sc-amodal { background: #fff; border-radius: 10px; max-width: 520px; width: 90%; box-shadow: 0 10px 40px rgba(0,0,0,0.1); overflow: hidden; }
.sc-amodal--wide { max-width: 560px; }
.sc-amodal-head { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0.75rem; border-bottom: 1px solid #e2e8f0; font-size: 0.7rem; }
.sc-amodal-x { color: #94a3b8; cursor: default; font-size: 0.8rem; }
.sc-status { font-size: 0.42rem; padding: 0.12rem 0.35rem; border-radius: 20px; font-weight: 600; white-space: nowrap; }
.sc-status--done { background: #dcfce7; color: #16a34a; }
.sc-status--pending { background: #fef3c7; color: #d97706; }
.sc-td--border-amber { border-left: 3px solid #f59e0b; color: #d97706; font-weight: 700; }
.sc-badge--amber { background: #fef3c7; color: #d97706; border-radius: 20px; font-weight: 600; }

/* Report */
.sc-report-head { background: #bb0b0b; color: #fff; padding: 0.5rem 0.65rem; display: flex; justify-content: space-between; align-items: flex-start; }
.sc-report-logo { font-size: 0.65rem; }
.sc-report-logo small { font-size: 0.48rem; font-weight: 400; opacity: 0.8; }
.sc-report-x { cursor: default; font-size: 0.8rem; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border-radius: 50%; }
.sc-report-meta { background: #fef2f2; padding: 0.3rem 0.65rem; font-size: 0.42rem; color: #991b1b; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sc-report-meta2 { background: #fff5f5; padding: 0.25rem 0.65rem; font-size: 0.42rem; color: #64748b; display: flex; flex-wrap: wrap; gap: 0.5rem; border-bottom: 1px solid #fecaca; }
.sc-report-actions { padding: 0.4rem 0.65rem; display: flex; gap: 0.3rem; }
.sc-report-tabs { display: flex; border-bottom: 2px solid #e2e8f0; padding: 0 0.65rem; font-size: 0.52rem; }
.sc-report-tab { padding: 0.3rem 0.6rem; color: #64748b; cursor: default; }
.sc-report-tab--active { color: #2563eb; border-bottom: 2px solid #2563eb; margin-bottom: -2px; font-weight: 600; }
.sc-report-bottom { padding: 0.4rem 0.65rem; border-top: 1px solid #e2e8f0; display: flex; gap: 0.3rem; justify-content: center; }

@media (max-width: 1200px) {
  .sc-showcase { max-width: 840px; }
}
@media (max-width: 992px) {
  .sc-showcase { max-width: 100%; }
  .sc-nav { justify-content: center; }
  .sc-nav__tabs { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
  .sc-sidebar { display: none; }
  .sc-grid-cards { grid-template-columns: repeat(2, 1fr); }
  .sc-exec-meta { flex-wrap: wrap; }
}

/* ─── PHONE CAROUSEL ─── */
.page-arco-modern .phone-track {
  border: 3px solid var(--am-border);
  box-shadow: var(--am-shadow-lg);
  background: var(--am-surface);
}
.page-arco-modern .phone-dot.active {
  background: var(--am-primary);
}

/* Slides wrapper - clips overflow so only one screen shows at a time */
.ahm-app__slides-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ahm-app__slides {
  display: flex;
  flex-direction: column;
  height: 300%;
  animation: ahm-slide-loop 13s ease-in-out infinite;
  will-change: transform;
}
.ahm-app__slide {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@keyframes ahm-slide-loop {
  0%, 26%   { transform: translateY(0); }
  33%, 59%  { transform: translateY(-33.333%); }
  66%, 92%  { transform: translateY(-66.666%); }
  99%, 100% { transform: translateY(0); }
}
/* Audit execution screen */
.ahm-exec { display: flex; flex-direction: column; gap: 8px; padding: 8px 12px; flex: 1; overflow: hidden; }
.ahm-exec__meta { display: flex; gap: 6px; }
.ahm-exec__meta span { flex: 1; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 5px 8px; text-align: center; }
.ahm-exec__meta small { display: block; font-size: 7px; color: #94a3b8; text-transform: uppercase; }
.ahm-exec__meta b { font-size: 11px; color: #0f172a; }
.ahm-exec__progress { height: 4px; background: #e2e8f0; border-radius: 2px; overflow: hidden; }
.ahm-exec__progress-fill { height: 100%; width: 1%; background: var(--am-primary); border-radius: 2px; }
.ahm-exec__question { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px; }
.ahm-exec__clause { font-size: 9px; font-weight: 700; color: var(--am-primary); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.ahm-exec__q { font-size: 10px; color: #1e293b; line-height: 1.4; }
.ahm-exec__grades { display: flex; gap: 5px; }
.ahm-exec__grade { flex: 1; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; border: 1.5px solid #e2e8f0; font-size: 9px; font-weight: 700; color: #64748b; background: #fff; }
.ahm-exec__grade--blue { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.ahm-exec__grade--yellow { border-color: #f59e0b; color: #d97706; background: #fffbeb; }
.ahm-exec__grade--green { border-color: #22c55e; color: #16a34a; background: #f0fdf4; }
.ahm-exec__grade--active { box-shadow: 0 0 0 2px currentColor; transform: scale(1.12); }
.ahm-exec__note { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 8px 10px; font-size: 9px; color: #94a3b8; }
.ahm-exec__footer { display: flex; gap: 8px; margin-top: auto; }
.ahm-exec__btn { flex: 1; text-align: center; padding: 7px 4px; border-radius: 8px; font-size: 9px; font-weight: 700; border: 1px solid #e2e8f0; color: #475569; background: #fff; }
.ahm-exec__btn--primary { background: var(--am-primary); color: #fff; border-color: var(--am-primary); }
/* Report screen */
.ahm-report { display: flex; flex-direction: column; gap: 10px; padding: 8px 12px; flex: 1; overflow: hidden; }
.ahm-report__score { display: flex; align-items: center; gap: 12px; background: #f8fafc; border-radius: 12px; padding: 10px; border: 1px solid #e2e8f0; }
.ahm-report__ring { position: relative; flex-shrink: 0; }
.ahm-report__ring svg { display: block; transform: rotate(-90deg); }
.ahm-report__ring-val { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #0f172a; }
.ahm-report__stats { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ahm-report__stat { display: flex; justify-content: space-between; align-items: center; }
.ahm-report__stat b { font-size: 14px; font-weight: 800; color: #0f172a; }
.ahm-report__stat small { font-size: 8px; color: #94a3b8; text-transform: uppercase; }
.ahm-report__grades { display: flex; flex-direction: column; gap: 5px; }
.ahm-report__grade-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; background: #f8fafc; border-radius: 6px; font-size: 9px; color: #475569; }
.ahm-report__grade-row b { font-size: 11px; }
.ahm-report__btns { display: flex; gap: 8px; margin-top: auto; }
.ahm-report__btn { flex: 1; text-align: center; padding: 8px 4px; border-radius: 8px; font-size: 9px; font-weight: 700; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.ahm-report__btn--red { background: #fff7f7; color: var(--am-primary); border-color: #fecaca; }

/* ─── HERO PHONE MOCKUP ─── */
.ahm-phone {
  position: relative;
  width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 32px 60px rgba(15,23,42,0.25));
  animation: ahm-float 5s ease-in-out infinite;
}
@keyframes ahm-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.ahm-phone:hover {
  filter: drop-shadow(0 40px 70px rgba(15,23,42,0.3));
}
.ahm-phone__frame {
  background: #0f172a;
  border-radius: 40px;
  padding: 12px 10px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.1), inset 0 0 0 4px #1e293b;
  position: relative;
}
.ahm-phone__notch {
  width: 72px; height: 20px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}
.ahm-phone__screen {
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden;
  height: 530px;
  display: flex;
  flex-direction: column;
}
.ahm-phone__home {
  width: 72px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 100px;
  margin: 10px auto 2px;
}
/* - App content - */
.ahm-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: var(--am-font);
  background: #f1f5f9;
  overflow: hidden;
}
.ahm-app__statusbar {
  background: #fff;
  padding: 8px 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.ahm-app__statusbar span { font-size: 10px; font-weight: 700; color: #0f172a; }
.ahm-app__statusbar-icons { display: flex; align-items: center; gap: 4px; color: #0f172a; }
.ahm-app__header {
  background: #fff;
  padding: 8px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.ahm-app__greeting { font-size: 9px; color: #94a3b8; font-weight: 500; }
.ahm-app__username { font-size: 12px; font-weight: 800; color: #0f172a; margin-top: 1px; }
.ahm-app__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--am-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ahm-app__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 10px 0;
  flex-shrink: 0;
}
.ahm-app__card {
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  border-top: 3px solid transparent;
  background: #fff;
  animation: am-dash-pulse 3s ease-in-out infinite;
}
.ahm-app__card--red   { border-top-color: #ef4444; animation-delay: 0s; }
.ahm-app__card--blue  { border-top-color: #3b82f6; animation-delay: .5s; }
.ahm-app__card--green { border-top-color: #22c55e; animation-delay: 1s; }
.ahm-app__card-ico  { font-size: 12px; margin-bottom: 2px; }
.ahm-app__card-num  { font-size: 18px; font-weight: 800; color: #0f172a; line-height: 1; }
.ahm-app__card-lbl  { font-size: 7px; color: #94a3b8; text-transform: uppercase; letter-spacing: .03em; font-weight: 600; margin-top: 2px; }
.ahm-app__section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px 6px;
  flex-shrink: 0;
}
.ahm-app__section-head span:first-child { font-size: 11px; font-weight: 700; color: #0f172a; }
.ahm-app__see-all { font-size: 9px; color: var(--am-primary); font-weight: 600; }
.ahm-app__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 10px;
  flex: 1;
  overflow: hidden;
}
.ahm-app__item {
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: am-activity-in 0.4s ease forwards;
}
.ahm-app__item--anim1 { animation-delay: .3s; }
.ahm-app__item--anim2 { animation-delay: .5s; }
.ahm-app__item--anim3 { animation-delay: .7s; }
.ahm-app__item--anim4 { animation-delay: .9s; }
.ahm-app__item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: am-ldot-ping 2.5s ease-in-out infinite;
}
.ahm-app__item-body { flex: 1; min-width: 0; }
.ahm-app__item-body b    { display: block; font-size: 10px; font-weight: 700; color: #0f172a; }
.ahm-app__item-body small { font-size: 8px; color: #94a3b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.ahm-app__badge {
  font-size: 7px; font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.ahm-app__badge--red   { background: #fee2e2; color: #dc2626; }
.ahm-app__badge--blue  { background: #dbeafe; color: #2563eb; }
.ahm-app__badge--green { background: #dcfce7; color: #16a34a; }
.ahm-app__badge--amber { background: #fef3c7; color: #d97706; }
.ahm-app__nav {
  display: flex;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 8px 0 10px;
  margin-top: auto;
  flex-shrink: 0;
}
.ahm-app__nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #94a3b8;
  font-size: 7px;
  font-weight: 600;
  cursor: default;
}
.ahm-app__nav-item--active { color: var(--am-primary); }

/* ─── HERO BROWSER MOCKUP ─── */
.am-hero-mockup {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--am-border);
  box-shadow: 0 32px 80px -12px rgba(15,23,42,0.22), 0 0 0 1px rgba(15,23,42,0.06);
  background: #fff;
  transform: perspective(1400px) rotateY(-10deg) rotateX(4deg);
  transform-origin: center center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.am-hero-mockup:hover {
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  box-shadow: 0 48px 100px -16px rgba(15,23,42,0.28), 0 0 0 1px rgba(15,23,42,0.06);
}

.am-hero-mockup__bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ahm-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ahm-dot--r { background: #ef4444; }
.ahm-dot--y { background: #f59e0b; }
.ahm-dot--g { background: #22c55e; }
.ahm-url {
  margin-left: 0.5rem;
  font-size: 0.625rem;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-family: monospace;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.am-hero-mockup__body {
  display: flex;
  height: 370px;
  background: #f1f5f9;
  font-size: 0.625rem;
  font-family: var(--am-font);
  overflow: hidden;
}

/* Sidebar */
.ahm-sidebar {
  width: 120px;
  background: #fff;
  border-right: 1px solid #e2e8f0;
  padding: 0.625rem 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.ahm-sb-logo {
  padding: 0 0.625rem 0.625rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.4rem;
}
.ahm-sb-logo img { height: 16px; width: auto; display: block; }
.ahm-sb-user {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.625rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.25rem;
}
.ahm-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bb0b0b, #e53935);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ahm-sb-user strong { font-size: 0.5rem; color: #0f172a; display: block; line-height: 1.2; }
.ahm-sb-user small  { font-size: 0.4375rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.ahm-nav { flex: 1; display: flex; flex-direction: column; }
.ahm-nav-item {
  padding: 0.3rem 0.625rem;
  font-size: 0.5625rem;
  color: #64748b;
  border-left: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ahm-nav-item--active {
  color: #2563eb;
  border-left-color: #2563eb;
  background: #eff6ff;
  font-weight: 600;
}
.ahm-logout {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.625rem;
  font-size: 0.5rem;
  color: #94a3b8;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

/* Main area */
.ahm-main {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: hidden;
}

/* Stat cards */
.ahm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  flex-shrink: 0;
}
.ahm-card {
  background: #fff;
  border-radius: 7px;
  border-top: 3px solid transparent;
  padding: 0.45rem 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ahm-card--green { border-top-color: #22c55e; }
.ahm-card--blue  { border-top-color: #3b82f6; }
.ahm-card--red   { border-top-color: #ef4444; }
.ahm-card-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ahm-card-label {
  font-size: 0.4375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.ahm-card-num {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  display: block;
}
.ahm-card-num--red { color: #ef4444; }
.ahm-card-link {
  font-size: 0.4375rem;
  color: #3b82f6;
  display: block;
  margin-top: 0.1rem;
}
.ahm-card-link--red { color: #ef4444; }

/* Donut snapshot */
.ahm-snapshot {
  background: #fff;
  border-radius: 7px;
  padding: 0.5rem 0.625rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.ahm-snapshot-head { margin-bottom: 0.4rem; }
.ahm-snapshot-head strong { font-size: 0.5625rem; color: #0f172a; display: block; }
.ahm-snapshot-head p { font-size: 0.4375rem; color: #94a3b8; margin: 0; }
.ahm-snapshot-body { display: flex; gap: 0.75rem; align-items: center; }
.ahm-donut-wrap {
  position: relative;
  width: 72px; height: 72px;
  flex-shrink: 0;
}
.ahm-donut-svg { width: 72px; height: 72px; }
.ahm-seg { animation: ahm-seg-in 1s ease forwards; opacity: 0; }
.ahm-seg:nth-child(2) { animation-delay: 0.1s; }
.ahm-seg:nth-child(3) { animation-delay: 0.25s; }
.ahm-seg:nth-child(4) { animation-delay: 0.4s; }
.ahm-seg:nth-child(5) { animation-delay: 0.55s; }
.ahm-seg:nth-child(6) { animation-delay: 0.7s; }
@keyframes ahm-seg-in { from { opacity: 0; } to { opacity: 1; } }
.ahm-donut-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
}
.ahm-donut-center strong { font-size: 0.875rem; font-weight: 800; color: #0f172a; }
.ahm-donut-center small  { font-size: 0.375rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.ahm-legend { flex: 1; display: flex; flex-direction: column; gap: 0.28rem; }
.ahm-legend-row {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.5rem; color: #475569;
}
.ahm-legend-row span { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ahm-legend-row b { margin-left: auto; font-weight: 700; color: #0f172a; }

/* Activity feed */
.ahm-activity {
  flex: 1;
  background: #fff;
  border-radius: 7px;
  padding: 0.5rem 0.625rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ahm-activity-title {
  font-size: 0.5625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}
.ahm-activity-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.5rem;
  color: #475569;
  opacity: 0;
  animation: ahm-fade-up 0.4s ease forwards;
}
.ahm-activity-item:last-child { border-bottom: none; }
.ahm-anim--1 { animation-delay: 0.6s; }
.ahm-anim--2 { animation-delay: 0.9s; }
.ahm-anim--3 { animation-delay: 1.2s; }
.ahm-anim--4 { animation-delay: 1.5s; }
@keyframes ahm-fade-up {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ahm-dot-sm { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ahm-badge {
  font-size: 0.4375rem;
  padding: 0.1rem 0.28rem;
  border-radius: 3px;
  font-weight: 600;
}
.ahm-badge--green { background: #dcfce7; color: #16a34a; }
.ahm-badge--blue  { background: #dbeafe; color: #2563eb; }
.ahm-tag {
  font-size: 0.4375rem;
  padding: 0.1rem 0.28rem;
  border-radius: 3px;
  background: #f1f5f9;
  color: #64748b;
}
.ahm-activity-item small {
  margin-left: auto;
  font-size: 0.4375rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Responsive: untilt on mobile */
@media (max-width: 992px) {
  .am-hero-mockup {
    transform: none;
    max-width: 480px;
    margin: 0 auto;
  }
  .am-hero-mockup:hover { transform: none; }
}

/* ─── FORM OVERRIDES ─── */
.page-arco-modern .form-control {
  background: var(--am-surface-alt);
  border: 1px solid var(--am-border);
  color: var(--am-text);
  border-radius: var(--am-radius-sm);
}
.page-arco-modern .form-control:focus {
  border-color: var(--am-primary);
  box-shadow: 0 0 0 3px var(--am-primary-light);
}
.page-arco-modern .form-label {
  color: var(--am-text-secondary);
}

/* ─── BUTTON OVERRIDES ─── */
.page-arco-modern .btn-primary {
  background: linear-gradient(135deg, var(--am-primary), #bb0b0b);
  border: none;
  color: #fff;
  box-shadow: 0 4px 16px -2px rgba(187, 11, 11, 0.3);
}
.page-arco-modern .btn-primary:hover {
  box-shadow: 0 8px 24px -4px rgba(187, 11, 11, 0.4);
}
.page-arco-modern .btn-ghost {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  color: var(--am-text);
}
.page-arco-modern .btn-ghost:hover {
  background: var(--am-surface-alt);
  border-color: var(--am-text-muted);
}

/* ─── NAV OVERRIDES ─── */
.page-arco-modern .header-nav {
  top: var(--region-bar-h, 0px);
  left: 0;
  right: 0;
  border-radius: 0;
  background: #fff;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  backdrop-filter: none;
}
.page-arco-modern .header-nav.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-arco-modern .nav-links-wrap {
  background: transparent;
  border: none;
  padding: 0;
  gap: 0.25rem;
}
.page-arco-modern .nav-item {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.page-arco-modern .nav-item:hover {
  color: #bb0b0b;
  background: rgba(187, 11, 11, 0.05);
}
.page-arco-modern .nav-item.active {
  color: #bb0b0b;
  font-weight: 600;
  background: rgba(187, 11, 11, 0.08);
}
.page-arco-modern .btn-nav-cta {
  background: #bb0b0b !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.page-arco-modern .btn-nav-cta:hover {
  background: #bb0b0b !important;
}

/* ─── FOOTER OVERRIDES ─── */

/* ==========================================================================
   RESPONSIVE – All Screen Types
   ========================================================================== */

/* ── Large desktops (≤1400px) ── */
@media (max-width: 1400px) {
  .am-dark-showcase__frame { max-width: 1100px; }
}

/* ── Laptops / small desktops (≤1200px) ── */
@media (max-width: 1200px) {
  .am-hero__grid { gap: 2.5rem; }
  .am-dark-showcase__frame { max-width: 900px; }
  .am-dash__sidebar { width: 160px; }
  .am-dash__donut-wrap { width: 100px; height: 100px; }
  .am-dash__snapshot-body { gap: 1rem; }
  .page-arco-modern .arco-ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Tablets landscape (≤992px) ── */
@media (max-width: 992px) {
  .am-hero { padding: 7rem 0 3rem; }
  .am-hero__grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .am-hero__desc { margin-left: auto; margin-right: auto; }
  .am-hero__actions { justify-content: center; }
  .am-hero__visual { max-width: 280px; margin: 0 auto; }
  .am-dark-showcase { padding: 3rem 0 4rem; }
  .am-dark-showcase__frame { max-width: 100%; }
  .am-dash { min-height: auto; }
  .am-dash__sidebar { width: 140px; font-size: 0.6875rem; }
  .am-dash__cards { grid-template-columns: repeat(2, 1fr); }
  .am-dash__card-num { font-size: 1.125rem; }
  .am-benefits { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .am-features { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .am-feature-orbit__canvas { min-height: 640px; height: min(82vh, 760px); }
  .am-feature-orbit__center { width: 190px; height: 190px; }
  .am-feature-orbit__logo-wrap { width: 102px; height: 48px; }
  .am-orbit-card { width: clamp(146px, 17vw, 182px); padding: 0.85rem 0.9rem; }
  .am-orbit-card__icon { width: 46px; height: 46px; }
  .am-orbit-card__icon svg { width: 22px; height: 22px; }
  .am-orbit-card h4 { font-size: 0.66rem; }
  .am-contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .am-section__header { margin-bottom: 2.5rem; }
  .sc-stepper .arco-tab { font-size: 0.7rem; padding: 0.35rem 0.6rem; }
  .sc-step-line { width: 20px; }
  .sc-step-num { width: 20px; height: 20px; font-size: 0.55rem; }
  .sc-live__body { min-height: 340px; }
  .sc-live__title { font-size: 0.72rem; }
  .sc-live__desc { font-size: 0.62rem; }
  .page-arco-modern .arco-countries { gap: 1.5rem 2rem; }
  .sc-sidebar { width: 130px; }
  .sc-sb-item { font-size: 0.5rem; padding: 0.32rem 0.5rem; }
}

/* ── Tablets portrait (≤768px) ── */
@media (max-width: 768px) {
  .am-hero { padding: 6rem 0 2.5rem; }
  .am-hero__title { font-size: clamp(1.5rem, 5vw, 2rem); white-space: normal; }
  .am-hero__subtitle { font-size: 1rem; }
  .am-hero__desc { font-size: 0.9375rem; }
  .am-hero__visual { max-width: 240px; }
  .am-float-card { display: none; }
  .am-dark-showcase { padding: 2.5rem 0 3rem; }
  .am-dark-showcase__header { margin-bottom: 2rem; }
  .am-dash { flex-direction: column; min-height: auto; }
  .am-dash__sidebar {
    width: 100%; flex-direction: row; overflow-x: auto;
    padding: 0.5rem 0.75rem; border-right: none; border-bottom: 1px solid #e2e8f0;
  }
  .am-dash__logo, .am-dash__user, .am-dash__logout { display: none; }
  .am-dash__nav { flex-direction: row; gap: 0; }
  .am-dash__nav-item { border-left: none; border-bottom: 2px solid transparent; padding: 0.4rem 0.6rem; white-space: nowrap; }
  .am-dash__nav-item--active { border-bottom-color: #2563eb; }
  .am-dash__cards { grid-template-columns: 1fr 1fr; }
  .am-dash__snapshot-body { flex-direction: column; gap: 1rem; }
  .am-dash__donut-wrap { width: 100px; height: 100px; }
  .am-section { padding: 3.5rem 0; }
  .am-section__header { margin-bottom: 2rem; }
  .am-section__sub { font-size: 0.9375rem; }
  .am-benefits { gap: 1.25rem; }
  .am-benefit__body { padding: 1.25rem; }
  .am-benefit__img { height: 140px; }
  .am-features { gap: 1.25rem; }
  .am-feature-orbit { border-radius: 26px; padding: 1rem; }
  .am-feature-orbit__canvas {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    padding-top: 220px;
  }
  .am-orbit-loop,
  .am-orbit-arrow { display: none; }
  .am-feature-orbit__center {
    width: 184px;
    height: 184px;
    top: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .am-orbit-card {
    position: static;
    width: min(100%, 210px);
    transform: none !important;
    justify-self: center;
  }
  .am-orbit-card__icon { width: 52px; height: 52px; }
  .am-orbit-card__icon svg { width: 24px; height: 24px; }
  .am-orbit-card h4 { font-size: 0.72rem; }
  .am-fcard__img { height: 130px; }
  .am-fcard__scene { height: 180px; }
  .am-mini { height: 360px; }
  .am-fcard__body { padding: 1.25rem; }
  .am-metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .am-metrics { padding: 3rem 0; }
  .am-contact__card { padding: 1.5rem; }
  .page-arco-modern .arco-countries { gap: 1.25rem 1.5rem; }
  .page-arco-modern .arco-country-item img { width: 44px; height: 44px; }
  .page-arco-modern .arco-country-item span { font-size: 0.6875rem; }
  .sc-nav { flex-direction: column; gap: 0.75rem; }
  .sc-stepper { justify-content: center; flex-wrap: wrap; }
  .page-arco-modern .browser-mockup { border-radius: 12px; }
  .sc-live__body { min-height: 300px; }
  .sc-sidebar { display: none; }
  .sc-sidebar--mini { display: none; }
  .sc-main { padding: 0.65rem; gap: 0.5rem; }
  .sc-grid-cards { grid-template-columns: repeat(2, 1fr); gap: 0.35rem; }
  .sc-exec-meta { flex-wrap: wrap; }
  .sc-exec-meta > div { min-width: 45%; }
  .sc-exec-bar { flex-wrap: wrap; font-size: 0.5rem; }
  .sc-exec-links { font-size: 0.45rem; }
  .sc-table th, .sc-table td { padding: 0.3rem 0.35rem; font-size: 0.5rem; }
  .sc-email-card { max-width: 300px; padding: 1.25rem 1.5rem; }
  .sc-otp-card { max-width: 250px; padding: 1.25rem; }
  .sc-modal { max-width: 250px; }
  .sc-amodal { max-width: 440px; }
  .sc-report-meta, .sc-report-meta2 { font-size: 0.38rem; gap: 0.35rem; }
  .page-arco-modern .arco-ptable-wrap { margin: 0 -1rem; border-radius: 0; border-left: none; border-right: none; }
}

/* ── Large phones (≤600px) ── */
@media (max-width: 600px) {
  .am-hero { padding: 5.5rem 0 2rem; }
  .am-hero__eyebrow { font-size: 0.6875rem; padding: 0.4rem 0.75rem; }
  .am-hero__actions { flex-direction: column; align-items: center; }
  .am-hero__actions .btn { width: 100%; text-align: center; }
  .am-hero__visual { max-width: 200px; }
  .am-dark-showcase__header { margin-bottom: 1.5rem; }
  .am-browser__bar { padding: 0.6rem 0.75rem; }
  .am-browser__dot { width: 8px; height: 8px; }
  .am-browser__url { font-size: 0.6875rem; padding: 0.3rem 0.5rem; }
  .am-dash__cards { grid-template-columns: 1fr; gap: 0.5rem; }
  .am-dash__card { padding: 0.65rem 0.85rem; }
  .am-dash__card-icon { width: 28px; height: 28px; }
  .am-dash__card-num { font-size: 1rem; }
  .am-dash__legend-row { font-size: 0.625rem; }
  .am-benefits { grid-template-columns: 1fr; }
  .am-features { grid-template-columns: 1fr; }
  .am-feature-orbit__canvas { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding-top: 0; grid-template-columns: none; }
  .am-feature-orbit__center { width: 168px; height: 168px; position: static; transform: none; }
  .am-feature-orbit__logo-wrap { width: 88px; height: 40px; }
  .am-feature-orbit__center h3 { font-size: 1rem; }
  .am-feature-orbit__center p { font-size: 0.62rem; }
  .am-orbit-card { width: 100%; max-width: 280px; position: static; aspect-ratio: auto; border-radius: 16px; flex-direction: row; transform: none !important; }
  .am-orbit-card h4 { font-size: 0.7rem; }
  .am-section { padding: 2.5rem 0; }
  .am-section__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .am-section__header { margin-bottom: 1.5rem; }
  .sc-stepper { overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 4px; padding: 3px; }
  .sc-stepper .arco-tab { font-size: 0.6rem; padding: 0.3rem 0.5rem; flex-shrink: 0; }
  .sc-step-line { width: 16px; }
  .sc-step-num { width: 18px; height: 18px; font-size: 0.5rem; }
  .sc-live__info { flex-direction: column; gap: 0.2rem; bottom: 8px; left: 8px; right: 8px; padding: 0.45rem 0.7rem; }
  .sc-live__title { font-size: 0.68rem; }
  .sc-cards { grid-template-columns: repeat(2, 1fr); gap: 0.35rem; }
  .sc-grid-cards { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; }
  .sc-gcard { padding: 0.4rem; }
  .sc-gcard-head span { font-size: 0.4rem; }
  .sc-exec-form { padding: 0.5rem; }
  .sc-exec-meta-row { flex-wrap: wrap; gap: 0.4rem; }
  .sc-exec-meta-row > div { min-width: 40%; }
  .sc-amodal { max-width: 92%; }
  .page-arco-modern .arco-countries { gap: 1rem; }
  .page-arco-modern .arco-country-item img { width: 38px; height: 38px; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .am-hero { padding: 5rem 0 1.5rem; }
  .am-hero__title { font-size: 1.625rem; letter-spacing: -0.01em; }
  .am-hero__subtitle { font-size: 0.9375rem; }
  .am-hero__desc { font-size: 0.875rem; line-height: 1.6; }
  .am-hero__visual { max-width: 180px; }
  .am-dark-showcase { padding: 2rem 0 2.5rem; }
  .am-browser__bar { padding: 0.5rem 0.6rem; gap: 0.35rem; }
  .am-browser__dot { width: 7px; height: 7px; }
  .am-browser__url { font-size: 0.6rem; margin-left: 0.5rem; }
  .am-dash__main { padding: 0.75rem; gap: 0.65rem; }
  .am-dash__section-title { font-size: 0.75rem; }
  .am-dash__donut-wrap { width: 85px; height: 85px; }
  .am-dash__donut-center strong { font-size: 1.1rem; }
  .am-metrics__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .am-metrics__item { padding: 1rem; }
  .am-benefit__body h3 { font-size: 1rem; }
  .am-benefit__body p { font-size: 0.8125rem; }
  .am-fcard__body h3 { font-size: 0.9375rem; }
  .am-fcard__body p { font-size: 0.8125rem; }
  .am-contact__desc { font-size: 0.9375rem; }
  .am-contact__card { padding: 1.25rem; }
  .sc-live__body { min-height: 260px; }
  .sc-live__info { padding: 0.4rem 0.65rem; bottom: 6px; left: 6px; right: 6px; }
  .sc-live__title { font-size: 0.65rem; }
  .sc-live__desc { font-size: 0.55rem; }
  .sc-stepper .arco-tab { font-size: 0.55rem; padding: 0.25rem 0.4rem; }
  .sc-step-line { width: 12px; }
  .sc-step-num { width: 16px; height: 16px; font-size: 0.45rem; }
  .sc-step-label { display: none; }
  .sc-live__badge { font-size: 0.5rem; }
  .page-arco-modern .browser-mockup { border-radius: 10px; }
  .page-arco-modern .browser-header { padding: 0.35rem 0.5rem; }
  .sc-panel { font-size: 0.6rem; }
  .sc-main { padding: 0.5rem; gap: 0.4rem; }
  .sc-cards { grid-template-columns: 1fr 1fr; gap: 0.3rem; }
  .sc-card { padding: 0.35rem; }
  .sc-card-val { font-size: 0.85rem; }
  .sc-table th, .sc-table td { padding: 0.25rem 0.3rem; font-size: 0.45rem; }
  .sc-grid-cards { grid-template-columns: 1fr 1fr; gap: 0.25rem; }
  .sc-exec-bar { padding: 0.35rem 0.5rem; font-size: 0.48rem; }
  .sc-exec-form h4 { font-size: 0.6rem; }
  .sc-exec-form .sc-field label { font-size: 0.45rem; }
  .sc-email-card { max-width: 260px; padding: 1rem; }
  .sc-email-card h3 { font-size: 0.7rem; }
  .sc-otp-card { max-width: 220px; padding: 1rem; }
  .sc-otp-card h3 { font-size: 0.65rem; }
  .sc-otp-boxes span { width: 22px; height: 26px; }
  .sc-modal { max-width: 220px; padding: 1rem; }
  .sc-modal h3 { font-size: 0.75rem; }
  .sc-modal-check { width: 35px; height: 35px; }
  .sc-amodal { max-width: 95%; }
  .sc-report-head { padding: 0.35rem 0.5rem; }
  .sc-report-meta, .sc-report-meta2 { padding: 0.2rem 0.5rem; font-size: 0.35rem; }
  .sc-report-tabs { font-size: 0.45rem; }
  .page-arco-modern .arco-countries { gap: 0.75rem 1rem; }
  .page-arco-modern .arco-country-item img { width: 34px; height: 34px; border-width: 1px; }
  .page-arco-modern .arco-country-item span { font-size: 0.6rem; }
}

/* ── Extra small (≤360px) ── */
@media (max-width: 360px) {
  .am-hero__title { font-size: 1.375rem; }
  .am-hero__subtitle { font-size: 0.875rem; }
  .am-hero__desc { font-size: 0.8125rem; }
  .am-hero__visual { max-width: 160px; }
  .am-section { padding: 2rem 0; }
  .am-section__title { font-size: 1.375rem; }
  .am-dark-showcase { padding: 1.5rem 0 2rem; }
  .am-metrics__grid { grid-template-columns: 1fr; }
  .am-contact__icon { width: 2rem; height: 2rem; }
  .am-contact__row h4 { font-size: 0.8125rem; }
  .am-contact__row p { font-size: 0.75rem; }
  .sc-nav__tabs .arco-tab { font-size: 0.6rem; padding: 0.25rem 0.45rem; }
  .sc-live__actions { gap: 0.15rem; }
  .sc-live__btn { width: 22px; height: 22px; font-size: 0.85rem; }
  .sc-live__counter { font-size: 0.55rem; min-width: 2rem; }
  .sc-panel { font-size: 0.52rem; }
  .sc-grid-cards { grid-template-columns: 1fr; }
  .sc-exec-meta-row > div { min-width: 100%; }
  .sc-email-card { max-width: 100%; }
  .sc-otp-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING V2 - compact single-viewport cards  (prc-*)
   ═══════════════════════════════════════════════════════════ */

/* Section overrides for tight viewport fit */
.prc-vp { padding-top: 3rem !important; padding-bottom: 2.5rem !important; }

/* Header row: title left, currency picker right */
.prc-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.prc-hd .am-section__title { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
.prc-currency { margin-top: 0 !important; }

/* 4-column grid */
.prc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

/* ── Base card ── */
.prc-card {
  position: relative;
  background: var(--am-surface);
  border: 1.5px solid var(--am-border);
  border-radius: 16px;
  padding: 0 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,.61,.36,1), box-shadow 0.3s ease;
}
.prc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.14);
}

/* Accent bar at top */
.prc-card__bar {
  height: 4px;
  margin: 0 -1.375rem 1.125rem;
  width: calc(100% + 2.75rem);
  flex-shrink: 0;
  transition: opacity 0.3s;
}

/* ── Featured (GOLD) card ── */
.prc-card--hot {
  border-color: transparent;
  background:
    linear-gradient(var(--am-surface), var(--am-surface)) padding-box,
    linear-gradient(150deg, #bb0b0b 0%, #1565c0 100%) border-box;
  box-shadow: 0 10px 36px -8px rgba(187,11,11,.18);
}
.prc-card--hot:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px -10px rgba(187,11,11,.25);
}

/* "Most Popular" ribbon */
.prc-popular {
  position: absolute;
  top: 4px;
  right: 0;
  background: linear-gradient(135deg, #bb0b0b, #bb0b0b);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.75rem 0.28rem 0.6rem;
  border-radius: 0 0 0 8px;
  box-shadow: -2px 2px 8px rgba(187,11,11,.3);
}

/* Card header: tier badge + name + tag pill */
.prc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}
.prc-tier {
  display: inline-block;
  font-size: 0.575rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  margin-bottom: 0.3rem;
}
.prc-name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--am-text);
  margin: 0;
  line-height: 1.2;
}
.prc-card__tag {
  font-size: 0.575rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  border: 1px solid;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.prc-card__tag--hot {
  background: linear-gradient(135deg, #bb0b0b, #1565c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-color: rgba(187,11,11,.3);
}

/* Price block */
.prc-price-block {
  border-bottom: 1px solid var(--am-border);
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
}
.prc-price {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--am-text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.prc-price--hot {
  background: linear-gradient(135deg, #bb0b0b, #d32f2f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prc-period {
  font-size: 0.675rem;
  color: var(--am-text-muted, #6b7280);
}

/* Key specs - 4-up grid */
.prc-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.875rem;
}
.prc-spec {
  background: var(--am-bg, #f8fafc);
  border: 1px solid var(--am-border);
  border-radius: 8px;
  padding: 0.45rem 0.2rem;
  text-align: center;
}
.prc-spec--hot {
  background: rgba(187,11,11,.05);
  border-color: rgba(187,11,11,.15);
}
.prc-spec b {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--am-text);
  line-height: 1;
}
.prc-spec span {
  display: block;
  font-size: 0.5rem;
  color: var(--am-text-muted, #9ca3af);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* Feature list */
.prc-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.125rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.475rem;
}
.prc-feats li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.775rem;
  color: var(--am-text-secondary);
  line-height: 1.4;
}
.prc-feat--off {
  opacity: 0.4;
  text-decoration: line-through;
  text-decoration-color: #9ca3af;
}
.prc-feat--add {
  color: var(--am-text-muted, #6b7280) !important;
  font-style: italic;
}
.prc-ic {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* CTA button */
.prc-cta {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-size: 0.8125rem;
  padding: 0.75rem 1rem;
  margin-top: auto;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .prc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prc-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .prc-hd { flex-direction: column; align-items: flex-start; }
  .prc-specs { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE-VIEWPORT PRODUCT TOUR
   ═══════════════════════════════════════════════════════════════════ */
.sc-vp-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--am-surface-alt);
  padding: 5rem 3rem;
  box-sizing: border-box;
}
.sc-vp-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

/* ── Left column ── */
.sc-vp-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sc-vp-heading {
  font-family: var(--am-font-display);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--am-text);
  margin: 0;
}
.sc-vp-sub {
  font-size: 0.9rem;
  color: var(--am-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── Vertical tab nav ── */
.sc-vp-section .sc-nav__tabs {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.55rem !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  align-items: stretch !important;
}
.sc-vp-section .sc-nav__tabs .arco-tab {
  all: unset;
  box-sizing: border-box;
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  border: 1.5px solid var(--am-border);
  background: var(--am-surface);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: var(--am-font);
}
.sc-vp-section .sc-nav__tabs .arco-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--am-primary);
  transform: scaleY(0);
  border-radius: 0 2px 2px 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.sc-vp-section .sc-nav__tabs .arco-tab.active::before { transform: scaleY(1); }
.sc-vp-section .sc-nav__tabs .arco-tab:hover {
  border-color: rgba(187,11,11,0.25);
  background: var(--am-surface);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transform: translateX(4px);
}
.sc-vp-section .sc-nav__tabs .arco-tab.active {
  border-color: var(--am-primary);
  background: var(--am-surface);
  box-shadow: 0 4px 24px rgba(187,11,11,0.13), 0 0 0 1px rgba(187,11,11,0.06);
  transform: translateX(6px);
}
.sc-vp-section .sc-nav__tabs .arco-tab { background: #fff; }
.sc-vp-section .sc-nav__tabs .arco-tab.active { background: #fff; }

.sc-vp-tab-ico {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--am-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.sc-vp-section .sc-nav__tabs .arco-tab.active .sc-vp-tab-ico {
  background: #fef2f2;
}
.sc-vp-tab-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
  min-width: 0;
}
.sc-vp-tab-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--am-text);
  display: block;
  transition: color 0.3s;
}
.sc-vp-section .sc-nav__tabs .arco-tab.active .sc-vp-tab-name { color: #bb0b0b; }
.sc-vp-tab-hint {
  font-size: 0.72rem;
  color: var(--am-text-muted);
  display: block;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-vp-tab-n {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--am-text-muted);
  background: var(--am-surface-alt);
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.sc-vp-section .sc-nav__tabs .arco-tab.active .sc-vp-tab-n {
  background: #fef2f2;
  color: #bb0b0b;
}

/* ── Right column ── */
.sc-vp-right { min-width: 0; }
.sc-vp-right .sc-live__body { min-height: 530px !important; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sc-vp-wrap { grid-template-columns: 300px 1fr; gap: 2.75rem; }
  .sc-vp-heading { font-size: 1.75rem; }
}
@media (max-width: 860px) {
  .sc-vp-section { padding: 3.5rem 1.5rem; min-height: auto; }
  .sc-vp-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .sc-vp-section .sc-nav__tabs {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .sc-vp-section .sc-nav__tabs .arco-tab {
    width: auto !important;
    flex: 1 1 140px;
    transform: none !important;
  }
  .sc-vp-section .sc-nav__tabs .arco-tab.active { transform: none !important; }
  .sc-vp-tab-hint { display: none; }
  .sc-vp-right .sc-live__body { min-height: 420px !important; }
}
@media (max-width: 480px) {
  .sc-vp-section { padding: 2.5rem 1rem; }
  .sc-vp-section .sc-nav__tabs .arco-tab { flex: 1 1 100px; padding: 0.6rem 0.7rem; }
  .sc-vp-tab-ico { width: 28px; height: 28px; font-size: 0.9rem; }
  .sc-vp-tab-name { font-size: 0.78rem; }
  .sc-vp-tab-n { display: none; }
  .sc-vp-right .sc-live__body { min-height: 320px !important; }
}
