:root {
  --bg: #f6f4ff;
  --surface: #ffffff;
  --surface-soft: #efeaff;
  --text: #201a37;
  --ink: #201a37;
  --muted: #625b7f;
  --line: #e1d9ff;
  --brand: #8466f6;
  --brand-ink: #503ca7;
  --accent: #b29bff;
  --danger: #d94841;
  --shadow: 0 20px 55px rgba(50, 37, 104, 0.18);
}

html.theme-dark {
  --bg: #110f1d;
  --surface: #1b1730;
  --surface-soft: #272140;
  --text: #efe8ff;
  --ink: #efe8ff;
  --muted: #cbc1e3;
  --line: #3b3360;
  --brand: #9a82ff;
  --brand-ink: #d7cbff;
  --accent: #8067e3;
  --danger: #ef7f78;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html.theme-dark body:not(.admin-dashboard-page) {
  background: radial-gradient(circle at 10% 15%, #261d46 0%, transparent 42%), var(--bg);
}

body {
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 10% 15%, #e8dfff 0%, transparent 45%), var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.45;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
}

.orb-a {
  width: 300px;
  height: 300px;
  background: #c9bbff;
  top: -80px;
  right: -60px;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: #dfd3ff;
  left: -80px;
  bottom: 15%;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(243, 248, 247, 0.82);
  border-bottom: 1px solid var(--line);
}

html.theme-dark .site-header {
  background: rgba(20, 17, 33, 0.84);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: "Fraunces", serif;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}

.brand img {
  width: 30px;
  height: 30px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.header-login-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-login-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  background: #ffffff;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.header-login-pill:hover {
  transform: translateY(-1px);
}

.header-login-pill:focus-visible {
  outline: 2px solid #7f68d8;
  outline-offset: 2px;
}

.login-role {
  color: #2f2a43;
  font-weight: 800;
}

.login-target {
  color: #5d547b;
  font-weight: 700;
}

.login-admin {
  border-color: #c6b7ff;
  background: linear-gradient(140deg, #ffffff 0%, #f3eeff 100%);
  box-shadow: 0 6px 16px rgba(91, 72, 179, 0.14);
}

.login-admin:hover {
  border-color: #a793f4;
  box-shadow: 0 10px 22px rgba(91, 72, 179, 0.2);
}

.login-employee {
  border-color: #cfe3de;
  background: linear-gradient(140deg, #ffffff 0%, #eef9f5 100%);
  box-shadow: 0 6px 16px rgba(31, 107, 70, 0.12);
}

.login-employee:hover {
  border-color: #9bc8b8;
  box-shadow: 0 10px 22px rgba(31, 107, 70, 0.18);
}

.main-nav a,
.site-footer a {
  text-decoration: none;
  color: var(--brand-ink);
  font-weight: 700;
}

.hero {
  padding: 78px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  margin: 14px 0;
  font-size: clamp(2.1rem, 5vw, 3.45rem);
}

h2 {
  margin: 12px 0 28px;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(102, 79, 214, 0.24);
  background: #6f54df;
}

.btn-ghost {
  background: #ffffff;
  color: var(--brand-ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  box-shadow: 0 10px 22px rgba(16, 33, 42, 0.08);
  background: #f9fdfc;
}

.metric-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-ink);
}

.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: linear-gradient(168deg, #8f76ff 0%, #6043ca 100%);
  color: #ecfbf8;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  color: #ffffff;
  margin-top: 10px;
}

.card-label {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e6dcff;
}

.hero-card ul {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(243, 238, 255, 0.28);
  padding-bottom: 9px;
}

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 800;
}

.status-flag {
  background: #dfd3ff;
  color: #382b77;
}

.section {
  padding: 54px 0;
}

.trust-band {
  padding: 8px 0 22px;
}

.trust-band-inner {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(120deg, #ffffff 0%, #f4f8ff 56%, #f8f4ff 100%);
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.trust-title {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #514874;
  font-weight: 800;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-list li {
  border: 1px solid #dcd5f5;
  background: #ffffff;
  color: #3e365f;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.84rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(132, 102, 246, 0.08), rgba(132, 102, 246, 0));
}

.feature-grid,
.result-grid,
.proof-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.feature-grid,
.proof-grid,
.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.result-card,
.proof-card,
.price-card,
.faq-grid details,
.cta-inner,
.demo-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feature-card,
.result-card,
.proof-card,
.price-card,
.faq-grid details {
  padding: 20px;
}

.feature-card p,
.result-card p,
.proof-card p,
.price-card li,
.panel-card p,
.panel-card li {
  color: var(--muted);
}

.proof-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8f4ff 100%);
}

.price-card {
  box-shadow: 0 10px 28px rgba(16, 33, 42, 0.05);
}

.price-card ul {
  margin: 0 0 18px;
  padding-left: 16px;
  color: var(--muted);
}

.price {
  margin: 8px 0 16px;
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 3px;
}

.highlighted {
  border-color: #b7a3ff;
  transform: translateY(-4px);
}

.mini-tag {
  margin: 0;
  display: inline-block;
  background: #5a43bb;
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 4px 10px;
}

.cta-section {
  padding-top: 20px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 20px;
  padding: 22px;
  background: linear-gradient(140deg, #ffffff, #f6f1ff);
}

.demo-form {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.trap-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-weight: 700;
}

.demo-form button:disabled {
  opacity: 0.76;
  cursor: wait;
}

.form-status.success {
  color: var(--brand);
}

.form-status.error {
  color: var(--danger);
}

label {
  display: grid;
  gap: 8px;
  color: var(--brand-ink);
  font-weight: 700;
}

input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.faq-grid details {
  background: #fbfefd;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--brand-ink);
}

summary + p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.footer-inner {
  padding: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.experience-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(80, 60, 167, 0.15);
}

.subpage-main {
  padding: 54px 0;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.panel-card h3 {
  margin-top: 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kpi-grid .panel-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-ink);
}

.queue-list,
.timeline,
.task-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.inline-form {
  display: grid;
  gap: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill.warn {
  background: #ffeacc;
  color: #6d3a00;
}

.status-pill.good {
  background: #e7f8ef;
  color: #1f6b46;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.proof-box {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #faf8ff;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.phone-frame {
  background: #1e1a35;
  border-radius: 28px;
  padding: 9px;
}

.phone-screen {
  background: #ffffff;
  border-radius: 22px;
  min-height: 430px;
  padding: 14px;
  border: 1px solid #dcd3ff;
}

.mock-head {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 8px;
}

.flow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flow-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-ink);
  font-weight: 700;
  background: #fff;
}

.signin-hero {
  position: relative;
  overflow: hidden;
}

.signin-hero::after {
  content: '';
  position: absolute;
  inset: auto -20px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  opacity: 0.28;
  filter: blur(16px);
}

.signin-hero-admin {
  background: linear-gradient(140deg, #ffffff 0%, #f2ecff 100%);
  border-color: #d8cbff;
}

.signin-hero-admin::after {
  background: #9e86f3;
}

.signin-hero-employee {
  background: linear-gradient(140deg, #ffffff 0%, #eef9f5 100%);
  border-color: #c8e0d7;
}

.signin-hero-employee::after {
  background: #7ac9ab;
}

.signin-form-card {
  border-width: 1px;
}

.signin-form-admin {
  border-color: #cec1f7;
}

.signin-form-employee {
  border-color: #b9dccf;
}

.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand-ink);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.theme-toggle:hover {
  box-shadow: 0 8px 18px rgba(16, 33, 42, 0.12);
}

html.theme-dark .btn-ghost {
  background: #211b38;
}

html.theme-dark .feature-card,
html.theme-dark .result-card,
html.theme-dark .price-card,
html.theme-dark .faq-grid details,
html.theme-dark .cta-inner,
html.theme-dark .demo-form,
html.theme-dark .panel-card {
  background: #221c3a;
  border-color: #4a4270;
}

html.theme-dark .proof-card,
html.theme-dark .signin-hero-admin,
html.theme-dark .signin-hero-employee {
  background: linear-gradient(160deg, #2a2248 0%, #211b39 100%);
  border-color: #534a7b;
}

html.theme-dark .trust-list li,
html.theme-dark .flow-links a {
  background: #211b38;
  border-color: #4a4270;
  color: #e7dcff;
}

html.theme-dark .proof-box,
html.theme-dark .phone-screen,
html.theme-dark .flow-links a,
html.theme-dark .mobile-form input,
html.theme-dark .mobile-form textarea,
html.theme-dark .mobile-form select {
  background: #221c3a;
  color: var(--text);
}

html.theme-dark .phone-frame {
  background: #0f0d1a;
}

html.theme-dark .site-footer {
  background: #140f27;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-link {
  display: inline-flex;
  margin-top: 10px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.84rem;
  color: var(--brand-ink);
  font-weight: 700;
}

.mobile-form {
  display: grid;
  gap: 8px;
}

.mobile-form label {
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 700;
}

.mobile-form input,
.mobile-form textarea,
.mobile-form select {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.mobile-form textarea {
  min-height: 74px;
  padding: 9px 10px;
  resize: vertical;
}

.mobile-kpi-list strong {
  color: var(--brand-ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-login-links {
    gap: 7px;
  }

  .header-login-pill {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .hero-grid,
  .pricing-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .proof-grid,
  .result-grid,
  .metric-row,
  .kpi-grid,
  .phone-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-list {
    gap: 6px;
  }

  .subpage-grid,
  .proof-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .highlighted {
    transform: none;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
    margin-bottom: 18px;
  }

  .hero {
    padding: 52px 0 26px;
  }

  .lead,
  .feature-card p,
  .result-card p,
  .proof-card p,
  .panel-card p,
  .panel-card li,
  .price-card li {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.admin-dashboard-page {
  background: #0e0d15;
  color: #f4efff;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.admin-dashboard-page .container {
  width: min(1360px, calc(100vw - 48px));
}

.admin-shell {
  display: flex;
  min-height: 100vh;
  width: min(1440px, 100%);
  margin: 0 auto;
  background: #100f17;
}

.admin-sidebar {
  width: 88px;
  padding: 18px 14px;
  background: rgba(15, 15, 24, 0.8);
  border-right: 1px solid rgba(211, 190, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.admin-brand-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  color: #f5ecff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(170, 133, 255, 0.18);
  border: 1px solid rgba(186, 167, 255, 0.35);
  color: #e7dcff;
  font-weight: 800;
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}

.nav-button {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(171, 150, 255, 0.15);
  border-radius: 12px;
  background: transparent;
  color: #d8d1ee;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease;
}

.nav-button.active {
  background: rgba(160, 123, 255, 0.14);
  border-color: rgba(176, 150, 255, 0.42);
}

.nav-icon {
  font-size: 1.1rem;
  opacity: 0.85;
}

.admin-main-panel {
  flex: 1;
  background: rgba(20, 18, 27, 0.9);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 64px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(214, 197, 255, 0.08);
}

.admin-topbar-spacer {
  flex: 1;
}

.admin-topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-chip,
.topbar-icon,
.user-pill,
.selection-pill,
.toggle,
.range {
  border: 1px solid rgba(188, 176, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  color: #f0ebff;
  border-radius: 12px;
  font: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.topbar-chip,
.topbar-icon {
  height: 36px;
  padding: 0 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.topbar-chip:hover,
.topbar-icon:hover,
.toggle:hover,
.range:hover,
.nav-button:hover,
.create-button:hover,
.selection-pill:hover,
.suggestion:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 170, 255, 0.4);
}

.topbar-icon {
  width: 36px;
  padding: 0;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px 0 8px;
  background: rgba(141, 128, 200, 0.12);
}

.user-avatar {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8d74ff, #b896ff);
  font-size: 0.6rem;
  font-weight: 800;
}

.dashboard-content {
  padding: 20px 28px 30px;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0;
}

.dashboard-head h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  color: #f4ecff;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 800;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.kpi-card {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(84, 59, 107, 0.42);
  border: 1px solid rgba(198, 178, 255, 0.14);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.kpi-label {
  color: #d4caef;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.kpi-value {
  color: #f5efff;
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  min-height: 1.7em;
}

.panel {
  margin-top: 28px;
  background: rgba(51, 32, 56, 0.7);
  border: 1px solid rgba(169, 145, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 18px 16px;
}

.org-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 64px);
  padding: 24px 24px 12px;
}

.org-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  flex: 1;
  width: 100%;
}

.org-settings-nav {
  background: rgba(32, 29, 36, 0.75);
  border: 1px solid rgba(188, 176, 255, 0.16);
  border-radius: 14px;
  padding: 18px 18px 12px;
  min-height: 660px;
  display: flex;
  flex-direction: column;
}

.org-settings-nav h1 {
  margin: 0;
  color: #f4efff;
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.org-settings-nav p {
  margin: 8px 0 0;
  color: rgba(232, 224, 255, 0.72);
  font-size: 0.92rem;
}

.org-tabs {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.org-tab {
  border: 1px solid rgba(188, 176, 255, 0.14);
  background: transparent;
  color: rgba(236, 230, 255, 0.73);
  border-radius: 10px;
  height: 46px;
  padding: 0 12px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.org-tab.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(188, 176, 255, 0.2);
  color: #f4efff;
}

.org-panel {
  background: rgba(32, 29, 36, 0.72);
  border: 1px solid rgba(188, 176, 255, 0.16);
  border-radius: 14px;
  padding: 0 18px 18px;
  min-height: 660px;
}

.org-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid rgba(190, 176, 255, 0.14);
  margin-bottom: 14px;
  padding: 0 2px;
}

.org-header-row h2 {
  margin: 0;
  color: #f4efff;
  font-size: 1.08rem;
  font-weight: 800;
}

.profile-card,
.danger-card {
  background: rgba(16, 17, 22, 0.28);
  border: 1px solid rgba(188, 176, 255, 0.12);
  border-radius: 12px;
}

.profile-card {
  padding: 16px 18px;
  min-height: 96px;
  display: flex;
  align-items: center;
}

.profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a77dff 0%, #ec4d4b 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(167, 125, 255, 0.28);
}

.mini-logo span {
  display: inline-block;
  transform: scale(0.8);
}

.org-name-wrap {
  display: flex;
  align-items: center;
}

.org-name {
  color: #f5efff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.secondary-button,
.text-button {
  border: 1px solid rgba(176, 154, 255, 0.2);
  color: #f6efff;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  min-height: 38px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.secondary-button {
  min-width: 146px;
}

.danger-card {
  margin-top: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 96px;
}

.danger-copy {
  color: rgba(245, 236, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 700;
}

.text-button {
  background: rgba(214, 59, 59, 0.08);
  color: #f6d2d2;
  border-color: rgba(255, 123, 123, 0.3);
  min-width: 170px;
}

.org-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 224, 255, 0.7);
  margin-top: 22px;
  padding: 0 6px 0 2px;
  font-size: 0.9rem;
}
.security-card {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.security-card input {
  margin-top: 6px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}
.security-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-lock {
  color: rgba(238, 232, 255, 0.9);
  font-weight: 700;
}

.toggle-group,
.range-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.toggle,
.range {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.toggle.active,
.range.active {
  background: rgba(171, 145, 255, 0.14);
  border-color: rgba(171, 145, 255, 0.42);
  color: #f2eaff;
}

.chart-surface {
  position: relative;
  min-height: 340px;
  border-top: 1px solid rgba(199, 180, 255, 0.08);
  background: rgba(18, 15, 22, 0.32);
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.status-panel .panel-header h2 {
  margin: 0;
  color: #f0ecff;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.funnel-header h2 {
  margin: 0;
  color: #f0ecff;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.funnel-subtitle {
  margin: 6px 0 0;
  color: rgba(223, 210, 255, 0.74);
  font-size: 0.84rem;
}

.funnel-placeholder {
  display: grid;
  gap: 14px;
}

.funnel-grid {
  display: grid;
  gap: 10px;
}

.funnel-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(189, 170, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.funnel-stage {
  color: rgba(241, 232, 255, 0.84);
  font-size: 0.88rem;
}

.funnel-value {
  color: #f4ecff;
  font-size: 1rem;
  font-weight: 800;
}

.funnel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.funnel-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(176, 154, 255, 0.2);
  padding: 0 10px;
  color: rgba(241, 232, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.selection-pill {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #f1ebff;
  background: rgba(141, 123, 197, 0.18);
}

.panel-placeholder {
  min-height: 170px;
  border-top: 1px solid rgba(199, 180, 255, 0.08);
  background: rgba(17, 15, 22, 0.12);
  padding: 18px 16px 12px;
}

.status-grid {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.status-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  align-items: center;
  gap: 10px;
  color: #efeaff;
  font-size: 0.9rem;
}

.status-name {
  color: rgba(241, 232, 255, 0.84);
}

.status-meter {
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.status-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b99eff 0%, #8b74ff 100%);
}

.meter-34 { width: 34%; }
.meter-24 { width: 24%; }
.meter-19 { width: 19%; }
.meter-14 { width: 14%; }
.meter-9 { width: 9%; }

.status-value {
  justify-self: end;
  color: rgba(241, 232, 255, 0.78);
}

.store-modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 8, 13, 0.7);
  padding: 24px;
}

.store-modal-overlay[hidden] {
  display: none;
}

.store-modal {
  position: relative;
  width: min(560px, calc(100vw - 40px));
  background: rgba(52, 33, 55, 0.96);
  border: 1px solid rgba(189, 173, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  padding: 22px 18px 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(190, 176, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(241, 232, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.store-modal-header h2 {
  margin: 0;
  color: #f2ebff;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.store-subtitle {
  margin: 10px 0 18px;
  color: rgba(233, 225, 255, 0.8);
  font-size: 1rem;
}

.store-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: #f4efff;
}

.field input {
  height: 44px;
  border: 1px solid rgba(190, 176, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f1ebff;
  border-radius: 10px;
  padding: 0 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.divider {
  border-top: 1px solid rgba(202, 183, 255, 0.12);
  margin: 6px 0;
}

.address-suggestions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.suggestion {
  min-height: 72px;
  border-radius: 10px;
  border: 1px solid rgba(190, 176, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f1ebff;
  padding: 12px 10px;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.35;
  cursor: pointer;
}

.suggestion.active {
  background: rgba(255, 255, 255, 0.08);
}

.map-panel {
  position: relative;
  height: 240px;
  border-radius: 10px;
  border: 1px solid rgba(190, 176, 255, 0.14);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55), rgba(214,228,255,0.15) 18%, transparent 19%),
    linear-gradient(180deg, rgba(146, 188, 255, 0.25), rgba(175, 222, 255, 0.14));
  overflow: hidden;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
}

.map-markers {
  position: absolute;
  inset: 0;
}

.map-label {
  position: absolute;
  font-size: 0.55rem;
  color: rgba(13, 18, 38, 0.75);
  font-weight: 700;
}

.map-label-top { top: 28%; left: 42%; }
.map-label-right { top: 52%; right: 18%; }
.map-label-left { bottom: 18%; left: 24%; }

.location-hint {
  margin: 4px 0 0;
  color: rgba(230, 225, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.map-tips {
  margin: 0;
  padding-left: 18px;
  color: rgba(228, 221, 255, 0.78);
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
}

.create-button {
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  height: 42px;
  font: inherit;
  font-weight: 800;
  color: #f6efff;
  background: linear-gradient(180deg, #a177ff, #8a64f8);
  box-shadow: 0 12px 26px rgba(138, 100, 248, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.create-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(138, 100, 248, 0.34);
  filter: brightness(1.04);
}

.page-content {
  padding: 24px 28px 30px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.page-header h1 {
  margin: 4px 0 0;
  color: #f4efff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

.eyebrow-table {
  margin: 0;
  color: rgba(208, 194, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #a177ff, #8a64f8);
  color: #f9f2ff;
  font: inherit;
  font-weight: 800;
  padding: 0 18px;
  min-height: 40px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(138, 100, 248, 0.25);
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.mini-kpi {
  background: rgba(76, 58, 94, 0.42);
  border: 1px solid rgba(188, 176, 255, 0.15);
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-label {
  color: rgba(225, 214, 255, 0.7);
  font-size: 0.78rem;
}

.mini-kpi strong {
  color: #f5efff;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.table-panel {
  background: rgba(34, 29, 39, 0.78);
  border: 1px solid rgba(188, 176, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(188, 176, 255, 0.1);
}

.table-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid rgba(188, 176, 255, 0.12);
  background: transparent;
  color: rgba(238, 232, 255, 0.75);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
}

.filter-chip.active {
  background: rgba(171, 145, 255, 0.12);
  border-color: rgba(171, 145, 255, 0.35);
}

.search-box {
  min-width: 180px;
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(188, 176, 255, 0.12);
  color: rgba(238, 232, 255, 0.6);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #efe9ff;
  font: inherit;
}

.search-box input::placeholder {
  color: rgba(238, 232, 255, 0.56);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  color: #f2ebff;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(188, 176, 255, 0.08);
  font-size: 0.94rem;
}

.data-table th {
  color: rgba(226, 217, 255, 0.7);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.badge.success {
  background: rgba(121, 208, 151, 0.12);
  color: #9ee7bb;
}

.badge.warning {
  background: rgba(241, 183, 88, 0.12);
  color: #f8d08c;
}

.badge.danger {
  background: rgba(227, 101, 101, 0.12);
  color: #f9a8a8;
}

.badge.neutral {
  background: rgba(188, 176, 255, 0.12);
  color: #d8ceff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  background: rgba(34, 29, 39, 0.78);
  border: 1px solid rgba(188, 176, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-topline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-topline strong {
  display: block;
  color: #f4efff;
  font-size: 1.08rem;
}

.member-topline span {
  display: block;
  color: rgba(224, 214, 255, 0.7);
  font-size: 0.8rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
}

.avatar-purple { background: linear-gradient(135deg, #8f76ff, #a77dff); }
.avatar-red { background: linear-gradient(135deg, #ff7d7d, #ef4d4d); }
.avatar-green { background: linear-gradient(135deg, #5ecf9d, #32a76e); }

.member-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(228, 220, 255, 0.72);
  font-size: 0.85rem;
}

.incident-list,
.audit-list {
  display: grid;
  gap: 14px;
}

.incident-item,
.audit-item {
  background: rgba(34, 29, 39, 0.78);
  border: 1px solid rgba(188, 176, 255, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.incident-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.incident-main h3 {
  margin: 0;
  color: #f4efff;
  font-size: 1.08rem;
}

.incident-main p,
.audit-item p {
  margin: 0;
  color: rgba(228, 220, 255, 0.72);
}

.incident-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.incident-item.is-resolved {
  opacity: 0.7;
}

.secondary-button.small,
.text-button.small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.detail-panel {
  background: rgba(34, 29, 39, 0.78);
  border: 1px solid rgba(188, 176, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.detail-panel h2 {
  margin: 0 0 16px;
  color: #f4efff;
  font-size: 1.15rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #f5efff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(188, 176, 255, 0.08);
}

.status-mark {
  display: inline-flex;
  justify-content: center;
  min-width: 54px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.status-mark.pass {
  background: rgba(121, 208, 151, 0.12);
  color: #9ee7bb;
}

.status-mark.fail {
  background: rgba(227, 101, 101, 0.12);
  color: #f9a8a8;
}

.evidence-box {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
}

.photo-placeholder {
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(160, 188, 255, 0.18), rgba(160, 135, 255, 0.1));
  border: 1px solid rgba(188, 176, 255, 0.12);
}

.photo-placeholder.small {
  height: 200px;
}

.audit-item {
  align-items: flex-start;
}

.audit-time {
  min-width: 84px;
  color: rgba(236, 229, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audit-item strong {
  color: #f5efff;
}

.topbar-has-language-menu {
  position: relative;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 154px;
  min-width: 140px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(188, 176, 255, 0.16);
  background: rgba(38, 30, 47, 0.98);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 50;
}

.language-menu.is-open {
  display: grid;
  gap: 4px;
}

.language-option {
  height: 34px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #f1eaff;
  font: inherit;
  text-align: left;
  padding: 0 10px;
  cursor: pointer;
}

.language-option:hover {
  border-color: rgba(188, 176, 255, 0.18);
  background: rgba(188, 176, 255, 0.09);
}

.store-page-wrap {
  display: grid;
  place-items: center;
}

.store-page-card {
  width: min(640px, 100%);
}

.admin-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(188, 176, 255, 0.2);
  background: rgba(34, 29, 39, 0.96);
  color: #efe9ff;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.admin-toast.success {
  border-color: rgba(121, 208, 151, 0.35);
}

.admin-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.access-form-panel h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.access-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(245, 238, 255, 0.9);
}

.access-form-grid input,
.access-form-grid select,
.access-inline-input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  padding: 9px 10px;
}

.access-inline-input {
  width: 100%;
}

.access-form-span-2 {
  grid-column: span 2;
}

.access-form-actions {
  display: flex;
  justify-content: flex-start;
}

.access-actions-cell {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .admin-shell {
    display: block;
  }

  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(211, 190, 255, 0.12);
  }

  .admin-brand-block {
    flex-direction: row;
    width: auto;
    padding-top: 0;
  }

  .admin-sidebar-nav {
    flex-direction: row;
    width: auto;
    margin-top: 0;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .language-menu {
    right: 0;
  }

  .access-form-grid {
    grid-template-columns: 1fr;
  }

  .access-form-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-login-links {
    flex-wrap: wrap;
  }

  .header-login-pill {
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .feature-grid,
  .proof-grid,
  .result-grid,
  .pricing-grid,
  .phone-grid,
  .experience-grid,
  .metric-row,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .proof-card,
  .result-card,
  .price-card,
  .panel-card,
  .demo-form,
  .cta-inner {
    padding: 16px;
  }

  .trust-list li {
    font-size: 0.88rem;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    padding: 18px 16px 24px;
  }

  .admin-topbar {
    justify-content: center;
  }

  .admin-topbar-spacer {
    display: none;
  }

  .admin-topbar-tools {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .kpi-card {
    min-height: 96px;
    padding: 14px 14px;
  }

  .kpi-label {
    font-size: 0.84rem;
  }

  .kpi-value {
    font-size: 1.65rem;
  }

  .funnel-row,
  .status-row {
    grid-template-columns: 1fr auto;
  }

  .status-meter {
    display: none;
  }

  .address-suggestions {
    grid-template-columns: 1fr;
  }

  .store-modal {
    padding: 16px 14px 14px;
  }
}
