﻿:root {
  --primary: #2563eb;
  --primary-rgb: 37, 99, 235;
  --secondary: #0f172a;
  --secondary-rgb: 15, 23, 42;
  --accent: #2563eb;
  --accent-rgb: 37, 99, 235;
  --neutral: #64748b;
  --neutral-rgb: 100, 116, 139;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --line: #e2e8f0;
  --success: #16a34a;
  --warning: #b45309;
  --danger: #dc2626;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --site-font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.impersonation-banner {
  position: sticky;
  top: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.impersonation-banner strong,
.impersonation-banner span {
  display: block;
}

.impersonation-banner strong {
  font-size: 14px;
  font-weight: 850;
}

.impersonation-banner span {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 650;
}

.impersonation-banner form {
  margin: 0;
}

@media (max-width: 575px) {
  .impersonation-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--site-font-family);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-2);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7fb 100%);
}
a {
  text-decoration: none;
  transition: 0.25s ease;
}
img {
  max-width: 100%;
  display: block;
}
.section-space {
  padding: 50px 0;
}
.bg-soft {
  background: linear-gradient(180deg, #f8fbff, #eff4fb);
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fw-900 {
  font-weight: 750;
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2200;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.topbar.is-scrolled {
  background: rgba(3, 7, 18, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.28);
}
.topbar.is-scrolled .navbar-brand {
  padding: 5px 10px;
  border-radius: 8px;
  background: #ffffff;
}
.topbar.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
}
.topbar.is-scrolled .nav-link:hover,
.topbar.is-scrolled .nav-link.active {
  color: #ffffff !important;
}
.topbar.is-scrolled .header-cart-btn,
.topbar.is-scrolled .header-account-btn,
.topbar.is-scrolled .btn-outline-theme {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
body:not(.dashboard-body):has(> .topbar) {
  padding-top: 83px;
}
.navbar {
  padding: 14px 0;
  transition: 0.3s ease;
}
.navbar.scrolled {
  padding: 11px 0;
}
.navbar-brand img {
  height: 54px;
  width: auto;
}
.nav-link {
  color: var(--ink) !important;
  font-weight: 700;
  margin: 0 6px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 26px;
  border: 0;
}
.btn-theme {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 18px 35px rgba(var(--primary-rgb), 0.22);
}
.btn-theme:hover {
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-theme {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline-theme:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.header-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  font-weight: 800;
  max-width: 230px;
}
.header-account-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.header-account-btn img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  flex: 0 0 auto;
}
.header-account-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-cart-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  font-size: 1.05rem;
}
.header-cart-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.header-cart-btn span {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

@media (max-width: 1199px) {
  .topbar {
    background: rgba(255, 255, 255, 0.96);
  }

  .topbar.is-scrolled .navbar-collapse {
    background: #ffffff;
  }

  .topbar.is-scrolled .navbar-collapse .nav-link {
    color: var(--ink) !important;
  }

  body:not(.dashboard-body):has(> .topbar) {
    padding-top: 64px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 44px;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dbe5f2 !important;
    border-radius: 8px;
    background: #ffffff;
    color: #0758f7;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .navbar-toggler[aria-expanded="true"] {
    background: #0758f7;
    color: #ffffff;
    border-color: #0758f7 !important;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
  }

  .navbar-nav {
    gap: 4px;
    margin-bottom: 14px !important;
  }

  .nav-link {
    min-height: 42px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 12px !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #eef5ff;
    color: #0758f7 !important;
  }

  .navbar-collapse > .d-flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
  }

  .header-cart-btn {
    width: 100%;
    height: 44px;
    border-radius: 8px;
  }

  .header-account-btn,
  .navbar-collapse .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .header-account-btn {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 575px) {
  body:not(.dashboard-body):has(> .topbar) {
    padding-top: 60px;
  }

  .navbar-collapse > .d-flex {
    grid-template-columns: 1fr;
  }

  .navbar-brand img {
    height: 40px;
  }
}
.btn-accent {
  background: linear-gradient(
    135deg,
    var(--accent),
    color-mix(in srgb, var(--accent) 65%, white)
  );
  color: #fff;
  box-shadow: 0 18px 35px rgba(var(--accent-rgb), 0.22);
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 700;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.section-head h2 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    color-mix(in srgb, var(--primary) 64%, #22b7ff) 48%,
    color-mix(in srgb, var(--secondary) 26%, #22b7ff) 100%
  );
}
.home-hero::before {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -440px;
  width: 980px;
  height: 980px;
  border-radius: 50%;
  background: #fff;
}
.home-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 440px;
  height: 440px;
  border: 48px solid rgba(255, 255, 255, 0.14);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}
.home-hero .container {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
  max-width: 650px;
}
.hero-copy p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 570px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 740px;
}
.hero-stat {
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(8px);
}
.hero-stat h4 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.hero-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}
.hero-stack {
  position: relative;
  padding-top: 20px;
}
.tilt-preview {
  position: relative;
  border-radius: 34px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
}
.tilt-preview img {
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  min-width: 220px;
}
.hero-floating-card h6 {
  margin: 8px 0 6px;
  color: var(--ink);
  font-weight: 800;
}
.hero-floating-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-floating-card.top {
  top: 0;
  right: -10px;
}
.hero-floating-card.bottom {
  left: -30px;
  bottom: 48px;
}
.stat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.09);
  color: var(--primary);
  font-weight: 800;
}
.hero-rings,
.hero-rings.small {
  position: absolute;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.35);
}
.hero-rings {
  width: 94px;
  height: 94px;
  right: -36px;
  bottom: 30px;
}
.hero-rings.small {
  width: 38px;
  height: 38px;
  left: -28px;
  top: 86px;
  border-width: 8px;
}
.brand-strip {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  margin-top: -38px;
  position: relative;
  z-index: 3;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner-logo {
  height: 90px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff, #f7fbff);
  padding: 14px;
}
.partner-logo span {
  font-weight: 800;
  color: var(--ink);
  opacity: 0.78;
}
.partner-logo img {
  max-height: 54px;
  width: auto;
  opacity: 0.96;
}
.info-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.info-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}
.info-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.info-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 40, 85, 0.04);
}
.info-point i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 4px;
}
.showcase-card {
  background: #fff;
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.showcase-card img {
  border-radius: 22px;
}
.showcase-tag {
  position: absolute;
  right: 24px;
  top: 24px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(18, 40, 85, 0.05);
  height: 100%;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(18, 40, 85, 0.09);
}
.service-card.featured {
  background: linear-gradient(
    145deg,
    var(--primary),
    color-mix(in srgb, var(--primary) 76%, white)
  );
  color: #fff;
  border: 0;
}
.service-card.featured p,
.service-card.featured small,
.service-card.featured h5 {
  color: #fff;
}
.icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.09);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.service-card.featured .icon-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.service-card h5 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  margin-bottom: 10px;
}
.service-card small {
  color: var(--muted);
}
.process-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary),
    color-mix(in srgb, var(--secondary) 46%, var(--primary))
  );
}
.process-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 180px
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(255, 255, 255, 0.1),
      transparent 220px
    );
}
.process-circle {
  width: min(360px, 100%);
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 80%, white),
    #ffb7a7
  );
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 48px;
  position: relative;
  margin-inline: auto;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}
.process-circle::before,
.process-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.45);
}
.process-circle::before {
  inset: -18px;
}
.process-circle::after {
  inset: -42px;
  opacity: 0.55;
}
.process-circle h3 {
  font-weight: 900;
  margin-bottom: 10px;
}
.process-list {
  display: grid;
  gap: 16px;
}
.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 14px 36px rgba(18, 40, 85, 0.09);
}
.process-step h5 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.process-step p {
  margin: 0;
  color: var(--muted);
}
.step-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(18, 40, 85, 0.05);
  text-align: center;
}
.why-card h6 {
  font-weight: 800;
  color: var(--ink);
  margin: 12px 0 10px;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.why-card.highlight {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent) 82%, white),
    #ffc1b0
  );
  border: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 26px;
  align-items: start;
}
.pricing-main,
.pricing-side-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pricing-main {
  padding: 36px;
}
.pricing-main ul {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
  margin: 28px 0 0;
}
.pricing-main li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
}
.pricing-main li i {
  color: var(--primary);
}
.pricing-stack {
  display: grid;
  gap: 16px;
}
.pricing-side-card {
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-side-card .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  display: inline-block;
}
.pricing-side-card.active .radio {
  border-color: var(--primary);
  background: radial-gradient(circle, var(--primary) 0 45%, #fff 46% 100%);
}
.pricing-side-card h6 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.pricing-side-card .price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.pricing-side-card .price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 700;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(18, 40, 85, 0.05);
  height: 100%;
}
.product-thumb {
  position: relative;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.12),
    rgba(var(--secondary-rgb), 0.09)
  );
}
.top-sales-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ef4444);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(var(--accent-rgb), 0.28);
}
.project-cover,
.project-main-image,
.project-video {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #f8fafc;
}
.project-cover {
  height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.project-stack {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin: -4px 0 18px;
}
.product-art {
  height: 220px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    var(--primary),
    color-mix(in srgb, var(--secondary) 42%, white)
  );
  position: relative;
  overflow: hidden;
}
.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
}
.product-art::before {
  width: 52%;
  height: 70%;
  right: 14%;
  top: 16%;
  transform: rotate(-14deg);
}
.product-art::after {
  width: 36%;
  height: 34%;
  left: 14%;
  bottom: 12%;
}
.product-art.alt {
  background: linear-gradient(
    135deg,
    var(--secondary),
    color-mix(in srgb, var(--accent) 65%, white)
  );
}
.product-art.orange {
  background: linear-gradient(
    135deg,
    var(--accent),
    color-mix(in srgb, var(--primary) 22%, white)
  );
}
.product-content {
  padding: 24px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.product-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
}
.product-price {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--ink);
}
.product-content h5 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.product-content p {
  color: var(--muted);
  margin-bottom: 18px;
}
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-actions .btn,
.detail-card .btn,
.cart-card .btn,
.checkout-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: max-content;
}
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.payment-method-option {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 138px;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.payment-method-option::before {
  content: "";
  position: absolute;
  inset: auto -18px -34px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
}
.payment-method-option:hover,
.payment-method-option.active {
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: 0 16px 34px rgba(18, 40, 85, 0.12);
  transform: translateY(-2px);
}
.payment-method-option:has(input:checked) {
  border-color: rgba(var(--primary-rgb), 0.55);
  box-shadow: 0 16px 34px rgba(18, 40, 85, 0.12);
}
.payment-method-option.is-manual:has(input:checked),
.payment-method-option.is-manual.active {
  border-color: #4338ca;
  background: #f5f7ff;
}
.payment-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-method-logo {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  font-size: 1.55rem;
}
.payment-method-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.payment-method-copy strong,
.payment-method-copy small,
.payment-method-copy em {
  display: block;
}
.payment-method-copy strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}
.payment-method-copy small {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}
.payment-method-copy em {
  margin-top: 9px;
  color: var(--primary);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.payment-method-option.is-manual .payment-method-logo {
  color: #4338ca;
  background: #e0e7ff;
}
.payment-method-check {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #22c55e;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.payment-method-option.active .payment-method-check,
.payment-method-option:has(input:checked) .payment-method-check {
  opacity: 1;
  transform: scale(1);
}
.payment-method-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 750;
}
.payment-method-note i {
  color: var(--primary);
}
.payment-account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.payment-account-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: color-mix(in srgb, var(--primary) 4%, white);
}
.payment-account-card dl {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 6px 10px;
  margin: 12px 0 0;
  font-size: 0.9rem;
}
.payment-account-card dt {
  color: var(--muted);
  font-weight: 700;
}
.payment-account-card dd {
  margin: 0;
  color: var(--ink);
  word-break: break-word;
}
.upload-preview-box {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 4%, white);
}
.upload-preview-box img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}
.upload-preview-box strong,
.upload-preview-box small {
  display: block;
}
.upload-preview-box strong {
  color: var(--ink);
  font-weight: 900;
  word-break: break-word;
}
.upload-preview-box small {
  color: var(--muted);
  font-weight: 700;
}
.order-summary-box {
  max-width: 520px;
  text-align: left;
}
.checkout-hero h1 {
  max-width: 820px;
}
.checkout-flow-section .checkout-card h2,
.invoice-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}
.checkout-card-head,
.invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.checkout-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #8a5a00;
  background: #fff4d6;
  border: 1px solid #ffd98a;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}
.checkout-status-pill.is-paid,
.status-icon.is-paid {
  color: #147144;
  background: #dcfce7;
  border-color: #86efac;
}
.checkout-summary-card {
  position: sticky;
  top: 110px;
}
.checkout-flow-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.checkout-flow-list span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.45;
}
.checkout-flow-list i {
  color: var(--primary);
  margin-top: 3px;
}
.status-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  font-size: 1.6rem;
}
.invoice-section,
.order-status-section {
  padding-top: 120px;
}
.invoice-card {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(18, 40, 85, 0.12);
}
.invoice-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.invoice-head img {
  width: 118px;
  height: auto;
  object-fit: contain;
}
.invoice-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.invoice-head h1 {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
}
.invoice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 24px 0;
}
.invoice-grid > div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: color-mix(in srgb, var(--primary) 3%, white);
}
.invoice-grid p {
  margin: 0 0 8px;
  color: var(--muted);
}
.invoice-grid p:last-child {
  margin-bottom: 0;
}
.invoice-grid span {
  color: var(--muted);
  margin-right: 8px;
}
.invoice-grid strong {
  color: var(--ink);
}
.invoice-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.invoice-table th,
.invoice-table td {
  padding: 14px 16px;
  vertical-align: middle;
}
.invoice-table tfoot th {
  background: color-mix(in srgb, var(--primary) 6%, white);
}

.product-content h5 a {
  color: inherit;
  text-decoration: none;
}
.product-content h5 a:hover {
  color: var(--primary);
}
.marketplace-hero-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.marketplace-hero-strip span,
.marketplace-meta-row span,
.marketplace-rating-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marketplace-hero-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 800;
}
.marketplace-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.marketplace-step {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.marketplace-step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 10px;
}
.marketplace-step strong,
.marketplace-step small {
  display: block;
}
.marketplace-step strong {
  color: var(--ink);
  font-weight: 900;
}
.marketplace-step small {
  color: var(--muted);
  margin-top: 3px;
}
.marketplace-step.active {
  border-color: rgba(var(--primary-rgb), 0.35);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.08));
}
.marketplace-step.done span {
  background: #166534;
  color: #fff;
}
.marketplace-item {
  border-radius: 12px;
}
.marketplace-item .product-thumb {
  padding: 14px;
}
.marketplace-item .project-cover,
.marketplace-item .product-art {
  border-radius: 10px;
}
.marketplace-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.marketplace-meta-row i,
.marketplace-rating-row i,
.marketplace-safe-box i {
  color: var(--primary);
}
.marketplace-item-heading,
.marketplace-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.marketplace-rating-row {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}
.license-picker {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.license-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.license-option.active {
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.1);
  background: rgba(var(--primary-rgb), 0.05);
}
.license-option input {
  width: 18px;
  height: 18px;
}
.license-option strong,
.license-option small,
.license-option b {
  display: block;
}
.license-option strong {
  color: var(--ink);
  font-weight: 900;
}
.license-option small {
  color: var(--muted);
  margin-top: 4px;
}
.license-option b {
  color: var(--ink);
  font-size: 1.04rem;
  white-space: nowrap;
}
.marketplace-safe-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.07);
  color: var(--ink-2);
  font-weight: 700;
}
.marketplace-agreement {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
  font-weight: 700;
}
.marketplace-agreement input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 900;
}
.marketplace-order-sidebar {
  position: sticky;
  top: 110px;
}
.required-mark {
  color: #dc2626;
  font-weight: 900;
}
.page-btn {
  border: 0;
  background: #fff;
  border: 1px solid var(--line);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--ink);
}
.page-btn.active,
.page-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: center;
}
.review-list {
  display: grid;
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(18, 40, 85, 0.05);
}
.review-card .stars {
  color: var(--accent);
  margin-bottom: 12px;
}
.review-card p {
  margin: 0 0 14px;
  color: var(--muted);
}
.review-user {
  display: flex;
  gap: 14px;
  align-items: center;
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.avatar.orange {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.avatar.green {
  background: linear-gradient(
    135deg,
    var(--secondary),
    color-mix(in srgb, var(--secondary) 60%, white)
  );
}
.review-spotlight {
  position: relative;
  background: #fff;
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.review-spotlight::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 2px dashed rgba(var(--primary-rgb), 0.18);
  border-radius: 50%;
}
.review-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(18, 40, 85, 0.12);
}
.review-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}
.orbit-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(18, 40, 85, 0.08);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 170px;
}
.orbit-card.one {
  top: 48px;
  left: 32px;
}
.orbit-card.two {
  right: 28px;
  top: 120px;
}
.orbit-card.three {
  left: 36px;
  bottom: 84px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(18, 40, 85, 0.05);
}
.team-media {
  height: 220px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.14),
    rgba(var(--secondary-rgb), 0.14)
  );
  display: grid;
  place-items: center;
}
.team-portrait {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 35px rgba(18, 40, 85, 0.15);
}
.team-card .content {
  padding: 22px;
}
.team-card h5 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.team-card p {
  margin: 0;
  color: var(--muted);
}
.page-hero {
  padding: 96px 0 72px;
  background: linear-gradient(
    135deg,
    var(--primary),
    color-mix(in srgb, var(--secondary) 40%, var(--primary))
  );
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: 60px;
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
  max-width: 780px;
}
.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  margin-bottom: 0;
}
.breadcrumb-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 22px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(18, 40, 85, 0.05);
}
.metric-card h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}
.metric-card p {
  margin: 0;
  color: var(--muted);
}
.dual-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-box,
.value-card,
.faq-item,
.contact-card,
.cart-card,
.checkout-card,
.thankyou-card,
.auth-card,
.auth-showcase,
.detail-card,
.filters-bar,
.map-card,
.timeline-card,
.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0px 0px 15px rgb(18 40 85 / 34%);



}
.value-grid,
.industries-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.timeline-card .step-num {
  width: 54px;
  height: 54px;
}
.showcase-card,
.metric-card,
.value-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.showcase-card:hover,
.metric-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(18, 40, 85, 0.12);
  border-color: rgba(var(--primary-rgb));
}
.about-experience-wrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: start;
}
.about-journey-panel {
  background: #13173c;
  border-radius: 36px;
  padding: 34px 30px;
  box-shadow: 0 28px 60px rgba(10, 17, 48, 0.22);
  overflow: hidden;
  position: relative;
}
.about-journey-panel .section-head {
  margin-bottom: 30px;
}
.about-journey-panel .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.about-journey-panel h2,
.about-journey-panel p {
  color: #fff;
}
.about-journey-panel .section-head p {
  color: rgba(255, 255, 255, 0.78);
}
.about-journey-board {
  display: grid;
  gap: 14px;
  position: relative;
}
.about-journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  min-height: 112px;
}
.about-journey-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  border-radius: 0 82px 82px 0;
  transform: translate(-50%, -50%);
  background: #fff;
}
.about-journey-step:nth-child(even)::before {
  background: var(--accent);
  border-radius: 82px 0 0 82px;
}
.about-journey-step > div {
  max-width: 240px;
}
.about-journey-step h5 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-journey-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.about-journey-step:nth-child(even) h5 {
  color: var(--accent);
}
.about-journey-step .step-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #14183d;
  border: 0;
  box-shadow: 0 10px 20px rgba(7, 10, 29, 0.22);
  position: relative;
  z-index: 2;
  font-size: 18px;
}
.about-journey-step:nth-child(odd) .step-num {
  grid-column: 3;
  justify-self: end;
}
.about-journey-step:nth-child(even) .step-num {
  grid-column: 1;
  justify-self: start;
  background: var(--accent);
}
.about-journey-step:nth-child(odd) > div {
  grid-column: 1;
  text-align: right;
}
.about-journey-step:nth-child(even) > div {
  grid-column: 3;
  text-align: left;
}
.about-journey-step:nth-child(odd) .step-num::before,
.about-journey-step:nth-child(even) .step-num::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 10px;
  width: 150px;
  border-radius: 999px;
  transform: translateY(-50%);
}
.about-journey-step:nth-child(odd) .step-num::before {
  right: 100%;
  background: #fff;
}
.about-journey-step:nth-child(even) .step-num::before {
  left: 100%;
  background: var(--accent);
}
.about-team-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 30px;
  box-shadow: 0 24px 52px rgba(18, 40, 85, 0.08);
}
.about-team-slider-shell {
  position: relative;
}
.about-team-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 18px) / 2);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px 10px;
}
.about-team-track::-webkit-scrollbar {
  display: none;
}
.about-team-slide {
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(18, 40, 85, 0.06);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.about-team-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(18, 40, 85, 0.12);
  border-color: rgba(var(--primary-rgb), 0.2);
}
.about-team-media {
  height: 190px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--accent-rgb), 0.08)
  );
}
.about-team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 12px solid rgba(var(--primary-rgb), 0.14);
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(18, 40, 85, 0.12);
}
.about-team-content {
  padding: 22px;
}
.about-team-content h5 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.about-team-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.about-team-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.about-team-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(18, 40, 85, 0.08);
  transition: 0.25s ease;
}
.about-team-btn:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
}
.filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-chip {
  border: 0;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.07);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.filter-chip.active,
.filter-chip:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.pagination-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.product-gallery {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
}
.gallery-thumbs {
  display: grid;
  gap: 14px;
}
.gallery-thumb {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
}
.gallery-thumb .product-art {
  height: 98px;
}
.gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.12);
}
.product-hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.product-main-art {
  height: 440px;
  border-radius: 28px;
}
.project-media-viewer {
  display: grid;
  gap: 14px;
}
.project-main-image,
.project-video {
  height: 440px;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.project-slider {
  position: relative;
}
.project-slide-stage {
  position: relative;
  height: 440px;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f8fafc;
}
.project-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.project-slide-image.active {
  opacity: 1;
}
.project-slide-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}
.project-slide-btn.prev {
  left: 14px;
}
.project-slide-btn.next {
  right: 14px;
}
.project-slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.project-slide-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
}
.project-slide-dots button.active {
  background: var(--primary);
}
.project-image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
}
.project-image-strip img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.project-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
}
.project-feature-list i {
  color: var(--secondary);
  margin-top: 4px;
}
.empty-products {
  grid-column: 1 / -1;
  border-radius: 8px;
}
.qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.qty-wrap button {
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  font-weight: 800;
  color: var(--ink);
}
.qty-wrap input {
  width: 54px;
  border: 0;
  text-align: center;
  font-weight: 700;
  outline: none;
}
.cart-table {
  width: 100%;
}
.cart-table td,
.cart-table th {
  padding: 18px 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.summary-list {
  display: grid;
  gap: 14px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.form-control,
.form-select {
  border-radius: 5px;
  padding: 14px 16px;
  border: 1px solid #d8e0ea;
  min-height: 46px;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.15rem rgba(var(--primary-rgb), 0.08);
  border-color: #bfd0e7;
}
.map-card {
  min-height: 100%;
  background: linear-gradient(
    160deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--secondary-rgb), 0.08)
  );
  position: relative;
  overflow: hidden;
}
.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.map-card::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -60px;
}
.map-card::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -60px;
}
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--secondary-rgb), 0.08)
  );
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.auth-panel,
.auth-showcase {
  padding: 34px;
}
.auth-showcase {
  background: linear-gradient(
    135deg,
    var(--primary),
    color-mix(in srgb, var(--secondary) 44%, var(--primary))
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}
.auth-showcase::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.12);
}
.auth-logo img {
  height: 70px;
  width: auto;
}
.footer {
  padding: 70px 0 24px;
  background: #0f213d;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 40px;
}
.footer h5 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer a {
  color: rgba(255, 255, 255, 0.74);
}
.footer a:hover {
  color: #fff;
}
.footer-logo {
  max-width: 280px;
  margin-bottom: 16px;
}
.footer p {
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.footer-socials a:hover {
  background: var(--primary);
}
.footer-grid {
  align-items: flex-start;
}
.footer-link-list a,
.footer-contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.55;
}
.footer-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
.footer-contact-list span {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.footer-contact-list i {
  width: 18px;
  margin-top: 4px;
  color: #93c5fd;
  flex: 0 0 auto;
}
.footer-bottom {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
@media (max-width: 1199px) {
  .footer {
    padding: 56px 0 22px;
  }

  .footer-logo {
    max-width: 230px;
  }

  .footer h5 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .footer p,
  .footer a,
  .footer-contact-list span {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-grid {
    row-gap: 26px;
  }

  .footer-brand-col {
    text-align: left;
  }

  .footer-brand-col p {
    max-width: 620px;
  }

  .footer-contact-col {
    align-self: stretch;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 46px 0 20px;
    margin-top: 28px;
    text-align: center;
  }

  .footer .row {
    row-gap: 24px;
  }

  .footer-logo {
    max-width: 210px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand-col p {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer h5 {
    margin-bottom: 10px;
  }

  .footer-link-list {
    justify-items: center;
  }

  .footer-link-list a {
    justify-content: center;
    min-height: 34px;
    padding: 4px 8px;
  }

  .footer-contact-list {
    justify-items: center;
  }

  .footer-contact-list span {
    justify-content: center;
    align-items: center;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footer-contact-list i {
    margin-top: 0;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
    font-size: 13px;
  }
}

@media (max-width: 425px) {
  .footer {
    padding-top: 38px;
  }

  .footer-logo {
    max-width: 180px;
  }

  .footer h5 {
    font-size: 15px;
  }

  .footer p,
  .footer a,
  .footer-contact-list span {
    font-size: 13px;
  }
}
.blog-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #0f213d, var(--primary), color-mix(in srgb, var(--secondary) 65%, #0f213d));
}
.single-blog-hero {
  padding-bottom: 92px;
}
.single-hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: end;
}
.single-hero-copy {
  max-width: 780px;
}
.single-hero-panel {
  display: flex;
  justify-content: flex-end;
}
.single-hero-panel-card {
  width: 100%;
  max-width: 430px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(10, 17, 48, 0.18);
  color: #fff;
}
.single-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.single-hero-panel-card > strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 900;
}
.single-hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}
.single-hero-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}
.single-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
}
.single-hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.single-hero-author .author-avatar-large {
  width: 58px;
  height: 58px;
  font-size: 1.1rem;
}
.single-hero-author strong,
.single-hero-author small {
  display: block;
}
.single-hero-author small {
  color: rgba(255, 255, 255, 0.72);
}
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 26px 60px rgba(18, 40, 85, 0.12);
}
.blog-featured-copy h2,
.single-blog-hero h1 {
  font-weight: 900;
  letter-spacing: -0.04em;
}
.blog-post-tag,
.blog-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  background: rgba(var(--primary-rgb), 0.14);
  margin-bottom: 16px;
}
.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 600;
}
.blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-meta-row.compact {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.blog-featured-art {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #102b57 0%, #173c74 38%, #f08b12 100%);
  padding: 24px;
  display: flex;
  align-items: flex-end;
}
.blog-art-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  color: #fff;
}
.blog-art-panel span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-art-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1.02;
  margin-bottom: 10px;
}
.blog-art-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}
.blog-orb {
  position: absolute;
  border-radius: 50%;
}
.blog-orb-one {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -30px;
  background: rgba(255, 255, 255, 0.13);
}
.blog-orb-two {
  width: 130px;
  height: 130px;
  left: 24px;
  top: 24px;
  background: rgba(255, 255, 255, 0.1);
}
.blog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.blog-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.blog-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-filter-chip {
  border: 1px solid rgba(18, 40, 85, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: 0.25s ease;
}
.blog-filter-chip:hover,
.blog-filter-chip.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}
.blog-search-box {
  min-width: 280px;
  position: relative;
}
.blog-search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.blog-search-box .form-control {
  padding-left: 44px;
  border-radius: 999px;
  min-height: 52px;
  border: 1px solid rgba(18, 40, 85, 0.14);
}
.blog-month-select {
  min-width: 190px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(18, 40, 85, 0.14);
  font-weight: 600;
}
.blog-layout,
.single-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.blog-main-column {
  display: grid;
  gap: 22px;
  min-width: 0;
}
.single-blog-shell {
  max-width: 940px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.blog-card,
.blog-sidebar-card,
.article-content-card,
.article-author-box,
.blog-comments-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(18, 40, 85, 0.08);
}
.blog-card {
  overflow: hidden;
}
.blog-card-media,
.article-cover {
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.blog-card-media.has-image,
.article-cover.has-image {
  padding: 0;
  overflow: hidden;
  background: #101827;
}
.blog-card-media.has-image {
  height: 220px;
}
.article-cover.has-image {
  min-height: 320px;
}
.blog-card-media.has-image img,
.article-cover.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.blog-card-media strong,
.article-cover strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  max-width: 220px;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body h4 {
  font-weight: 800;
  margin-bottom: 12px;
}
.blog-card-body p {
  color: var(--muted);
  margin-bottom: 18px;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-author-mini strong,
.comment-head strong {
  display: block;
  color: var(--ink);
}
.blog-author-mini small,
.comment-head span {
  color: var(--muted);
}
.blog-author-badge,
.author-avatar-large,
.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 900;
}
.blog-read-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.blog-read-link i {
  margin-left: 6px;
}
.blog-sidebar {
  display: grid;
  gap: 20px;
}
.blog-sidebar-search-card p {
  color: var(--muted);
  margin-bottom: 14px;
}
.sidebar-search-box {
  min-width: 100%;
}
.blog-topic-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.blog-archive-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(18, 40, 85, 0.04);
}
.blog-archive-list a strong {
  font-size: 0.82rem;
  color: var(--muted);
}
.blog-topic-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.blog-topic-link.active-archive-link,
.blog-archive-list a:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), rgba(var(--secondary-rgb), 0.16));
}
.blog-mini-posts {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.blog-mini-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(18, 40, 85, 0.04);
}
.blog-mini-post:hover {
  background: rgba(var(--primary-rgb), 0.12);
}
.blog-mini-post-badge {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}
.blog-mini-post strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}
.blog-mini-post small {
  color: var(--muted);
}
.blog-empty-state {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border-radius: 26px;
  background: #fff;
  border: 1px dashed rgba(18, 40, 85, 0.16);
  box-shadow: 0 18px 44px rgba(18, 40, 85, 0.06);
}
.blog-empty-state i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.blog-empty-state h4 {
  font-weight: 800;
  margin-bottom: 10px;
}
.blog-empty-state p {
  max-width: 420px;
  color: var(--muted);
  margin: 0;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.blog-pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(18, 40, 85, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(18, 40, 85, 0.08);
}
.blog-pagination button.active,
.blog-pagination button:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.blog-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}
.subscribe-card h5 {
  font-weight: 800;
  margin: 10px 0 10px;
}
.blog-subscribe-form {
  display: grid;
  gap: 12px;
}
.single-blog-sidebar {
  display: grid;
  gap: 20px;
}
.sticky-card {
  position: sticky;
  top: 110px;
}
.single-blog-article {
  display: grid;
  gap: 24px;
}
.single-blog-shell .single-blog-article {
  max-width: 100%;
}
.article-content-card,
.article-author-box,
.blog-comments-box,
.blog-sidebar-card {
  padding: 28px;
}
.article-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.article-stat-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.12), rgba(var(--secondary-rgb), 0.08));
  border: 1px solid rgba(18, 40, 85, 0.08);
}
.article-stat-item span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.article-stat-item strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}
.article-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 26px;
}
.article-pull-quote {
  margin-bottom: 28px;
  padding: 26px 28px;
  border-radius: 24px;
  background: #102b57;
  color: #fff;
  box-shadow: 0 22px 48px rgba(10, 17, 48, 0.16);
}
.article-pull-quote i {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.article-pull-quote p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.article-section + .article-section {
  margin-top: 26px;
}
.article-section h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--ink);
}
.article-section p {
  line-height: 1.82;
  color: var(--muted);
  max-width: 760px;
}
.article-highlight-list {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.article-share-row {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 40, 85, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.article-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-share-links a {
  text-decoration: none;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
  font-weight: 700;
}
.article-author-box {
  display: flex;
  gap: 18px;
  align-items: center;
}
.author-avatar-large {
  width: 72px;
  height: 72px;
  font-size: 1.5rem;
  flex: 0 0 auto;
}
.comment-list {
  display: grid;
  gap: 16px;
}
.comment-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(18, 40, 85, 0.03);
  border: 1px solid rgba(18, 40, 85, 0.07);
}
.comment-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}
.comment-body p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.comment-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 40, 85, 0.08);
}
.comment-form .form-control {
  border-radius: 18px;
  min-height: 52px;
}
.comment-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.comment-form-actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-accent-automation {
  background: linear-gradient(135deg, #0f213d, #21437a 56%, #4b8914);
}
.blog-accent-design {
  background: linear-gradient(135deg, #102b57, #5f3ca6 55%, #c46d0a);
}
.blog-accent-commerce {
  background: linear-gradient(135deg, #173c74, #f1870c 52%, #f3c34d);
}
.blog-accent-product {
  background: linear-gradient(135deg, #142648, #2f847c 55%, #20437a);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 1199px) {
  .partner-logos,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid,
  .product-grid,
  .value-grid,
  .industries-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid,
  .pricing-grid,
  .info-split,
  .auth-layout,
  .blog-featured-card,
  .single-hero-layout,
  .blog-layout,
  .single-blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .single-blog-shell {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .section-space {
    padding: 72px 0;
  }
  .hero-stats,
  .stats-row,
  .marketplace-process,
  .dual-card {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stack {
    margin-top: 10px;
  }
  .tilt-preview {
    transform: none;
  }
  .hero-floating-card.top {
    right: 0;
  }
  .hero-floating-card.bottom {
    left: 0;
    bottom: -10px;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .sticky-card {
    position: static;
  }
  .marketplace-order-sidebar {
    position: static;
  }
  .checkout-summary-card {
    position: static;
  }
  .invoice-grid {
    grid-template-columns: 1fr;
  }
  .checkout-card-head,
  .invoice-head {
    flex-direction: column;
  }
  .blog-toolbar-meta {
    width: 100%;
  }
  .article-stat-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }
  .home-hero .row,
  .footer .row {
    margin-left: 0;
    margin-right: 0;
  }
  .team-slider-shell {
    max-width: 100%;
    overflow: hidden;
  }
  .team-slider-track {
    grid-auto-columns: minmax(0, calc(100vw - 42px));
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-brand img {
    height: 46px;
  }
  .home-hero {
    padding: 70px 0 52px;
  }
  .home-hero::before {
    left: -280px;
    bottom: -520px;
    width: 760px;
    height: 760px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .hero-stats,
  .stats-row,
  .service-grid,
  .product-grid,
  .team-grid,
  .partner-logos,
  .value-grid,
  .industries-grid,
  .faq-grid,
  .contact-grid,
  .why-grid,
  .dual-card,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-card {
    position: relative;
    inset: auto;
    min-width: unset;
    margin-top: 16px;
  }
  .review-spotlight {
    min-height: 420px;
  }
  .orbit-card {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }
  .auth-panel,
  .auth-showcase,
  .feature-box,
  .value-card,
  .faq-item,
  .contact-card,
  .cart-card,
  .checkout-card,
  .thankyou-card,
  .detail-card,
  .filters-bar,
  .map-card,
  .timeline-card,
  .industry-card {
    padding: 22px;
  }
  .blog-featured-card,
  .article-content-card,
  .article-author-box,
  .blog-comments-box,
  .blog-sidebar-card,
  .single-hero-panel-card,
  .article-pull-quote {
    padding: 22px;
  }
  .page-hero h1 {
    font-size: 42px;
  }
  .blog-toolbar-meta,
  .blog-search-box,
  .blog-month-select {
    width: 100%;
  }
  .blog-card-footer,
  .article-author-box,
  .comment-form-actions,
  .article-share-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .marketplace-process {
    grid-template-columns: 1fr;
  }
  .checkout-process {
    grid-template-columns: 1fr;
  }
  .payment-method-grid,
  .payment-method-option,
  .upload-preview-box {
    grid-template-columns: 1fr;
  }
  .payment-method-option,
  .upload-preview-box {
    justify-items: start;
  }
  .upload-preview-box .btn {
    width: 100%;
  }
  .invoice-card {
    padding: 20px;
    border-radius: 14px;
  }
  .invoice-head h1 {
    font-size: 1.35rem;
  }
  .license-option {
    grid-template-columns: auto 1fr;
  }
  .license-option b {
    grid-column: 2;
  }
  .marketplace-cart-table th:nth-child(4),
  .marketplace-cart-table th:nth-child(5),
  .marketplace-cart-table td:nth-child(4),
  .marketplace-cart-table td:nth-child(5) {
    display: none;
  }
}

.ticket-hero {
  margin-bottom: 18px;
}

.ticket-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.ticket-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  background: var(--card-bg, #fff);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.ticket-stat-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ticket-tone, #2563eb) 12%, transparent);
}

.ticket-stat-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ticket-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 11px;
  color: #fff;
  background: var(--ticket-tone, #2563eb);
  font-size: 1.18rem;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--ticket-tone, #2563eb) 24%, transparent);
}

.ticket-stat-card.tone-blue { --ticket-tone: #2563eb; }
.ticket-stat-card.tone-purple { --ticket-tone: #8b4eea; }
.ticket-stat-card.tone-red { --ticket-tone: #f0526e; }
.ticket-stat-card.tone-green { --ticket-tone: #22b875; }
.ticket-stat-card.tone-orange { --ticket-tone: #f59e2f; }
.ticket-stat-card.tone-cyan { --ticket-tone: #14b8c4; }
.ticket-stat-card.tone-slate { --ticket-tone: #475569; }

.ticket-stat-card h2 {
  margin: 0;
  color: #18243b;
  font-size: 0.9rem;
  font-weight: 760;
}

.ticket-stat-card strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 2rem;
  line-height: 1;
  font-weight: 760;
}

.ticket-stat-card p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 600;
}

.ticket-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 170px 170px 190px auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: var(--card-bg, #fff);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.user-ticket-page .ticket-filter-bar {
  grid-template-columns: minmax(240px, 1fr) 190px auto auto;
}

.ticket-search-field {
  position: relative;
}

.ticket-search-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
}

.ticket-search-field .form-control {
  padding-left: 40px;
}

.ticket-code {
  display: block;
  color: #0f172a;
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.ticket-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0.35rem 0.65rem;
  margin: 0 4px 6px 0;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-size: 0.76rem;
  font-weight: 800;
}

.status-new,
.status-open,
.status-reopened {
  color: #1d4ed8;
  background: #dbeafe;
}

.status-in_progress,
.status-pending_admin {
  color: #7c2d12;
  background: #ffedd5;
}

.status-pending_client {
  color: #92400e;
  background: #fef3c7;
}

.status-resolved {
  color: #047857;
  background: #d1fae5;
}

.status-closed {
  color: #475569;
  background: #e2e8f0;
}

.priority-urgent {
  color: #be123c;
  background: #ffe4e6;
}

.priority-high {
  color: #b45309;
  background: #fef3c7;
}

.priority-medium {
  color: #4338ca;
  background: #e0e7ff;
}

.priority-low {
  color: #047857;
  background: #d1fae5;
}

.ticket-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 7px;
}

.ticket-title-line span {
  display: inline-flex;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 0.72rem;
  font-weight: 800;
}

.ticket-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid #f59e0b;
  border-radius: 10px;
  background: #fffbeb;
}

.ticket-note p {
  margin: 3px 0 0;
}

.ticket-attachment {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 8px 8px 0 0;
  padding: 0.42rem 0.66rem;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
}

.ticket-timeline {
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.ticket-timeline > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
}

.ticket-timeline i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  color: #2563eb;
  background: #dbeafe;
}

.ticket-message.is-staff i {
  color: #059669;
  background: #d1fae5;
}

.ticket-message.is-client i {
  color: #7c3aed;
  background: #ede9fe;
}

.ticket-message span {
  min-width: 0;
  color: #334155;
  overflow-wrap: anywhere;
}

.ticket-rating,
.ticket-tags {
  display: block;
  color: #64748b;
  font-weight: 700;
}

.ticket-action-panel {
  min-width: 360px;
}

.ticket-board-card {
  overflow: hidden;
}

.ticket-workspace {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.15fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
}

.ticket-queue-panel,
.ticket-detail-panel,
.ticket-reply-panel {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.ticket-queue-list {
  display: grid;
  gap: 12px;
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.ticket-queue-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ticket-queue-item:hover,
.ticket-queue-item.is-active {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.ticket-queue-item.is-active {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.ticket-queue-icon,
.ticket-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.22);
}

.ticket-queue-body {
  min-width: 0;
}

.ticket-queue-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ticket-queue-top strong,
.ticket-queue-title {
  color: #101936;
  font-weight: 820;
}

.ticket-queue-top em {
  color: #64748b;
  font-size: 0.74rem;
  font-style: normal;
  white-space: nowrap;
}

.ticket-queue-title,
.ticket-queue-meta,
.ticket-queue-preview {
  display: block;
  margin-top: 5px;
}

.ticket-queue-meta,
.ticket-queue-preview {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.ticket-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: 14px;
  margin-bottom: 16px;
}

.ticket-client-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: #f8fafc;
}

.ticket-client-card strong,
.ticket-client-card small {
  display: block;
}

.ticket-client-card small {
  color: #64748b;
  margin-top: 3px;
}

.ticket-detail-tags {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: #f8fafc;
}

.ticket-detail-tags span {
  display: inline-flex;
  padding: 0.36rem 0.66rem;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 0.76rem;
  font-weight: 800;
}

.ticket-request-box,
.ticket-conversation {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: #fff;
}

.ticket-request-box {
  margin-bottom: 16px;
}

.ticket-request-box h3,
.ticket-conversation h3 {
  margin: 0 0 10px;
  color: #101936;
  font-size: 0.98rem;
  font-weight: 820;
}

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

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

.ticket-reply-panel .form-label {
  margin-bottom: 6px;
  color: #101936;
  font-weight: 780;
}

.ticket-reply-panel .form-control,
.ticket-reply-panel .form-select {
  min-height: 44px;
  border-radius: 10px;
  border-color: #d8e1ee;
}

.ticket-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.ticket-form-actions .btn-theme {
  min-width: 180px;
}

.ticket-list {
  display: grid;
  gap: 16px;
}

.ticket-card {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: var(--card-bg, #fff);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ticket-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.ticket-card h2 {
  margin: 0 0 7px;
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 800;
}

.ticket-card-message {
  color: #475569;
  overflow-wrap: anywhere;
}

.ticket-meta-row,
.ticket-action-row,
.ticket-client-actions,
.ticket-mini-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ticket-meta-row {
  margin-bottom: 8px;
  color: #64748b;
  font-weight: 700;
  font-size: 0.86rem;
}

.ticket-meta-row span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.ticket-client-actions {
  align-items: stretch;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.ticket-reply-form {
  flex: 1 1 420px;
  display: grid;
  gap: 10px;
}

.ticket-action-row .form-control {
  max-width: 320px;
}

.ticket-mini-form {
  flex: 1 1 300px;
}

.ticket-mini-form .form-control,
.ticket-mini-form .form-select {
  min-width: 150px;
  flex: 1 1 150px;
}

.ticket-empty-state {
  text-align: center;
  padding: 44px 20px;
}

.ticket-empty-state > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  border-radius: 18px;
  color: #2563eb;
  background: #dbeafe;
  font-size: 1.4rem;
}

.ticket-create-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.ticket-create-card {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ticket-create-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.ticket-help-card {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: var(--card-bg, #fff);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ticket-help-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 12px;
  color: #fff;
  background: #2563eb;
}

.ticket-help-card h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.ticket-help-card p,
.ticket-help-card li {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ticket-help-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.ticket-rich-editor .mini-rich-content {
  min-height: 280px;
}

.ticket-create-page .tox-tinymce {
  border-color: #cbd5e1;
  border-radius: 10px;
}

.ticket-create-page .ticket-tinymce-editor {
  min-height: 260px;
}

.ticket-create-page .mini-rich-editor {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.ticket-create-page .mini-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.ticket-create-page .mini-rich-toolbar button {
  min-width: 34px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
}

.ticket-create-page .mini-rich-content {
  padding: 14px;
  outline: 0;
}

.dashboard-shell .mini-rich-editor {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.dashboard-shell .mini-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.dashboard-shell .mini-rich-toolbar button,
.dashboard-shell .mini-rich-format {
  min-width: 34px;
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
}

.dashboard-shell .mini-rich-format {
  min-width: 130px;
  padding: 0 10px;
  font-weight: 700;
}

.dashboard-shell .mini-rich-toolbar button:hover,
.dashboard-shell .mini-rich-toolbar button:focus {
  border-color: #2563eb;
  color: #2563eb;
}

.dashboard-shell .mini-rich-content {
  min-height: 240px;
  padding: 14px;
  outline: 0;
  line-height: 1.6;
  background: #fff;
}

.dashboard-shell .mini-rich-content h2,
.dashboard-shell .mini-rich-content h3 {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-weight: 850;
}

.dashboard-shell .mini-rich-content p,
.dashboard-shell .mini-rich-content ul,
.dashboard-shell .mini-rich-content ol,
.dashboard-shell .mini-rich-content blockquote,
.dashboard-shell .mini-rich-content pre {
  margin-bottom: 0.85rem;
}

.dashboard-shell .mini-rich-content ul,
.dashboard-shell .mini-rich-content ol {
  padding-left: 1.4rem;
}

.dashboard-shell .product-rich-editor .mini-rich-content {
  min-height: 320px;
}

.ticket-rich-output {
  overflow-wrap: anywhere;
}

.ticket-rich-output p {
  margin: 0 0 0.55rem;
}

.ticket-rich-output ul,
.ticket-rich-output ol {
  margin: 0.4rem 0 0.6rem;
  padding-left: 1.25rem;
}

.ticket-rich-output h2,
.ticket-rich-output h3 {
  margin: 0.35rem 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.ticket-rich-output pre {
  padding: 10px 12px;
  border-radius: 10px;
  background: #0f172a;
  color: #f8fafc;
  white-space: pre-wrap;
}

[data-dashboard-theme="dark"] .ticket-stat-card,
[data-dashboard-theme="dark"] .ticket-filter-bar,
[data-dashboard-theme="dark"] .ticket-card,
[data-dashboard-theme="dark"] .ticket-queue-panel,
[data-dashboard-theme="dark"] .ticket-detail-panel,
[data-dashboard-theme="dark"] .ticket-reply-panel,
[data-dashboard-theme="dark"] .ticket-queue-item,
[data-dashboard-theme="dark"] .ticket-client-card,
[data-dashboard-theme="dark"] .ticket-detail-tags,
[data-dashboard-theme="dark"] .ticket-request-box,
[data-dashboard-theme="dark"] .ticket-conversation,
[data-dashboard-theme="dark"] .ticket-create-card,
[data-dashboard-theme="dark"] .ticket-help-card {
  border-color: rgba(148, 163, 184, 0.24);
  background: #111827;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

[data-dashboard-theme="dark"] .ticket-stat-card strong,
[data-dashboard-theme="dark"] .ticket-stat-card h2,
[data-dashboard-theme="dark"] .ticket-code,
[data-dashboard-theme="dark"] .ticket-card h2,
[data-dashboard-theme="dark"] .ticket-queue-top strong,
[data-dashboard-theme="dark"] .ticket-queue-title,
[data-dashboard-theme="dark"] .ticket-request-box h3,
[data-dashboard-theme="dark"] .ticket-conversation h3,
[data-dashboard-theme="dark"] .ticket-reply-panel .form-label,
[data-dashboard-theme="dark"] .ticket-help-card h2,
[data-dashboard-theme="dark"] .ticket-rich-output h2,
[data-dashboard-theme="dark"] .ticket-rich-output h3 {
  color: #e5e7eb;
}

[data-dashboard-theme="dark"] .ticket-card-message,
[data-dashboard-theme="dark"] .ticket-queue-meta,
[data-dashboard-theme="dark"] .ticket-queue-preview,
[data-dashboard-theme="dark"] .ticket-client-card small,
[data-dashboard-theme="dark"] .ticket-message span {
  color: #cbd5e1;
}

[data-dashboard-theme="dark"] .ticket-queue-item.is-active {
  background: #172033;
}

[data-dashboard-theme="dark"] .ticket-note {
  background: rgba(245, 158, 11, 0.12);
}

@media (max-width: 1199.98px) {
  .ticket-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-workspace {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .ticket-reply-panel {
    grid-column: 1 / -1;
  }

  .ticket-filter-bar,
  .user-ticket-page .ticket-filter-bar,
  .ticket-create-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-create-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .ticket-stat-grid,
  .ticket-workspace,
  .ticket-detail-grid,
  .ticket-reply-grid,
  .ticket-filter-bar,
  .user-ticket-page .ticket-filter-bar,
  .ticket-create-layout {
    grid-template-columns: 1fr;
  }

  .ticket-reply-panel {
    grid-column: auto;
  }

  .ticket-queue-list {
    max-height: none;
  }

  .ticket-queue-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ticket-queue-top {
    display: grid;
    justify-content: start;
  }

  .ticket-form-actions {
    display: grid;
  }

  .ticket-form-actions .btn-theme {
    min-width: 0;
  }

  .ticket-card-head {
    display: grid;
  }

  .ticket-action-panel {
    min-width: 0;
  }

  .ticket-action-row,
  .ticket-mini-form {
    display: grid;
  }

  .ticket-action-row .form-control {
    max-width: none;
  }
}

/* Professional dashboard overview cards */
.dashboard-overview {
  background: #fff;
}
.dashboard-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}
.dashboard-page-head h1 {
  margin: 0 0 6px;
  color: #061a3d;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 850;
  letter-spacing: -0.035em;
}
.dashboard-page-head p {
  margin: 0;
  max-width: 850px;
  color: #617089 !important;
  font-size: 1rem;
  line-height: 1.65;
}
.dashboard-page-head .btn {
  margin-top: 6px;
}
.dashboard-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.dashboard-overview-card {
  --card-soft: rgba(var(--primary-rgb), 0.13);
  --card-color: var(--primary);
  position: relative;
  min-height: 242px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 214, 137, 0.62);
  border-radius: 24px;
  background: #fffefb;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.dashboard-overview-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--card-soft);
  filter: blur(10px);
}
.dashboard-overview-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-color) 35%, #e2d689);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.1);
  color: #0f172a;
}
.dashboard-overview-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--card-soft);
  color: var(--card-color);
  font-size: 1.08rem;
}
.dashboard-overview-open {
  position: absolute;
  top: 38px;
  right: 22px;
  z-index: 1;
  color: #7b8798;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dashboard-overview-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: #162338;
  font-size: clamp(2.35rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 0.95;
}
.dashboard-overview-title {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: #1d2939;
  font-size: 1.02rem;
  font-weight: 800;
}
.dashboard-overview-card small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 220px;
  color: #64748b !important;
  font-size: 0.94rem;
  line-height: 1.55;
}
.dashboard-overview-card.tone-mint {
  --card-color: #0f766e;
  --card-soft: rgba(20, 184, 166, 0.12);
}
.dashboard-overview-card.tone-green {
  --card-color: #16803d;
  --card-soft: rgba(34, 197, 94, 0.13);
}
.dashboard-overview-card.tone-blue {
  --card-color: #1d4ed8;
  --card-soft: rgba(59, 130, 246, 0.13);
}
.dashboard-overview-card.tone-slate {
  --card-color: #475569;
  --card-soft: rgba(148, 163, 184, 0.18);
}
.dashboard-overview-card.tone-teal {
  --card-color: #0f766e;
  --card-soft: rgba(45, 212, 191, 0.13);
}
.dashboard-overview-card.tone-indigo {
  --card-color: #4338ca;
  --card-soft: rgba(99, 102, 241, 0.13);
}
.dashboard-overview-card.tone-rose {
  --card-color: #be123c;
  --card-soft: rgba(244, 63, 94, 0.13);
}
.dashboard-overview-card.tone-amber {
  --card-color: #b45309;
  --card-soft: rgba(245, 158, 11, 0.14);
}
.dashboard-overview-card.tone-cyan {
  --card-color: #0369a1;
  --card-soft: rgba(14, 165, 233, 0.13);
}
.dashboard-overview .dashboard-table-card {
  margin-top: 28px !important;
}
@media (max-width: 1399px) {
  .dashboard-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .dashboard-page-head {
    display: grid;
  }
  .dashboard-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .dashboard-overview-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-overview-card {
    min-height: 210px;
  }
}

/* ShoorVision-style user management page */
.users-management-page {
  background: #fff;
}
.dashboard-shell .data-table-shell {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .data-table-shell__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.35rem 1.45rem 0;
}
.dashboard-shell .data-table-shell__title {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 850;
}
.dashboard-shell .data-table-shell__copy {
  margin: 0.2rem 0 0;
  color: #64748b !important;
  font-size: 0.92rem;
  line-height: 1.65;
}
.dashboard-shell .data-table-shell__toolbar,
.dashboard-shell .data-table-shell__body {
  padding: 1.35rem 1.45rem 1.45rem;
}
.dashboard-shell .data-table-shell__toolbar {
  padding-bottom: 0;
}
.dashboard-shell .data-table-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.dashboard-shell .data-table-toolbar__filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  flex: 1 1 680px;
}
.dashboard-shell .data-table-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.dashboard-shell .mail-form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
}
.users-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.users-stat-card {
  --user-tone: var(--primary);
  --user-soft: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}
.users-stat-card > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--user-soft);
  color: var(--user-tone);
}
.users-stat-card strong {
  display: block;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}
.users-stat-card small {
  display: block;
  margin-top: 6px;
  color: #64748b !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.users-stat-card.tone-blue {
  --user-tone: #1d4ed8;
  --user-soft: rgba(59, 130, 246, 0.13);
}
.users-stat-card.tone-slate {
  --user-tone: #475569;
  --user-soft: rgba(148, 163, 184, 0.18);
}
.users-stat-card.tone-green {
  --user-tone: #16803d;
  --user-soft: rgba(34, 197, 94, 0.13);
}
.users-stat-card.tone-amber {
  --user-tone: #b45309;
  --user-soft: rgba(245, 158, 11, 0.15);
}
.users-filter-card,
.users-list-card {
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.users-filter-card {
  padding: 20px;
  margin-bottom: 16px;
}
.users-list-card {
  padding: 22px;
}
.users-list-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.users-table-head {
  padding-bottom: 1rem;
}
.users-list-card-head h2,
.users-table-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.12rem;
  font-weight: 850;
}
.users-list-card-head p,
.users-table-head p {
  margin: 4px 0 0;
  color: #64748b !important;
  font-size: 0.92rem;
  line-height: 1.6;
}
.users-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.users-list-card .alert,
.users-table-shell .alert {
  background: #eff6ff;
  color: #1e3a8a;
}
.staff-image-cell {
  width: 68px;
}
.staff-avatar-thumb,
.staff-avatar-empty {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
}
.staff-avatar-thumb {
  background: #f8fafc;
  object-fit: cover;
  object-position: center;
}
.staff-avatar-empty {
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 850;
}
.user-table-name {
  color: #0f172a;
  white-space: nowrap;
}
.user-profile-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.user-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-weight: 850;
}
.user-profile-cell strong {
  display: block;
  color: #0f172a;
  font-weight: 800;
}
.user-profile-cell small,
.user-contact-cell small {
  display: block;
  margin-top: 3px;
  color: #64748b !important;
  font-size: 0.84rem;
}
.user-contact-cell span {
  color: #334155;
  font-weight: 700;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: capitalize;
}
.status-approved {
  background: #ecfdf3;
  color: #15803d;
}
.status-pending {
  background: #fff8e6;
  color: #a16207;
}
.status-blocked {
  background: #fff1f2;
  color: #be123c;
}
.role-admin {
  background: #eff6ff;
  color: #1d4ed8;
}
.role-staff {
  background: #ecfdf3;
  color: #15803d;
}
.role-customer,
.role-pill {
  background: #f1f5f9;
  color: #334155;
}
.user-action-stack {
  min-width: min(100%, 360px);
}
.user-status-form,
.user-password-form {
  display: grid;
  align-items: center;
  gap: 8px;
}
.user-status-form {
  grid-template-columns: minmax(110px, 160px);
}
.user-password-form {
  grid-template-columns: minmax(110px, 1fr) minmax(110px, 1fr) auto;
}
.user-access-form {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(110px, 1fr) auto;
  gap: 8px;
  min-width: 360px;
  align-items: center;
}
.user-access-form .form-select,
.user-password-form .form-control {
  min-height: 38px;
  border-color: #d9e1ec;
  border-radius: 10px;
  font-size: 0.82rem;
}
.user-access-form .btn,
.user-status-form .btn,
.user-password-form .btn {
  min-height: 38px;
}
.dashboard-shell .app-action {
  --action-bg: #fff;
  --action-border: #d9e1ec;
  --action-color: #243447;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.52rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--action-border);
  background: var(--action-bg);
  color: var(--action-color);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .app-action:hover {
  transform: translateY(-1px);
  color: var(--action-color);
}
.dashboard-shell .app-action--delete {
  --action-bg: #fff1f2;
  --action-border: #fecdd3;
  --action-color: #b42318;
}
.dashboard-shell .app-action--success {
  --action-bg: #ecfdf3;
  --action-border: #b7ebc6;
  --action-color: #15803d;
}
.dashboard-shell .action-column {
  min-width: clamp(260px, 28vw, 460px);
  width: 1%;
}
.dashboard-shell .action-group,
.dashboard-shell .action-stack,
.dashboard-shell .dashboard-actions,
.dashboard-shell .table-actions {
  --action-button-min: 94px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--action-button-min), 1fr));
  align-items: stretch;
  gap: 0.55rem;
  min-width: min(100%, 220px);
  max-width: 520px;
}
.dashboard-shell .action-group.action-group--compact,
.dashboard-shell .dashboard-actions.action-group--compact,
.dashboard-shell .table-actions.action-group--compact {
  --action-button-min: 84px;
  min-width: min(100%, 190px);
}
.dashboard-shell .action-group.action-group--wide,
.dashboard-shell .dashboard-actions.action-group--wide,
.dashboard-shell .table-actions.action-group--wide {
  --action-button-min: 112px;
  min-width: min(100%, 300px);
}
.dashboard-shell .action-group > form,
.dashboard-shell .action-stack > form,
.dashboard-shell .dashboard-actions > form,
.dashboard-shell .table-actions > form {
  display: contents;
  margin: 0 !important;
}
.dashboard-shell .action-group .btn,
.dashboard-shell .action-stack .btn,
.dashboard-shell .dashboard-actions .btn,
.dashboard-shell .table-actions .btn,
.dashboard-shell .action-group button,
.dashboard-shell .action-stack button,
.dashboard-shell .dashboard-actions button,
.dashboard-shell .table-actions button,
.dashboard-shell .action-group a,
.dashboard-shell .action-stack a,
.dashboard-shell .dashboard-actions a,
.dashboard-shell .table-actions a {
  width: 100%;
  min-height: 38px;
  justify-content: center;
  gap: 0.42rem;
  white-space: nowrap;
}
.dashboard-shell .action-panel {
  min-width: clamp(260px, 34vw, 520px);
  max-width: 560px;
}
.dashboard-shell .action-panel form,
.dashboard-shell form.action-panel {
  display: grid;
  gap: 0.65rem;
}
.dashboard-shell .action-control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.55rem;
  align-items: start;
}
.dashboard-shell .action-control-grid .form-control,
.dashboard-shell .action-control-grid .form-select {
  min-height: 38px;
}
.dashboard-shell td:has(.action-group),
.dashboard-shell td:has(.dashboard-actions),
.dashboard-shell td:has(.table-actions),
.dashboard-shell td:has(.action-stack),
.dashboard-shell td:has(.action-panel) {
  min-width: 260px;
}
.dashboard-shell td:has(.action-panel) {
  min-width: 320px;
}
@media (min-width: 1400px) {
  .dashboard-shell .action-group,
  .dashboard-shell .dashboard-actions,
  .dashboard-shell .table-actions {
    max-width: 620px;
  }
}
@media (max-width: 991px) {
  .dashboard-shell .action-column,
  .dashboard-shell .action-panel {
    min-width: 260px;
  }
  .dashboard-shell .action-group,
  .dashboard-shell .action-stack,
  .dashboard-shell .dashboard-actions,
  .dashboard-shell .table-actions {
    --action-button-min: 112px;
    min-width: min(100%, 240px);
  }
}
@media (max-width: 575.98px) {
  .dashboard-shell .action-group,
  .dashboard-shell .action-stack,
  .dashboard-shell .dashboard-actions,
  .dashboard-shell .table-actions {
    grid-template-columns: 1fr;
    min-width: 100%;
    max-width: none;
  }
  .dashboard-shell .action-panel,
  .dashboard-shell td:has(.action-panel),
  .dashboard-shell td:has(.action-group),
  .dashboard-shell td:has(.dashboard-actions),
  .dashboard-shell td:has(.table-actions),
  .dashboard-shell td:has(.action-stack) {
    min-width: 220px;
  }
}

.dashboard-shell .module-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
}

.dashboard-shell .module-check-all,
.dashboard-shell .module-select-column {
  color: #0f172a;
  font-weight: 850;
}

.dashboard-shell .module-select-column {
  width: 54px;
  text-align: center;
}

.dashboard-shell .form-check-input,
.dashboard-shell input[type="checkbox"].form-check-input,
.dashboard-shell .module-row-check {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  cursor: pointer;
}

.dashboard-shell .form-check-input:checked,
.dashboard-shell input[type="checkbox"].form-check-input:checked,
.dashboard-shell .module-row-check:checked {
  background-color: #2563eb;
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.dashboard-shell .roles-page .dashboard-table-card,
.dashboard-shell .orders-admin-page .dashboard-table-card,
.dashboard-shell .users-management-page .dashboard-table-card,
.dashboard-shell .service-plans-admin-page .dashboard-table-card,
.dashboard-shell .projects-admin-page .dashboard-table-card {
  border: 1px solid rgba(37, 99, 235, 0.24) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1) !important;
}

.dashboard-shell .roles-page .editor-card-head h2,
.dashboard-shell .orders-admin-page .editor-card-head h2,
.dashboard-shell .users-management-page .editor-card-head h2 {
  color: #0f172a;
  font-weight: 900;
}

[data-dashboard-theme="dark"] .dashboard-shell .module-bulk-actions,
[data-dashboard-theme="dark"] .dashboard-shell .finance-filter-bar,
[data-dashboard-theme="dark"] .dashboard-shell .finance-metric-card,
[data-dashboard-theme="dark"] .dashboard-shell .finance-chart-card,
[data-dashboard-theme="dark"] .dashboard-shell .finance-side-card {
  background: #111827 !important;
  border-color: #334155 !important;
  color: #e5e7eb !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .finance-metric-card strong,
[data-dashboard-theme="dark"] .dashboard-shell .finance-chart-card h2,
[data-dashboard-theme="dark"] .dashboard-shell .finance-side-card h2,
[data-dashboard-theme="dark"] .dashboard-shell .finance-plan-item strong,
[data-dashboard-theme="dark"] .dashboard-shell .finance-plan-item span,
[data-dashboard-theme="dark"] .dashboard-shell .finance-activity-meter strong,
[data-dashboard-theme="dark"] .dashboard-shell .roles-page .editor-card-head h2,
[data-dashboard-theme="dark"] .dashboard-shell .orders-admin-page .editor-card-head h2,
[data-dashboard-theme="dark"] .dashboard-shell .users-management-page .editor-card-head h2 {
  color: #f8fafc !important;
}

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

@keyframes trioModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes trioSoftPulse {
  0%, 100% {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }
  50% {
    box-shadow: 0 18px 42px rgba(20, 184, 166, 0.14);
  }
}

.dashboard-shell .operations-polish-page,
.dashboard-shell .admin-polish-page,
.dashboard-shell .service-plans-admin-page,
.dashboard-shell .orders-admin-page,
.dashboard-shell .google-reviews-admin-page,
.dashboard-shell .subscriptions-admin-page {
  animation: trioFadeLift 0.42s ease both;
}

.dashboard-shell .operations-hero,
.dashboard-shell .admin-polish-page .dashboard-page-head,
.dashboard-shell .admin-polish-page .dashboard-topbar,
.dashboard-shell .admin-polish-page .dashboard-hero-panel,
.dashboard-shell .admin-polish-page .mail-hero,
.dashboard-shell .service-plans-admin-page .dashboard-hero-panel,
.dashboard-shell .orders-admin-page .dashboard-topbar,
.dashboard-shell .subscriptions-admin-page .dashboard-page-head,
.dashboard-shell .google-reviews-admin-page .dashboard-page-head {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background:
    linear-gradient(135deg, #0f766e 0%, #2563eb 52%, #111827 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16) !important;
}

.dashboard-shell .operations-hero h1,
.dashboard-shell .operations-hero p,
.dashboard-shell .operations-hero .eyebrow,
.dashboard-shell .admin-polish-page .dashboard-page-head h1,
.dashboard-shell .admin-polish-page .dashboard-page-head p,
.dashboard-shell .admin-polish-page .dashboard-page-head .eyebrow,
.dashboard-shell .admin-polish-page .dashboard-topbar h1,
.dashboard-shell .admin-polish-page .dashboard-topbar p,
.dashboard-shell .admin-polish-page .dashboard-topbar .eyebrow,
.dashboard-shell .admin-polish-page .dashboard-hero-panel h1,
.dashboard-shell .admin-polish-page .dashboard-hero-panel p,
.dashboard-shell .admin-polish-page .dashboard-hero-panel .eyebrow,
.dashboard-shell .admin-polish-page .mail-hero h2,
.dashboard-shell .admin-polish-page .mail-hero p,
.dashboard-shell .admin-polish-page .mail-hero__eyebrow,
.dashboard-shell .service-plans-admin-page .dashboard-hero-panel h1,
.dashboard-shell .service-plans-admin-page .dashboard-hero-panel p,
.dashboard-shell .service-plans-admin-page .dashboard-hero-panel .eyebrow,
.dashboard-shell .orders-admin-page .dashboard-topbar h1,
.dashboard-shell .orders-admin-page .dashboard-topbar p,
.dashboard-shell .orders-admin-page .dashboard-topbar .eyebrow,
.dashboard-shell .subscriptions-admin-page .dashboard-page-head h1,
.dashboard-shell .subscriptions-admin-page .dashboard-page-head p,
.dashboard-shell .subscriptions-admin-page .dashboard-page-head .eyebrow,
.dashboard-shell .google-reviews-admin-page .dashboard-page-head h1,
.dashboard-shell .google-reviews-admin-page .dashboard-page-head p,
.dashboard-shell .google-reviews-admin-page .dashboard-page-head .eyebrow {
  color: #ffffff !important;
}

.dashboard-shell .operations-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-shell .operations-summary-grid .dashboard-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.16) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  animation: trioFadeLift 0.48s ease both;
}

.dashboard-shell .operations-summary-grid .dashboard-overview-card:nth-child(2) {
  animation-delay: 0.04s;
}

.dashboard-shell .operations-summary-grid .dashboard-overview-card:nth-child(3) {
  animation-delay: 0.08s;
}

.dashboard-shell .operations-summary-grid .dashboard-overview-card:nth-child(4) {
  animation-delay: 0.12s;
}

.dashboard-shell .operations-summary-grid .dashboard-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.38) !important;
  animation: trioSoftPulse 1.8s ease infinite;
}

.dashboard-shell .operations-summary-grid .dashboard-overview-icon {
  background: linear-gradient(135deg, #14b8a6, #2563eb) !important;
  color: #ffffff !important;
}

.dashboard-shell .operations-polish-page .dashboard-table-card,
.dashboard-shell .admin-polish-page .dashboard-table-card,
.dashboard-shell .admin-polish-page .editor-card,
.dashboard-shell .admin-polish-page .users-list-card,
.dashboard-shell .admin-polish-page .staff-admin-shell,
.dashboard-shell .admin-polish-page .admin-form-card,
.dashboard-shell .service-plans-admin-page .dashboard-table-card,
.dashboard-shell .orders-admin-page .dashboard-table-card,
.dashboard-shell .subscriptions-admin-page .dashboard-table-card,
.dashboard-shell .google-reviews-admin-page .dashboard-table-card {
  border-radius: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
  animation: trioFadeLift 0.5s ease 0.08s both;
}

.dashboard-shell .operations-polish-page .dashboard-table tbody tr,
.dashboard-shell .admin-polish-page .dashboard-table tbody tr,
.dashboard-shell .service-plans-admin-page .dashboard-table tbody tr,
.dashboard-shell .orders-admin-page .dashboard-table tbody tr,
.dashboard-shell .subscriptions-admin-page .dashboard-table tbody tr,
.dashboard-shell .google-reviews-admin-page .dashboard-table tbody tr {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.dashboard-shell .operations-polish-page .dashboard-table tbody tr:hover,
.dashboard-shell .admin-polish-page .dashboard-table tbody tr:hover,
.dashboard-shell .service-plans-admin-page .dashboard-table tbody tr:hover,
.dashboard-shell .orders-admin-page .dashboard-table tbody tr:hover,
.dashboard-shell .subscriptions-admin-page .dashboard-table tbody tr:hover,
.dashboard-shell .google-reviews-admin-page .dashboard-table tbody tr:hover {
  transform: translateY(-1px);
  box-shadow: inset 4px 0 0 #14b8a6;
}

.dashboard-shell .operations-polish-page .product-tag,
.dashboard-shell .admin-polish-page .product-tag,
.dashboard-shell .service-plans-admin-page .product-tag,
.dashboard-shell .orders-admin-page .product-tag,
.dashboard-shell .subscriptions-admin-page .product-tag,
.dashboard-shell .google-reviews-admin-page .product-tag {
  border: 1px solid rgba(20, 184, 166, 0.22) !important;
  background: #ecfeff !important;
  color: #0f766e !important;
  font-weight: 800 !important;
}

.dashboard-shell .operations-polish-page .action-panel,
.dashboard-shell .admin-polish-page .action-panel,
.dashboard-shell .orders-admin-page .action-panel,
.dashboard-shell .subscriptions-admin-page .action-panel,
.dashboard-shell .google-reviews-admin-page .action-panel {
  border-radius: 16px !important;
  border-color: rgba(37, 99, 235, 0.16) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
}

.dashboard-shell .operations-modal .modal-content {
  border: 1px solid rgba(20, 184, 166, 0.2) !important;
  border-radius: 18px !important;
  overflow: hidden;
}

.dashboard-shell .operations-modal.show .modal-dialog {
  animation: trioModalIn 0.24s ease both;
}

.dashboard-shell .operations-modal .modal-header {
  background: linear-gradient(135deg, #f8fafc, #ecfeff) !important;
}

.dashboard-shell .operations-modal .modal-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.dashboard-shell .operations-polish-page .btn,
.dashboard-shell .operations-modal .btn,
.dashboard-shell .admin-polish-page .btn,
.dashboard-shell .service-plans-admin-page .btn,
.dashboard-shell .orders-admin-page .btn,
.dashboard-shell .subscriptions-admin-page .btn,
.dashboard-shell .google-reviews-admin-page .btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
}

.dashboard-shell .operations-polish-page .btn:hover,
.dashboard-shell .operations-modal .btn:hover,
.dashboard-shell .admin-polish-page .btn:hover,
.dashboard-shell .service-plans-admin-page .btn:hover,
.dashboard-shell .orders-admin-page .btn:hover,
.dashboard-shell .subscriptions-admin-page .btn:hover,
.dashboard-shell .google-reviews-admin-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .operations-summary-grid .dashboard-overview-card {
  border-color: rgba(45, 212, 191, 0.22) !important;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .operations-polish-page .action-panel,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .action-panel,
[data-dashboard-theme="dark"] .dashboard-shell .orders-admin-page .action-panel,
[data-dashboard-theme="dark"] .dashboard-shell .subscriptions-admin-page .action-panel,
[data-dashboard-theme="dark"] .dashboard-shell .google-reviews-admin-page .action-panel {
  border-color: rgba(45, 212, 191, 0.2) !important;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .operations-polish-page .product-tag,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .product-tag,
[data-dashboard-theme="dark"] .dashboard-shell .service-plans-admin-page .product-tag,
[data-dashboard-theme="dark"] .dashboard-shell .orders-admin-page .product-tag,
[data-dashboard-theme="dark"] .dashboard-shell .subscriptions-admin-page .product-tag,
[data-dashboard-theme="dark"] .dashboard-shell .google-reviews-admin-page .product-tag {
  border-color: rgba(45, 212, 191, 0.28) !important;
  background: rgba(20, 184, 166, 0.16) !important;
  color: #99f6e4 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .operations-modal .modal-header {
  background: linear-gradient(135deg, #111827, #0f172a) !important;
}

.dashboard-shell .admin-polish-page .dashboard-module-grid .module-card,
.dashboard-shell .admin-polish-page .dashboard-overview-card,
.dashboard-shell .admin-polish-page .users-list-card,
.dashboard-shell .admin-polish-page .staff-admin-shell,
.dashboard-shell .admin-polish-page .admin-form-card {
  border-radius: 18px !important;
  border: 1px solid rgba(20, 184, 166, 0.14) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
  animation: trioFadeLift 0.48s ease both;
}

.dashboard-shell .admin-polish-page .dashboard-module-grid .module-card:hover,
.dashboard-shell .admin-polish-page .users-list-card:hover,
.dashboard-shell .admin-polish-page .staff-admin-shell:hover,
.dashboard-shell .admin-polish-page .admin-form-card:hover {
  border-color: rgba(20, 184, 166, 0.3) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.11) !important;
}

.dashboard-shell .admin-polish-page .module-card i,
.dashboard-shell .admin-polish-page .dashboard-overview-icon {
  background: linear-gradient(135deg, #14b8a6, #2563eb) !important;
  color: #ffffff !important;
}

.dashboard-shell .admin-polish-page .users-list-card-head,
.dashboard-shell .admin-polish-page .editor-card-head,
.dashboard-shell .admin-polish-page .dashboard-table-card > .d-flex:first-child {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18) !important;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.07)) !important;
}

.dashboard-shell .admin-polish-page .users-count-pill,
.dashboard-shell .admin-polish-page .editor-card-head span,
.dashboard-shell .admin-polish-page .dashboard-hero-actions > span {
  border: 1px solid rgba(20, 184, 166, 0.22) !important;
  background: #ecfeff !important;
  color: #0f766e !important;
  font-weight: 850 !important;
}

.dashboard-shell .admin-polish-page .dashboard-hero-actions > span,
.dashboard-shell .admin-polish-page .dashboard-page-head .btn,
.dashboard-shell .admin-polish-page .dashboard-topbar .btn,
.dashboard-shell .admin-polish-page .dashboard-hero-panel .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px !important;
}

.dashboard-shell .admin-polish-page .mail-nav {
  border: 1px solid rgba(20, 184, 166, 0.16) !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07) !important;
}

.dashboard-shell .admin-polish-page .mail-nav__link.is-active,
.dashboard-shell .admin-polish-page .mail-nav__link:hover {
  background: #ecfeff !important;
  color: #0f766e !important;
}

.dashboard-shell .admin-polish-page .modal-content,
.dashboard-shell .admin-polish-page .blog-editor-modal .modal-content,
.dashboard-shell .admin-polish-page .staff-edit-modal .modal-content {
  border: 1px solid rgba(20, 184, 166, 0.2) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18) !important;
}

.dashboard-shell .admin-polish-page .modal-header,
.dashboard-shell .admin-polish-page .blog-editor-modal .modal-header,
.dashboard-shell .admin-polish-page .staff-edit-modal .modal-header {
  background: linear-gradient(135deg, #f8fafc, #ecfeff) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .dashboard-module-grid .module-card,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .dashboard-overview-card,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .users-list-card,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .staff-admin-shell,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .admin-form-card {
  border-color: rgba(45, 212, 191, 0.2) !important;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .users-list-card-head,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .editor-card-head,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .dashboard-table-card > .d-flex:first-child {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.12), rgba(37, 99, 235, 0.12)) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .users-count-pill,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .editor-card-head span,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .dashboard-hero-actions > span {
  background: rgba(20, 184, 166, 0.16) !important;
  border-color: rgba(45, 212, 191, 0.28) !important;
  color: #99f6e4 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .mail-nav {
  border-color: rgba(45, 212, 191, 0.18) !important;
  background: #111827 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .mail-nav__link.is-active,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .mail-nav__link:hover {
  background: rgba(20, 184, 166, 0.16) !important;
  color: #99f6e4 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .modal-header,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .blog-editor-modal .modal-header,
[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page .staff-edit-modal .modal-header {
  background: linear-gradient(135deg, #111827, #0f172a) !important;
}

@media (max-width: 991.98px) {
  .dashboard-shell .operations-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .dashboard-shell .operations-summary-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shell .operations-hero,
  .dashboard-shell .service-plans-admin-page .dashboard-hero-panel {
    align-items: stretch !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-shell .operations-polish-page,
  .dashboard-shell .admin-polish-page,
  .dashboard-shell .service-plans-admin-page,
  .dashboard-shell .orders-admin-page,
  .dashboard-shell .google-reviews-admin-page,
  .dashboard-shell .subscriptions-admin-page,
  .dashboard-shell .operations-summary-grid .dashboard-overview-card,
  .dashboard-shell .operations-polish-page .dashboard-table-card,
  .dashboard-shell .admin-polish-page .dashboard-table-card,
  .dashboard-shell .operations-modal.show .modal-dialog {
    animation: none !important;
  }

  .dashboard-shell .operations-polish-page .btn:hover,
  .dashboard-shell .admin-polish-page .btn:hover,
  .dashboard-shell .operations-modal .btn:hover,
  .dashboard-shell .operations-summary-grid .dashboard-overview-card:hover {
    transform: none !important;
  }
}

.site-header,
.hero-section,
.section,
.auth-card,
.dashboard-shell .dashboard-main > * {
  animation: trioFadeLift 0.45s ease both;
}

.dashboard-shell .dashboard-main > *:nth-child(2),
.section:nth-of-type(2) {
  animation-delay: 0.04s;
}

.dashboard-shell .dashboard-main > *:nth-child(3),
.section:nth-of-type(3) {
  animation-delay: 0.08s;
}

.dashboard-shell .dashboard-main > *:nth-child(4),
.section:nth-of-type(4) {
  animation-delay: 0.12s;
}

.dashboard-shell .dashboard-nav a,
.dashboard-shell .dashboard-nav-parent,
.btn,
.product-card,
.pricing-card,
.module-card,
.dashboard-overview-card,
.auth-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.dashboard-shell .dashboard-nav a:hover,
.dashboard-shell .dashboard-nav-parent:hover,
.product-card:hover,
.pricing-card:hover,
.module-card:hover,
.dashboard-overview-card:hover {
  transform: translateY(-2px);
}

.modal.show .modal-dialog {
  animation: trioModalIn 0.24s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-section,
  .section,
  .auth-card,
  .dashboard-shell .dashboard-main > *,
  .modal.show .modal-dialog {
    animation: none !important;
  }

  .dashboard-shell .dashboard-nav a:hover,
  .dashboard-shell .dashboard-nav-parent:hover,
  .product-card:hover,
  .pricing-card:hover,
  .module-card:hover,
  .dashboard-overview-card:hover {
    transform: none !important;
  }
}

.dashboard-shell .module-strong-head,
.dashboard-shell .module-strong-hero {
  position: relative;
  overflow: hidden;
}

.dashboard-shell .module-strong-head::before,
.dashboard-shell .module-strong-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 4px solid rgba(var(--primary-rgb), 0.88);
}

.dashboard-shell .module-strong-page .dashboard-table-card,
.dashboard-shell .module-strong-page .editor-card,
.dashboard-shell .service-plans-admin-page .dashboard-table-card {
  border: 1px solid rgba(148, 163, 184, 0.24) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08) !important;
}

.dashboard-shell .module-strong-page .dashboard-table thead th {
  background: #f8fafc !important;
  color: #0f172a !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
}

.dashboard-shell .module-strong-page .dashboard-table tbody td {
  vertical-align: top !important;
}

.dashboard-shell .module-strong-page .dashboard-table p,
.dashboard-shell .module-strong-page .dashboard-table small {
  overflow-wrap: anywhere;
}

.dashboard-shell .module-strong-page .action-panel {
  width: min(100%, 360px) !important;
  padding: 12px !important;
  border: 1px solid rgba(148, 163, 184, 0.24) !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  gap: 10px !important;
}

.dashboard-shell .module-strong-page .action-panel .btn,
.dashboard-shell .module-strong-page .action-panel button[type="submit"] {
  min-height: 38px !important;
  width: 100% !important;
  justify-content: center !important;
}

.dashboard-shell .module-strong-page .action-control-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.dashboard-shell .module-strong-page .action-column {
  min-width: 280px !important;
}

.dashboard-shell .module-strong-page .dashboard-table td[colspan].text-muted {
  padding: 28px !important;
  text-align: center;
  color: #64748b !important;
  background: #f8fafc;
  font-weight: 700;
}

.dashboard-shell .service-plans-admin-page .dashboard-table .action-group,
.dashboard-shell .orders-admin-page .dashboard-table .action-group {
  align-items: stretch !important;
}

.dashboard-shell .service-plans-admin-page .dashboard-hero-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
}

.dashboard-shell .subscriptions-admin-page .request-reply-box {
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  background: #eff6ff;
  padding: 10px 12px;
}

.dashboard-shell .google-reviews-admin-page .review-text-preview {
  max-width: 620px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

[data-dashboard-theme="dark"] .dashboard-shell .module-strong-page .dashboard-table thead th {
  background: #111827 !important;
  color: #e5e7eb !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .module-strong-page .action-panel {
  border-color: rgba(148, 163, 184, 0.28) !important;
  background: #111827 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .module-strong-page .dashboard-table td[colspan].text-muted {
  background: #111827;
  color: #cbd5e1 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .subscriptions-admin-page .request-reply-box {
  background: rgba(37, 99, 235, 0.14);
}

@media (max-width: 991.98px) {
  .dashboard-shell .module-strong-page .action-control-grid {
    grid-template-columns: 1fr !important;
  }

  .dashboard-shell .module-strong-page .action-panel {
    width: 100% !important;
  }
}

@media (max-width: 575.98px) {
  .dashboard-shell .module-strong-page .action-column {
    min-width: 220px !important;
  }

  .dashboard-shell .module-strong-page .dashboard-table td,
  .dashboard-shell .module-strong-page .dashboard-table th {
    white-space: normal !important;
  }
}

.trio-confirm-modal .modal-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #991b1b;
}

.trio-confirm-modal {
  z-index: 3100 !important;
}

.modal-backdrop:has(+ .trio-confirm-modal),
.modal-backdrop.trio-confirm-backdrop {
  z-index: 3090 !important;
}

.trio-confirm-modal .modal-body {
  font-size: 0.98rem;
  line-height: 1.6;
}

.trio-confirm-modal .btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 12px;
  background: #dc2626;
  border-color: #b91c1c;
  font-weight: 800;
}

.form-control.is-invalid,
.form-select.is-invalid,
.form-check-input.is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 0.18rem rgba(220, 38, 38, 0.12) !important;
}

.invalid-feedback {
  margin-top: 7px;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-label .required-mark,
.required-mark {
  color: #dc2626;
  font-weight: 900;
}

@media (max-width: 767.98px) {
  .dashboard-shell .table-responsive:has(.mobile-card-table) {
    overflow: visible;
  }

  .dashboard-shell .mobile-card-table,
  .dashboard-shell .mobile-card-table thead,
  .dashboard-shell .mobile-card-table tbody,
  .dashboard-shell .mobile-card-table tr,
  .dashboard-shell .mobile-card-table td {
    display: block;
    width: 100%;
  }

  .dashboard-shell .mobile-card-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .dashboard-shell .mobile-card-table tbody tr {
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  }

  .dashboard-shell .mobile-card-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .dashboard-shell .mobile-card-table tbody td {
    display: grid;
    grid-template-columns: minmax(96px, 34%) 1fr;
    gap: 12px;
    align-items: start;
    min-width: 0 !important;
    padding: 10px 0 !important;
    border: 0 !important;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dashboard-shell .mobile-card-table tbody td::before {
    content: attr(data-label);
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .dashboard-shell .mobile-card-table tbody td[colspan] {
    display: block;
  }

  .dashboard-shell .mobile-card-table tbody td[colspan]::before {
    content: none;
  }

  .dashboard-shell .mobile-card-table .action-column {
    grid-template-columns: 1fr;
  }

  .dashboard-shell .mobile-card-table .action-column::before {
    margin-bottom: 2px;
  }

  .dashboard-shell .mobile-card-table .action-panel,
  .dashboard-shell .mobile-card-table .action-group,
  .dashboard-shell .mobile-card-table .action-control-grid {
    width: 100%;
  }
}

[data-dashboard-theme="dark"] .trio-confirm-modal .modal-title {
  color: #fca5a5;
}

[data-dashboard-theme="dark"] .dashboard-shell .mobile-card-table tbody tr {
  border-color: #334155;
  background: #111827;
  box-shadow: none;
}

[data-dashboard-theme="dark"] .dashboard-shell .mobile-card-table tbody td::before {
  color: #94a3b8;
}
@media (max-width: 1199px) {
  .users-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .users-stat-grid {
    grid-template-columns: 1fr;
  }
  .users-table-shell,
  .users-list-card,
  .users-filter-card {
    padding: 16px;
    border-radius: 18px;
  }
  .users-table-head,
  .users-list-card-head {
    display: grid;
  }
}

/* ===== v4 redesign additions ===== */
.home-hero-redesign {
  padding: 110px 0 90px;
  overflow: hidden;
}
.home-hero-redesign::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--secondary-rgb), 0.2),
    transparent 65%
  );
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.hero-kpi {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 16px 14px;
  text-align: center;
}
.hero-kpi strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
}
.hero-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-tilt-stage {
  position: relative;
  min-height: 620px;
}
.hero-tilt-card.main {
  position: absolute;
  inset: 30px 20px 40px 70px;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 36px 70px rgba(15, 33, 61, 0.22);
  overflow: hidden;
  transform: rotate(-11deg);
}
.hero-tilt-card.main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 50px rgba(15, 33, 61, 0.16);
  padding: 18px;
  border-radius: 22px;
  max-width: 270px;
  z-index: 3;
}
.hero-float h6 {
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--ink);
}
.hero-float p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.hero-float-one {
  right: 0;
  top: 18px;
}
.hero-float-two {
  left: 0;
  bottom: 6px;
}
.mini-dot {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 10px;
}
.hero-ring {
  position: absolute;
  border: 14px solid rgba(var(--primary-rgb), 0.26);
  border-radius: 50%;
  z-index: 1;
}
.hero-ring-lg {
  width: 112px;
  height: 112px;
  right: 12px;
  bottom: 70px;
}
.hero-ring-sm {
  width: 44px;
  height: 44px;
  left: 38px;
  top: 72px;
  border-width: 8px;
  border-color: rgba(var(--accent-rgb), 0.46);
}
.reference-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  overflow: hidden;
}
.reference-panel img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.reference-panel-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.process-image-band {
  background: linear-gradient(
    135deg,
    var(--primary),
    color-mix(in srgb, var(--secondary) 32%, var(--primary))
  );
}
.choose-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.choose-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(15, 33, 61, 0.08);
  transition: 0.28s ease;
  color: inherit;
  min-height: 100%;
}
.choose-card:hover,
.choose-card.active-card {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(15, 33, 61, 0.15);
  border-color: rgba(var(--primary-rgb), 0.24);
}
.choose-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.14),
    rgba(var(--secondary-rgb), 0.14)
  );
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-avatar {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 18px;
  box-shadow: 0 18px 30px rgba(15, 33, 61, 0.12);
}
.gradient-blue {
  background: linear-gradient(135deg, var(--primary), #2ba8ff);
}
.gradient-green {
  background: linear-gradient(135deg, var(--secondary), #7fc416);
}
.gradient-orange {
  background: linear-gradient(135deg, var(--accent), #ff6a00);
}
.gradient-mix {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
}
.pricing-redesign {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}
.pricing-featured {
  background: linear-gradient(
    160deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--secondary-rgb), 0.1)
  );
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-featured::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -54px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}
.pricing-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.pricing-featured h3 {
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--ink);
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}
.pricing-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
}
.pricing-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}
.pricing-checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
}
.pricing-stack {
  display: grid;
  gap: 22px;
}
.pricing-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.pricing-mini h5 {
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--ink);
}
.pricing-mini p {
  margin: 0;
  color: var(--muted);
}
.pricing-mini strong {
  font-size: 1.3rem;
  color: var(--ink);
}
.slider-nav {
  display: flex;
  gap: 10px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.home-product-slider-wrap {
  overflow: hidden;
}
.home-product-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-product-slider .product-card {
  height: 100%;
  margin: 0;
}
.single-review-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  padding: 36px;
}
.review-role {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}
.review-main-text {
  font-size: 1.14rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: 90%;
}
.review-score-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.review-stars {
  display: flex;
  gap: 5px;
  color: #ffb545;
}
.review-thumb-list {
  display: grid;
  gap: 14px;
}
.review-thumb {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}
.review-thumb:hover,
.review-thumb.active {
  transform: translateX(6px);
  border-color: rgba(var(--primary-rgb), 0.22);
  box-shadow: var(--shadow);
}
.review-thumb-photo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}
.review-thumb strong {
  display: block;
  color: var(--ink);
}
.review-thumb small {
  display: block;
  color: var(--muted);
}
.path-journey-section {
  padding: 96px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondary) 68%, white) 0%,
      color-mix(in srgb, var(--primary) 70%, #2bb8ff) 55%,
      color-mix(in srgb, var(--primary) 86%, #0b6ea8) 100%
    );
  overflow: hidden;
  position: relative;
}
.path-journey-section::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 38px;
  bottom: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.journey-shell {
  padding: 0;
  overflow: visible;
  position: relative;
  min-height: 690px;
}
.journey-header,
.journey-flow {
  position: relative;
  z-index: 1;
}
.journey-header {
  max-width: 720px;
}
.journey-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.journey-header h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.journey-header p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1.75;
}
.journey-flow {
  position: relative;
  min-height: 500px;
  margin-top: 58px;
}
.journey-path-svg {
  position: absolute;
  inset: 168px 8px 0;
  width: 100%;
  height: 210px;
  overflow: visible;
}
.journey-path-back,
.journey-path-front {
  fill: none;
  stroke-linecap: round;
}
.journey-path-back {
  stroke: rgba(var(--primary-rgb), 0.34);
  stroke-width: 16;
}
.journey-path-front {
  stroke: rgba(var(--secondary-rgb), 0.9);
  stroke-width: 7;
}
.journey-item {
  position: absolute;
  width: 180px;
  color: rgba(255, 255, 255, 0.96);
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.journey-item h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
}
.journey-item p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.journey-item.top {
  text-align: center;
}
.journey-item.bottom {
  text-align: center;
}
.journey-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.72);
}
.journey-item.top .journey-line {
  margin: 0 auto 16px;
}
.journey-item.bottom .journey-line {
  margin: 0 auto 16px;
}
.journey-item.item-1 {
  left: 36px;
  top: 30px;
}
.journey-item.item-2 {
  left: 186px;
  top: 312px;
}
.journey-item.item-3 {
  left: 416px;
  top: 18px;
}
.journey-item.item-4 {
  left: 540px;
  top: 322px;
}
.journey-item.item-5 {
  left: 760px;
  top: 40px;
}
.journey-item.item-6 {
  right: 34px;
  top: 308px;
}
.journey-node {
  position: absolute;
}
.journey-node span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 78%, white) 0%,
    color-mix(in srgb, var(--secondary) 34%, var(--primary)) 100%
  );
  color: #fff;
  font-size: 1.08rem;
  border: 3px solid rgba(255, 255, 255, 0.26);
  box-shadow: 10px 10px 0 rgba(var(--primary-rgb), 0.14), 0 16px 30px rgba(11, 61, 77, 0.16);
}
.node-start {
  left: 42px;
  top: 258px;
}
.node-2 {
  left: 318px;
  top: 158px;
}
.node-3 {
  left: 520px;
  top: 170px;
}
.node-4 {
  left: 726px;
  top: 186px;
}
.node-5 {
  left: 934px;
  top: 142px;
}
.node-success {
  right: 26px;
  top: 42px;
}
.journey-tag {
  position: absolute;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 8px 18px rgba(7, 60, 77, 0.18);
}
.tag-start {
  left: 8px;
  top: 346px;
  font-size: 1.88rem;
}
.tag-success {
  right: 22px;
  top: -2px;
  font-size: 1.6rem;
}
.tag-success::before,
.tag-start::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}
.tag-start::before {
  left: 104px;
}
.tag-success::before {
  right: 88px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.capability-box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
  color: inherit;
}
.capability-box i {
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.capability-box h5 {
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.capability-box p {
  margin: 0;
  color: var(--muted);
}
.capability-box:hover,
.capability-box.active {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 33, 61, 0.15);
  border-color: rgba(var(--primary-rgb), 0.24);
}
.industries-redesign {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.industry-tile::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.12),
    transparent 68%
  );
}
.industry-tile.featured {
  background: linear-gradient(
    160deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--secondary-rgb), 0.12)
  );
  border-color: rgba(var(--primary-rgb), 0.18);
}
.industry-pill {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.industry-tile h5 {
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}
.industry-tile p {
  margin: 0;
  color: var(--muted);
}
.partners-end-section {
  margin-bottom: 0;
}
.partners-slider {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}
.partner-chip {
  min-width: 180px;
  height: 70px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--ink);
  padding: 0 22px;
}
.partner-chip img {
  max-width: 150px;
  max-height: 44px;
  object-fit: contain;
}
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.faq-hero-clean,
.contact-hero-clean {
  padding: 88px 0 66px;
}
.faq-search-strip {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.faq-search-strip .form-control {
  min-width: 320px;
}
.faq-list-clean {
  padding-top: 10px;
}
.faq-line-item {
  border-bottom: 1px solid var(--line) !important;
  background: transparent;
}
.faq-line-item .accordion-button {
  background: transparent;
  padding: 26px 8px 26px 0;
  font-weight: 800;
  color: var(--ink);
  box-shadow: none;
}
.faq-line-item .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
}
.faq-line-item .accordion-button::after {
  background-size: 1rem;
}
.faq-line-item .accordion-body {
  padding: 0 0 24px 0;
  color: var(--muted);
  max-width: 850px;
  line-height: 1.8;
}

.faq-item,
.faq-line-item {
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.faq-item h5,
.faq-line-item .accordion-button {
  font-weight: 850;
}

.faq-line-item .accordion-button:not(.collapsed) {
  color: #0f4f8f;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
}
.contact-info-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-mini-card {
  background: linear-gradient(
    160deg,
    rgba(var(--primary-rgb), 0.07),
    rgba(var(--secondary-rgb), 0.09)
  );
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.contact-mini-card h6 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-mini-card p {
  margin: 0;
  color: var(--muted);
}
.contact-layout-new {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.contact-map-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}
.contact-map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.contact-map-frame {
  min-height: 360px;
  background: #eaf2ff;
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}
.contact-map-copy {
  padding: 26px;
}
.contact-map-copy h2,
.contact-form-shell h3 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
}
.contact-map-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}
.contact-form-shell,
.contact-side-shell {
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.contact-form-shell {
  background: #fff;
  border: 1px solid var(--line);
}
.contact-side-shell {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.09),
    rgba(var(--secondary-rgb), 0.13)
  );
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  position: relative;
  overflow: hidden;
}
.contact-side-shell::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.contact-side-shell h3 {
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 420px;
}
.contact-side-shell p {
  color: var(--muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.contact-side-points {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-top: 18px;
}
.contact-side-point {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 16px 18px;
}
.contact-side-point strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-side-point span {
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 1199px) {
  .team-grid-4,
  .industries-redesign,
  .capability-grid,
  .home-product-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-shell,
  .contact-layout-new,
  .contact-map-form-grid,
  .pricing-redesign {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .choose-row-3,
  .contact-info-mini-grid {
    grid-template-columns: 1fr;
  }
  .hero-tilt-stage {
    min-height: 520px;
  }
  .hero-tilt-card.main {
    inset: 20px 10px 30px 40px;
  }
}
@media (max-width: 767px) {
  .hero-kpis,
  .home-product-slider,
  .team-grid-4,
  .industries-redesign,
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .hero-tilt-stage {
    min-height: 420px;
  }
  .hero-tilt-card.main {
    inset: 10px 4px 24px 24px;
    border-radius: 24px;
  }
  .hero-float {
    position: relative;
    max-width: none;
    margin-top: 14px;
  }
  .hero-float-one,
  .hero-float-two {
    inset: auto;
  }
  .choose-row-3 {
    grid-template-columns: 1fr;
  }
  .faq-search-strip {
    display: block;
  }
  .faq-search-strip .form-control {
    min-width: 0;
    width: 100%;
  }
  .faq-search-strip .product-tag {
    display: inline-flex;
    margin-top: 14px;
  }
  .single-review-panel {
    padding: 24px;
  }
  .review-main-text {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* ===== v5 requested updates ===== */
:root {
  --shadow-sm: 0 12px 28px rgba(15, 33, 61, 0.08);
}
.home-hero::before,
.page-hero::before {
  display: none !important;
}
.home-hero {
  background:
    radial-gradient(circle at 86% 48%, rgba(37, 99, 235, 0.12), transparent 28%),
    radial-gradient(circle at 58% 24%, rgba(99, 102, 241, 0.13), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.home-hero-v5 {
  padding: 48px 0 28px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
}
.home-hero-v5::before {
  content: "";
  position: absolute;
  right: 2vw;
  top: 58px;
  width: 40vw;
  height: 40vw;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
  display: block !important;
  opacity: 1;
  transform: rotate(-12deg);
}
.home-hero-v5::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 78px;
  width: 112px;
  height: 112px;
  background-image: radial-gradient(#80a7ff 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: 0.7;
}
.home-hero-v5 .container {
  position: relative;
  z-index: 2;
}
.hero-copy-v5 {
  position: relative;
  z-index: 2;
  padding-top: 4px;
}
.hero-copy-v5 h1 {
  font-size: clamp(46px, 5.35vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  color: #071129;
  font-weight: 900;
  margin-bottom: 22px;
  max-width: 760px;
}
.hero-copy-v5 h1 span {
  display: block;
  background: linear-gradient(90deg, #0b7cff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy-v5 p {
  font-size: 1.08rem;
  color: #42526d;
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-mini-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: #53627a;
  border: 1px solid #dce6f4;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 760;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.hero-mini-note span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.home-hero-v5 .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 24px;
}
.hero-stats-v5 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 560px;
}
.hero-stats-v5 div {
  min-width: 0;
}
.hero-stats-v5 i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #dbe7ff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.09);
}
.hero-stats-v5 div:nth-child(2) i {
  color: #16a34a;
  border-color: #c9f2d6;
}
.hero-stats-v5 div:nth-child(3) i {
  color: #7c3aed;
  border-color: #e2d7ff;
}
.hero-stats-v5 div:nth-child(4) i {
  color: #f59e0b;
  border-color: #fde6b7;
}
.hero-stats-v5 strong {
  display: block;
  color: #071129;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}
.hero-stats-v5 span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-image-stage {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-stage img {
  width: min(760px, 112%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 58px rgba(15, 23, 42, 0.12));
}
.hero-solution-panel {
  position: relative;
  border: 1px solid #dbe6f5;
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 16%, rgba(37, 99, 235, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11);
  overflow: hidden;
}
.hero-solution-panel::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 28px solid rgba(37, 99, 235, 0.08);
}
.hero-solution-panel::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(#9bbcff 1.3px, transparent 1.3px);
  background-size: 14px 14px;
  opacity: 0.45;
}
.hero-panel-header,
.hero-panel-grid,
.hero-panel-progress {
  position: relative;
  z-index: 1;
}
.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-panel-header > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.23);
}
.hero-panel-header strong {
  display: block;
  color: #071129;
  font-size: 1.12rem;
  font-weight: 900;
}
.hero-panel-header small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 650;
}
.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.hero-panel-card {
  min-height: 136px;
  padding: 18px;
  border: 1px solid #e2eaf5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.hero-panel-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 13px;
  background: #eef5ff;
  color: #2563eb;
}
.hero-panel-card:nth-child(2) i {
  background: #ecfdf5;
  color: #16a34a;
}
.hero-panel-card:nth-child(3) i {
  background: #f5f3ff;
  color: #7c3aed;
}
.hero-panel-card:nth-child(4) i {
  background: #fff7ed;
  color: #f59e0b;
}
.hero-panel-card strong,
.hero-panel-card span {
  display: block;
}
.hero-panel-card strong {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 850;
}
.hero-panel-card span {
  margin-top: 7px;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 620;
}
.hero-panel-progress {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #e2eaf5;
  border-radius: 16px;
  background: #ffffff;
}
.hero-panel-progress div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 760;
}
.hero-panel-progress strong {
  color: #2563eb;
}
.hero-panel-progress b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e8eef7;
  overflow: hidden;
}
.hero-panel-progress b i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #22c55e);
}
.reference-frame {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.reference-frame img {
  border-radius: 18px;
}
.whatdo-wrap {
  position: relative;
}


.whatdo-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 28px;
  padding-top: 8px;
}
.whatdo-title h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.whatdo-title p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
}
.whatdo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.whatdo-card {
  --card-accent: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-right-width: 4px;
  border-radius: 14px;
  padding: 18px 18px 18px 20px;
  box-shadow: 0 12px 28px rgba(15, 33, 61, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  min-height: 100%;
}
.whatdo-card:hover {
  transform: translateY(-8px);
  background: var(--card-accent);
  border-color: var(--card-accent);
  box-shadow: 0 24px 48px rgba(15, 33, 61, 0.14);
}
.whatdo-card.primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  --card-accent: var(--primary);
}
.whatdo-card.primary h5,
.whatdo-card.primary p {
  color: #fff;
}
.whatdo-card:hover h5 {
  color: #fff;
}
.whatdo-card:hover p {
  color: rgba(255, 255, 255, 0.92);
}
.whatdo-card.primary:hover h5,
.whatdo-card.primary:hover p {
  color: #fff;
}
.whatdo-card .wd-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  margin-bottom: 12px;
}
.whatdo-card:hover .wd-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.whatdo-card.primary .wd-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.whatdo-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.whatdo-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.whatdo-card.border-pink {
  border-right-color: var(--accent);
  --card-accent: var(--accent);
}
.whatdo-card.border-green {
  border-right-color: var(--secondary);
  --card-accent: var(--secondary);
}
.whatdo-card.border-purple {
  border-right-color: var(--primary);
  --card-accent: var(--primary);
}
.whatdo-card.border-cyan {
  border-right-color: color-mix(in srgb, var(--primary) 58%, #4fc9ff);
  --card-accent: color-mix(in srgb, var(--primary) 58%, #4fc9ff);
}
.whatdo-card.border-orange {
  border-right-color: color-mix(in srgb, var(--accent) 78%, var(--secondary));
  --card-accent: color-mix(in srgb, var(--accent) 78%, var(--secondary));
}
.whatdo-card.border-red {
  border-right-color: color-mix(in srgb, var(--accent) 72%, #d34b4b);
  --card-accent: color-mix(in srgb, var(--accent) 72%, #d34b4b);
}
.whatdo-card.border-slate {
  border-right-color: color-mix(in srgb, var(--neutral) 78%, var(--primary));
  --card-accent: color-mix(in srgb, var(--neutral) 78%, var(--primary));
}
.whatdo-card.border-teal {
  border-right-color: #0f9f8f;
  --card-accent: #0f9f8f;
}
.whatdo-card.border-gold {
  border-right-color: #d69a00;
  --card-accent: #d69a00;
}
.whatdo-card.border-violet {
  border-right-color: #7a52cc;
  --card-accent: #7a52cc;
}
.whatdo-card.border-lime {
  border-right-color: #7dbb24;
  --card-accent: #7dbb24;
}
.whatdo-card.border-steel {
  border-right-color: #5a7896;
  --card-accent: #5a7896;
}
.whatdo-card.border-rose {
  border-right-color: #d95c7a;
  --card-accent: #d95c7a;
}
.team-slider-shell {
  position: relative;
}
.team-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 10px;
}
.team-slider-track::-webkit-scrollbar {
  display: none;
}
.team-card {
  position: relative;
  background: #fff;
  border: 2px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 28px;
  padding: 30px 24px 26px;
  box-shadow: 0 20px 50px rgba(18, 40, 85, 0.08);
  min-height: 100%;
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 26px 56px rgba(18, 40, 85, 0.14);
}
.team-badge,
.team-icon,
.team-card h5,
.team-card p {
  position: relative;
  z-index: 1;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.team-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  color: #fff;
  font-size: 24px;
  box-shadow: none;
  color: var(--primary);
}
.team-card:hover .team-icon {
  background: rgba(var(--primary-rgb), 0.14);
  border-color: rgba(var(--primary-rgb), 0.2);
}
.team-card h5 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.team-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.team-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.team-slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 16px 32px rgba(18, 40, 85, 0.08);
  transition: 0.25s ease;
}
.team-slider-btn:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
}
.process-wrap-v5 {
  padding: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 78%, #1ea7ff) 0%,
    color-mix(in srgb, var(--primary) 52%, #39c7ff) 62%,
    color-mix(in srgb, var(--secondary) 18%, #39c7ff) 100%
  );
  overflow: hidden;
}
.process-stage-band {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 86px);
  position: relative;
}
.process-stage-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 44%, rgba(255, 255, 255, 0.14), transparent 24%);
  pointer-events: none;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.process-orbital {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  min-height: 330px;
}
.process-orbital::before {
    content: "";
    position: absolute;
    top: 42px;
    bottom: -28px;
    left: -523px;
    right: -271px;
    background: #fff;
    border-radius: 0px 120px 120px 0px;
    z-index: 0;
    height: 244px;
}
.process-core {
  width: 234px;
  height: 234px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 28% 24%,
    color-mix(in srgb, var(--accent) 48%, white) 0%,
    color-mix(in srgb, var(--accent) 78%, #ff7e68) 54%,
    color-mix(in srgb, var(--accent) 72%, #e85d4d) 100%
  );
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(4, 84, 129, 0.18);
  position: absolute;
  left: 32px;
  top: 44px;
  border: 8px solid #fff;
  z-index: 2;
}
.process-core strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 12px;
}
.process-core p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.process-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.process-orbit.orbit-one {
width: 300px;
    height: 300px;
    left: -12px;
    top: 13px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(44deg);
}
.process-orbit.orbit-two {
    width: 348px;
    height: 342px;
    left: -42px;
    top: -10px;
    border: 4px solid rgba(255, 255, 255, 0.55);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(43deg);
}
.process-dots span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}
.process-dots span:nth-child(1) {
    left: 111px;
    top: -14px;
}
.process-dots span:nth-child(2) {
    left: 124px;
    bottom: -8px;
}
.process-steps-v5 {
  display: grid;
  gap: 14px;
}
.process-step-v5 {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 999px 8px 8px 999px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 14px 28px rgba(9, 72, 115, 0.12);
}
.process-step-v5 .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 82%, white) 0%,
    color-mix(in srgb, var(--secondary) 20%, #3ccfff) 100%
  );
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.35);
}
.process-step-v5 p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}
.choose-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.choose-pick {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: 0.25s ease;
}
.choose-pick:hover,
.choose-pick.active {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(15, 33, 61, 0.12);
  border-color: rgba(var(--primary-rgb), 0.18);
}
.choose-pick .pick-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.12),
    rgba(var(--secondary-rgb), 0.14)
  );
  color: var(--primary);
  font-size: 1.35rem;
}
.choose-pick h5 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.choose-pick p {
  margin: 0;
  color: var(--muted);
}
.pricing-unique {
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    rgba(var(--primary-rgb), 0.05) 100%
  );
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-unique::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--secondary-rgb), 0.18),
    rgba(var(--secondary-rgb), 0) 68%
  );
}
.pricing-unique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.pricing-major {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--secondary-rgb), 0.13)
  );
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 28px;
  padding: 28px;
}
.pricing-major .tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.pricing-major h3 {
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}
.pricing-major .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.pricing-major .amount span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 700;
}
.pricing-major ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.pricing-major li {
  padding-left: 26px;
  position: relative;
  color: var(--ink);
}
.pricing-major li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
}
.pricing-major .plan-feature-list li {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-major .plan-feature-list li::before {
  content: none;
}
.pricing-major .plan-feature-list li i {
  margin-top: 3px;
  color: var(--secondary);
}
.pricing-major .plan-feature-list li.is-muted {
  color: var(--muted);
}
.pricing-major .plan-feature-list li.is-muted i {
  color: #dc3545;
}
.plan-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.plan-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.86rem;
}
.plan-stack-v5 {
  display: grid;
  gap: 16px;
}
.plan-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: 0.25s ease;
}
.plan-stack-v5 a.plan-chip {
  color: inherit;
  text-decoration: none;
}
.plan-chip:hover,
.plan-chip.active {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--primary-rgb), 0.18);
}
.plan-chip h6 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.plan-chip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.plan-chip strong {
  font-size: 1.35rem;
  color: var(--ink);
}
.products-home-wrap {
  overflow: hidden;
}
.products-home-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.review-main-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.review-main-card::before {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: 10px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(var(--primary-rgb), 0.08);
  font-weight: 900;
}
.review-score {
  display: inline-flex;
  gap: 6px;
  color: #f9ab32;
  margin-bottom: 12px;
}
.review-main-card p {
  font-size: 1.14rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: 92%;
  margin-bottom: 22px;
}
.review-user-main {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-user-main .avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.review-side-list {
  display: grid;
  gap: 14px;
}
.review-side-list.is-slider {
  max-height: 286px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.review-side-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}
.review-side-btn:hover,
.review-side-btn.active {
  transform: translateX(8px);
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow);
}
.review-side-btn .mini-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  flex: 0 0 auto;
}
.review-side-btn strong {
  display: block;
  color: var(--ink);
}
.review-side-btn small {
  display: block;
  color: var(--muted);
}
.review-source-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}
.review-source-link:hover {
  color: var(--secondary);
}
.plan-select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.plan-select-row strong,
.plan-select-row small {
  display: block;
}
.plan-select-row small {
  color: var(--muted);
}
.plan-select-row span {
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
}
.subscription-selected-plan {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(var(--primary-rgb), 0.04);
}
.partners-clean {
  padding-top: 18px;
}
.partners-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.partners-track-v5 {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}
.partners-marquee:hover .partners-track-v5 {
  animation-play-state: paused;
}
.partner-chip-v5 {
  min-width: 220px;
  height: 86px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  font-weight: 800;
  color: var(--ink);
  isolation: isolate;
}
.partner-chip-v5::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(20, 184, 166, 0.1), transparent 58%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.partner-chip-v5:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.16);
}
.partner-chip-v5:hover::before {
  opacity: 1;
}
.partner-chip-v5 img {
  max-width: 188px;
  max-height: 58px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.94);
  transition: transform 0.28s ease, filter 0.28s ease;
}
.partner-chip-v5:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}
.fade-up-init {
  opacity: 0;
  transform: translateY(26px);
}
.fade-up-init.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-shot-main,
.hero-shot-side,
.whatdo-card,
.process-step-v5,
.choose-pick,
.plan-chip,
.review-side-btn,
.partner-chip-v5,
.capability-box,
.industry-tile {
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.7s ease;
}
.section-head.narrow {
  max-width: 650px;
}
.section-head.compact {
  margin-bottom: 32px;
}
.page-partners {
  padding: 26px 0 10px;
}
.page-partners .section-head {
  margin-bottom: 24px;
}
.dashboard-table-card {
  overflow: hidden;
}
.dashboard-table thead th {
  color: var(--ink);
  font-weight: 800;
  border-bottom-color: var(--line);
  white-space: nowrap;
}
.dashboard-table td {
  color: var(--ink-2);
  border-color: var(--line);
  vertical-align: middle;
}
.admin-form-card {
  max-width: 920px;
}
.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 88% 6%, rgba(var(--primary-rgb), 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
}
.dashboard-sidebar {
  position: relative;
  min-height: 100vh;
  height: 100%;
  align-self: stretch;
  padding: 22px;
  background: #111315;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.dashboard-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), transparent 42%),
    radial-gradient(circle at 28px 70px, rgba(var(--secondary-rgb), 0.12), transparent 120px);
  pointer-events: none;
}
.dashboard-sidebar > * {
  position: relative;
  z-index: 1;
}
.dashboard-sidebar-toggle,
.dashboard-sidebar-close {
  display: none;
}
.dashboard-sidebar-backdrop {
  display: none;
}
.dashboard-brand {
  background: #fff;
  border-radius: 0;
  padding: 12px 14px;
  display: block;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}
.dashboard-brand img {
  max-width: 178px;
}
.dashboard-nav {
  display: grid;
  gap: 0;
  margin-inline: -22px;
}
.dashboard-nav a,
.dashboard-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px 14px 24px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 640;
  text-decoration: none;
  border: 0;
  background: transparent;
  border-left: 4px solid transparent;
}
.dashboard-nav-parent span,
.dashboard-nav a span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.dashboard-nav a:hover,
.dashboard-nav a.active,
.dashboard-nav-parent:hover,
.dashboard-nav-parent.active {
  background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 78%, #000));
  color: #fff;
  box-shadow: none;
  border-left-color: var(--secondary);
}
.dashboard-nav i {
  width: 20px;
  text-align: center;
  color: color-mix(in srgb, var(--secondary) 76%, #fff);
}
.dashboard-nav-group {
  display: grid;
  gap: 0;
}
.dashboard-subnav {
  display: none;
  padding: 0;
  background: #20221f;
}
.dashboard-nav-group.open .dashboard-subnav {
  display: grid;
  gap: 0;
}
.dashboard-subnav a {
  min-height: 48px;
  padding: 12px 18px 12px 54px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
  border-left-color: transparent;
}
.dashboard-subnav a i {
  color: color-mix(in srgb, var(--secondary) 72%, #fff);
}
.dashboard-subnav a.active {
  background: var(--surface);
  color: var(--ink);
  border-left-color: var(--secondary);
  box-shadow: none;
}
.dashboard-subnav a.active i {
  color: var(--primary);
}
.dashboard-nav-parent.active .dashboard-group-arrow,
.dashboard-nav-parent:hover .dashboard-group-arrow {
  color: #fff;
}
.dashboard-group-arrow {
  transition: transform 0.2s ease;
}
.dashboard-nav-group.open .dashboard-group-arrow {
  transform: rotate(180deg);
}
.dashboard-sidebar-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-sidebar-foot small,
.dashboard-main p {
  color: var(--muted);
}
.dashboard-sidebar-foot strong {
  display: block;
  color: #fff;
}
.dashboard-main {
  min-width: 0;
  padding: 34px;
}
.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.dashboard-topbar h1 {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 760;
  color: var(--ink);
  margin: 0 0 8px;
}
.dashboard-hero-panel {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  margin-bottom: 24px;
  color: #fff;
  background: linear-gradient(135deg, #111315, var(--primary) 58%, var(--secondary));
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}
.dashboard-hero-panel h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 760;
  margin: 0 0 8px;
}
.dashboard-hero-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin: 0;
}
.dashboard-hero-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.wordpress-panel {
  background: linear-gradient(135deg, #111827, #7c3aed 58%, #db2777);
}
.dashboard-hero-actions span {
  display: inline-flex;
  min-width: 116px;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
}
.dashboard-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.dashboard-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}
.dashboard-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.module-card {
  display: grid;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid rgba(13, 40, 56, 0.08);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}
.module-card i {
  color: #2563eb;
  font-size: 1.35rem;
}
.module-card span {
  color: var(--muted);
  font-weight: 650;
}
.module-card strong {
  font-size: 1.55rem;
  color: var(--ink);
}
.dashboard-two-col {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: start;
}
.commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 20px;
  align-items: start;
}
.project-dashboard-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(390px, 0.7fr);
}
.project-showcase-full {
  display: block;
  width: 100%;
}
.project-showcase-card {
  width: 100%;
}
.project-showcase-card {
  background: #fff;
  border: 1px solid #d9e4f1;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 26px;
}
.project-showcase-card .table-responsive {
  overflow-x: auto;
}
.project-showcase-card .dashboard-table {
  border-collapse: separate;
  border-spacing: 0;
}
.project-showcase-card .dashboard-table thead {
  display: none;
}
.project-showcase-card .dashboard-table tr {
  min-height: 150px;
}
.project-showcase-card .dashboard-table td {
  padding: 38px 8px;
  border-bottom: 1px solid #d9e4f1;
  color: #09204a;
  background: #fff;
}
.project-showcase-card .dashboard-table tbody tr:last-child td {
  border-bottom: 0;
}
.project-showcase-card .product-admin-cell {
  min-width: 380px;
  gap: 14px;
}
.project-showcase-card .product-admin-cell img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}
.project-showcase-card .product-admin-cell strong {
  color: #05275e;
  font-size: 1rem;
}
.project-showcase-card .product-admin-cell small {
  color: #536887;
  font-size: 0.9rem;
}
.project-showcase-card .product-tag {
  border-radius: 999px;
  background: #edf2f8;
  color: #05275e;
  padding: 9px 14px;
}
.project-showcase-card .dashboard-actions {
  min-width: min(100%, 260px);
}
.project-showcase-card .dashboard-actions .btn {
  min-width: 86px;
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #d9e4f1;
  color: #05275e;
  font-weight: 800;
}
.request-reply-box,
.request-payment-box {
  border: 1px solid var(--theme-line, var(--line));
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.06);
  padding: 10px 12px;
}
.request-payment-box {
  background: rgba(22, 163, 74, 0.08);
}
.projects-admin-page .dashboard-hero-panel {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #fff;
  border: 0;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}
.projects-admin-page .dashboard-hero-panel h1,
.projects-admin-page .dashboard-hero-panel p,
.projects-admin-page .dashboard-hero-panel .eyebrow {
  color: #fff !important;
}
.projects-admin-page .dashboard-hero-panel .eyebrow {
  background: rgba(255, 255, 255, 0.16);
}
.projects-summary-grid {
  margin: 20px 0;
}
.projects-summary-grid .dashboard-overview-card {
  border-radius: 16px;
}
.projects-admin-page .project-showcase-card {
  border-radius: 18px;
  overflow: hidden;
}
.projects-admin-page .product-admin-cell img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}
.subscriptions-page-head {
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), #fff);
  border-radius: 18px;
  padding: 22px;
}
.dashboard-shell .subscriptions-page-head .eyebrow {
  margin-bottom: 10px;
}
.dashboard-shell .subscriptions-page-head h1 {
  margin-bottom: 8px;
}
.google-reviews-head {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
  border-radius: 18px;
  padding: 22px;
}
.google-review-summary-grid {
  margin: 20px 0;
}
.google-review-summary-grid .stat-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.google-review-summary-grid .stat-card span,
.google-review-summary-grid .stat-card small {
  color: var(--muted);
  font-weight: 700;
}
.google-review-summary-grid .stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 6px 0;
}
.google-review-table-card {
  border-radius: 16px;
}
.reviewer-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.reviewer-cell strong,
.reviewer-cell small {
  display: block;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-weight: 900;
  flex: 0 0 auto;
}
.review-avatar-img {
  display: block;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
}
.review-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  color: #f59e0b;
  margin-bottom: 6px;
}
.review-text-preview {
  max-width: 620px;
  line-height: 1.55;
}
.tag-muted {
  background: #f1f5f9;
  color: #475569;
  border-color: #e2e8f0;
}
.google-reviews-admin-page .action-column {
  min-width: 220px;
}
@media (max-width: 767.98px) {
  .google-reviews-admin-page .action-column {
    min-width: 180px;
  }
}
.project-showcase-card .dashboard-actions .btn-outline-danger {
  min-width: 86px;
  border: 1px solid #fecdd3;
  padding-left: 18px;
  color: #ef233c;
  background: #fff1f2;
}
.project-modal .modal-content {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}
.project-modal .modal-header {
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-bottom-color: var(--line);
}
.project-modal .modal-body {
  padding: 24px;
}
.editor-card,
.dashboard-table-card {
  border-radius: 14px;
}
.editor-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.editor-card-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
}
.editor-card-head span {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.86rem;
}
.editor-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.rich-textarea {
  min-height: 220px;
  line-height: 1.65;
}
.product-admin-cell {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}
.product-admin-cell img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fafc;
}
.product-admin-cell strong {
  display: block;
  color: var(--ink);
}
.product-admin-cell small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dashboard-actions .btn {
  padding: 8px 12px;
}
.dashboard-pagination {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 0;
}
.dashboard-pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.dashboard-pagination button.active,
.dashboard-pagination button:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.mail-log-line {
  white-space: normal;
  color: #061a3d;
}
.mail-center {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.mail-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 38%),
    linear-gradient(135deg, #05070b 0%, #0f2f6d 52%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}
.mail-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mail-hero h2 {
  margin: 14px 0 6px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 740;
  letter-spacing: 0;
}
.mail-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.65;
}
.mail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mail-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid #d9e2ef;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 640;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: 0.18s ease;
}
.mail-nav__link:hover,
.mail-nav__link.is-active {
  transform: translateY(-1px);
  border-color: #93b4ff;
  background: #eff6ff;
  color: #1d4ed8;
}
.mail-stats-grid {
  margin-top: 0;
}
@media (max-width: 1199px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1205;
    width: min(316px, 86vw);
    height: 100vh;
    transform: translateX(-105%);
    transition: transform 0.24s ease;
    box-shadow: 28px 0 70px rgba(2, 8, 23, 0.32);
  }
  body.dashboard-sidebar-open .dashboard-sidebar {
    transform: translateX(0);
  }
  .dashboard-sidebar-toggle {
    display: inline-grid;
    place-items: center;
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 1190;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #05070b;
    color: #fff;
    box-shadow: 0 14px 34px rgba(2, 8, 23, 0.22);
  }
  .dashboard-sidebar-close {
    display: inline-grid;
    place-items: center;
    align-self: flex-end;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .dashboard-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(2, 8, 23, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }
  body.dashboard-sidebar-open .dashboard-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .dashboard-main {
    padding-top: 78px;
  }
  .dashboard-nav {
    grid-template-columns: 1fr;
  }
  .dashboard-module-grid,
  .dashboard-stats,
  .dashboard-two-col,
  .commerce-layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dashboard-main {
    padding: 18px;
    padding-top: 78px;
  }
  .dashboard-sidebar {
    padding: 18px;
  }
  .dashboard-topbar {
    display: grid;
  }
  .dashboard-topbar h1 {
    font-size: 30px;
  }
  .dashboard-nav,
  .dashboard-module-grid,
  .dashboard-stats,
  .dashboard-two-col,
  .commerce-layout {
    grid-template-columns: 1fr;
  }
  .order-summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .user-order-card,
  .user-order-main {
    grid-template-columns: 1fr;
  }
  .user-order-side {
    justify-items: stretch;
  }
  .user-order-actions {
    justify-content: stretch;
  }
  .user-order-actions .btn {
    flex: 1 1 140px;
  }
  .dashboard-hero-panel {
    display: grid;
    padding: 22px;
  }
  .dashboard-hero-panel h1 {
    font-size: 30px;
  }
  .header-account-btn {
    max-width: 100%;
  }
  .header-cart-btn {
    width: 100%;
    border-radius: 999px;
  }
}
.iti {
  width: 100%;
}
.iti--separate-dial-code {
  width: 100%;
}
.iti--allow-dropdown .iti__country-container {
  left: 0;
}
.iti__selected-country {
  border-right: 1px solid #ced4da;
  padding: 0 12px;
  background: #fff;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 8px;
  color: var(--ink-2);
  font-weight: 600;
}
.iti--allow-dropdown input.iti-phone-input,
.iti--allow-dropdown input.iti-phone-input[type="tel"] {
  width: 100%;
  padding-left: 118px !important;
}
.iti-phone-input.form-control {
  border-radius: 5px;
  min-height: 46px;
}
.iti__country-list {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(18, 40, 85, 0.12);
}
.iti__search-input {
  border-radius: 10px;
}
.iti-phone-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}
.password-field {
  position: relative;
}
.password-field .form-control {
  padding-right: 54px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  width: 32px;
  height: 32px;
  padding: 0;
}
.password-toggle:hover {
  color: var(--primary);
}
.otp-code-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.otp-code-prefix,
.otp-code-digits {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 8px;
}
.otp-code-digits {
  grid-template-columns: repeat(6, 44px);
}
.otp-code-prefix span,
.otp-code-input {
  width: 44px;
  height: 48px;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
}
.otp-code-prefix span {
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.38);
}
.otp-code-input {
  padding: 0;
  border-color: #9fb1cc;
}
.otp-code-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.12);
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}
.form-control[type="file"] {
  padding: 12px 16px;
}
.invalid-feedback {
  display: block;
  font-size: 0.86rem;
}
@media (max-width: 1199px) {
  .about-experience-wrap {
    grid-template-columns: 1fr;
  }
  .about-team-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
  .process-layout,
  .review-stage,
  .pricing-unique-grid {
    grid-template-columns: 1fr;
  }
  .choose-three-grid,
  .products-home-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head h2 {
    font-size: 44px;
  }
  .team-slider-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 991px) {
  .phone-shell {
    grid-template-columns: 86px 1fr;
  }
  .about-journey-step {
    grid-template-columns: 1fr 92px 1fr;
    min-height: 98px;
  }
  .about-journey-step::before {
    width: 68px;
    height: 68px;
  }
  .about-journey-step > div {
    max-width: 200px;
  }
  .about-team-track {
    grid-auto-columns: 100%;
  }
  .section-head h2 {
    font-size: 38px;
  }
  .team-slider-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575px) {
  .otp-code-prefix,
  .otp-code-digits {
    grid-template-columns: repeat(3, minmax(42px, 1fr));
  }
  .otp-code-prefix span,
  .otp-code-input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about-journey-panel,
  .about-team-panel {
    padding: 24px 18px;
    border-radius: 26px;
  }
  .about-journey-step {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding-left: 72px;
  }
  .about-journey-step::before {
    left: 28px;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border-radius: 0 48px 48px 0;
  }
  .about-journey-step:nth-child(even)::before {
    border-radius: 48px 0 0 48px;
  }
  .about-journey-step:nth-child(odd) > div,
  .about-journey-step:nth-child(even) > div {
    grid-column: 1;
    text-align: left;
    max-width: 100%;
  }
  .about-journey-step:nth-child(odd) .step-num,
  .about-journey-step:nth-child(even) .step-num {
    grid-column: 1;
    justify-self: start;
    margin-left: -2px;
  }
  .about-journey-step:nth-child(odd) .step-num::before,
  .about-journey-step:nth-child(even) .step-num::before {
    left: 100%;
    right: auto;
    width: 46px;
  }
  .about-team-content h5 {
    font-size: 20px;
  }
  .home-hero-v5 {
    padding: 46px 0 48px;
    min-height: auto;
  }
  .home-hero-v5::before {
    right: -160px;
    top: 110px;
    width: 420px;
    height: 420px;
  }
  .hero-copy-v5 h1 {
    font-size: 40px;
  }
  .hero-stats-v5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .hero-image-stage {
    min-height: 260px;
    margin-top: 18px;
  }
  .hero-image-stage img {
    width: 112%;
  }
  .hero-solution-panel {
    padding: 18px;
    margin-top: 10px;
  }
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel-card {
    min-height: auto;
  }
  .whatdo-board {
    padding: 26px 16px 20px;
  }
  .whatdo-grid,
  .choose-three-grid,
  .products-home-track {
    grid-template-columns: 1fr;
  }
  .section-head h2 {
    font-size: 30px;
    line-height: 1.12;
  }
  .section-head p {
    font-size: 16px;
  }
  .process-stage-band {
    padding: 34px 16px;
  }
  .process-layout {
    gap: 26px;
  }
  .process-core {
    position: relative;
    left: auto;
    top: auto;
    width: 190px;
    height: 190px;
    margin: 28px auto 0;
    padding: 26px;
  }
  .process-core strong {
    font-size: 1.7rem;
  }
  .process-core p {
    font-size: 0.73rem;
  }
  .process-orbital {
    min-height: 260px;
  }
  .process-orbit.orbit-one {
    width: 238px;
    height: 238px;
    left: 50%;
    top: 8px;
    transform: translateX(-50%) rotate(34deg);
  }
  .process-orbit.orbit-two {
    width: 272px;
    height: 272px;
    left: 50%;
    top: -8px;
    transform: translateX(-50%) rotate(20deg);
  }
  .process-dots span:nth-child(1) {
    left: 50%;
    top: -2px;
    transform: translateX(-70px);
  }
  .process-dots span:nth-child(2) {
    left: 50%;
    bottom: 6px;
    transform: translateX(-76px);
  }
  .process-step-v5 {
    border-radius: 28px;
    padding: 14px;
  }
  .team-slider-track {
    grid-auto-columns: 100%;
    gap: 16px;
  }
  .team-card {
    padding: 24px 18px 22px;
  }
  .team-card h5 {
    font-size: 22px;
  }
  .team-card p {
    font-size: 14px;
  }
  .review-main-card {
    padding: 24px;
  }
  .review-main-card p {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* ShoorVision content system for every admin/user dashboard page */
.dashboard-shell {
  background: #eef3f8;
}
.dashboard-shell .dashboard-main {
  min-width: 0;
  padding: 28px;
}
.dashboard-shell .dashboard-topbar {
  align-items: flex-start;
  padding: 1.45rem 1.55rem;
  margin-bottom: 1.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .dashboard-topbar h1 {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dashboard-shell .dashboard-topbar p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #64748b !important;
  font-size: 0.95rem;
  line-height: 1.65;
}
.dashboard-shell .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-shell .stats-row,
.dashboard-shell .dashboard-stats,
.dashboard-shell .dashboard-module-grid,
.dashboard-shell .dashboard-two-col,
.dashboard-shell .commerce-layout {
  gap: 1.25rem;
}
.dashboard-shell .auth-card,
.dashboard-shell .metric-card,
.dashboard-shell .module-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .auth-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card {
  padding: 1.45rem;
}
.dashboard-shell .metric-card,
.dashboard-shell .module-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.dashboard-shell .metric-card::after,
.dashboard-shell .module-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -42px auto;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
}
.dashboard-shell .metric-card:hover,
.dashboard-shell .module-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb), 0.28);
  box-shadow: 0 22px 42px rgba(32, 67, 122, 0.12);
}
.dashboard-shell .metric-card h3,
.dashboard-shell .module-card strong {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
}
.dashboard-shell .metric-card p,
.dashboard-shell .module-card span {
  position: relative;
  z-index: 1;
  color: #64748b !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dashboard-shell .module-card {
  display: grid;
  min-height: 150px;
}
.dashboard-shell .module-card i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  font-size: 1.12rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}
.dashboard-shell .editor-card-head,
.dashboard-shell .dashboard-table-card > .d-flex:first-child {
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1.1rem !important;
  border-bottom: 1px solid #e2e8f0;
}
.dashboard-shell .editor-card-head h2,
.dashboard-shell .dashboard-table-card h2,
.dashboard-shell .auth-card h2,
.dashboard-shell .admin-form-card h1,
.dashboard-shell .admin-form-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
}
.dashboard-shell .editor-card-head span {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}
.dashboard-shell .form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}
.dashboard-shell .form-control,
.dashboard-shell .form-select {
  min-height: 52px;
  border: 1px solid #dbe6f2;
  border-radius: 12px;
  background-color: #fff;
  color: #0f172a;
  font-size: 0.94rem;
  font-weight: 400;
  box-shadow: none;
}
.dashboard-shell .form-control::placeholder {
  color: #64748b;
}
.dashboard-shell textarea.form-control {
  min-height: 150px;
  line-height: 1.65;
}
.dashboard-shell .form-control:focus,
.dashboard-shell .form-select:focus {
  border-color: #8bb4ff;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.09);
}
.dashboard-shell .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.dashboard-shell .btn-theme {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(var(--primary-rgb), 0.18);
}
.dashboard-shell .btn-theme:hover {
  border-color: color-mix(in srgb, var(--primary) 82%, #000);
  background: color-mix(in srgb, var(--primary) 82%, #000);
  color: #fff;
}
.dashboard-shell .btn-outline-theme {
  border-color: #d9e1ec;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}
.dashboard-shell .btn-outline-theme:hover {
  border-color: #c1d4ff;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: #1d4ed8;
}
.dashboard-shell .dashboard-table-card {
  overflow: hidden;
}
.dashboard-shell .table-responsive {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.dashboard-shell .dashboard-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}
.dashboard-shell .dashboard-table thead th {
  white-space: nowrap;
  border: 0;
  padding: 0.9rem 0.95rem;
  background: #fafafa;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-shell .dashboard-table tbody td {
  padding: 1rem 0.95rem;
  border-color: #eceff3;
  background: #fff;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.dashboard-shell .dashboard-table tbody tr:hover td {
  background: #fbfdff;
}
.dashboard-shell .product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 30px;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
}
.dashboard-shell .alert {
  border: 0;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.dashboard-shell .dashboard-actions,
.dashboard-shell .table-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--action-button-min, 94px), 1fr));
  align-items: stretch;
  gap: 0.5rem;
}
.dashboard-shell .dashboard-actions .btn,
.dashboard-shell .table-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 38px;
  padding: 0.52rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}
.dashboard-shell .dashboard-pagination {
  gap: 0.5rem;
  padding-top: 1rem;
}
.dashboard-shell .dashboard-pagination button {
  width: 38px;
  height: 38px;
  border: 1px solid #d9e1ec;
  border-radius: 10px;
  background: #fff;
  color: #243447;
  font-size: 0.85rem;
  font-weight: 700;
}
.dashboard-shell .dashboard-pagination button.active,
.dashboard-shell .dashboard-pagination button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.order-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.order-summary-strip div,
.user-order-card,
.user-order-empty {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}
.order-summary-strip div {
  padding: 16px;
}
.order-summary-strip strong,
.order-summary-strip span {
  display: block;
}
.order-summary-strip strong {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 900;
}
.order-summary-strip span {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 750;
}
.user-order-list {
  display: grid;
  gap: 14px;
}
.user-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
  gap: 18px;
  align-items: start;
  padding: 18px;
}
.user-order-main {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.user-order-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #2563eb;
  background: #eff6ff;
}
.user-order-icon.is-success {
  color: #15803d;
  background: #dcfce7;
}
.user-order-icon.is-warning {
  color: #92400e;
  background: #fef3c7;
}
.user-order-icon.is-danger {
  color: #b91c1c;
  background: #fee2e2;
}
.user-order-icon.is-muted {
  color: #475569;
  background: #f1f5f9;
}
.user-order-main h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
}
.user-order-main p {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.55;
}
.user-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.user-order-meta span,
.user-order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
}
.user-order-note {
  display: block;
  margin-top: 10px;
  color: #475569;
  font-weight: 700;
}
.user-order-access {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.user-order-access div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.user-order-access span {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}
.user-order-access code {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 850;
}
.user-order-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.user-order-status.is-success {
  color: #166534;
  background: #dcfce7;
}
.user-order-status.is-warning {
  color: #92400e;
  background: #fef3c7;
}
.user-order-status.is-danger {
  color: #991b1b;
  background: #fee2e2;
}
.user-order-status.is-info {
  color: #1d4ed8;
  background: #dbeafe;
}
.user-order-status.is-muted {
  color: #475569;
  background: #f1f5f9;
}
.user-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.user-order-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px;
  text-align: center;
}
.user-order-empty > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  font-size: 1.35rem;
}
.user-order-empty h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 900;
}
.user-order-empty p {
  max-width: 520px;
  margin: 0;
  color: #64748b;
}
.dashboard-shell .dashboard-hero-panel {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 1.75rem;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.72), transparent 40%),
    radial-gradient(circle at bottom right, rgba(var(--secondary-rgb), 0.22), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, var(--primary) 52%, color-mix(in srgb, var(--secondary) 68%, #1e3a5f) 100%);
  color: #fff;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.22);
}
.dashboard-shell .dashboard-hero-panel h1 {
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.dashboard-shell .dashboard-hero-panel p {
  color: rgba(255, 255, 255, 0.82) !important;
}
.dashboard-shell .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}
.dashboard-shell .modal-header {
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #e7edf5;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.dashboard-shell .modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.dashboard-shell .modal-body {
  padding: 1.35rem;
}
.dashboard-shell .project-showcase-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .project-showcase-card .dashboard-table td {
  padding: 1.25rem 0.95rem;
  border-bottom: 1px solid #eceff3;
}
.dashboard-shell .project-showcase-card .dashboard-actions .btn {
  border-color: #d9e1ec;
  background: #fff;
  color: #243447;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .dashboard-shell .dashboard-main {
    padding: 78px 22px 24px;
  }
  .dashboard-shell .dashboard-two-col,
  .dashboard-shell .commerce-layout,
  .dashboard-shell .project-dashboard-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .dashboard-shell .dashboard-main {
    padding: 78px 14px 18px;
  }
  .dashboard-shell .dashboard-topbar,
  .dashboard-shell .auth-card,
  .dashboard-shell .metric-card,
  .dashboard-shell .module-card,
  .dashboard-shell .dashboard-table-card,
  .dashboard-shell .editor-card,
  .dashboard-shell .admin-form-card,
  .dashboard-shell .dashboard-hero-panel {
    border-radius: 18px;
    padding: 1rem;
  }
  .dashboard-shell .dashboard-topbar {
    display: grid;
  }
  .dashboard-shell .dashboard-table thead th,
  .dashboard-shell .dashboard-table tbody td {
    white-space: nowrap;
  }
}

/* ShoorVision-style dashboard system */
.dashboard-shell {
  --dash-dark: #1f211d;
  --dash-dark-2: #282a25;
  --dash-card-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  min-height: 100vh;
  grid-template-columns: clamp(270px, 20vw, 320px) minmax(0, 1fr);
  background: #eef3f8;
}
.dashboard-shell .dashboard-main {
  padding: 28px;
}
.dashboard-shell .dashboard-sidebar {
  min-height: 100vh;
  height: auto;
  padding: 0 0 24px;
  gap: 0;
  background: #111315;
  border-right: 4px solid #eef3f8;
  box-shadow: 12px 0 28px rgba(15, 23, 42, 0.12);
}
.dashboard-shell .dashboard-sidebar::before {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.16), transparent 42%),
    radial-gradient(circle at 28px 70px, rgba(var(--secondary-rgb), 0.12), transparent 120px);
}
.dashboard-shell .dashboard-brand {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 18px 22px;
  background: #fff;
  box-shadow: none;
}
.dashboard-shell .dashboard-brand img {
  max-width: 180px;
}
.dashboard-shell .dashboard-nav {
  margin: 0;
  padding-top: 8px;
}
.dashboard-shell .dashboard-nav a,
.dashboard-shell .dashboard-nav-parent {
  min-height: 56px;
  padding: 14px 18px 14px 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 620;
  letter-spacing: 0;
  border-left: 5px solid transparent;
}
.dashboard-shell .dashboard-nav-parent span,
.dashboard-shell .dashboard-nav a span {
  gap: 14px;
}
.dashboard-shell .dashboard-nav i {
  width: 22px;
  font-size: 1rem;
  color: color-mix(in srgb, var(--secondary) 76%, #fff);
}
.dashboard-shell .dashboard-nav a:hover,
.dashboard-shell .dashboard-nav a.active,
.dashboard-shell .dashboard-nav-parent:hover,
.dashboard-shell .dashboard-nav-parent.active {
  background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 78%, #000));
  color: #fff;
  border-left-color: var(--secondary);
}
.dashboard-shell .dashboard-nav a:hover i,
.dashboard-shell .dashboard-nav a.active i,
.dashboard-shell .dashboard-nav-parent:hover i,
.dashboard-shell .dashboard-nav-parent.active i {
  color: #fff;
}
.dashboard-shell .dashboard-subnav {
  padding: 8px 0;
  background: #20221f;
}
.dashboard-shell .dashboard-subnav a {
  min-height: 48px;
  padding-left: 50px;
  padding-right: 18px;
  font-size: 0.86rem;
  font-weight: 600;
}
.dashboard-shell .dashboard-subnav a.active {
  background: var(--surface);
  color: var(--ink);
  border-left-color: var(--secondary);
}
.dashboard-shell .dashboard-subnav a.active i {
  color: var(--primary);
}
.dashboard-shell .dashboard-sidebar-foot {
  margin: auto 22px 0;
  padding-top: 20px;
}
.dashboard-shell .dashboard-sidebar-foot .btn {
  background: #fff;
  border-color: #fff;
  color: #0b2144;
}
.dashboard-shell .dashboard-topbar,
.dashboard-shell .auth-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .metric-card,
.dashboard-shell .module-card {
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.11);
  border-radius: 18px;
  box-shadow: var(--dash-card-shadow);
}
.dashboard-shell .dashboard-topbar {
  padding: 22px 24px;
  align-items: center;
}
.dashboard-shell .dashboard-topbar h1 {
  margin-bottom: 8px;
  color: #0b2144;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
}
.dashboard-shell .dashboard-main p,
.dashboard-shell .text-muted,
.dashboard-shell small {
  color: #66758c !important;
  font-weight: 400;
}
.dashboard-shell .eyebrow {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.dashboard-shell .dashboard-hero-panel,
.dashboard-shell .mail-hero {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(31, 33, 29, 0.96), rgba(32, 67, 122, 0.96) 62%, rgba(75, 137, 20, 0.92)),
    #1f211d;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}
.dashboard-shell .dashboard-hero-panel h1,
.dashboard-shell .mail-hero h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
}
.dashboard-shell .dashboard-hero-actions span,
.dashboard-shell .mail-hero__eyebrow {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 650;
}
.dashboard-shell .auth-card,
.dashboard-shell .editor-card,
.dashboard-shell .dashboard-table-card {
  padding: 22px;
}
.dashboard-shell .metric-card {
  padding: 20px;
}
.dashboard-shell .metric-card h3,
.dashboard-shell .module-card strong {
  color: #0b2144;
  font-size: 1.7rem;
  font-weight: 700;
}
.dashboard-shell .metric-card p,
.dashboard-shell .module-card span {
  margin: 0;
  color: #66758c;
  font-size: 0.88rem;
  font-weight: 560;
}
.dashboard-shell .module-card {
  padding: 20px;
  gap: 10px;
}
.dashboard-shell .module-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 1rem;
}
.dashboard-shell .editor-card-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}
.dashboard-shell .editor-card-head h2,
.dashboard-shell .auth-card h2,
.dashboard-shell .dashboard-table-card h2 {
  color: #0b2144;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
}
.dashboard-shell .form-label {
  margin-bottom: 8px;
  color: #183153;
  font-size: 0.86rem;
  font-weight: 650;
}
.dashboard-shell .form-control,
.dashboard-shell .form-select {
  min-height: 44px;
  border-color: #dbe6f2;
  border-radius: 10px;
  color: #183153;
  font-size: 0.92rem;
  font-weight: 430;
  box-shadow: none;
}
.dashboard-shell textarea.form-control {
  min-height: 126px;
}
.dashboard-shell .form-control:focus,
.dashboard-shell .form-select:focus {
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.08);
}
.dashboard-shell .btn {
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
}
.dashboard-shell .btn-theme {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.18);
}
.dashboard-shell .btn-outline-theme {
  border-color: rgba(var(--primary-rgb), 0.2);
  background: #fff;
  color: var(--primary);
}
.dashboard-shell .dashboard-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}
.dashboard-shell .dashboard-table thead th {
  padding: 13px 14px;
  background: #f7f9fc;
  color: #43536c;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid #dbe6f2;
}
.dashboard-shell .dashboard-table td {
  padding: 15px 14px;
  color: #334868;
  font-weight: 430;
  border-color: #e5edf6;
}
.dashboard-shell .dashboard-table tbody tr:hover td {
  background: #fbfdff;
}
.dashboard-shell .product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eef2f7;
  color: #0b2144;
  font-size: 0.78rem;
  font-weight: 650;
}
.dashboard-shell .dashboard-pagination button {
  border-radius: 10px;
  font-weight: 650;
}
.dashboard-shell .dashboard-pagination button.active,
.dashboard-shell .dashboard-pagination button:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.dashboard-shell .mail-center {
  gap: 16px;
}
.dashboard-shell .mail-nav {
  padding: 4px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: var(--dash-card-shadow);
}
.dashboard-shell .mail-nav__link {
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #1f2937;
  font-size: 0.88rem;
  font-weight: 620;
  box-shadow: none;
}
.dashboard-shell .mail-nav__link i {
  color: var(--primary);
}
.dashboard-shell .mail-nav__link:hover,
.dashboard-shell .mail-nav__link.is-active {
  transform: none;
  background: rgba(var(--primary-rgb), 0.09);
  color: var(--primary);
}
.dashboard-shell .mail-nav__link:hover i,
.dashboard-shell .mail-nav__link.is-active i {
  color: var(--primary);
}
.dashboard-shell .project-showcase-card {
  padding: 24px;
  border-color: rgba(var(--primary-rgb), 0.11);
  box-shadow: var(--dash-card-shadow);
}
.dashboard-shell .project-showcase-card .dashboard-table td {
  padding: 30px 10px;
}
.dashboard-shell .project-showcase-card .dashboard-actions .btn {
  border-color: #dbe6f2;
  color: #0b2144;
  font-weight: 650;
}
.dashboard-shell .project-showcase-card .dashboard-actions .btn-outline-danger {
  color: #dc3545;
}

/* Mail Center content copied to ShoorVision layout, while keeping TrioWebTech sidebar theme */
.dashboard-shell .mail-center {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.dashboard-shell .mail-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.75rem;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.85), transparent 40%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #13233c 48%, #1e3a5f 100%);
  color: #fff;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.22);
}
.dashboard-shell .mail-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-shell .mail-hero h2 {
  margin: 1rem 0 0.4rem;
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.dashboard-shell .mail-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.98rem;
  line-height: 1.75;
}
.dashboard-shell .mail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.dashboard-shell .mail-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.05rem;
  border-radius: 16px;
  border: 1px solid #d9e2ef;
  background: #fff;
  color: #1f2937;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.dashboard-shell .mail-nav__link i {
  color: var(--primary);
}
.dashboard-shell .mail-nav__link:hover,
.dashboard-shell .mail-nav__link.is-active {
  transform: translateY(-1px);
  border-color: #c1d4ff;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: #1d4ed8;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}
.dashboard-shell .mail-nav__link:hover i,
.dashboard-shell .mail-nav__link.is-active i {
  color: #1d4ed8;
}
.dashboard-shell .mail-center + .dashboard-two-col {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
  gap: 1.25rem;
}
.dashboard-shell .mail-center + .dashboard-two-col .auth-card,
.dashboard-shell .mail-center + .auth-card,
.dashboard-shell .mail-center + .dashboard-table-card,
.dashboard-shell .mail-center ~ .auth-card,
.dashboard-shell .mail-center ~ .dashboard-table-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  padding: 1.45rem;
}
.dashboard-shell .mail-center + .dashboard-two-col .editor-card-head,
.dashboard-shell .mail-center + .auth-card .editor-card-head,
.dashboard-shell .mail-center + .dashboard-table-card .editor-card-head,
.dashboard-shell .mail-center ~ .auth-card .editor-card-head,
.dashboard-shell .mail-center ~ .dashboard-table-card .editor-card-head {
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid #e2e8f0;
}
.dashboard-shell .mail-center + .dashboard-two-col .editor-card-head h2,
.dashboard-shell .mail-center + .auth-card .editor-card-head h2,
.dashboard-shell .mail-center + .dashboard-table-card .editor-card-head h2,
.dashboard-shell .mail-center ~ .auth-card .editor-card-head h2,
.dashboard-shell .mail-center ~ .dashboard-table-card .editor-card-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
}
.dashboard-shell .mail-center + .dashboard-two-col .editor-card-head span,
.dashboard-shell .mail-center + .auth-card .editor-card-head span,
.dashboard-shell .mail-center + .dashboard-table-card .editor-card-head span,
.dashboard-shell .mail-center ~ .auth-card .editor-card-head span,
.dashboard-shell .mail-center ~ .dashboard-table-card .editor-card-head span {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}
.dashboard-shell .mail-center + .dashboard-two-col .form-label,
.dashboard-shell .mail-center ~ .auth-card .form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}
.dashboard-shell .mail-center + .dashboard-two-col .form-control,
.dashboard-shell .mail-center + .dashboard-two-col .form-select,
.dashboard-shell .mail-center ~ .auth-card .form-control,
.dashboard-shell .mail-center ~ .auth-card .form-select {
  min-height: 52px;
  border: 1px solid #dbe6f2;
  border-radius: 12px;
  background-color: #fff;
  color: #0f172a;
  font-size: 0.94rem;
}
.dashboard-shell .mail-center + .dashboard-two-col .dashboard-table thead th,
.dashboard-shell .mail-center ~ .dashboard-table-card .dashboard-table thead th {
  border: 0;
  padding: 0.9rem 0.95rem;
  background: #f8fafc;
  color: #334868;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-shell .mail-center + .dashboard-two-col .dashboard-table tbody td,
.dashboard-shell .mail-center ~ .dashboard-table-card .dashboard-table tbody td {
  padding: 1rem 0.95rem;
  border-color: #edf2f7;
  vertical-align: top;
}
.dashboard-shell .mail-center + .dashboard-two-col .dashboard-table tbody tr:hover td,
.dashboard-shell .mail-center ~ .dashboard-table-card .dashboard-table tbody tr:hover td {
  background: #fbfdff;
}
.dashboard-shell .mail-center + .dashboard-two-col .product-tag,
.dashboard-shell .mail-center ~ .dashboard-table-card .product-tag {
  gap: 0.4rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
}
.dashboard-shell .mail-log-line {
  display: block;
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid #dbe6f2;
  background: #0f172a;
  color: #dbeafe;
  font-size: 0.82rem;
  line-height: 1.7;
  white-space: normal;
}
@media (max-width: 1199px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }
  .dashboard-shell .dashboard-sidebar {
    width: min(320px, 88vw);
    padding-bottom: 24px;
  }
  .dashboard-shell .mail-center + .dashboard-two-col {
    grid-template-columns: 1fr;
  }
  .dashboard-shell .dashboard-main {
    padding: 78px 22px 24px;
  }
  .dashboard-shell .dashboard-sidebar-toggle {
    background: var(--dash-dark);
    color: #fff;
  }
}
@media (max-width: 767px) {
  .dashboard-shell .dashboard-main {
    padding: 78px 14px 18px;
  }
  .dashboard-shell .dashboard-topbar,
  .dashboard-shell .dashboard-hero-panel,
  .dashboard-shell .mail-hero {
    padding: 18px;
  }
  .dashboard-shell .dashboard-topbar {
    align-items: stretch;
  }
  .dashboard-shell .auth-card,
  .dashboard-shell .editor-card,
  .dashboard-shell .dashboard-table-card,
  .dashboard-shell .project-showcase-card {
    padding: 16px;
    border-radius: 14px;
  }
  .dashboard-shell .dashboard-table td,
  .dashboard-shell .dashboard-table th {
    white-space: nowrap;
  }
  .dashboard-shell .mail-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Final universal dashboard content override: applies ShoorVision page styling to all modules */
.dashboard-shell .dashboard-main {
  padding: 28px;
  background: #eef3f8;
}
.dashboard-shell .dashboard-topbar,
.dashboard-shell .auth-card,
.dashboard-shell .metric-card,
.dashboard-shell .module-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .dashboard-topbar {
  align-items: flex-start;
  padding: 1.45rem 1.55rem;
  margin-bottom: 1.45rem;
}
.dashboard-shell .dashboard-topbar h1 {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dashboard-shell .dashboard-topbar p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #64748b !important;
  font-size: 0.95rem;
  line-height: 1.65;
}
.dashboard-shell .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-shell .auth-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card {
  padding: 1.45rem;
}
.dashboard-shell .dashboard-stats,
.dashboard-shell .dashboard-module-grid,
.dashboard-shell .dashboard-two-col,
.dashboard-shell .commerce-layout,
.dashboard-shell .project-dashboard-layout {
  gap: 1.25rem;
}
.dashboard-shell .metric-card,
.dashboard-shell .module-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
}
.dashboard-shell .metric-card::after,
.dashboard-shell .module-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -42px auto;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
}
.dashboard-shell .metric-card h3,
.dashboard-shell .module-card strong {
  position: relative;
  z-index: 1;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
}
.dashboard-shell .metric-card p,
.dashboard-shell .module-card span {
  position: relative;
  z-index: 1;
  color: #64748b !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dashboard-shell .module-card i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  font-size: 1.12rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}
.dashboard-shell .editor-card-head,
.dashboard-shell .dashboard-table-card > .d-flex:first-child {
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1.1rem !important;
  border-bottom: 1px solid #e2e8f0;
}
.dashboard-shell .editor-card-head h2,
.dashboard-shell .dashboard-table-card h2,
.dashboard-shell .auth-card h2,
.dashboard-shell .admin-form-card h1,
.dashboard-shell .admin-form-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
}
.dashboard-shell .form-label {
  margin-bottom: 0.45rem;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}
.dashboard-shell .form-control,
.dashboard-shell .form-select {
  min-height: 52px;
  border: 1px solid #dbe6f2;
  border-radius: 12px;
  background-color: #fff;
  color: #0f172a;
  font-size: 0.94rem;
  font-weight: 400;
  box-shadow: none;
}
.dashboard-shell .form-control:focus,
.dashboard-shell .form-select:focus {
  border-color: #8bb4ff;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.09);
}
.dashboard-shell .btn {
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}
.dashboard-shell .table-responsive {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  overflow-x: auto;
}
.dashboard-shell .dashboard-table {
  border-collapse: collapse;
}
.dashboard-shell .dashboard-table thead th {
  border: 0;
  padding: 0.9rem 0.95rem;
  background: #fafafa;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-shell .dashboard-table tbody td {
  padding: 1rem 0.95rem;
  border-color: #eceff3;
  background: #fff;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  vertical-align: top;
}
.dashboard-shell .dashboard-table tbody tr:hover td {
  background: #fbfdff;
}
.dashboard-shell .product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 30px;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
}
.dashboard-shell .dashboard-actions .btn,
.dashboard-shell .table-actions .btn {
  min-height: 38px;
  padding: 0.52rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}
.dashboard-shell .dashboard-hero-panel,
.dashboard-shell .mail-hero {
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.22);
}
.dashboard-shell .dashboard-hero-panel h1,
.dashboard-shell .mail-hero h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
@media (max-width: 1199px) {
  .dashboard-shell .dashboard-main {
    padding: 78px 22px 24px;
  }
  .dashboard-shell .dashboard-two-col,
  .dashboard-shell .commerce-layout,
  .dashboard-shell .project-dashboard-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .dashboard-shell .dashboard-main {
    padding: 78px 14px 18px;
  }
  .dashboard-shell .dashboard-topbar,
  .dashboard-shell .auth-card,
  .dashboard-shell .metric-card,
  .dashboard-shell .module-card,
  .dashboard-shell .dashboard-table-card,
  .dashboard-shell .editor-card,
  .dashboard-shell .admin-form-card,
  .dashboard-shell .dashboard-hero-panel,
  .dashboard-shell .mail-hero {
    border-radius: 18px;
    padding: 1rem;
  }
}

/* Final dashboard subpage layout: ShoorVision-style structure across all pages */
.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  grid-template-rows: 66px minmax(calc(100vh - 66px), auto);
  align-items: stretch;
  background: #f3f6fa;
}
.dashboard-shell .dashboard-sidebar {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 100vh;
}
.dashboard-admin-bar {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 12px 22px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.14), rgba(var(--secondary-rgb), 0.12));
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  z-index: 10;
}
.dashboard-admin-title {
  min-width: 0;
}
.dashboard-admin-title strong {
  display: block;
  color: #0f172a;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.1;
}
.dashboard-admin-title span {
  display: block;
  margin-top: 3px;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 650;
}
.dashboard-admin-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}
.dashboard-icon-btn,
.dashboard-user-chip,
.dashboard-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.dashboard-icon-btn {
  width: 40px;
  border: 0;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}
.dashboard-user-chip {
  max-width: min(260px, 36vw);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #0f172a;
  overflow: hidden;
}
.dashboard-user-chip img,
.dashboard-user-chip > i {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
}
.dashboard-user-chip img {
  object-fit: cover;
}
.dashboard-user-chip > i {
  display: grid;
  place-items: center;
  background: #fff;
}
.dashboard-user-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-logout-btn {
  padding: 8px 14px;
  background: #111315;
  color: #fff;
}
.dashboard-logout-btn:hover {
  color: #fff;
  background: #05070b;
}
.dashboard-shell .dashboard-main {
  grid-column: 2;
  grid-row: 2;
  padding: 38px 30px 46px;
  background: #f3f6fa;
}
.dashboard-shell .dashboard-topbar,
.dashboard-shell .dashboard-hero-panel,
.dashboard-shell .mail-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.72), transparent 38%),
    linear-gradient(135deg, #101820 0%, var(--primary) 55%, color-mix(in srgb, var(--secondary) 72%, #16335f) 100%);
  color: #fff;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.22);
}
.dashboard-shell .dashboard-topbar h1,
.dashboard-shell .dashboard-hero-panel h1,
.dashboard-shell .mail-hero h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 850;
  letter-spacing: -0.035em;
}
.dashboard-shell .dashboard-topbar p:not(.eyebrow),
.dashboard-shell .dashboard-hero-panel p,
.dashboard-shell .mail-hero p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.98rem;
  line-height: 1.75;
}
.dashboard-shell .dashboard-topbar .eyebrow,
.dashboard-shell .dashboard-hero-panel .eyebrow,
.dashboard-shell .mail-hero__eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}
.dashboard-shell .dashboard-topbar .btn,
.dashboard-shell .dashboard-hero-panel .btn {
  align-self: flex-start;
  border: 0;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}
.dashboard-shell .auth-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card {
  border: 1px solid #dfe7f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  padding: 24px;
}
.dashboard-shell .dashboard-table-card .table-responsive {
  margin-top: 0;
}
.dashboard-shell .editor-card-head,
.dashboard-shell .dashboard-table-card > .d-flex:first-child,
.dashboard-shell .admin-form-card > .d-flex:first-child {
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}
.dashboard-shell .editor-card-head h2,
.dashboard-shell .dashboard-table-card h2,
.dashboard-shell .auth-card h2,
.dashboard-shell .admin-form-card h1,
.dashboard-shell .admin-form-card h2 {
  color: #0f172a;
  font-size: 1.1rem !important;
  font-weight: 850 !important;
}
.dashboard-shell .auth-card .row,
.dashboard-shell .editor-card .row,
.dashboard-shell .admin-form-card .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}
.dashboard-shell .form-label {
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 800;
}
.dashboard-shell .form-control,
.dashboard-shell .form-select {
  min-height: 50px;
  border: 1px solid rgba(var(--accent-rgb), 0.62);
  border-radius: 9px;
  color: #0f172a;
  font-size: 0.93rem;
}
.dashboard-shell textarea.form-control {
  min-height: 112px;
}
.dashboard-shell .form-control:focus,
.dashboard-shell .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.16rem rgba(var(--accent-rgb), 0.12);
}
.dashboard-shell .table-responsive {
  border: 0;
  border-radius: 0;
}
.dashboard-shell .dashboard-table thead th {
  background: #f7f9fc;
  color: #334868;
}
.dashboard-shell .dashboard-table tbody td {
  color: #334155;
}
.dashboard-shell .dashboard-stats,
.dashboard-shell .dashboard-module-grid {
  gap: 18px;
}
.dashboard-shell .metric-card,
.dashboard-shell .module-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}
.dashboard-shell .metric-card h3,
.dashboard-shell .module-card strong {
  color: #0f172a;
}
.dashboard-shell .mail-nav {
  margin-bottom: 20px;
}
.dashboard-shell .mail-center + .dashboard-two-col,
.dashboard-shell .dashboard-two-col {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 22px;
}
.dashboard-shell .dashboard-sidebar-foot {
  display: none;
}
@media (max-width: 1199px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 66px auto;
  }
  .dashboard-shell .dashboard-sidebar {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .dashboard-admin-bar {
    grid-column: 1;
    grid-row: 1;
    padding-left: 78px;
  }
  .dashboard-shell .dashboard-main {
    grid-column: 1;
    grid-row: 2;
    padding: 24px 22px 36px;
  }
  .dashboard-shell .mail-center + .dashboard-two-col,
  .dashboard-shell .dashboard-two-col,
  .dashboard-shell .commerce-layout,
  .dashboard-shell .project-dashboard-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .dashboard-admin-bar {
    min-height: 66px;
    padding: 10px 12px 10px 72px;
  }
  .dashboard-admin-title strong {
    font-size: 0.98rem;
  }
  .dashboard-admin-title span,
  .dashboard-user-chip span,
  .dashboard-logout-btn span {
    display: none;
  }
  .dashboard-user-chip {
    width: 40px;
    padding: 7px;
  }
  .dashboard-shell .dashboard-main {
    padding: 18px 12px 28px;
  }
  .dashboard-shell .dashboard-topbar,
  .dashboard-shell .dashboard-hero-panel,
  .dashboard-shell .mail-hero,
  .dashboard-shell .auth-card,
  .dashboard-shell .dashboard-table-card,
  .dashboard-shell .editor-card,
  .dashboard-shell .admin-form-card {
    border-radius: 18px;
    padding: 18px;
  }
  .dashboard-shell .dashboard-topbar {
    display: grid;
  }
  .dashboard-shell .dashboard-topbar h1,
  .dashboard-shell .dashboard-hero-panel h1,
  .dashboard-shell .mail-hero h2 {
    font-size: 1.75rem;
  }
}

/* Dashboard light theme baseline and layout refinements */
.dashboard-shell {
  --theme-bg: #e7e7e7;
  --theme-bg-soft: #f1f5f9;
  --theme-surface: #ffffff;
  --theme-surface-raised: #ffffff;
  --theme-ink: #0f172a;
  --theme-text: #334155;
  --theme-muted: #64748b;
  --theme-line: #e2e8f0;
  --theme-line-strong: #cbd5e1;
  --theme-primary: #2563eb;
  --theme-primary-rgb: 37, 99, 235;
  --theme-navy: #0f172a;
  --theme-success: #16a34a;
  --theme-warning: #b45309;
  --theme-danger: #dc2626;
  --theme-radius: 16px;
  --theme-radius-sm: 10px;
  --theme-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --theme-shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.06);
  --theme-focus: 0 0 0 0.18rem rgba(var(--theme-primary-rgb), 0.14);
}

.dashboard-shell .dashboard-main {
  background: var(--theme-bg) !important;
}

.dashboard-shell .dashboard-two-col,
.dashboard-shell .mail-center + .dashboard-two-col {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.dashboard-shell .dashboard-two-col > .auth-card,
.dashboard-shell .dashboard-two-col > .dashboard-table-card,
.dashboard-shell .mail-center + .dashboard-two-col > .auth-card,
.dashboard-shell .mail-center + .dashboard-two-col > .dashboard-table-card {
  width: 100% !important;
  min-width: 0 !important;
}

.dashboard-shell .auth-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card,
.dashboard-shell .dashboard-page-head,
.dashboard-shell .dashboard-topbar,
.dashboard-shell .dashboard-hero-panel,
.dashboard-shell .mail-hero,
.dashboard-overview-card,
.users-list-card,
.users-filter-card {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-radius) !important;
  background: var(--theme-surface) !important;
  box-shadow: var(--theme-shadow-sm) !important;
}

.dashboard-shell .auth-card,
.dashboard-shell .dashboard-table-card,
.dashboard-shell .editor-card,
.dashboard-shell .admin-form-card,
.dashboard-shell .dashboard-page-head,
.users-list-card,
.users-filter-card {
  padding: 22px;
}

.dashboard-shell .table-responsive {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-radius-sm) !important;
  background: var(--theme-surface) !important;
}

.dashboard-shell .dashboard-table {
  min-width: 760px;
}

.dashboard-shell .dashboard-table thead th {
  background: var(--theme-bg-soft) !important;
  color: var(--theme-muted) !important;
}

.dashboard-shell .form-control,
.dashboard-shell .form-select {
  min-height: 46px;
}

.dashboard-shell .form-control:focus,
.dashboard-shell .form-select:focus {
  border-color: var(--theme-primary) !important;
  box-shadow: var(--theme-focus) !important;
}

.dashboard-shell .btn-theme {
  border: 1px solid var(--theme-primary) !important;
  background: var(--theme-primary) !important;
  color: #fff !important;
}

.dashboard-shell .btn-outline-theme {
  border: 1px solid var(--theme-line-strong) !important;
  background: #fff !important;
  color: var(--theme-ink) !important;
}

.dashboard-shell .product-tag,
.dashboard-shell .eyebrow {
  border: 1px solid var(--theme-line) !important;
  background: #eef2ff !important;
  color: #1e3a8a !important;
}

.dashboard-shell .status-approved,
.dashboard-shell .status-active {
  border-color: #bbf7d0 !important;
  background: #f0fdf4 !important;
  color: #166534 !important;
}

.dashboard-shell .status-pending,
.dashboard-shell .status-draft,
.dashboard-shell .status-requested,
.dashboard-shell .status-in_progress {
  border-color: #fed7aa !important;
  background: #fff7ed !important;
  color: #9a3412 !important;
}

.dashboard-shell .status-blocked,
.dashboard-shell .status-rejected,
.dashboard-shell .status-cancelled,
.dashboard-shell .status-trash,
.dashboard-shell .status-spam {
  border-color: #fecaca !important;
  background: #fef2f2 !important;
  color: #991b1b !important;
}

@media (max-width: 767px) {
  .dashboard-shell .auth-card,
  .dashboard-shell .dashboard-table-card,
  .dashboard-shell .editor-card,
  .dashboard-shell .admin-form-card,
  .dashboard-shell .dashboard-page-head,
  .dashboard-shell .dashboard-topbar,
  .dashboard-shell .dashboard-hero-panel,
  .dashboard-shell .mail-hero {
    border-radius: 14px !important;
    padding: 16px !important;
  }
}
/* Dashboard-only light/dark theme controls */
.dashboard-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 5px 11px 5px 5px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  background: #fff;
  color: var(--theme-ink);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
}

.dashboard-theme-toggle__track {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 58px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #64748b;
}

.dashboard-theme-toggle__thumb {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease;
}

.dashboard-theme-toggle.is-dark .dashboard-theme-toggle__thumb,
[data-dashboard-theme="dark"] .dashboard-theme-toggle__thumb {
  transform: translateX(28px);
}

[data-dashboard-theme="dark"] .dashboard-theme-toggle {
  border-color: #334155;
  background: #111827;
  color: #e5e7eb;
}

[data-dashboard-theme="dark"] .dashboard-theme-toggle__track {
  background: #1e293b;
  color: #93c5fd;
}

[data-dashboard-theme="dark"] .dashboard-shell {
  --theme-bg: #0b1120;
  --theme-bg-soft: #111827;
  --theme-surface: #111827;
  --theme-surface-raised: #162033;
  --theme-ink: #f8fafc;
  --theme-text: #d1d5db;
  --theme-muted: #94a3b8;
  --theme-line: #273449;
  --theme-line-strong: #3b4a63;
  --theme-primary: #60a5fa;
  --theme-primary-rgb: 96, 165, 250;
  --theme-navy: #050816;
  --theme-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  --theme-shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.22);
  --theme-focus: 0 0 0 0.18rem rgba(96, 165, 250, 0.2);
  background: var(--theme-bg) !important;
  color: var(--theme-text);
}

[data-dashboard-theme="dark"] .dashboard-admin-bar,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-main {
  background: var(--theme-bg) !important;
  color: var(--theme-text);
}

[data-dashboard-theme="dark"] .dashboard-admin-bar {
  border-bottom-color: var(--theme-line);
  box-shadow: var(--theme-shadow-sm);
}

[data-dashboard-theme="dark"] .dashboard-admin-title strong,
[data-dashboard-theme="dark"] .dashboard-page-head h1,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-topbar h1,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-hero-panel h1,
[data-dashboard-theme="dark"] .dashboard-shell .mail-hero h2,
[data-dashboard-theme="dark"] .dashboard-shell .editor-card-head h2,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-table-card h2,
[data-dashboard-theme="dark"] .dashboard-shell .auth-card h2,
[data-dashboard-theme="dark"] .dashboard-shell .admin-form-card h1,
[data-dashboard-theme="dark"] .dashboard-shell .admin-form-card h2,
[data-dashboard-theme="dark"] .dashboard-overview-card strong,
[data-dashboard-theme="dark"] .dashboard-shell .metric-card h3,
[data-dashboard-theme="dark"] .dashboard-shell .module-card strong,
[data-dashboard-theme="dark"] .dashboard-shell .form-label,
[data-dashboard-theme="dark"] .profile-panel h2,
[data-dashboard-theme="dark"] .profile-field strong,
[data-dashboard-theme="dark"] .profile-metric strong {
  color: var(--theme-ink) !important;
}

[data-dashboard-theme="dark"] .dashboard-admin-title span,
[data-dashboard-theme="dark"] .dashboard-page-head p,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-topbar p:not(.eyebrow),
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-hero-panel p,
[data-dashboard-theme="dark"] .dashboard-shell .mail-hero p,
[data-dashboard-theme="dark"] .dashboard-overview-card small,
[data-dashboard-theme="dark"] .dashboard-overview-title,
[data-dashboard-theme="dark"] .dashboard-shell .metric-card p,
[data-dashboard-theme="dark"] .dashboard-shell .module-card span,
[data-dashboard-theme="dark"] .dashboard-shell .text-muted,
[data-dashboard-theme="dark"] .dashboard-shell small,
[data-dashboard-theme="dark"] .profile-field span,
[data-dashboard-theme="dark"] .profile-metric small {
  color: var(--theme-muted) !important;
}

[data-dashboard-theme="dark"] .dashboard-page-head,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-topbar,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-hero-panel,
[data-dashboard-theme="dark"] .dashboard-shell .mail-hero,
[data-dashboard-theme="dark"] .dashboard-shell .auth-card,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-table-card,
[data-dashboard-theme="dark"] .dashboard-shell .editor-card,
[data-dashboard-theme="dark"] .dashboard-shell .admin-form-card,
[data-dashboard-theme="dark"] .dashboard-shell .metric-card,
[data-dashboard-theme="dark"] .dashboard-shell .module-card,
[data-dashboard-theme="dark"] .dashboard-shell .project-showcase-card,
[data-dashboard-theme="dark"] .dashboard-overview-card,
[data-dashboard-theme="dark"] .users-list-card,
[data-dashboard-theme="dark"] .users-filter-card,
[data-dashboard-theme="dark"] .profile-panel,
[data-dashboard-theme="dark"] .profile-field,
[data-dashboard-theme="dark"] .profile-metric,
[data-dashboard-theme="dark"] .mail-nav,
[data-dashboard-theme="dark"] .dashboard-shell .mail-nav {
  border-color: var(--theme-line) !important;
  background: var(--theme-surface) !important;
  background-image: none !important;
  color: var(--theme-text) !important;
  box-shadow: var(--theme-shadow-sm) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .dashboard-sidebar {
  border-right-color: #111827;
  background: #050816 !important;
}

[data-dashboard-theme="dark"] .dashboard-nav a,
[data-dashboard-theme="dark"] .dashboard-nav-parent {
  color: #cbd5e1 !important;
}

[data-dashboard-theme="dark"] .dashboard-nav a:hover,
[data-dashboard-theme="dark"] .dashboard-nav a.active,
[data-dashboard-theme="dark"] .dashboard-nav-parent:hover,
[data-dashboard-theme="dark"] .dashboard-nav-parent.active {
  border-color: #334155;
  background: #111827 !important;
  color: #fff !important;
}

[data-dashboard-theme="dark"] .dashboard-icon-btn,
[data-dashboard-theme="dark"] .dashboard-user-chip {
  border-color: var(--theme-line);
  background: var(--theme-surface-raised) !important;
  color: var(--theme-ink) !important;
}

[data-dashboard-theme="dark"] .dashboard-logout-btn {
  border-color: #334155;
  background: #020617 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .table-responsive,
[data-dashboard-theme="dark"] .staff-admin-shell {
  border-color: var(--theme-line) !important;
  background: var(--theme-surface) !important;
}

[data-dashboard-theme="dark"] .dashboard-table thead th,
[data-dashboard-theme="dark"] .users-table thead th,
[data-dashboard-theme="dark"] .staff-admin-table thead th,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-table thead th {
  border-bottom-color: var(--theme-line) !important;
  background: #182235 !important;
  color: #cbd5e1 !important;
}

[data-dashboard-theme="dark"] .dashboard-table tbody td,
[data-dashboard-theme="dark"] .users-table tbody td,
[data-dashboard-theme="dark"] .staff-admin-table tbody td,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-table tbody td {
  border-bottom-color: var(--theme-line) !important;
  background: var(--theme-surface) !important;
  color: var(--theme-text) !important;
}

[data-dashboard-theme="dark"] .dashboard-table tbody tr:hover td,
[data-dashboard-theme="dark"] .users-table tbody tr:hover td,
[data-dashboard-theme="dark"] .staff-admin-table tbody tr:hover td,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-table tbody tr:hover td {
  background: #182235 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .form-control,
[data-dashboard-theme="dark"] .dashboard-shell .form-select,
[data-dashboard-theme="dark"] .dashboard-shell textarea.form-control,
[data-dashboard-theme="dark"] .mini-rich-editor,
[data-dashboard-theme="dark"] .mini-rich-content,
[data-dashboard-theme="dark"] .mini-rich-source {
  border-color: var(--theme-line-strong) !important;
  background-color: #0f172a !important;
  color: var(--theme-ink) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .form-control::placeholder,
[data-dashboard-theme="dark"] .dashboard-shell .form-select::placeholder {
  color: #64748b !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .form-control:focus,
[data-dashboard-theme="dark"] .dashboard-shell .form-select:focus {
  border-color: var(--theme-primary) !important;
  box-shadow: var(--theme-focus) !important;
}

[data-dashboard-theme="dark"] .modal-content,
[data-dashboard-theme="dark"] .dashboard-shell .modal-content,
[data-dashboard-theme="dark"] .project-modal .modal-content,
[data-dashboard-theme="dark"] .blog-editor-modal .modal-content,
[data-dashboard-theme="dark"] .staff-edit-modal .modal-content {
  border-color: var(--theme-line) !important;
  background: var(--theme-surface) !important;
  color: var(--theme-text) !important;
}

[data-dashboard-theme="dark"] .modal-header,
[data-dashboard-theme="dark"] .modal-footer,
[data-dashboard-theme="dark"] .dashboard-shell .modal-header,
[data-dashboard-theme="dark"] .staff-edit-modal .modal-header,
[data-dashboard-theme="dark"] .staff-edit-modal .modal-footer,
[data-dashboard-theme="dark"] .mini-rich-toolbar {
  border-color: var(--theme-line) !important;
  background: #182235 !important;
}

[data-dashboard-theme="dark"] .modal-title,
[data-dashboard-theme="dark"] .dashboard-shell .modal-title,
[data-dashboard-theme="dark"] .staff-edit-modal .modal-title {
  color: var(--theme-ink) !important;
}

[data-dashboard-theme="dark"] .btn-close {
  background-color: #e5e7eb;
}

[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-theme,
[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-secondary,
[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-warning,
[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-danger {
  border-color: var(--theme-line-strong) !important;
  background: #0f172a !important;
  color: var(--theme-ink) !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-secondary:hover {
  border-color: var(--theme-primary) !important;
  background: #172554 !important;
  color: #bfdbfe !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .product-tag,
[data-dashboard-theme="dark"] .dashboard-shell .eyebrow,
[data-dashboard-theme="dark"] .users-count-pill,
[data-dashboard-theme="dark"] .role-chip,
[data-dashboard-theme="dark"] .staff-chip {
  border-color: #1d4ed8 !important;
  background: #172554 !important;
  color: #bfdbfe !important;
}

[data-dashboard-theme="dark"] .active-chip,
[data-dashboard-theme="dark"] .status-approved,
[data-dashboard-theme="dark"] .status-active,
[data-dashboard-theme="dark"] .allowed-chip {
  border-color: #14532d !important;
  background: #052e16 !important;
  color: #86efac !important;
}

[data-dashboard-theme="dark"] .suspended-chip,
[data-dashboard-theme="dark"] .status-blocked,
[data-dashboard-theme="dark"] .status-rejected,
[data-dashboard-theme="dark"] .status-cancelled,
[data-dashboard-theme="dark"] .status-trash,
[data-dashboard-theme="dark"] .status-spam {
  border-color: #7f1d1d !important;
  background: #450a0a !important;
  color: #fecaca !important;
}

[data-dashboard-theme="dark"] .status-pending,
[data-dashboard-theme="dark"] .status-draft,
[data-dashboard-theme="dark"] .status-requested,
[data-dashboard-theme="dark"] .status-in_progress {
  border-color: #78350f !important;
  background: #451a03 !important;
  color: #fed7aa !important;
}

[data-dashboard-theme="dark"] .dashboard-overview-icon,
[data-dashboard-theme="dark"] .dashboard-shell .module-card i,
[data-dashboard-theme="dark"] .wd-icon,
[data-dashboard-theme="dark"] .step-num,
[data-dashboard-theme="dark"] .num {
  border-color: var(--theme-line) !important;
  background: #172554 !important;
  color: #bfdbfe !important;
}

[data-dashboard-theme="dark"] .mail-log-line,
[data-dashboard-theme="dark"] .dashboard-shell code {
  background: #020617 !important;
  color: #dbeafe !important;
}

@media (max-width: 767px) {
  .dashboard-theme-toggle {
    width: 40px;
    height: 40px;
    padding: 5px;
  }

  .dashboard-theme-toggle__track {
    width: 30px;
    padding: 0;
    justify-content: center;
  }

  .dashboard-theme-toggle__track .fa-sun {
    display: inline-block;
  }

  .dashboard-theme-toggle__track .fa-moon,
  .dashboard-theme-toggle__label {
    display: none;
  }

  .dashboard-theme-toggle__thumb {
    display: none;
  }

  [data-dashboard-theme="dark"] .dashboard-theme-toggle__track .fa-sun {
    display: none;
  }

  [data-dashboard-theme="dark"] .dashboard-theme-toggle__track .fa-moon {
    display: inline-block;
  }
}

/* Admin typography comfort: smaller text and lighter weights */
.dashboard-shell {
  font-size: 14px;
}

.dashboard-shell .dashboard-main,
.dashboard-shell .dashboard-main p,
.dashboard-shell .dashboard-table,
.dashboard-shell .form-control,
.dashboard-shell .form-select,
.dashboard-shell .btn,
.dashboard-shell .alert,
.dashboard-admin-bar {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.dashboard-shell .dashboard-topbar h1,
.dashboard-shell .dashboard-page-head h1,
.dashboard-shell .dashboard-hero-panel h1,
.dashboard-shell .mail-hero h2,
.dashboard-shell .admin-form-card h1,
.dashboard-shell .admin-form-card h2,
.dashboard-shell .auth-card h2,
.dashboard-shell .editor-card-head h2,
.dashboard-shell .dashboard-table-card h2,
.dashboard-shell .modal-title {
  font-size: clamp(22px, 2.1vw, 30px) !important;
  font-weight: 650 !important;
  letter-spacing: -0.02em;
}

.dashboard-shell .dashboard-nav a,
.dashboard-shell .dashboard-nav-parent,
.dashboard-shell .dashboard-subnav a,
.dashboard-shell .mail-nav__link,
.dashboard-admin-title strong,
.dashboard-admin-title span,
.dashboard-user-chip,
.dashboard-logout-btn,
.dashboard-theme-toggle {
  font-weight: 520 !important;
}

.dashboard-shell .form-label,
.dashboard-shell .dashboard-table thead th,
.dashboard-shell .product-tag,
.dashboard-shell .eyebrow,
.dashboard-shell .btn,
.dashboard-shell .dashboard-actions .btn,
.dashboard-shell .table-actions .btn,
.dashboard-shell .dashboard-pagination button {
  font-size: 12px !important;
  font-weight: 560 !important;
}

.dashboard-shell .dashboard-table tbody td,
.dashboard-shell .text-muted,
.dashboard-shell small,
.dashboard-shell .metric-card p,
.dashboard-shell .module-card span,
.dashboard-shell .dashboard-page-head p,
.dashboard-shell .dashboard-topbar p:not(.eyebrow),
.dashboard-shell .dashboard-hero-panel p,
.dashboard-shell .mail-hero p {
  font-size: 12.5px !important;
  font-weight: 400 !important;
}

.dashboard-shell .metric-card h3,
.dashboard-shell .module-card strong,
.dashboard-overview-card strong,
.dashboard-overview-title {
  font-weight: 620 !important;
}

.dashboard-shell .staff-admin-table thead th,
.dashboard-shell .staff-admin-table tbody td,
.dashboard-shell .staff-edit-modal .modal-title,
.dashboard-shell .staff-edit-modal .form-label,
.dashboard-shell .staff-profile-avatar,
.dashboard-shell .staff-chip,
.dashboard-shell .role-chip,
.dashboard-shell .active-chip,
.dashboard-shell .suspended-chip,
.dashboard-shell .allowed-chip {
  font-size: 12.5px !important;
  font-weight: 560 !important;
}

/* Light theme contrast guard: white surfaces must never inherit hero/dark text. */
:root:not([data-dashboard-theme="dark"]) .dashboard-shell,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-main,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .auth-card,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-table-card,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .editor-card,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .admin-form-card,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-page-head,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-topbar,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-hero-panel,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .mail-hero,
:root:not([data-dashboard-theme="dark"]) .dashboard-overview-card,
:root:not([data-dashboard-theme="dark"]) .users-list-card,
:root:not([data-dashboard-theme="dark"]) .users-filter-card,
:root:not([data-dashboard-theme="dark"]) .modal-content {
  color: var(--theme-text) !important;
}

:root:not([data-dashboard-theme="dark"]) .dashboard-admin-title strong,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-page-head h1,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-topbar h1,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-hero-panel h1,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .mail-hero h2,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .editor-card-head h2,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-table-card h2,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .auth-card h1,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .auth-card h2,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .admin-form-card h1,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .admin-form-card h2,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .modal-title,
:root:not([data-dashboard-theme="dark"]) .dashboard-overview-card strong,
:root:not([data-dashboard-theme="dark"]) .dashboard-overview-title,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .metric-card h3,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .module-card strong,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .form-label {
  color: var(--theme-ink) !important;
}

:root:not([data-dashboard-theme="dark"]) .dashboard-admin-title span,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-main p,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-page-head p,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-topbar p:not(.eyebrow),
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-hero-panel p,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .mail-hero p,
:root:not([data-dashboard-theme="dark"]) .dashboard-overview-card small,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .metric-card p,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .module-card span,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .text-muted,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell small {
  color: var(--theme-muted) !important;
}

:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-table thead th,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .users-table thead th,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .staff-admin-table thead th {
  color: var(--theme-muted) !important;
}

:root:not([data-dashboard-theme="dark"]) .dashboard-shell .dashboard-table tbody td,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .users-table tbody td,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .staff-admin-table tbody td,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .form-control,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .form-select,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell textarea.form-control,
:root:not([data-dashboard-theme="dark"]) .mini-rich-editor,
:root:not([data-dashboard-theme="dark"]) .mini-rich-content,
:root:not([data-dashboard-theme="dark"]) .mini-rich-source {
  color: var(--theme-text) !important;
}

:root:not([data-dashboard-theme="dark"]) .dashboard-shell .form-control::placeholder,
:root:not([data-dashboard-theme="dark"]) .dashboard-shell .form-select::placeholder {
  color: #94a3b8 !important;
}

:root:not([data-dashboard-theme="dark"]) .dashboard-shell .btn-light {
  background: #fff !important;
  color: var(--theme-ink) !important;
  border-color: var(--theme-line-strong) !important;
}

#planModal .modal-dialog-scrollable .modal-content,
.dashboard-shell .modal-dialog-scrollable .modal-content {
  max-height: min(88vh, calc(100dvh - 2rem));
}

#planModal .modal-dialog-scrollable .modal-content > form.ajax-form,
.dashboard-shell .modal-dialog-scrollable .modal-content > form.ajax-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: inherit;
  min-height: 0;
  overflow: hidden;
}

#planModal .modal-dialog-scrollable .modal-body,
.dashboard-shell .modal-dialog-scrollable .modal-body {
  flex: 1 1 auto;
  overflow-y: auto !important;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

/* Global dashboard modal and sidebar hardening */
@media (min-width: 1200px) {
  body.dashboard-body {
    overflow-x: hidden;
  }

  .dashboard-shell {
    --dashboard-sidebar-width: clamp(270px, 20vw, 320px);
    grid-template-columns: var(--dashboard-sidebar-width) minmax(0, 1fr) !important;
  }

  .dashboard-shell .dashboard-sidebar {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    width: var(--dashboard-sidebar-width) !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    align-self: stretch !important;
    overflow: hidden !important;
    z-index: 2550;
  }

  .dashboard-shell .dashboard-brand,
  .dashboard-shell .dashboard-sidebar-foot {
    flex: 0 0 auto;
  }

  .dashboard-shell .dashboard-nav {
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100dvh - 88px - 92px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
  }

  .dashboard-shell .dashboard-nav::-webkit-scrollbar {
    width: 8px;
  }

  .dashboard-shell .dashboard-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
  }
}

.modal .modal-dialog {
  max-height: calc(100dvh - 1rem);
}

.modal .modal-content,
.modal form.modal-content {
  max-height: inherit;
  overflow: hidden;
}

.modal .modal-content,
.modal .modal-content > form.ajax-form,
.modal form.modal-content {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.modal .modal-header,
.modal .modal-footer {
  flex: 0 0 auto;
}

.modal .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 576px) {
  .modal .modal-dialog {
    max-height: calc(100dvh - 3.5rem);
  }
}

@media (max-width: 575.98px) {
  #planModal .modal-dialog {
    margin: 0.5rem;
  }

  #planModal .modal-dialog-scrollable .modal-content {
    max-height: calc(100dvh - 1rem);
  }
}

.dashboard-shell .action-group,
.dashboard-shell .action-stack,
.dashboard-shell .dashboard-actions,
.dashboard-shell .table-actions {
  gap: 10px !important;
}

.dashboard-shell .action-group .btn,
.dashboard-shell .action-stack .btn,
.dashboard-shell .dashboard-actions .btn,
.dashboard-shell .table-actions .btn {
  border-width: 1px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.dashboard-shell .action-group .btn:hover,
.dashboard-shell .action-stack .btn:hover,
.dashboard-shell .dashboard-actions .btn:hover,
.dashboard-shell .table-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.dashboard-shell .action-group .btn-outline-warning,
.dashboard-shell .action-stack .btn-outline-warning,
.dashboard-shell .dashboard-actions .btn-outline-warning,
.dashboard-shell .table-actions .btn-outline-warning {
  background: #fff7ed !important;
  border-color: #fdba74 !important;
  color: #9a3412 !important;
}

.dashboard-shell .action-group .btn-outline-warning:hover,
.dashboard-shell .action-stack .btn-outline-warning:hover,
.dashboard-shell .dashboard-actions .btn-outline-warning:hover,
.dashboard-shell .table-actions .btn-outline-warning:hover {
  background: #f59e0b !important;
  border-color: #d97706 !important;
  color: #111827 !important;
}

.dashboard-shell .action-group .btn-outline-danger,
.dashboard-shell .action-stack .btn-outline-danger,
.dashboard-shell .dashboard-actions .btn-outline-danger,
.dashboard-shell .table-actions .btn-outline-danger {
  background: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #b91c1c !important;
}

.dashboard-shell .action-group .btn-outline-danger:hover,
.dashboard-shell .action-stack .btn-outline-danger:hover,
.dashboard-shell .dashboard-actions .btn-outline-danger:hover,
.dashboard-shell .table-actions .btn-outline-danger:hover {
  background: #dc2626 !important;
  border-color: #b91c1c !important;
  color: #fff !important;
}

.dashboard-shell .action-group .btn-outline-info,
.dashboard-shell .action-stack .btn-outline-info,
.dashboard-shell .dashboard-actions .btn-outline-info,
.dashboard-shell .table-actions .btn-outline-info,
.dashboard-shell .action-group .btn-outline-primary,
.dashboard-shell .action-stack .btn-outline-primary,
.dashboard-shell .dashboard-actions .btn-outline-primary,
.dashboard-shell .table-actions .btn-outline-primary,
.dashboard-shell .action-group .btn-outline-theme,
.dashboard-shell .action-stack .btn-outline-theme,
.dashboard-shell .dashboard-actions .btn-outline-theme,
.dashboard-shell .table-actions .btn-outline-theme {
  background: #eff6ff !important;
  border-color: #93c5fd !important;
  color: #1d4ed8 !important;
}

.dashboard-shell .action-group .btn-outline-info:hover,
.dashboard-shell .action-stack .btn-outline-info:hover,
.dashboard-shell .dashboard-actions .btn-outline-info:hover,
.dashboard-shell .table-actions .btn-outline-info:hover,
.dashboard-shell .action-group .btn-outline-primary:hover,
.dashboard-shell .action-stack .btn-outline-primary:hover,
.dashboard-shell .dashboard-actions .btn-outline-primary:hover,
.dashboard-shell .table-actions .btn-outline-primary:hover,
.dashboard-shell .action-group .btn-outline-theme:hover,
.dashboard-shell .action-stack .btn-outline-theme:hover,
.dashboard-shell .dashboard-actions .btn-outline-theme:hover,
.dashboard-shell .table-actions .btn-outline-theme:hover {
  background: #2563eb !important;
  border-color: #1d4ed8 !important;
  color: #fff !important;
}

.dashboard-shell .action-group .btn-outline-success,
.dashboard-shell .action-stack .btn-outline-success,
.dashboard-shell .dashboard-actions .btn-outline-success,
.dashboard-shell .table-actions .btn-outline-success {
  background: #ecfdf5 !important;
  border-color: #86efac !important;
  color: #15803d !important;
}

.dashboard-shell .action-group .btn-outline-success:hover,
.dashboard-shell .action-stack .btn-outline-success:hover,
.dashboard-shell .dashboard-actions .btn-outline-success:hover,
.dashboard-shell .table-actions .btn-outline-success:hover {
  background: #16a34a !important;
  border-color: #15803d !important;
  color: #fff !important;
}

.dashboard-shell .action-group .btn-outline-secondary,
.dashboard-shell .action-stack .btn-outline-secondary,
.dashboard-shell .dashboard-actions .btn-outline-secondary,
.dashboard-shell .table-actions .btn-outline-secondary {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #334155 !important;
}

.dashboard-shell .action-group .btn-outline-secondary:hover,
.dashboard-shell .action-stack .btn-outline-secondary:hover,
.dashboard-shell .dashboard-actions .btn-outline-secondary:hover,
.dashboard-shell .table-actions .btn-outline-secondary:hover {
  background: #475569 !important;
  border-color: #334155 !important;
  color: #fff !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-warning,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-warning,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-warning,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-warning {
  background: rgba(245, 158, 11, 0.16) !important;
  border-color: rgba(251, 191, 36, 0.42) !important;
  color: #fbbf24 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-danger,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-danger,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-danger,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-danger {
  background: rgba(220, 38, 38, 0.16) !important;
  border-color: rgba(248, 113, 113, 0.42) !important;
  color: #fca5a5 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-info,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-info,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-info,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-info,
[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-primary,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-primary,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-primary,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-primary,
[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-theme,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-theme,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-theme,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-theme {
  background: rgba(37, 99, 235, 0.16) !important;
  border-color: rgba(96, 165, 250, 0.42) !important;
  color: #93c5fd !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-success,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-success,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-success,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-success {
  background: rgba(22, 163, 74, 0.16) !important;
  border-color: rgba(74, 222, 128, 0.42) !important;
  color: #86efac !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-secondary,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-secondary,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-secondary,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-secondary {
  background: rgba(148, 163, 184, 0.14) !important;
  border-color: rgba(148, 163, 184, 0.42) !important;
  color: #e2e8f0 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-warning:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-warning:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-warning:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-warning:hover {
  background: #f59e0b !important;
  border-color: #fbbf24 !important;
  color: #111827 !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-danger:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-danger:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-danger:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-danger:hover {
  background: #dc2626 !important;
  border-color: #f87171 !important;
  color: #fff !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-info:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-info:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-info:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-info:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-primary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-primary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-primary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-primary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-theme:hover {
  background: #2563eb !important;
  border-color: #60a5fa !important;
  color: #fff !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-success:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-success:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-success:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-success:hover {
  background: #16a34a !important;
  border-color: #4ade80 !important;
  color: #fff !important;
}

[data-dashboard-theme="dark"] .dashboard-shell .action-group .btn-outline-secondary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .action-stack .btn-outline-secondary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .dashboard-actions .btn-outline-secondary:hover,
[data-dashboard-theme="dark"] .dashboard-shell .table-actions .btn-outline-secondary:hover {
  background: #475569 !important;
  border-color: #94a3b8 !important;
  color: #fff !important;
}

.pricing-major .amount,
.pricing-major [data-pricing-price] {
  font-size: clamp(2rem, 3.3vw, 2.45rem) !important;
  font-weight: 760 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.plan-chip strong {
  font-size: clamp(1rem, 1.7vw, 1.18rem) !important;
  font-weight: 740 !important;
  line-height: 1.2;
  text-align: right;
  overflow-wrap: anywhere;
}

.btn-theme,
.dashboard-shell .btn-theme,
.modal .btn-theme {
  border: 1px solid color-mix(in srgb, var(--primary) 75%, #000) !important;
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 62%, #0f172a)) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.24) !important;
}

.btn-theme:hover,
.dashboard-shell .btn-theme:hover,
.modal .btn-theme:hover {
  border-color: color-mix(in srgb, var(--primary) 82%, #000) !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 86%, #fff), #0f172a) !important;
  color: #fff !important;
}

.btn-outline-theme,
.dashboard-shell .btn-outline-theme,
.modal .btn-outline-theme,
.modal .btn-outline-secondary {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

.btn-outline-theme:hover,
.dashboard-shell .btn-outline-theme:hover,
.modal .btn-outline-theme:hover,
.modal .btn-outline-secondary:hover {
  background: #eff6ff !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.modal-content,
#planModal .modal-content,
.dashboard-shell .modal-content {
  background: #ffffff !important;
  color: #0f172a !important;
}

.modal-header,
#planModal .modal-header,
.dashboard-shell .modal-header {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.modal-footer,
#planModal .modal-footer,
.dashboard-shell .modal-footer {
  background: #ffffff !important;
}

.modal-body,
#planModal .modal-body,
.dashboard-shell .modal-body {
  background: #ffffff !important;
}

[data-dashboard-theme="dark"] .btn-theme,
[data-dashboard-theme="dark"] .dashboard-shell .btn-theme,
[data-dashboard-theme="dark"] .modal .btn-theme {
  border-color: #60a5fa !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24) !important;
}

[data-dashboard-theme="dark"] .btn-theme:hover,
[data-dashboard-theme="dark"] .dashboard-shell .btn-theme:hover,
[data-dashboard-theme="dark"] .modal .btn-theme:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  color: #ffffff !important;
}

[data-dashboard-theme="dark"] .btn-outline-theme,
[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-theme,
[data-dashboard-theme="dark"] .modal .btn-outline-theme,
[data-dashboard-theme="dark"] .modal .btn-outline-secondary {
  background: #172554 !important;
  border-color: #3b82f6 !important;
  color: #bfdbfe !important;
}

[data-dashboard-theme="dark"] .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .dashboard-shell .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .modal .btn-outline-theme:hover,
[data-dashboard-theme="dark"] .modal .btn-outline-secondary:hover {
  background: #1d4ed8 !important;
  border-color: #60a5fa !important;
  color: #ffffff !important;
}

[data-dashboard-theme="dark"] .modal-content,
[data-dashboard-theme="dark"] #planModal .modal-content,
[data-dashboard-theme="dark"] .dashboard-shell .modal-content {
  background: #111827 !important;
  color: #e5e7eb !important;
}

[data-dashboard-theme="dark"] .modal-header,
[data-dashboard-theme="dark"] #planModal .modal-header,
[data-dashboard-theme="dark"] .dashboard-shell .modal-header,
[data-dashboard-theme="dark"] .modal-footer,
[data-dashboard-theme="dark"] #planModal .modal-footer,
[data-dashboard-theme="dark"] .dashboard-shell .modal-footer,
[data-dashboard-theme="dark"] .modal-body,
[data-dashboard-theme="dark"] #planModal .modal-body,
[data-dashboard-theme="dark"] .dashboard-shell .modal-body {
  background: #182235 !important;
  border-color: #334155 !important;
}

.google-review-edit-modal {
  z-index: 3120 !important;
  pointer-events: auto !important;
}

.modal-backdrop.google-review-edit-backdrop {
  z-index: 3110 !important;
  background: rgba(15, 23, 42, 0.34);
}

.google-review-edit-modal .modal-dialog {
  position: relative;
  z-index: 3121;
  pointer-events: auto !important;
}

.google-review-edit-modal .modal-content {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
  pointer-events: auto !important;
}

.google-review-edit-modal input,
.google-review-edit-modal select,
.google-review-edit-modal textarea,
.google-review-edit-modal button {
  pointer-events: auto !important;
  position: relative;
  z-index: 2;
}

.google-review-edit-modal .modal-body {
  max-height: calc(100vh - 210px);
  overflow-y: auto;
}

body.modal-open .dashboard-sidebar-backdrop {
  pointer-events: none;
  opacity: 0 !important;
}

/* Sticky header guard for public and dashboard layouts. */
body:not(.dashboard-body) > .topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 3200 !important;
}

.dashboard-admin-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 2600 !important;
}

@media (min-width: 1200px) {
  .dashboard-shell .dashboard-sidebar {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    width: var(--dashboard-sidebar-width, 296px) !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
    align-self: stretch !important;
  }
}

@media (max-width: 1199px) {
  .dashboard-sidebar-toggle {
    position: fixed !important;
    top: 13px !important;
    z-index: 2700 !important;
  }
}

.dashboard-shell .action-group,
.dashboard-shell .action-stack,
.dashboard-shell .dashboard-actions,
.dashboard-shell .table-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  min-width: 0 !important;
  max-width: none !important;
}

.dashboard-shell td.action-column,
.dashboard-shell td:has(.action-group),
.dashboard-shell td:has(.dashboard-actions),
.dashboard-shell td:has(.table-actions),
.dashboard-shell td:has(.action-stack) {
  min-width: 240px !important;
}

.dashboard-shell .action-group > form,
.dashboard-shell .action-stack > form,
.dashboard-shell .dashboard-actions > form,
.dashboard-shell .table-actions > form {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
}

.dashboard-shell .action-group .btn,
.dashboard-shell .action-stack .btn,
.dashboard-shell .dashboard-actions .btn,
.dashboard-shell .table-actions .btn,
.dashboard-shell .action-group button,
.dashboard-shell .action-stack button,
.dashboard-shell .dashboard-actions button,
.dashboard-shell .table-actions button,
.dashboard-shell .action-group a,
.dashboard-shell .action-stack a,
.dashboard-shell .dashboard-actions a,
.dashboard-shell .table-actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: 100% !important;
  min-height: 38px !important;
  padding: 0.58rem 1rem !important;
  white-space: nowrap !important;
  border-radius: 12px !important;
}

.dashboard-shell .action-group .btn i,
.dashboard-shell .action-stack .btn i,
.dashboard-shell .dashboard-actions .btn i,
.dashboard-shell .table-actions .btn i,
.dashboard-shell .action-group button i,
.dashboard-shell .action-stack button i,
.dashboard-shell .dashboard-actions button i,
.dashboard-shell .table-actions button i,
.dashboard-shell .action-group a i,
.dashboard-shell .action-stack a i,
.dashboard-shell .dashboard-actions a i,
.dashboard-shell .table-actions a i {
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.dashboard-shell .action-group .btn-outline-warning,
.dashboard-shell .action-stack .btn-outline-warning,
.dashboard-shell .dashboard-actions .btn-outline-warning,
.dashboard-shell .table-actions .btn-outline-warning {
  background: #92400e !important;
  border-color: #78350f !important;
  color: #fff7ed !important;
}

.dashboard-shell .action-group .btn-outline-danger,
.dashboard-shell .action-stack .btn-outline-danger,
.dashboard-shell .dashboard-actions .btn-outline-danger,
.dashboard-shell .table-actions .btn-outline-danger {
  background: #991b1b !important;
  border-color: #7f1d1d !important;
  color: #fff1f2 !important;
}

.dashboard-shell .action-group .btn-outline-success,
.dashboard-shell .action-stack .btn-outline-success,
.dashboard-shell .dashboard-actions .btn-outline-success,
.dashboard-shell .table-actions .btn-outline-success {
  background: #166534 !important;
  border-color: #14532d !important;
  color: #ecfdf5 !important;
}

.dashboard-shell .action-group .btn-outline-info,
.dashboard-shell .action-stack .btn-outline-info,
.dashboard-shell .dashboard-actions .btn-outline-info,
.dashboard-shell .table-actions .btn-outline-info,
.dashboard-shell .action-group .btn-outline-primary,
.dashboard-shell .action-stack .btn-outline-primary,
.dashboard-shell .dashboard-actions .btn-outline-primary,
.dashboard-shell .table-actions .btn-outline-primary,
.dashboard-shell .action-group .btn-outline-theme,
.dashboard-shell .action-stack .btn-outline-theme,
.dashboard-shell .dashboard-actions .btn-outline-theme,
.dashboard-shell .table-actions .btn-outline-theme {
  background: #1e40af !important;
  border-color: #1e3a8a !important;
  color: #eff6ff !important;
}

.dashboard-shell .action-group .btn-outline-secondary,
.dashboard-shell .action-stack .btn-outline-secondary,
.dashboard-shell .dashboard-actions .btn-outline-secondary,
.dashboard-shell .table-actions .btn-outline-secondary {
  background: #334155 !important;
  border-color: #1f2937 !important;
  color: #f8fafc !important;
}

.dashboard-shell .action-group .btn:hover,
.dashboard-shell .action-stack .btn:hover,
.dashboard-shell .dashboard-actions .btn:hover,
.dashboard-shell .table-actions .btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .dashboard-shell .action-group,
  .dashboard-shell .action-stack,
  .dashboard-shell .dashboard-actions,
  .dashboard-shell .table-actions {
    align-items: stretch !important;
  }

  .dashboard-shell .action-group .btn,
  .dashboard-shell .action-stack .btn,
  .dashboard-shell .dashboard-actions .btn,
  .dashboard-shell .table-actions .btn,
  .dashboard-shell .action-group button,
  .dashboard-shell .action-stack button,
  .dashboard-shell .dashboard-actions button,
  .dashboard-shell .table-actions button,
  .dashboard-shell .action-group a,
  .dashboard-shell .action-stack a,
  .dashboard-shell .dashboard-actions a,
  .dashboard-shell .table-actions a {
    min-width: 0 !important;
    white-space: normal !important;
  }
}


/* Dashboard notification popover */
.dashboard-notification-wrap{position:relative}.dashboard-notification-badge{position:absolute;top:-5px;right:-5px;min-width:18px;height:18px;display:grid;place-items:center;border-radius:999px;background:#2563eb;color:#fff;border:2px solid #fff;font-size:10px;font-weight:800;line-height:1}.dashboard-notification-popover{position:absolute;top:calc(100% + 18px);right:-56px;width:min(520px,calc(100vw - 28px));background:#fff;border:1px solid #dfe6f1;border-radius:18px;box-shadow:0 28px 70px rgba(15,23,42,.18);z-index:2200;overflow:hidden;opacity:0;pointer-events:none;transform:translateY(8px);transition:opacity .18s ease,transform .18s ease}.dashboard-notification-popover:before{content:"";position:absolute;top:-14px;right:88px;width:28px;height:28px;background:#fff;border-left:1px solid #dfe6f1;border-top:1px solid #dfe6f1;transform:rotate(45deg)}.dashboard-notification-popover.is-open{opacity:1;pointer-events:auto;transform:translateY(0)}.dashboard-notification-head{position:relative;display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:18px;padding:26px 28px;border-bottom:1px solid #edf2f7}.dashboard-notification-head h2{margin:0;color:#0f172a;font-size:24px;font-weight:760}.dashboard-notification-head button{border:0;background:transparent;color:#2563eb;font-size:15px;font-weight:750;padding:0}.dashboard-notification-close{width:30px;height:30px;display:grid;place-items:center;color:#64748b!important;font-size:20px!important}.dashboard-notification-list{max-height:500px;overflow:auto;padding:0 24px}.dashboard-notification-item{display:grid;grid-template-columns:58px 1fr 12px;gap:18px;align-items:center;padding:22px 0;border-bottom:1px solid #edf2f7;color:#111827;text-decoration:none}.dashboard-notification-item:hover{color:#111827}.dashboard-notification-icon{width:46px;height:46px;display:grid;place-items:center;border-radius:14px;color:#fff;font-size:18px;box-shadow:0 12px 24px rgba(37,99,235,.22)}.dashboard-notification-icon.is-blue{background:#2563eb}.dashboard-notification-icon.is-green{background:#22c58b}.dashboard-notification-icon.is-orange{background:#fb8c18}.dashboard-notification-icon.is-purple{background:#6d5dfc}.dashboard-notification-icon.is-red{background:#f43f5e}.dashboard-notification-copy strong{display:block;color:#111827;font-size:16px;font-weight:760;line-height:1.35}.dashboard-notification-copy span{display:block;color:#24324a;font-size:15px;line-height:1.45}.dashboard-notification-copy small{display:inline-flex;align-items:center;gap:8px;margin-top:12px;color:#748199;font-size:13px;font-weight:650}.dashboard-notification-dot{width:11px;height:11px;border-radius:999px;background:#2563eb}.dashboard-notification-all{display:flex;align-items:center;justify-content:center;gap:12px;padding:22px;background:#f6f9ff;color:#2563eb;font-size:16px;font-weight:760;text-decoration:none}.dashboard-notification-empty{padding:32px 0;color:#64748b;font-weight:650}[data-dashboard-theme="dark"] .dashboard-notification-popover,[data-dashboard-theme="dark"] .dashboard-notification-popover:before{background:#111827;border-color:#263244}[data-dashboard-theme="dark"] .dashboard-notification-head,[data-dashboard-theme="dark"] .dashboard-notification-item{border-color:#263244}[data-dashboard-theme="dark"] .dashboard-notification-head h2,[data-dashboard-theme="dark"] .dashboard-notification-copy strong,[data-dashboard-theme="dark"] .dashboard-notification-item:hover{color:#f8fafc}[data-dashboard-theme="dark"] .dashboard-notification-copy span{color:#dbeafe}[data-dashboard-theme="dark"] .dashboard-notification-all{background:#172033}@media(max-width:575px){.dashboard-notification-popover{position:fixed;top:78px;left:14px;right:14px;width:auto}.dashboard-notification-popover:before{display:none}.dashboard-notification-head{grid-template-columns:1fr auto}.dashboard-notification-head [data-notification-mark-read]{grid-column:1/-1;justify-self:start}}
.dashboard-notification-popover{width:min(410px,calc(100vw - 28px))!important;right:-32px!important;border-radius:14px!important}.dashboard-notification-popover:before{right:58px!important}.dashboard-notification-head{padding:18px 20px!important;gap:12px!important}.dashboard-notification-head h2{font-size:18px!important;font-weight:700!important}.dashboard-notification-head button{font-size:13px!important;font-weight:650!important}.dashboard-notification-close{font-size:17px!important}.dashboard-notification-list{max-height:none!important;overflow:visible!important;padding:0 18px!important}.dashboard-notification-item{grid-template-columns:44px 1fr 9px!important;gap:13px!important;padding:15px 0!important}.dashboard-notification-icon{width:36px!important;height:36px!important;border-radius:10px!important;font-size:14px!important}.dashboard-notification-copy strong{font-size:14px!important;font-weight:680!important}.dashboard-notification-copy span{font-size:13px!important;line-height:1.35!important}.dashboard-notification-copy small{font-size:11.5px!important;margin-top:8px!important}.dashboard-notification-dot{width:8px!important;height:8px!important}.dashboard-notification-all{padding:15px!important;font-size:14px!important;font-weight:700!important}

.demo-table-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px 14px;
  max-height: 240px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--dashboard-border, #dfe7f2);
  border-radius: 12px;
  background: var(--dashboard-soft-bg, #f8fafc);
}

.demo-table-check-grid .form-check {
  min-height: 30px;
  margin: 0;
  color: var(--dashboard-text, #0f172a);
  font-size: 13px;
  font-weight: 650;
}
.dashboard-notification-detail-modal{position:fixed;inset:0;display:grid;place-items:center;background:rgba(15,23,42,.42);z-index:2400;opacity:0;pointer-events:none;transition:opacity .18s ease;padding:18px}.dashboard-notification-detail-modal.is-open{opacity:1;pointer-events:auto}.dashboard-notification-detail-card{position:relative;width:min(520px,100%);background:#fff;border:1px solid #dfe6f1;border-radius:16px;box-shadow:0 28px 70px rgba(15,23,42,.24);padding:26px}.dashboard-notification-detail-close{position:absolute;top:14px;right:14px;width:34px;height:34px;border:0;border-radius:9px;background:#f1f5f9;color:#475569}.dashboard-notification-detail-type{display:inline-flex;border-radius:999px;background:#eaf2ff;color:#2563eb;padding:7px 12px;font-size:12px;font-weight:750}.dashboard-notification-detail-card h2{margin:18px 0 12px;color:#0f172a;font-size:22px;font-weight:760}.dashboard-notification-detail-card p{margin:0;color:#334155;font-size:15px;line-height:1.6;white-space:pre-wrap}.dashboard-notification-detail-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}.dashboard-notification-detail-meta span{display:inline-flex;border-radius:999px;background:#f8fafc;border:1px solid #e2e8f0;color:#475569;padding:7px 11px;font-size:12px;font-weight:700}[data-dashboard-theme="dark"] .dashboard-notification-detail-card{background:#111827;border-color:#263244}[data-dashboard-theme="dark"] .dashboard-notification-detail-card h2{color:#f8fafc}[data-dashboard-theme="dark"] .dashboard-notification-detail-card p{color:#dbeafe}[data-dashboard-theme="dark"] .dashboard-notification-detail-close{background:#172033;color:#dbeafe}

/* Unified Mail Module polish */
.dashboard-shell .mail-module-page,.dashboard-shell .admin-polish-page:has(.mail-center){background:#f7f9fd}.dashboard-shell .mail-center{max-width:100%}.dashboard-shell .mail-hero{border-radius:14px!important;padding:34px!important;background:radial-gradient(circle at 82% 28%,rgba(255,255,255,.14),transparent 22%),radial-gradient(circle at 78% 62%,rgba(255,255,255,.1),transparent 18%),linear-gradient(135deg,#1c469f 0%,#2563eb 62%,#1e40af 100%)!important;box-shadow:0 18px 38px rgba(37,99,235,.2)!important}.dashboard-shell .mail-hero h2{font-size:30px!important;letter-spacing:0!important;font-weight:760!important}.dashboard-shell .mail-hero__eyebrow{background:rgba(255,255,255,.14)!important;border:0!important;font-size:12px!important;letter-spacing:.02em!important}.dashboard-shell .mail-nav{background:#fff!important;border:1px solid #e3e9f4!important;border-radius:13px!important;padding:8px!important;gap:6px!important;box-shadow:0 10px 26px rgba(15,23,42,.06)!important}.dashboard-shell .mail-nav__link{border:0!important;border-radius:11px!important;box-shadow:none!important;min-height:44px;padding:0 16px!important}.dashboard-shell .mail-nav__link.is-active,.dashboard-shell .mail-nav__link:hover{transform:none!important;background:#f2f6ff!important;color:#1557e8!important;box-shadow:inset 0 -2px 0 #2563eb!important}.dashboard-shell .mail-form-card,.dashboard-shell .mail-table-shell.dashboard-table-card,.dashboard-shell form.mail-table-shell .dashboard-table-card{border-radius:13px!important;border:1px solid #e4eaf4!important;box-shadow:0 14px 34px rgba(15,23,42,.06)!important;padding:26px!important}.dashboard-shell .mail-form-card .form-label{color:#101936;font-weight:760;margin-bottom:10px}.dashboard-shell .mail-form-card .form-label i{color:#64748b;font-size:13px;margin-left:4px}.dashboard-shell .mail-form-card .form-control,.dashboard-shell .mail-form-card .form-select,.dashboard-shell .mail-search-box .form-control{min-height:54px;border-radius:8px;border-color:#d7e0ee;color:#15213d;font-weight:620}.dashboard-shell .mail-message-box{min-height:250px;line-height:1.65;resize:vertical}.dashboard-shell .mail-form-actions{display:flex;justify-content:space-between;gap:12px;margin-top:26px}.dashboard-shell .mail-table-head{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:18px;margin-bottom:0}.dashboard-shell .mail-table-head h2{margin:0;color:#101936;font-size:18px;font-weight:780}.dashboard-shell .mail-table-tools{display:flex;align-items:center;justify-content:flex-end;gap:12px;flex-wrap:wrap}.dashboard-shell .mail-search-box{position:relative;margin:0}.dashboard-shell .mail-search-box i{position:absolute;right:16px;top:50%;transform:translateY(-50%);color:#53627a}.dashboard-shell .mail-search-box .form-control{width:260px;min-height:42px;padding-right:42px}.dashboard-shell .mail-table-shell .dashboard-table thead th,.dashboard-shell form.mail-table-shell .dashboard-table thead th{background:#f8fafc!important;color:#53627a!important;border-color:#eef2f7!important;padding:16px 18px!important}.dashboard-shell .mail-table-shell .dashboard-table tbody td,.dashboard-shell form.mail-table-shell .dashboard-table tbody td{padding:17px 18px!important;border-color:#edf2f7!important}.dashboard-shell .mail-log-line{display:inline-block;max-width:430px;white-space:normal;background:#11172f;color:#fff;border-radius:8px;padding:12px 16px;font-family:Inter,system-ui,sans-serif;line-height:1.45}.dashboard-shell .mail-status-pill{display:inline-flex;align-items:center;gap:6px;border-radius:8px;padding:7px 10px;font-size:12px;font-weight:760}.dashboard-shell .mail-status-pill i{font-size:7px}.dashboard-shell .mail-status-pill.is-active{background:#dcfce7;color:#15803d}.dashboard-shell .mail-status-pill.is-muted{background:#eef2f7;color:#64748b}.ticket-create-page .ticket-message-editor{min-height:250px;border-radius:10px;line-height:1.65;resize:vertical}[data-dashboard-theme="dark"] .dashboard-shell .mail-module-page,[data-dashboard-theme="dark"] .dashboard-shell .admin-polish-page:has(.mail-center){background:#0b1120}[data-dashboard-theme="dark"] .dashboard-shell .mail-nav,[data-dashboard-theme="dark"] .dashboard-shell .mail-form-card,[data-dashboard-theme="dark"] .dashboard-shell .mail-table-shell.dashboard-table-card,[data-dashboard-theme="dark"] .dashboard-shell form.mail-table-shell .dashboard-table-card{background:#111827!important;border-color:#263244!important}[data-dashboard-theme="dark"] .dashboard-shell .mail-form-card .form-label,[data-dashboard-theme="dark"] .dashboard-shell .mail-table-head h2{color:#f8fafc}[data-dashboard-theme="dark"] .dashboard-shell .mail-form-card .form-control,[data-dashboard-theme="dark"] .dashboard-shell .mail-form-card .form-select,[data-dashboard-theme="dark"] .dashboard-shell .mail-search-box .form-control{background:#172033;border-color:#2b3950;color:#e5eefb}@media(max-width:767px){.dashboard-shell .mail-table-head,.dashboard-shell .mail-form-actions{display:grid}.dashboard-shell .mail-table-tools,.dashboard-shell .mail-search-box .form-control{width:100%}}

/* Custom support desk attachment */
.support-attach-page{background:#f5f8fe;min-height:100vh}.support-attach-hero{padding:34px;border:1px solid #e4ebf6;border-radius:14px;background:linear-gradient(135deg,#1556c9 0%,#2563eb 70%,#1d4ed8 100%);color:#fff;box-shadow:0 18px 38px rgba(37,99,235,.2);margin-bottom:18px}.support-attach-hero span{display:inline-flex;align-items:center;gap:9px;padding:8px 13px;border-radius:999px;background:rgba(255,255,255,.16);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.02em}.support-attach-hero h1{margin:22px 0 8px;color:#fff;font-size:32px;font-weight:820}.support-attach-hero p{max-width:760px;margin:0;color:#eaf2ff;line-height:1.65}.support-attach-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.support-attach-card{padding:24px;border:1px solid #e4ebf6;border-radius:14px;background:#fff;box-shadow:0 16px 38px rgba(15,23,42,.06)}.support-attach-card>i{display:grid;place-items:center;width:48px;height:48px;border-radius:12px;background:#eff6ff;color:#2563eb;font-size:20px;margin-bottom:14px}.support-attach-card h2{margin:0 0 8px;color:#101b33;font-size:18px;font-weight:820}.support-attach-card p{margin:0 0 16px;color:#66758f;line-height:1.6}.support-attach-card code,.support-attach-path{display:inline-flex;padding:4px 8px;border-radius:7px;background:#f1f5f9;color:#0f172a;font-size:12px}.support-attach-path{max-width:100%;overflow-wrap:anywhere}.support-attach-status{display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;font-size:12px;font-weight:800}.support-attach-status.is-warning{background:#fff7ed;color:#c2410c}@media(max-width:1199px){.support-attach-grid{grid-template-columns:1fr 1fr}}@media(max-width:767px){.support-attach-hero{padding:24px}.support-attach-grid{grid-template-columns:1fr}}
.support-admin-page{background:#f5f8fe}.support-admin-hero{display:flex;justify-content:space-between;gap:18px;align-items:center;padding:32px;border:1px solid #e4ebf6;border-radius:14px;background:linear-gradient(135deg,#1556c9 0%,#2563eb 72%,#1d4ed8 100%);box-shadow:0 18px 38px rgba(37,99,235,.2);margin-bottom:18px;color:#fff}.support-admin-hero h1{margin:0;color:#fff;font-size:32px;font-weight:820}.support-admin-hero p{max-width:760px;margin:8px 0 0;color:#eaf2ff;line-height:1.6}.support-admin-hero .eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:rgba(255,255,255,.16);color:#fff;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.02em}.support-admin-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}.support-admin-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-bottom:18px}.support-admin-card,.support-admin-panel{border:1px solid #e4ebf6;border-radius:14px;background:#fff;box-shadow:0 16px 38px rgba(15,23,42,.06)}.support-admin-card{padding:22px}.support-admin-card>span{display:grid;place-items:center;width:48px;height:48px;border-radius:12px;margin-bottom:14px;background:#eff6ff;color:#2563eb}.support-admin-card.is-ok>span{background:#dcfce7;color:#15803d}.support-admin-card.is-warning>span{background:#fff7ed;color:#c2410c}.support-admin-card.is-danger>span{background:#fee2e2;color:#b91c1c}.support-admin-card h2{margin:0 0 8px;color:#101b33;font-size:18px;font-weight:820}.support-admin-card p{margin:0;color:#66758f;line-height:1.6}.support-admin-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:18px}.support-admin-panel{padding:22px}.support-install-steps{display:grid;gap:12px;margin:0;padding:0;list-style:none}.support-install-steps li{position:relative;padding:14px 14px 14px 46px;border:1px solid #e8eef7;border-radius:12px;background:#f8fafc}.support-install-steps li:before{content:"";position:absolute;left:16px;top:18px;width:14px;height:14px;border-radius:999px;background:#cbd5e1}.support-install-steps li.done:before{background:#22b875}.support-install-steps strong,.support-install-steps span{display:block}.support-install-steps span{margin-top:4px;color:#66758f}.support-file-list{display:flex;flex-wrap:wrap;gap:10px}.support-file-list span{display:inline-flex;align-items:center;gap:8px;padding:9px 11px;border-radius:999px;background:#f1f5f9;color:#334155;font-size:12px;font-weight:750}@media(max-width:1199px){.support-admin-hero{display:grid}.support-admin-actions{justify-content:flex-start}.support-admin-grid,.support-admin-layout{grid-template-columns:1fr}}@media(max-width:767px){.support-admin-hero{padding:24px}.support-admin-grid{grid-template-columns:1fr}}
.support-file-list a{display:inline-flex;align-items:center;gap:8px;padding:9px 11px;border-radius:999px;background:#f1f5f9;color:#334155;font-size:12px;font-weight:750;text-decoration:none}.support-file-list a:hover{background:#e0edff;color:#1556c9}.support-admin-grid{grid-template-columns:repeat(4,minmax(0,1fr))}@media(max-width:1399px){.support-admin-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:767px){.support-admin-grid{grid-template-columns:1fr}}

/* Externalized invoice page styles */
.invoice-section{background:#edf2f8;padding:36px 0}.invoice-shell{max-width:960px;margin:0 auto}.invoice-actions{display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap;margin-bottom:18px}.invoice-sheet{background:#fff;border:1px solid #d7e1ee;border-radius:12px;box-shadow:0 24px 70px rgba(15,23,42,.14);overflow:hidden;color:#172033}.invoice-topbar{height:10px;background:#0f5f7a}.invoice-document{padding:34px 38px 28px}.invoice-brand-row{display:flex;justify-content:space-between;gap:28px;align-items:flex-start;border-bottom:2px solid #0f5f7a;padding-bottom:24px}.invoice-brand{display:flex;gap:16px;align-items:center}.invoice-brand img{width:74px;max-height:74px;object-fit:contain;border:1px solid #dbe5f2;border-radius:10px;padding:8px;background:#fff}.invoice-company h2{font-size:22px;margin:0 0 6px;color:#111827}.invoice-company p,.invoice-meta p,.invoice-small{margin:0;color:#64748b;font-size:13px;line-height:1.55}.invoice-title{text-align:right}.invoice-title h1{font-size:36px;line-height:1;margin:0 0 10px;color:#0f5f7a;text-transform:uppercase}.invoice-number{display:inline-flex;align-items:center;gap:8px;border:1px solid #c9d7e8;border-radius:999px;padding:7px 12px;font-weight:700;color:#172033;background:#f8fbff}.invoice-status{display:inline-flex;margin-top:10px;border-radius:999px;padding:7px 13px;font-size:12px;font-weight:800;text-transform:uppercase;background:#fff4df;color:#945c00;border:1px solid #f2c15f}.invoice-status.is-paid{background:#e9f8ef;color:#13743a;border-color:#a8e1bc}.invoice-meta-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:22px;margin-top:26px}.invoice-cardlet{border:1px solid #dbe5f2;border-radius:10px;background:#fbfdff;padding:18px}.invoice-cardlet h3{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:#0f5f7a;margin:0 0 12px}.invoice-cardlet p{margin:4px 0;color:#172033}.invoice-kv{display:grid;grid-template-columns:120px 1fr;gap:8px 14px;font-size:14px}.invoice-kv span{color:#64748b}.invoice-kv strong{text-align:right;color:#172033}.invoice-alert{margin-top:20px;border:1px solid #f2c15f;background:#fff8e9;color:#805300;border-radius:10px;padding:12px 14px;font-weight:700}.invoice-table-wrap{margin-top:26px;border:1px solid #dbe5f2;border-radius:10px;overflow:hidden}.invoice-table{width:100%;border-collapse:collapse;margin:0}.invoice-table th{background:#0f5f7a;color:#fff;font-size:12px;text-transform:uppercase;letter-spacing:.05em;padding:13px 14px}.invoice-table td{padding:16px 14px;border-bottom:1px solid #e5ecf5;vertical-align:top}.invoice-table tbody tr:last-child td{border-bottom:0}.invoice-desc strong{display:block;font-size:15px;color:#111827}.invoice-desc small{color:#64748b}.invoice-summary-row{display:grid;grid-template-columns:1fr 310px;gap:24px;align-items:start;margin-top:24px}.invoice-note{border-left:4px solid #0f5f7a;padding:12px 0 12px 14px;color:#4b5f78}.invoice-totals{border:1px solid #dbe5f2;border-radius:10px;overflow:hidden}.invoice-total-line{display:flex;justify-content:space-between;gap:14px;padding:12px 16px;border-bottom:1px solid #e5ecf5}.invoice-total-line.grand{background:#0f5f7a;color:#fff;font-size:18px;font-weight:800;border-bottom:0}.invoice-footer-line{display:flex;justify-content:space-between;gap:18px;align-items:end;margin-top:32px;padding-top:20px;border-top:1px solid #dbe5f2;color:#64748b;font-size:12px}.signature-line{min-width:190px;text-align:center;color:#172033}.signature-line span{display:block;border-top:1px solid #94a3b8;padding-top:7px;margin-top:24px;font-weight:700}
@page{size:A4;margin:12mm}
@media print{html,body{width:210mm;min-height:297mm;margin:0!important;background:#fff!important}body *{visibility:hidden!important}.invoice-sheet,.invoice-sheet *{visibility:visible!important}.invoice-sheet{position:absolute!important;left:0!important;top:0!important;width:100%!important;border:1px solid #d7e1ee!important;border-radius:8px!important;box-shadow:none!important;overflow:hidden!important;background:#fff!important}.topbar,.navbar,.site-header,.site-footer,.invoice-actions,.page-loader,.scroll-top,.dashboard-sidebar,.dashboard-admin-bar{display:none!important}.invoice-section,.section-space{display:block!important;background:#fff!important;padding:0!important;margin:0!important}.invoice-section .container{width:100%!important;max-width:none!important;margin:0!important;padding:0!important}.invoice-shell{width:100%!important;max-width:none!important;margin:0!important}.invoice-topbar{height:8px!important;background:#0f5f7a!important}.invoice-document{padding:34px 38px 28px!important}.invoice-brand-row{padding-bottom:24px!important;border-bottom:2px solid #0f5f7a!important}.invoice-title h1{font-size:36px!important}.invoice-cardlet,.invoice-table-wrap,.invoice-totals,.invoice-summary-row,.invoice-footer-line{break-inside:avoid}.invoice-table th,.invoice-status,.invoice-total-line.grand,.invoice-topbar{-webkit-print-color-adjust:exact!important;print-color-adjust:exact!important}}
@media(max-width:767px){.invoice-section{padding:18px 0}.invoice-document{padding:24px 18px}.invoice-brand-row,.invoice-meta-grid,.invoice-summary-row,.invoice-footer-line{display:block}.invoice-title{text-align:left;margin-top:22px}.invoice-title h1{font-size:30px}.invoice-kv{grid-template-columns:1fr}.invoice-kv strong{text-align:left}.invoice-totals{margin-top:18px}.invoice-table{min-width:680px}}

/* Cart and checkout commerce refresh */
.commerce-page {
  background: #f8fbff;
}
.commerce-page .topbar {
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}
.commerce-hero {
  padding: 64px 0;
  background:
    radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.2), transparent 120px),
    linear-gradient(135deg, #0758f7 0%, #0044d8 58%, #0039c8 100%);
  color: #fff;
  overflow: hidden;
}
.commerce-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: center;
}
.commerce-breadcrumb {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 14px;
}
.commerce-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}
.commerce-hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}
.commerce-hero-art {
  position: relative;
  width: 170px;
  height: 150px;
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.11);
  transform: rotate(-4deg);
}
.commerce-hero-art > i {
  color: #55d4ff;
  font-size: 92px;
  filter: drop-shadow(0 18px 26px rgba(0, 23, 83, 0.28));
}
.commerce-hero-art span {
  position: absolute;
  right: 32px;
  top: 26px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #50c878;
  color: #fff;
  box-shadow: 0 16px 28px rgba(4, 35, 96, 0.24);
}
.commerce-section {
  padding-top: 36px;
  background: #f8fbff;
}
.commerce-card {
  border: 1px solid #e4ebf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}
.commerce-process {
  display: none;
}
.commerce-cart-table-card {
  padding: 26px;
}
.commerce-cart-table {
  min-width: 760px;
  color: #0f1d35;
}
.commerce-cart-table th {
  padding: 0 14px 20px;
  border-bottom: 1px solid #dfe7f2;
  color: #17233d;
  font-size: 13px;
  font-weight: 950;
}
.commerce-cart-table td {
  padding: 26px 14px;
  border-bottom: 1px solid #edf2f8;
  color: #0f1d35;
  font-weight: 850;
}
.commerce-cart-table tbody tr:last-child td {
  border-bottom: 0;
}
.commerce-cart-product {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 260px;
}
.commerce-cart-thumb {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f63ff, #0e1f7a);
  color: #fff;
}
.commerce-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commerce-cart-product strong,
.commerce-cart-product small {
  display: block;
}
.commerce-cart-product strong {
  color: #0f1d35;
  font-size: 14px;
  font-weight: 950;
}
.commerce-cart-product small,
.commerce-muted {
  color: #69758a;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}
.commerce-license-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #eaf0ff;
  color: #0758f7;
  font-size: 12px;
  font-weight: 950;
}

.about-hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.page-about .page-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 0;
}

.page-about .page-hero p {
  font-size: 1rem;
  line-height: 1.75;
}

.about-hero-photo img {
  width: min(100%, 540px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.media-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.media-proof-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  min-height: 132px;
  border: 1px solid var(--border-color, #dbe4ef);
  border-radius: 8px;
  background: var(--card-bg, #fff);
  color: inherit;
  text-decoration: none;
}

.media-proof-card i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #0f766e;
  background: rgba(15, 118, 110, 0.12);
}

.media-proof-card small {
  color: var(--muted-color, #64748b);
  overflow-wrap: anywhere;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 230px));
  gap: 16px;
}

.admin-media-card {
  width: 230px;
  overflow: hidden;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.admin-media-preview {
  display: grid;
  place-items: center;
  width: 100%;
  height: 150px;
  border: 0;
  background: #eef5ff;
  color: #2563eb;
  font-size: 34px;
  cursor: zoom-in;
  padding: 10px;
}

.admin-media-preview img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  display: block;
}

.admin-media-body {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.admin-media-body strong,
.admin-media-body small {
  overflow-wrap: anywhere;
}

.admin-media-body span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 850;
}

.admin-media-page .admin-media-body {
  display: none;
}

.media-library-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.media-preview-modal .modal-content {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.media-preview-modal .modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
  min-height: 360px;
  background: #0f172a;
  padding: 0;
  overflow: auto;
}

.media-preview-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 20px;
  overflow: auto;
}

.media-preview-zoom-img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform-origin: center center;
  transition: transform 0.18s ease;
}

.media-preview-info {
  display: grid;
  align-content: start;
  gap: 12px;
  background: #fff;
  color: #0f172a;
  padding: 22px;
  overflow-wrap: anywhere;
}

.media-preview-info h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 900;
}

.media-preview-info-row {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.media-preview-info-row span {
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.media-preview-info-row strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.media-preview-file {
  display: grid;
  place-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
}

.media-preview-file i {
  font-size: 54px;
  color: #93c5fd;
}

.media-zoom-actions {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

@media (max-width: 575px) {
  .admin-media-grid {
    grid-template-columns: 1fr;
  }
  .admin-media-card {
    width: 100%;
  }
  .admin-media-preview {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .media-preview-modal .modal-body {
    grid-template-columns: 1fr;
  }
  .media-preview-stage {
    min-height: 320px;
  }
  .service-card-actions {
    grid-template-columns: 1fr;
  }
}

.user-order-card.is-license-expiring {
  background: #fff1f2;
  border-color: #fca5a5;
  box-shadow: 0 18px 48px rgba(220, 38, 38, 0.14);
}

[data-theme="dark"] .user-order-card.is-license-expiring {
  background: rgba(127, 29, 29, 0.38);
  border-color: rgba(248, 113, 113, 0.72);
}

@media (max-width: 767px) {
  .page-about .page-hero .container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-about .page-hero h1 {
    font-size: 36px;
  }

  .about-hero-photo img {
    width: 100%;
    border-radius: 18px;
  }
}
.commerce-qty-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 36px;
  border-radius: 8px;
  background: #f0f4fa;
  color: #0f1d35;
  font-weight: 950;
}
.commerce-remove-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ef233c;
  background: #fff5f6;
  text-decoration: none;
}
.commerce-remove-btn:hover {
  color: #fff;
  background: #ef233c;
}
.commerce-continue-btn {
  border-color: #0758f7;
  color: #0758f7;
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 18px;
  font-weight: 900;
}
.commerce-summary-card {
  padding: 26px;
  position: sticky;
  top: 96px;
}
.commerce-summary-card h4,
.commerce-summary-card h2,
.commerce-payment-card h2,
.checkout-form-card h2 {
  margin: 0;
  color: #0f1d35;
  font-size: 22px;
  font-weight: 950;
}
.commerce-summary-card .summary-list,
.checkout-summary-card .summary-list {
  gap: 18px;
}
.commerce-summary-card .summary-row,
.checkout-summary-card .summary-row {
  color: #17233d;
  font-size: 14px;
}
.commerce-summary-card .summary-row span,
.checkout-summary-card .summary-row span {
  color: #42516a;
}
.commerce-summary-card .summary-row strong,
.checkout-summary-card .summary-row strong {
  color: #0f1d35;
  font-weight: 950;
  text-align: right;
}
.commerce-summary-card .summary-total,
.checkout-summary-card .summary-total {
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid #e5edf7;
  font-size: 18px;
}
.commerce-summary-card .summary-total strong,
.checkout-summary-card .summary-total strong {
  color: #0b9a34;
}
.commerce-safe-box {
  margin-top: 20px;
  border: 1px solid #bcead4;
  background: #eafaf1;
  color: #0a6b3c;
}
.commerce-safe-box i {
  color: #0a9f50;
}
.commerce-summary-card .btn-theme,
.checkout-submit-btn {
  min-height: 52px;
  border-radius: 18px;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(0, 71, 216, 0.22);
}
.commerce-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  padding: 28px;
  border: 1px solid #e4ebf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}
.commerce-trust-strip div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  align-items: center;
}
.commerce-trust-strip i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf4ff;
  color: #0758f7;
  font-size: 18px;
}
.commerce-trust-strip strong {
  color: #0f1d35;
  font-size: 13px;
  font-weight: 950;
}
.commerce-trust-strip span {
  color: #69758a;
  font-size: 12px;
  font-weight: 700;
}
.commerce-checkout-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
}
.commerce-hero-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  position: relative;
}
.commerce-hero-progress::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
}
.commerce-hero-progress div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
}
.commerce-hero-progress span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 950;
}
.commerce-hero-progress .is-complete span {
  background: #d8ff70;
  color: #0f4c12;
}
.commerce-hero-progress .is-active span {
  background: #fff;
  color: #0758f7;
}
.commerce-hero-progress .is-active,
.commerce-hero-progress .is-complete {
  color: #fff;
}
.checkout-flow-section .row {
  align-items: flex-start;
}
.checkout-form-card,
.checkout-summary-card,
.commerce-payment-card {
  padding: 28px;
}
.checkout-card-head {
  align-items: flex-start;
  border-bottom: 0;
  margin-bottom: 22px;
}
.checkout-card-head p {
  margin: 8px 0 0;
  color: #69758a;
  font-size: 13px;
  font-weight: 750;
}
.checkout-status-pill {
  border: 1px solid #cfe1ff;
  background: #f4f8ff;
  color: #0758f7;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
}
.checkout-form-card .form-label {
  color: #42516a;
  font-size: 13px;
  font-weight: 850;
}
.checkout-form-card .form-control,
.checkout-form-card .form-select {
  min-height: 52px;
  border-radius: 6px;
  border-color: #dde6f1;
  background: #fff;
}
.checkout-form-card textarea.form-control {
  min-height: 112px;
}
.checkout-form-card .alert {
  border-radius: 8px;
}
.payment-account-grid {
  grid-template-columns: 1fr;
}
.payment-account-card {
  border-radius: 8px;
}
.commerce-payment-card {
  margin-top: 22px;
}
.commerce-payment-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.commerce-payment-option {
  display: grid;
  grid-template-columns: 28px 1fr 42px;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
}
.commerce-payment-option.active {
  border-color: #bcd4ff;
  background: #f3f7ff;
}
.checkout-payment-choice-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-payment-choice-list .commerce-payment-option {
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.checkout-payment-logo {
  display: block;
  width: 42px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}
.checkout-card-fields {
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #f8fbff;
  padding: 14px;
}
.checkout-card-fields-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.checkout-card-fields-head img {
  width: 58px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.checkout-card-fields-head strong,
.checkout-card-fields-head small {
  display: block;
}
.checkout-card-fields-head strong {
  color: #172033;
  font-weight: 900;
}
.checkout-card-fields-head small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}
.checkout-step-panel {
  display: none;
}
.checkout-step-panel.active {
  display: block;
}
.checkout-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.checkout-step-actions .btn {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
}
.checkout-success-panel {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
}
.checkout-success-panel > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 24px;
}
.checkout-success-panel h3 {
  margin: 0;
  color: #172033;
  font-weight: 950;
}
.checkout-success-panel p {
  margin: 0;
  color: #64748b;
  max-width: 420px;
}
.payment-account-card {
  display: grid;
  gap: 5px;
  cursor: pointer;
}
.payment-account-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-account-card.active {
  border-color: #0d6efd;
  background: #f4f8ff;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}
.payment-account-card span,
.payment-account-card small {
  color: #64748b;
}
.bank-account-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #e5eaf2;
  border-radius: 6px;
  background: #f8fafc;
}
.bank-account-preview span {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.bank-account-preview b {
  color: #6b7280;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}
.bank-account-preview strong {
  color: #1f2937;
  font-size: 13px;
  font-weight: 850;
  overflow-wrap: anywhere;
}
.payment-method-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.payment-method-admin-grid .form-check {
  margin: 0;
}
.payment-admin-settings-grid {
  display: grid;
  gap: 16px;
}
.payment-admin-setting-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}
.payment-admin-setting-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  margin-bottom: 14px;
}
.payment-admin-setting-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 18px;
}
.payment-admin-setting-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}
.payment-admin-setting-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}
.payment-admin-status {
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 6px 10px;
  white-space: nowrap;
}
.payment-admin-status.is-enabled {
  background: #dcfce7;
  color: #166534;
}
.payment-admin-save-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 575.98px) {
  .payment-admin-setting-card {
    padding: 14px;
  }
  .payment-admin-setting-head {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .payment-admin-status {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
[data-dashboard-theme="dark"] .payment-admin-setting-card,
[data-theme="dark"] .payment-admin-setting-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #202020;
}
[data-dashboard-theme="dark"] .payment-admin-setting-icon,
[data-theme="dark"] .payment-admin-setting-icon {
  background: rgba(96, 165, 250, 0.16);
  color: #93c5fd;
}
[data-dashboard-theme="dark"] .payment-admin-setting-head h3,
[data-theme="dark"] .payment-admin-setting-head h3 {
  color: #f8fafc;
}
[data-dashboard-theme="dark"] .payment-admin-setting-head p,
[data-theme="dark"] .payment-admin-setting-head p {
  color: rgba(226, 232, 240, 0.72);
}
[data-dashboard-theme="dark"] .payment-admin-status,
[data-theme="dark"] .payment-admin-status {
  background: rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.78);
}
[data-dashboard-theme="dark"] .payment-admin-status.is-enabled,
[data-theme="dark"] .payment-admin-status.is-enabled {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
}
[data-dashboard-theme="dark"] .payment-account-card.active,
[data-theme="dark"] .payment-account-card.active {
  border-color: #60a5fa;
  background: rgba(37, 99, 235, 0.16);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12);
}
[data-dashboard-theme="dark"] .payment-account-card span,
[data-dashboard-theme="dark"] .payment-account-card small,
[data-theme="dark"] .payment-account-card span,
[data-theme="dark"] .payment-account-card small {
  color: rgba(226, 232, 240, 0.74);
}
[data-dashboard-theme="dark"] .bank-account-preview,
[data-theme="dark"] .bank-account-preview {
  border-color: rgba(255, 255, 255, 0.12);
  background: #202020;
}
[data-dashboard-theme="dark"] .bank-account-preview b,
[data-theme="dark"] .bank-account-preview b {
  color: rgba(226, 232, 240, 0.62);
}
[data-dashboard-theme="dark"] .bank-account-preview strong,
[data-theme="dark"] .bank-account-preview strong {
  color: #f8fafc;
}
.commerce-payment-option.disabled {
  opacity: 0.62;
}
.commerce-payment-option input {
  width: 18px;
  height: 18px;
}
.commerce-payment-option strong,
.commerce-payment-option small {
  display: block;
}
.commerce-payment-option strong {
  color: #0f1d35;
  font-size: 13px;
  font-weight: 950;
}
.commerce-payment-option small {
  color: #69758a;
  font-size: 12px;
}
.commerce-payment-option > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: #0758f7;
  font-size: 18px;
}
.commerce-mini-flow {
  margin-top: 20px;
}
.commerce-mini-flow span {
  border-radius: 8px;
}
.checkout-commerce-page .commerce-hero {
  padding: 34px 0 28px;
  background: #1f2937;
}
.checkout-commerce-page .commerce-hero h1 {
  font-size: 38px;
  letter-spacing: 0;
}
.checkout-commerce-page .commerce-hero p {
  max-width: 680px;
}
.checkout-market-progress {
  margin-bottom: 20px;
  border-radius: 8px;
}
.checkout-marketplace-layout {
  --market-line: #dfe5ee;
  --market-ink: #1f2937;
  --market-muted: #6b7280;
}
.checkout-marketplace-layout .checkout-form-card,
.checkout-marketplace-layout .checkout-summary-card {
  border-radius: 8px;
  border-color: var(--market-line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.market-checkout-section-title {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin: 8px 0 2px;
  padding: 14px;
  border: 1px solid #e5eaf2;
  border-radius: 8px;
  background: #f8fafc;
}
.market-checkout-section-title > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2f7d32;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}
.market-checkout-section-title strong,
.market-checkout-section-title small {
  display: block;
}
.market-checkout-section-title strong {
  color: var(--market-ink);
  font-size: 14px;
  font-weight: 950;
}
.market-checkout-section-title small {
  color: var(--market-muted);
  font-size: 12px;
  font-weight: 700;
}
.checkout-marketplace-layout .checkout-form-card .form-control,
.checkout-marketplace-layout .checkout-form-card .form-select {
  min-height: 46px;
  border-radius: 4px;
}
.checkout-marketplace-layout .checkout-submit-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 4px;
  background: #78b843;
  border-color: #78b843;
  box-shadow: none;
  color: #fff;
}
.checkout-marketplace-layout .checkout-submit-btn:hover {
  background: #67a936;
  border-color: #67a936;
}
.checkout-payment-choice-list {
  gap: 14px;
}
.checkout-payment-choice-list .commerce-payment-option {
  grid-template-columns: 40px 1fr 26px;
  min-height: 88px;
  padding: 16px;
  border-radius: 6px;
}
.checkout-payment-choice-list .commerce-payment-option.active {
  border-color: #2f7d32;
  background: #f6fbf2;
  box-shadow: inset 0 0 0 1px rgba(47, 125, 50, 0.24);
}
.payment-choice-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dbe4ee;
  color: #fff;
  font-size: 12px;
  font-style: normal;
}
.commerce-payment-option.active .payment-choice-check {
  background: #2f7d32;
}
.checkout-payment-choice-list .commerce-payment-option > i {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #eef2f7;
  color: #334155;
}
.checkout-payment-choice-list .commerce-payment-option.active > i {
  background: #e7f5df;
  color: #2f7d32;
}
.checkout-marketplace-layout .payment-account-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-marketplace-layout .payment-account-card {
  min-height: 126px;
  border-radius: 6px;
  background: #fff;
}
.checkout-marketplace-layout .payment-account-card.active {
  border-color: #2f7d32;
  background: #f8fcf5;
  box-shadow: inset 0 0 0 1px rgba(47, 125, 50, 0.18);
}
.checkout-market-summary {
  overflow: hidden;
}
.market-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.market-summary-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2f7d32;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}
.market-summary-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #e5eaf2;
  border-radius: 8px;
  background: #f8fafc;
}
.market-summary-item img {
  width: 86px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #dfe5ee;
  background: #fff;
}
.market-summary-item strong,
.market-summary-item small {
  display: block;
}
.market-summary-item strong {
  color: #1f2937;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 950;
}
.market-summary-item small {
  margin-top: 5px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 750;
}
.market-summary-list {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5eaf2;
}
.market-buyer-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 750;
}
.market-buyer-box span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
}
.market-buyer-box i {
  color: #2f7d32;
  margin-top: 2px;
}
[data-theme="dark"] .checkout-marketplace-layout .checkout-form-card,
[data-theme="dark"] .checkout-marketplace-layout .checkout-summary-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #151515;
}
[data-theme="dark"] .market-checkout-section-title,
[data-theme="dark"] .market-summary-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: #202020;
}
[data-theme="dark"] .market-checkout-section-title strong,
[data-theme="dark"] .market-summary-item strong {
  color: #f8fafc;
}
[data-theme="dark"] .market-checkout-section-title small,
[data-theme="dark"] .market-summary-item small,
[data-theme="dark"] .market-buyer-box {
  color: rgba(226, 232, 240, 0.72);
}

@media (max-width: 991px) {
  .commerce-hero-grid,
  .commerce-checkout-hero-grid {
    grid-template-columns: 1fr;
  }
  .commerce-hero-art {
    display: none;
  }
  .commerce-summary-card {
    position: static;
  }
  .checkout-summary-card {
    position: static;
  }
  .commerce-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkout-payment-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .commerce-hero {
    padding: 46px 0;
  }
  .commerce-hero h1 {
    font-size: 34px;
  }
  .commerce-cart-table-card,
  .commerce-summary-card,
  .checkout-form-card,
  .checkout-summary-card,
  .commerce-payment-card,
  .commerce-trust-strip {
    padding: 18px;
  }
  .checkout-payment-choice-list,
  .payment-method-admin-grid {
    grid-template-columns: 1fr;
  }
  .bank-account-preview {
    grid-template-columns: 1fr;
  }
  .checkout-marketplace-layout .payment-account-grid {
    grid-template-columns: 1fr;
  }
  .market-summary-head {
    display: grid;
  }
  .commerce-cart-table {
    min-width: 0;
  }
  .commerce-cart-table thead {
    display: none;
  }
  .commerce-cart-table,
  .commerce-cart-table tbody,
  .commerce-cart-table tr,
  .commerce-cart-table td {
    display: block;
    width: 100%;
  }
  .commerce-cart-table tr {
    border-bottom: 1px solid #edf2f8;
    padding: 16px 0;
  }
  .commerce-cart-table tbody tr:last-child {
    border-bottom: 0;
  }
  .commerce-cart-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 0;
  }
  .commerce-cart-table td::before {
    content: attr(data-label);
    color: #69758a;
    font-size: 12px;
    font-weight: 900;
  }
  .commerce-cart-table td:first-child {
    display: block;
  }
  .commerce-cart-table td:first-child::before {
    display: none;
  }
  .commerce-cart-product {
    grid-template-columns: 60px 1fr;
    min-width: 0;
  }
  .commerce-cart-thumb {
    width: 56px;
    height: 56px;
  }
  .commerce-hero-progress,
  .commerce-trust-strip {
    grid-template-columns: 1fr;
  }
  .commerce-hero-progress::before {
    display: none;
  }
  .commerce-hero-progress div {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
  }
}

.subscription-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.subscription-category-tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(15, 29, 53, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #26364f;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.subscription-category-tabs a:hover,
.subscription-category-tabs a.active {
  border-color: #0758f7;
  background: #eef5ff;
  color: #0758f7;
}
.ai-assist-box {
  border-left: 3px solid #0758f7;
  background: #f7faff;
}
.ai-assist-box strong {
  display: block;
  color: #0f1d35;
  margin-bottom: 6px;
}
[data-dashboard-theme="dark"] .subscription-category-tabs a {
  border-color: rgba(255, 255, 255, 0.14);
  background: #111827;
  color: #d7deea;
}
[data-dashboard-theme="dark"] .subscription-category-tabs a:hover,
[data-dashboard-theme="dark"] .subscription-category-tabs a.active {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.14);
  color: #93c5fd;
}
[data-dashboard-theme="dark"] .ai-assist-box {
  background: rgba(96, 165, 250, 0.08);
  border-left-color: #60a5fa;
}
[data-dashboard-theme="dark"] .ai-assist-box strong {
  color: #f8fafc;
}

.city-combo-field {
  position: relative;
  z-index: 20;
}
.city-combo-field .city-input {
  padding-right: 44px;
}
.city-combo-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  transform: translateY(-50%);
}
.city-combo-toggle:hover,
.city-combo-toggle:focus {
  background: rgba(37, 99, 235, 0.08);
  color: #0758f7;
}
[data-dashboard-theme="dark"] .city-combo-toggle {
  color: #94a3b8;
}
[data-dashboard-theme="dark"] .city-combo-toggle:hover,
[data-dashboard-theme="dark"] .city-combo-toggle:focus {
  background: rgba(96, 165, 250, 0.14);
  color: #93c5fd;
}
.city-combo-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1050;
  display: none;
  max-height: 236px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #d7e0ee;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}
.city-combo-menu.is-open {
  display: grid;
  gap: 2px;
}
.city-combo-option,
.city-combo-empty {
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #172033;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-align: left;
}
.city-combo-option:hover,
.city-combo-option:focus {
  background: #eef5ff;
  color: #0758f7;
}
.city-combo-empty {
  color: #64748b;
  cursor: default;
}
[data-dashboard-theme="dark"] .city-combo-menu {
  border-color: #2b3950;
  background: #111827;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}
[data-dashboard-theme="dark"] .city-combo-option,
[data-dashboard-theme="dark"] .city-combo-empty {
  color: #e5eefb;
}
[data-dashboard-theme="dark"] .city-combo-option:hover,
[data-dashboard-theme="dark"] .city-combo-option:focus {
  background: rgba(96, 165, 250, 0.14);
  color: #93c5fd;
}

/* About page scoped refresh */
.page-about {
  background: #f6f9fc;
  color: #122033;
}

.page-about .page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 46px;
  background:
    linear-gradient(135deg, rgba(7, 88, 247, 0.94), rgba(16, 105, 167, 0.9) 52%, rgba(15, 118, 110, 0.9)),
    #0758f7;
}

.page-about .page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(246, 249, 252, 0), #f6f9fc);
  pointer-events: none;
}

.page-about .page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 44px;
  align-items: center;
}

.page-about .about-hero-copy {
  max-width: 760px;
}

.page-about .breadcrumb-soft {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  letter-spacing: 0;
}

.page-about .page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 54px;
  line-height: 1.06;
  letter-spacing: 0;
}

.page-about .page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.75;
}

.page-about .hero-actions {
  margin-top: 28px;
  gap: 12px;
  flex-wrap: wrap;
}

.page-about .tw-btn {
  min-height: 48px;
  border-radius: 8px;
  padding-inline: 18px;
}

.page-about .tw-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.page-about .tw-btn-ghost:hover {
  background: #ffffff;
  color: #0758f7;
}

.about-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

.about-proof-strip span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
}

.about-proof-strip strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
}

.about-hero-photo {
  position: relative;
  min-height: 410px;
  align-items: stretch;
}

.about-hero-photo img {
  width: 100%;
  height: 410px;
  aspect-ratio: auto;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18);
  animation: aboutImageGlow 5.5s ease-in-out infinite;
}

.about-hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 44px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  animation: aboutBadgeFloat 4.8s ease-in-out infinite;
}

.about-hero-badge span {
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-badge strong {
  color: #0f1d35;
  font-size: 18px;
  font-weight: 950;
}

.page-about .section-space {
  padding: 82px 0;
}

.page-about .section-head h2 {
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

.page-about .section-head p {
  font-size: 15px;
  line-height: 1.65;
}

.page-about .section-head,
.page-about .section-head.left {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-about .section-head.left .eyebrow,
.page-about .section-head .eyebrow {
  justify-content: center;
}

.page-about .info-split {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 36px;
}

.page-about .dual-card {
  gap: 14px;
}

.page-about .value-card,
.page-about .metric-card,
.page-about .showcase-card,
.page-about .about-team-panel,
.page-about .about-team-slide {
  border-radius: 8px;
  border-color: #dbe5f2;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  position: relative;
}

.page-about .value-card {
  padding: 22px;
}

.page-about .value-card i,
.page-about .metric-card i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(7, 88, 247, 0.1);
  color: #0758f7;
  transform: translateZ(0);
  animation: aboutIconFloat 3.2s ease-in-out infinite;
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.page-about .value-card:nth-child(2n) i,
.page-about .metric-card:nth-child(2n) i {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
  animation-delay: 0.45s;
}

.page-about .value-card:hover i,
.page-about .metric-card:hover i {
  transform: translateY(-4px) rotate(-4deg) scale(1.06);
  box-shadow: 0 12px 26px rgba(7, 88, 247, 0.18);
}

.page-about .value-card:nth-child(2n):hover i,
.page-about .metric-card:nth-child(2n):hover i {
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.2);
}

.page-about .showcase-card {
  padding: 12px;
  overflow: hidden;
}

.page-about .showcase-card img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

.page-about .showcase-tag {
  top: 22px;
  right: 22px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.page-about .stats-row {
  gap: 16px;
  margin-top: 24px;
}

.page-about .about-stats-head {
  margin-top: 58px;
}

.page-about .metric-card {
  padding: 22px;
}

.page-about .metric-card h3 {
  color: #0f1d35;
  font-size: 34px;
  line-height: 1;
}

.page-about .bg-soft {
  background: #eef5ff;
}

.page-about .value-grid {
  gap: 16px;
}

.page-about .about-experience-wrap {
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-about .about-journey-panel {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.page-about .about-journey-panel::before {
  display: none;
}

.page-about .about-journey-panel .section-head,
.page-about .about-journey-board {
  position: relative;
  z-index: 1;
}

.page-about .about-journey-panel .eyebrow {
  background: #eaf3ff;
  color: #0758f7;
}

.page-about .about-journey-panel h2 {
  color: #0f1d35;
}

.page-about .about-journey-panel .section-head p {
  color: #64748b;
}

.page-about .about-journey-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  padding: 78px 0 12px;
  overflow: visible;
}

.page-about .about-journey-line {
  display: block;
  position: absolute;
  left: 9.5%;
  right: 9.5%;
  top: 166px;
  z-index: 0;
  height: 14px;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed 0%, #6bb2ff 50%, #2f80ed 100%);
  box-shadow: 0 10px 18px rgba(47, 128, 237, 0.22);
}

.page-about .about-journey-step {
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-about .about-journey-step:nth-child(even) {
  box-shadow: none;
}

.page-about .about-journey-step:hover {
  transform: translateY(-6px);
  background: transparent;
}

.page-about .about-journey-step::before {
  display: none;
}

.page-about .about-journey-step .step-num,
.page-about .about-journey-step:nth-child(odd) .step-num,
.page-about .about-journey-step:nth-child(even) .step-num {
  grid-column: 1;
  justify-self: center;
  position: relative;
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  margin-bottom: 76px;
  border: 12px solid #f8fbff;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0%, #ffffff 50%, #f5f9ff 100%);
  color: #0b57d0;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14), inset 0 0 0 1px #e8eef7;
  animation: aboutStepPulse 3.6s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.page-about .about-journey-step .step-num::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 8px solid rgba(47, 128, 237, 0.84);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-25deg);
}

.page-about .about-journey-step .step-num::before {
  content: "";
  position: absolute;
  right: -39px;
  top: 50%;
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  background: #0758f7;
  box-shadow: 0 0 0 4px rgba(7, 88, 247, 0.2);
  transform: translateY(-50%);
}

.page-about .about-journey-step:not(:first-of-type) .step-num {
  position: relative;
}

.page-about .about-journey-step:not(:first-of-type) .step-num .journey-left-dot,
.page-about .about-journey-step:not(:first-of-type) .step-num::marker {
  display: none;
}

.page-about .about-journey-step:last-child .step-num::before {
  display: none;
}

.page-about .about-journey-step .step-num i {
  font-size: 66px;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #0b1f4d;
  text-shadow: 0 10px 22px rgba(7, 88, 247, 0.12);
}

.page-about .about-journey-step .step-num small {
  position: absolute;
  top: -48px;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1689ff, #0758f7);
  color: inherit;
  color: #ffffff;
  font-size: 21px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(7, 88, 247, 0.28);
  transform: translateX(-50%);
}

.page-about .about-journey-step:nth-child(even) .step-num {
  color: #0f766e;
  animation-delay: 0.5s;
}

.page-about .about-journey-step:hover .step-num {
  transform: scale(1.04);
  background: radial-gradient(circle at 35% 30%, #ffffff, #eef6ff);
  color: #0758f7;
}

.page-about .about-journey-step:nth-child(even):hover .step-num {
  background: radial-gradient(circle at 35% 30%, #ffffff, #effaf7);
  color: #0f766e;
}

.page-about .about-journey-step > div,
.page-about .about-journey-step:nth-child(odd) > div,
.page-about .about-journey-step:nth-child(even) > div {
  grid-column: 1;
  max-width: none;
  text-align: center;
}

.page-about .about-journey-step h5,
.page-about .about-journey-step:nth-child(even) h5 {
  margin-bottom: 0;
  color: #0f1d35;
  font-size: 25px;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 950;
}

.page-about .about-journey-step p {
  display: none;
}

.page-about .about-team-panel {
  padding: 26px;
}

.page-about .about-team-slider-shell {
  overflow: hidden;
}

.page-about .about-team-track {
  grid-auto-columns: calc((100% - 42px) / 4);
  gap: 14px;
}

.page-about .about-team-slide {
  overflow: hidden;
  border: 1px solid rgba(7, 88, 247, 0.16);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
}

.page-about .about-team-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.page-about .about-team-media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #eef5ff;
}

.page-about .about-team-avatar {
  width: 86px;
  height: 86px;
  border: 8px solid rgba(7, 88, 247, 0.12);
  border-radius: 8px;
  font-size: 27px;
  animation: aboutAvatarPulse 3.8s ease-in-out infinite;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.page-about .about-team-icon {
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: #0758f7;
}

.page-about .about-team-icon i {
  font-size: 34px;
  line-height: 1;
}

.team-card-svg {
  position: absolute;
  inset: 16px 14px auto;
  z-index: 1;
  width: calc(100% - 28px);
  height: 92px;
  color: rgba(7, 88, 247, 0.16);
  filter: drop-shadow(0 12px 22px rgba(7, 88, 247, 0.12));
  animation: aboutSvgDrift 5s ease-in-out infinite;
}

.page-about .about-team-slide:nth-child(2n) .team-card-svg {
  color: rgba(15, 118, 110, 0.18);
  animation-delay: 0.55s;
}

.page-about .about-team-slide:nth-child(2n) .about-team-icon {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.16);
}

.page-about .about-team-slide:hover .about-team-avatar {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.14);
}

.page-about .about-team-content {
  padding: 18px;
}

.about-team-role {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(7, 88, 247, 0.1);
  color: #0758f7;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.page-about .about-team-slide:nth-child(2n) .about-team-role {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

.page-about .about-team-content h5 {
  font-size: 18px;
  letter-spacing: 0;
}

.page-about .about-team-content p {
  font-size: 14px;
}

.page-about .about-team-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.page-about .breadcrumb-soft i,
.page-about .section-head .eyebrow i,
.page-about .hero-actions i,
.page-about .about-team-btn i {
  animation: aboutFontIconWiggle 3.4s ease-in-out infinite;
  transition: transform 0.24s ease;
}

.page-about .section-head .eyebrow i {
  animation-delay: 0.3s;
}

.page-about .hero-actions i {
  animation-delay: 0.6s;
}

.page-about .breadcrumb-soft:hover i,
.page-about .section-head .eyebrow:hover i {
  transform: translateY(-2px) rotate(-8deg);
}

.page-about .tw-btn:hover i {
  transform: translateX(3px);
}

.page-about .about-team-btn:hover i {
  transform: scale(1.08);
}

@keyframes aboutBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes aboutIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-5deg);
  }
}

@keyframes aboutFontIconWiggle {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  45% {
    transform: translateX(2px) rotate(-8deg);
  }
  55% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes aboutStepPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(7, 88, 247, 0.16);
  }
  50% {
    box-shadow: 0 12px 30px rgba(7, 88, 247, 0.28), 0 0 0 6px rgba(255, 255, 255, 0.08);
  }
}

@keyframes aboutAvatarPulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(7, 88, 247, 0.1);
  }
  50% {
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.18);
  }
}

@keyframes aboutImageGlow {
  0%,
  100% {
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow: 0 30px 82px rgba(15, 23, 42, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.34), 0 0 34px rgba(34, 197, 94, 0.18);
  }
}

@keyframes aboutSvgDrift {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(8px) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about *,
  .page-about *::before,
  .page-about *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.page-about .page-partners {
  background: #ffffff;
}

@media (max-width: 991px) {
  .page-about .page-hero {
    padding-top: 58px;
  }

  .page-about .page-hero .container,
  .page-about .info-split,
  .page-about .about-experience-wrap {
    grid-template-columns: 1fr;
  }

  .page-about .about-journey-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-journey-line {
    display: none;
  }

  .page-about .about-journey-board {
    gap: 46px 18px;
  }

  .page-about .about-journey-step .step-num,
  .page-about .about-journey-step:nth-child(odd) .step-num,
  .page-about .about-journey-step:nth-child(even) .step-num {
    width: 150px;
    height: 150px;
    margin-bottom: 58px;
  }

  .page-about .about-journey-step .step-num::before {
    display: none;
  }

  .page-about .page-hero h1 {
    font-size: 42px;
  }

  .about-hero-photo {
    min-height: 340px;
  }

  .about-hero-photo img {
    height: 340px;
  }

  .page-about .stats-row,
  .page-about .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-team-track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
}

@media (max-width: 575px) {
  .page-about .page-hero {
    padding: 44px 0 34px;
  }

  .page-about .page-hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .page-about .page-hero p {
    font-size: 15px;
  }

  .page-about .hero-actions,
  .about-proof-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-about .tw-btn,
  .about-proof-strip span {
    width: 100%;
    justify-content: center;
  }

  .about-hero-photo {
    min-height: 280px;
  }

  .about-hero-photo img {
    height: 280px;
    border-width: 5px;
  }

  .about-hero-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .page-about .section-space {
    padding: 56px 0;
  }

  .page-about .dual-card,
  .page-about .stats-row,
  .page-about .value-grid {
    grid-template-columns: 1fr;
  }

  .page-about .showcase-card img {
    min-height: 260px;
  }

  .page-about .about-journey-panel,
  .page-about .about-team-panel {
    padding: 20px;
  }

  .page-about .about-journey-step {
    grid-template-columns: 1fr;
    padding: 8px 6px 18px;
  }

  .page-about .about-journey-step .step-num,
  .page-about .about-journey-step:nth-child(odd) .step-num,
  .page-about .about-journey-step:nth-child(even) .step-num {
    width: 136px;
    height: 136px;
    margin-bottom: 52px;
  }

  .page-about .about-journey-step .step-num i {
    font-size: 48px;
  }

  .page-about .about-journey-step .step-num small {
    top: -34px;
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .page-about .about-journey-step h5,
  .page-about .about-journey-step:nth-child(even) h5 {
    font-size: 22px;
  }

  .page-about .about-team-track {
    grid-auto-columns: 100%;
  }

  .page-about .about-journey-board {
    grid-template-columns: 1fr;
  }
}

/* About page process timeline replacement */
.page-about .about-process-section {
  position: relative;
  overflow: hidden;
  width: min(100vw - 24px, 1540px);
  margin-right: calc(50% - min(50vw - 12px, 770px));
  margin-left: calc(50% - min(50vw - 12px, 770px));
  padding: 28px 0 76px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.99)),
    url("../images/products/web-development.png") center / cover no-repeat;
  box-shadow: none;
}

.page-about .about-process-section .section-head {
  max-width: 720px;
}

.page-about .about-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1440px;
  margin: 86px auto 0;
  padding: 0 16px 8px;
}

.page-about .about-process-connector {
  position: absolute;
  top: 99px;
  left: 9.4%;
  right: 9.4%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f7cff, #5ca7ff 48%, #0758f7);
  box-shadow: 0 10px 20px rgba(7, 88, 247, 0.24);
}

.page-about .about-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 48px;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.page-about .about-process-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border: 13px solid #f8fbff;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffffff 0%, #ffffff 52%, #f1f7ff 100%);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.14), inset 0 0 0 1px #e8eef7;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-about .about-process-node::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 8px solid rgba(7, 88, 247, 0.82);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-26deg);
}

.page-about .about-process-node::after {
  content: "";
  position: absolute;
  right: -49px;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  background: #0758f7;
  box-shadow: 0 0 0 4px rgba(7, 88, 247, 0.16);
  transform: translateY(-50%);
}

.page-about .about-process-step:last-child .about-process-node::after {
  display: none;
}

.page-about .about-process-number {
  position: absolute;
  top: -50px;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #178cff, #0758f7);
  color: #ffffff;
  font-size: 21px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(7, 88, 247, 0.3);
  transform: translateX(-50%);
}

.page-about .about-process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #0b1f4d;
}

.page-about .process-art {
  width: 132px;
  height: 108px;
  overflow: visible;
  filter: drop-shadow(0 10px 16px rgba(7, 88, 247, 0.13));
}

.page-about .about-process-copy {
  display: grid;
  gap: 8px;
  max-width: 240px;
}

.page-about .about-process-copy h5 {
  margin: 0;
  color: #0b1f4d;
  font-size: 27px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-about .about-process-copy p {
  display: none;
}

.page-about .about-process-step:hover .about-process-node {
  transform: translateY(-7px);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.18), inset 0 0 0 1px #dce9fb;
}

@media (max-width: 1199px) {
  .page-about .about-process-node {
    width: 166px;
    height: 166px;
  }

  .page-about .about-process-connector {
    top: 82px;
  }

  .page-about .process-art {
    width: 108px;
    height: 90px;
  }

  .page-about .about-process-copy h5 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .page-about .about-process-section {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 30px 16px;
  }

  .page-about .about-process-timeline {
    gap: 46px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 56px;
  }

  .page-about .about-process-connector {
    display: none;
  }

  .page-about .about-process-node::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .page-about .about-process-section {
    padding: 26px 14px;
  }

  .page-about .about-process-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
    padding-left: 8px;
  }

  .page-about .about-process-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 48px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0758f7, #60a5fa, #0758f7);
  }

  .page-about .about-process-step {
    grid-template-columns: 92px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 16px;
    padding: 0;
    text-align: left;
  }

  .page-about .about-process-node {
    width: 86px;
    height: 86px;
    border-width: 7px;
  }

  .page-about .about-process-node::before {
    inset: -9px;
    border-width: 5px;
  }

  .page-about .about-process-number {
    top: -10px;
    left: -7px;
    width: 34px;
    height: 34px;
    font-size: 13px;
    transform: none;
  }

  .page-about .process-art {
    width: 58px;
    height: 50px;
  }

  .page-about .about-process-copy {
    max-width: none;
  }

  .page-about .about-process-copy h5 {
    font-size: 19px;
  }

  .page-about .about-process-copy p {
    font-size: 13px;
  }
}

/* Exact About journey chain design */
.page-about .journey-section {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding: 70px 0 74px;
  background: #ffffff;
  overflow: hidden;
}

.page-about .journey-head {
  margin-bottom: 58px;
}

.page-about .journey-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .journey-step {
  position: relative;
  width: 210px;
  min-width: 170px;
  text-align: center;
}

.page-about .step-number {
  width: 40px;
  height: 40px;
  margin: 0 auto -21px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #005bea);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.35);
}

.page-about .step-card {
  width: 210px;
  height: 210px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 18px 35px rgba(15, 38, 76, 0.12),
    inset 0 0 0 1px rgba(13, 110, 253, 0.06);
}

.page-about .step-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.03), transparent 70%);
}

.page-about .circle-arc {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 8px solid #0000001a;
  border-radius: 50%;
}

.page-about .circle-arc.left {
  border-left-color: #2f80ed;
  transform: rotate(360deg);
}

.page-about .circle-arc.right {
  border-right-color: #2f80ed;
  transform: rotate(359deg);
}

.page-about .journey-step:last-child .circle-arc.right {
  border-left-color: #2f80ed;
}

.page-about .step-icon {
  position: relative;
  z-index: 4;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .main-icon {
  color: #0b1f44;
  font-size: 55px;
  line-height: 1;
}

.page-about .chat-icon {
  position: absolute;
  right: 1px;
  bottom: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2f80ed;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(47, 128, 237, 0.3);
}

.page-about .small-icon {
  position: absolute;
  right: 1px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2f80ed;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(47, 128, 237, 0.3);
}

.page-about .rocket-icon {
  color: #0d6efd;
  font-size: 53px;
  text-shadow: 2px 2px 0 #0b1f44;
  transform: rotate(317deg);
}

.page-about .rocket-wrap {
  overflow: visible;
}

.page-about .spark {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #2f80ed;
  transform: rotate(45deg);
}

.page-about .spark-1 {
  top: 107px;
  left: 51px;
}

.page-about .spark-2 {
  top: 93px;
  right: 22px;
}

.page-about .spark-3 {
  bottom: 9px;
  left: 24px;
}

.page-about .vertical-line {
  width: 2px;
  height: 45px;
  margin: 0 auto;
  border-left: 2px dashed rgba(47, 128, 237, 0.35);
}

.page-about .bottom-dot {
  width: 20px;
  height: 20px;
  margin: -2px auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #005bea);
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.35);
}

.page-about .journey-step h3 {
  margin: 0;
  color: #0b1f44;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.page-about .journey-connector {
  position: relative;
  z-index: 3;
  width: 90px;
  margin: -101px -15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .connector-line {
  flex: 1;
  height: 8px;
  border-radius: 50px;
  background: linear-gradient(90deg, #0d6efd, #4da3ff, #0d6efd);
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.22);
}

.page-about .connector-dot {
  z-index: 4;
  width: 34px;
  height: 34px;
  border: 8px solid #2f80ed;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-about .journey-step {
    width: 184px;
    min-width: 160px;
  }

  .page-about .step-card {
    width: 178px;
    height: 178px;
  }

  .page-about .journey-connector {
    width: 72px;
    margin-right: -8px;
    margin-left: -8px;
  }

  .page-about .journey-step h3 {
    font-size: 22px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-about .about-team-track {
    grid-auto-columns: calc((100% - 28px) / 3);
  }

  .page-about .journey-section {
    padding: 66px 0 58px;
  }

  .page-about .journey-head {
    margin-bottom: 48px;
  }

  .page-about .journey-wrapper {
    max-width: 100%;
    justify-content: center;
  }

  .page-about .journey-step {
    width: 132px;
    min-width: 126px;
  }

  .page-about .step-card {
    width: 128px;
    height: 128px;
  }

  .page-about .step-number {
    width: 36px;
    height: 36px;
    margin-bottom: -19px;
    font-size: 13px;
  }

  .page-about .main-icon {
    font-size: 42px;
  }

  .page-about .chat-icon,
  .page-about .small-icon {
    right: 0;
    bottom: 9px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .page-about .rocket-icon {
    font-size: 42px;
  }

  .page-about .spark-1 {
    top: 77px;
    left: 34px;
  }

  .page-about .spark-2 {
    top: 64px;
    right: 18px;
  }

  .page-about .spark-3 {
    bottom: 7px;
    left: 18px;
  }

  .page-about .journey-connector {
    display: flex;
    width: 48px;
    margin: -82px -8px 0;
  }

  .page-about .connector-line {
    height: 7px;
  }

  .page-about .connector-dot {
    width: 24px;
    height: 24px;
    border-width: 6px;
  }

  .page-about .vertical-line {
    height: 36px;
  }

  .page-about .bottom-dot {
    width: 16px;
    height: 16px;
    margin-bottom: 22px;
  }

  .page-about .journey-step h3 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .page-about .container,
  .page-about .container-fluid {
    max-width: 100%;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .page-about .section-space,
  .page-about .journey-section,
  .page-about .page-partners {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .page-about .info-split,
  .page-about .about-experience-wrap,
  .page-about .stats-row,
  .page-about .value-grid,
  .page-about .footer-grid {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-about .about-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 760px;
  }

  .page-about .about-proof-strip span {
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  }

  .page-about .dual-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .journey-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
    align-items: start;
  }

  .page-about .journey-step {
    width: 100%;
    min-width: 0;
  }

  .page-about .journey-connector {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .page-about .journey-wrapper {
    max-width: 100%;
  }

  .page-about .journey-step {
    width: 160px;
    min-width: 150px;
  }

  .page-about .step-card {
    width: 150px;
    height: 150px;
  }

  .page-about .step-number {
    width: 36px;
    height: 36px;
    margin-bottom: -36px;
    font-size: 13px;
  }

  .page-about .main-icon {
    font-size: 45px;
  }

  .page-about .chat-icon {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .page-about .small-icon {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .page-about .rocket-icon {
    font-size: 45px;
  }

  .page-about .journey-connector {
    width: 56px;
    margin: -74px -8px 0;
  }

  .page-about .journey-step h3 {
    font-size: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-about .about-team-track {
    grid-auto-columns: calc((100% - 28px) / 3);
  }

  .page-about .journey-step {
    width: 148px;
    min-width: 138px;
  }

  .page-about .step-card {
    width: 142px;
    height: 142px;
  }

  .page-about .step-number {
    margin-bottom: -19px;
  }

  .page-about .main-icon,
  .page-about .rocket-icon {
    font-size: 38px;
  }

  .page-about .chat-icon,
  .page-about .small-icon {
    right: 0;
    bottom: 7px;
    width: 29px;
    height: 29px;
    font-size: 16px;
  }

  .page-about .journey-connector {
    display: none !important;
    width: 0;
    margin: 0;
  }

  .page-about .connector-line {
    height: 6px;
  }

  .page-about .connector-dot {
    width: 20px;
    height: 20px;
    border-width: 5px;
  }

  .page-about .journey-step h3 {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .page-about .section-head h2 {
    font-size: 29px;
  }

  .page-about .journey-section {
    padding: 64px 0;
  }

  .page-about .journey-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
    align-items: start;
  }

  .page-about .about-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 760px;
  }

  .page-about .about-proof-strip span {
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  .page-about .dual-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .journey-step {
    width: 100%;
    min-width: 0;
  }

  .page-about .journey-connector {
    display: none;
  }

  .page-about .step-card {
    width: 176px;
    height: 176px;
  }

  .page-about .main-icon {
    font-size: 52px;
  }

  .page-about .rocket-icon {
    font-size: 52px;
  }

  .page-about .journey-step h3 {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .page-about .journey-section {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 60px 16px;
  }

  .page-about .journey-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .page-about .journey-step {
    width: calc(50% - 12px);
    min-width: 0;
  }

  .page-about .step-card {
    width: 176px;
    height: 176px;
  }

  .page-about .step-number {
    width: 40px;
    height: 40px;
    margin-bottom: -21px;
    font-size: 14px;
  }

  .page-about .main-icon {
    font-size: 52px;
  }

  .page-about .chat-icon {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .page-about .rocket-icon {
    font-size: 52px;
  }

  .page-about .journey-step h3 {
    font-size: 26px;
    white-space: normal;
  }

  .page-about .journey-connector {
    display: none !important;
    width: 12px;
    height: 65px;
    margin: -20px 0;
    flex-direction: column;
  }

  .page-about .connector-line {
    width: 10px;
    height: 100%;
    flex: unset;
  }

  .page-about .connector-dot {
    width: 26px;
    height: 26px;
    border-width: 6px;
  }
}

@media (max-width: 575px) {
  .page-about .section-head h2 {
    font-size: 25px;
  }

  .page-about .section-head p {
    font-size: 14px;
  }

  .page-about .about-proof-strip {
    display: none !important;
  }

  .page-about .journey-section {
    padding: 48px 0;
  }

  .page-about .journey-wrapper {
    gap: 22px 14px;
  }

  .page-about .journey-step {
    width: calc(50% - 7px);
  }

  .page-about .step-card {
    width: 132px;
    height: 132px;
  }

  .page-about .step-icon {
    width: 86px;
    height: 86px;
  }

  .page-about .main-icon {
    font-size: 44px;
  }

  .page-about .chat-icon,
  .page-about .small-icon {
    right: 0;
    bottom: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .page-about .rocket-icon {
    font-size: 44px;
  }

  .page-about .spark-1 {
    top: 78px;
    left: 36px;
  }

  .page-about .spark-2 {
    top: 66px;
    right: 18px;
  }

  .page-about .spark-3 {
    bottom: 7px;
    left: 18px;
  }

  .page-about .vertical-line {
    height: 32px;
  }

  .page-about .bottom-dot {
    width: 16px;
    height: 16px;
    margin-bottom: 18px;
  }

  .page-about .journey-step h3 {
    font-size: 18px;
  }
}

@media (min-width: 320px) and (max-width: 425px) {
  .page-about .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-about .dual-card {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .page-about .dual-card .value-card,
  .page-about .value-card,
  .page-about .metric-card,
  .page-about .about-team-panel,
  .page-about .showcase-card {
    width: 100%;
    min-width: 0;
  }

  .page-about .info-split,
  .page-about .stats-row,
  .page-about .value-grid,
  .page-about .about-experience-wrap {
    grid-template-columns: 1fr !important;
  }

  .page-about .journey-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: center;
    gap: 20px 12px;
  }

  .page-about .journey-step {
    width: calc(50% - 6px) !important;
    min-width: 0 !important;
  }

  .page-about .step-card {
    width: min(124px, 39vw);
    height: min(124px, 39vw);
  }

  .page-about .step-number {
    width: 36px;
    height: 36px;
    margin-bottom: -19px;
    font-size: 13px;
  }

  .page-about .journey-connector {
    display: none !important;
  }

  .page-about .journey-step h3 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .page-about .dual-card,
  .page-about .stats-row,
  .page-about .value-grid {
    grid-template-columns: 1fr !important;
  }

  .page-about .partners-marquee {
    padding: 16px 0;
  }

  .page-about .partner-chip-v5 {
    min-width: 176px;
    height: 74px;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .page-about .partner-chip-v5 img {
    max-width: 146px;
    max-height: 46px;
  }
}

@media (max-width: 1199px) {
  body:not(.dashboard-body) .topbar > .container,
  body:not(.dashboard-body) .navbar > .container,
  body:not(.dashboard-body) .page-hero > .container,
  body:not(.dashboard-body) .section-space > .container,
  body:not(.dashboard-body) .footer > .container,
  body.page-about .container,
  body.page-about .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Modern FAQ page */
.page-faq {
  background: #ffffff;
}

.page-faq .faq-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  border-bottom: 1px solid #dbe8ff;
  background:
    radial-gradient(circle at 18% 36%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(147, 197, 253, 0.24), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 52%, #f7fbff 100%);
}

.page-faq .faq-hero::before,
.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-faq .faq-hero::before {
  inset: auto -8% -35% 52%;
  height: 330px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  transform: rotate(-12deg);
}

.page-faq .faq-hero::after {
  right: -70px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 2px dashed rgba(37, 99, 235, 0.2);
}

.page-faq .faq-hero-dots {
  position: absolute;
  left: 0;
  top: 92px;
  width: 124px;
  height: 130px;
  opacity: 0.34;
  background-image: radial-gradient(#2563eb 2px, transparent 2px);
  background-size: 16px 16px;
}

.page-faq .faq-hero-question {
  position: absolute;
  right: 9%;
  top: 34px;
  color: rgba(37, 99, 235, 0.13);
  font-size: clamp(120px, 17vw, 260px);
  line-height: 1;
  font-weight: 950;
}

.page-faq .faq-hero .container,
.page-faq .faq-main .container {
  position: relative;
  z-index: 1;
}

.page-faq .faq-hero-content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.page-faq .faq-hero .eyebrow {
  width: max-content;
  margin: 0 auto 18px;
  background: #0d6efd;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.22);
}

.page-faq .faq-hero h1 {
  margin: 0;
  color: #091636;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.page-faq .faq-hero p {
  max-width: 600px;
  margin: 18px auto 0;
  color: #53627c;
  font-size: 18px;
  line-height: 1.65;
}

.page-faq .faq-search-box {
  width: min(100%, 720px);
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px auto 0;
  padding: 0 24px;
  border: 1px solid #d9e4f5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.page-faq .faq-search-box i {
  color: #31415f;
  font-size: 20px;
}

.page-faq .faq-search-box .form-control {
  min-height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #091636;
  font-size: 16px;
  box-shadow: none;
}

.page-faq .faq-main {
  padding-top: 58px;
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.page-faq .faq-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}

.page-faq .faq-category-card,
.page-faq .faq-help-card,
.page-faq .faq-modern-item,
.page-faq .faq-cta {
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.page-faq .faq-category-card {
  overflow: hidden;
}

.page-faq .faq-category-card h2 {
  margin: 0;
  padding: 22px 24px;
  border-bottom: 1px solid #edf2f8;
  color: #091636;
  font-size: 18px;
  font-weight: 900;
}

.page-faq .faq-category-btn {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  border: 0;
  border-left: 4px solid transparent;
  background: transparent;
  color: #24324d;
  text-align: left;
  font-weight: 800;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.page-faq .faq-category-btn span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-faq .faq-category-btn i {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d8e4f5;
  border-radius: 50%;
  color: #31415f;
}

.page-faq .faq-category-btn strong {
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #e8edf5;
  color: #526179;
  font-size: 13px;
  font-weight: 900;
}

.page-faq .faq-category-btn:hover,
.page-faq .faq-category-btn.active {
  border-left-color: #0d6efd;
  background: #f0f6ff;
  color: #0d6efd;
}

.page-faq .faq-category-btn:hover i,
.page-faq .faq-category-btn.active i {
  border-color: rgba(13, 110, 253, 0.22);
  background: #ffffff;
  color: #0d6efd;
}

.page-faq .faq-category-btn:hover strong,
.page-faq .faq-category-btn.active strong {
  background: #0d6efd;
  color: #ffffff;
}

.page-faq .faq-help-card {
  padding: 24px;
}

.page-faq .faq-help-card > i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #eaf3ff;
  color: #0d6efd;
  font-size: 20px;
}

.page-faq .faq-help-card h3 {
  margin: 0 0 8px;
  color: #091636;
  font-size: 16px;
  font-weight: 900;
}

.page-faq .faq-help-card p {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.page-faq .faq-accordion {
  display: grid;
  gap: 14px;
}

.page-faq .faq-modern-item {
  overflow: hidden;
}

.page-faq .faq-modern-item .accordion-button {
  min-height: 72px;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: #ffffff;
  color: #091636;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: none;
}

.page-faq .faq-modern-item .accordion-button::after {
  display: none;
}

.page-faq .faq-modern-item .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #edf2f8;
  background: #ffffff;
  color: #091636;
}

.page-faq .faq-toggle-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #d8e4f5;
  background: #ffffff;
  color: #0d6efd;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
}

.page-faq .faq-toggle-icon::before {
  content: "+";
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.page-faq .accordion-button:not(.collapsed) .faq-toggle-icon {
  border-color: #0d6efd;
  background: #0d6efd;
  color: #ffffff;
}

.page-faq .accordion-button:not(.collapsed) .faq-toggle-icon::before {
  content: "-";
  transform: translateY(-1px);
}

.page-faq .faq-modern-item .accordion-body {
  padding: 0 78px 26px;
  color: #526179;
  font-size: 15px;
  line-height: 1.72;
}

.page-faq .faq-empty-state {
  padding: 42px 24px;
  margin-top: 16px;
  border: 1px dashed #b9cef0;
  border-radius: 8px;
  background: #f8fbff;
  text-align: center;
}

.page-faq .faq-empty-state i {
  color: #0d6efd;
  font-size: 32px;
}

.page-faq .faq-empty-state h3 {
  margin: 12px 0 6px;
  color: #091636;
  font-size: 20px;
  font-weight: 900;
}

.page-faq .faq-empty-state p {
  margin: 0;
  color: #64748b;
}

.page-faq .faq-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.page-faq .faq-page-btn {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d8e4f5;
  border-radius: 999px;
  background: #ffffff;
  color: #31415f;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.page-faq .faq-page-btn:hover:not(:disabled),
.page-faq .faq-page-btn.active {
  transform: translateY(-3px);
  border-color: #0d6efd;
  background: #0d6efd;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.22);
}

.page-faq .faq-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.page-faq .faq-cta {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: 28px 34px;
  border-color: #bcd4ff;
  background:
    radial-gradient(circle at 9% 32%, rgba(13, 110, 253, 0.16), transparent 24%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
}

.page-faq .faq-cta-art {
  min-height: 118px;
  position: relative;
}

.page-faq .chat-bubble-one,
.page-faq .chat-bubble-two,
.page-faq .chat-bubble-three {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.18);
}

.page-faq .chat-bubble-one {
  left: 26px;
  top: 6px;
  width: 96px;
  height: 78px;
  background: linear-gradient(135deg, #4595ff, #0758f7);
  color: #ffffff;
  font-size: 28px;
  animation: faqBubbleFloat 3.8s ease-in-out infinite;
}

.page-faq .chat-bubble-two {
  left: 94px;
  top: 54px;
  width: 76px;
  height: 58px;
  background: #ffffff;
  color: #0d6efd;
  font-size: 24px;
  animation: faqBubbleFloat 4.4s ease-in-out infinite reverse;
}

.page-faq .chat-bubble-three {
  left: 4px;
  top: 62px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #14b8a6;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.22);
  animation: faqBubbleFloat 4s ease-in-out infinite;
}

@keyframes faqBubbleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.page-faq .faq-cta h2 {
  margin: 0 0 8px;
  color: #091636;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
}

.page-faq .faq-cta p {
  max-width: 560px;
  margin: 0;
  color: #53627c;
  line-height: 1.65;
}

.page-faq .faq-cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.page-faq .faq-cta-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.page-faq .faq-cta-btn i {
  transition: transform 0.24s ease;
}

.page-faq .faq-cta-btn-primary {
  border: 1px solid #0758f7;
  background: linear-gradient(135deg, #0d6efd, #0758f7);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(7, 88, 247, 0.24);
}

.page-faq .faq-cta-btn-light {
  border: 1px solid rgba(13, 110, 253, 0.28);
  background: #ffffff;
  color: #0758f7;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.page-faq .faq-cta-btn:hover {
  transform: translateY(-4px);
}

.page-faq .faq-cta-btn:hover i {
  transform: translateX(3px) scale(1.05);
}

.page-faq .faq-cta-btn-primary:hover {
  background: linear-gradient(135deg, #0758f7, #003fc4);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(7, 88, 247, 0.3);
}

.page-faq .faq-cta-btn-light:hover {
  border-color: #0758f7;
  background: #eef6ff;
  color: #003fc4;
  box-shadow: 0 18px 38px rgba(7, 88, 247, 0.14);
}

@media (max-width: 1199px) {
  .page-faq .faq-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
  }

  .page-faq .faq-modern-item .accordion-body {
    padding-right: 62px;
  }

  .page-faq .faq-cta {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .page-faq .faq-cta-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .page-faq .faq-hero {
    padding: 72px 0 62px;
  }

  .page-faq .faq-layout {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  }

  .page-faq .faq-category-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-faq .faq-category-card h2 {
    grid-column: 1 / -1;
  }

  .page-faq .faq-category-btn {
    border-left: 0;
    border-top: 4px solid transparent;
  }

  .page-faq .faq-category-btn:hover,
  .page-faq .faq-category-btn.active {
    border-top-color: #0d6efd;
  }
}

@media (max-width: 767px) {
  .page-faq .faq-hero {
    padding: 58px 0 52px;
  }

  .page-faq .faq-hero-question {
    right: 2%;
    top: 48px;
    font-size: 132px;
  }

  .page-faq .faq-hero p {
    font-size: 15px;
  }

  .page-faq .faq-search-box {
    min-height: 58px;
    padding: 0 18px;
  }

  .page-faq .faq-search-box .form-control {
    min-height: 56px;
    font-size: 14px;
  }

  .page-faq .faq-sidebar {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-category-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-faq .faq-category-btn {
    min-height: 54px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .page-faq .faq-category-btn i {
    width: 30px;
    height: 30px;
  }

  .page-faq .faq-modern-item .accordion-button {
    min-height: 64px;
    padding: 18px;
    font-size: 15px;
  }

  .page-faq .faq-modern-item .accordion-body {
    padding: 0 18px 22px 68px;
    font-size: 14px;
  }

  .page-faq .faq-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
    text-align: center;
  }

  .page-faq .faq-cta-art {
    min-height: 96px;
    width: 170px;
    margin: 0 auto;
  }

  .page-faq .faq-cta-actions {
    grid-column: auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 425px) {
  .page-faq .faq-category-card {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-modern-item .accordion-body {
    padding-left: 18px;
  }

  .page-faq .faq-toggle-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

.admin-faq-page .faq-admin-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-faq-page .faq-admin-filter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #dbe5f2;
  border-radius: 999px;
  background: #ffffff;
  color: #31415f;
  font-size: 13px;
  font-weight: 850;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.admin-faq-page .faq-admin-filter span {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #0758f7;
  font-size: 12px;
}

.admin-faq-page .faq-admin-filter:hover,
.admin-faq-page .faq-admin-filter.active {
  border-color: rgba(7, 88, 247, 0.28);
  background: #0758f7;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 88, 247, 0.18);
}

.admin-faq-page .faq-admin-filter:hover span,
.admin-faq-page .faq-admin-filter.active span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.not-found-page {
  background: #0b5af3;
}

.not-found-scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vw, 84px) 20px;
  background:
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.16), transparent 20%),
    radial-gradient(circle at 50% 120%, rgba(0, 20, 120, 0.5), transparent 40%),
    linear-gradient(135deg, #1d79ff 0%, #0754f2 48%, #0641d5 100%);
  color: #ffffff;
  perspective: 900px;
}

.not-found-corner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.16) 50%, transparent calc(50% + 1px)) top center / 100% 32% no-repeat,
    linear-gradient(28deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.14) 50%, transparent calc(50% + 1px)) left 32% / 52% 42% no-repeat,
    linear-gradient(-28deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.14) 50%, transparent calc(50% + 1px)) right 32% / 52% 42% no-repeat;
  opacity: 0.9;
}

.not-found-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: center;
  margin-bottom: clamp(22px, 3.5vw, 44px);
}

.not-found-eyebrow {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(0, 24, 130, 0.22);
}

.not-found-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 27px);
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 8px 20px rgba(0, 24, 130, 0.22);
}

.not-found-path {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: min(520px, 100%);
  margin-top: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #eef6ff;
  font-weight: 800;
  overflow-wrap: anywhere;
  backdrop-filter: blur(10px);
}

.not-found-stage {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  min-height: clamp(210px, 30vw, 315px);
  display: grid;
  grid-template-columns: 1fr minmax(120px, 180px) 1fr;
  align-items: center;
  gap: clamp(8px, 3vw, 34px);
  transform: rotateX(58deg) translateY(-12px);
  transform-style: preserve-3d;
}

.not-found-number {
  color: #1970ff;
  font-size: clamp(154px, 25vw, 285px);
  line-height: 0.72;
  font-weight: 950;
  text-align: center;
  text-shadow:
    9px 9px 0 #0754d9,
    18px 18px 0 #0642b8,
    28px 32px 44px rgba(0, 20, 110, 0.42);
  -webkit-text-stroke: 2px rgba(105, 165, 255, 0.34);
  transform: translateZ(46px);
}

.not-found-number-left {
  transform: translateZ(46px) rotateZ(-4deg);
}

.not-found-number-right {
  transform: translateZ(46px) rotateZ(7deg);
}

.not-found-hole {
  position: relative;
  justify-self: center;
  width: clamp(116px, 17vw, 174px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 40%, #03184f 0 35%, #051f72 58%, #0b51da 70%, rgba(255, 255, 255, 0.22) 71%, transparent 73%);
  box-shadow:
    inset 0 18px 30px rgba(0, 0, 0, 0.42),
    0 24px 50px rgba(0, 21, 121, 0.38);
  transform: translateZ(8px);
}

.not-found-ladder {
  position: absolute;
  left: 58%;
  bottom: -12%;
  width: 34px;
  height: 142px;
  transform: rotate(18deg);
  border-left: 7px solid #f2b75a;
  border-right: 7px solid #f2b75a;
  border-radius: 6px;
  filter: drop-shadow(0 8px 10px rgba(0, 15, 80, 0.4));
}

.not-found-ladder::before {
  content: "";
  position: absolute;
  inset: 14px -8px auto;
  height: 92px;
  background: repeating-linear-gradient(to bottom, transparent 0 17px, #f2b75a 17px 24px);
}

.not-found-actions {
  position: relative;
  z-index: 2;
  margin-top: clamp(16px, 3vw, 34px);
}

.not-found-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 214px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 214, 128, 0.96);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 22, 110, 0.28);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.not-found-home-btn:hover {
  color: #0b4be0;
  background: #ffd680;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 22, 110, 0.3);
}

@media (max-width: 767px) {
  .not-found-scene {
    justify-content: flex-start;
    padding-top: 58px;
  }

  .not-found-stage {
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 2px;
    width: min(560px, 96vw);
    min-height: 210px;
  }

  .not-found-number {
    font-size: clamp(112px, 31vw, 170px);
    text-shadow:
      6px 7px 0 #0754d9,
      13px 15px 0 #0642b8,
      20px 24px 32px rgba(0, 20, 110, 0.42);
  }

  .not-found-hole {
    width: clamp(88px, 22vw, 118px);
  }

  .not-found-ladder {
    height: 108px;
    width: 28px;
    border-left-width: 5px;
    border-right-width: 5px;
  }
}

.home-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(124, 58, 237, .08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.home-gallery-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 32px;
  width: 720px;
  height: 180px;
  opacity: .45;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(37, 99, 235, .18) 19px 20px, transparent 21px 34px);
  transform: rotate(-8deg);
}

.home-gallery-section::after {
  content: "";
  position: absolute;
  right: 26%;
  top: 180px;
  width: 92px;
  height: 92px;
  opacity: .45;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(124, 58, 237, .55) 2px, transparent 2px);
  background-size: 20px 20px;
}

.home-gallery-section .container {
  position: relative;
  z-index: 1;
}

.home-gallery-head .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-left: 46px;
}

.home-gallery-head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 68px;
  background: linear-gradient(180deg, #8b5cf6, #2563eb, transparent);
}

.home-gallery-head .eyebrow::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2563eb;
}

.home-gallery-head h2 {
  color: #101827;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .95;
}

.home-gallery-head p {
  max-width: 520px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

.home-team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(124, 58, 237, 0.38), transparent 30%),
    radial-gradient(circle at 0% 15%, rgba(37, 99, 235, 0.20), transparent 25%),
    linear-gradient(135deg, #020817 0%, #061330 48%, #020617 100%);
  color: #ffffff;
}

.home-team-section::before,
.home-team-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .42;
}

.home-team-section::before {
  width: 360px;
  height: 360px;
  left: -130px;
  top: -90px;
  border: 1px solid rgba(59, 130, 246, .38);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(37, 99, 235, .04), inset 0 0 0 58px rgba(124, 58, 237, .04);
}

.home-team-section::after {
  right: 7%;
  top: 70px;
  width: 140px;
  height: 92px;
  background-image: radial-gradient(circle, rgba(124, 58, 237, .65) 2px, transparent 2px);
  background-size: 22px 22px;
}

.home-team-section .container {
  position: relative;
  z-index: 1;
}

.home-team-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.home-team-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #8b5cf6;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.home-team-head .eyebrow::before,
.home-team-head .eyebrow::after {
  content: "";
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2563eb);
}

.home-team-head .eyebrow::after {
  background: linear-gradient(90deg, #8b5cf6, transparent);
}

.home-team-head h2 {
  color: #ffffff;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.home-team-head p {
  color: #bac7dc;
  font-size: clamp(18px, 2vw, 26px);
}

.home-team-head p strong,
.home-team-head p a {
  color: #3b82f6;
}

.home-team-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -8px 0 24px;
}

.home-team-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(147, 197, 253, .34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dbeafe;
  background: rgba(15, 32, 68, .72);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.home-team-controls button:hover,
.home-team-controls button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, .82);
  background: rgba(37, 99, 235, .26);
}

.home-team-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 330px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}

.home-team-slider {
  scrollbar-color: rgba(96, 165, 250, .65) rgba(15, 32, 68, .72);
}

.home-team-card {
  position: relative;
  scroll-snap-align: start;
  min-width: 0;
  display: block;
  padding: 20px;
  border: 1px solid rgba(59, 130, 246, .52);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 33, 76, .92), rgba(5, 18, 44, .94));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.home-team-card:nth-child(even) {
  border-color: rgba(168, 85, 247, .55);
}

.home-team-avatar {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #102657, #312e81);
  color: #bfdbfe;
  font-size: 54px;
  font-weight: 950;
  border: 1px solid rgba(148, 163, 184, .22);
}

.home-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-team-card h3 {
  display: block;
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.home-team-card p {
  margin: 0 0 6px;
  color: #3b82f6;
  font-size: 15px;
  font-weight: 850;
}

.home-team-card small {
  display: block;
  min-height: 48px;
  color: #d5deed;
  font-size: 14px;
  line-height: 1.65;
}

.home-team-card small::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 22px;
  background: rgba(148, 163, 184, .20);
}

.home-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0 30px;
}

.home-gallery-filters button {
  min-width: 96px;
  min-height: 42px;
  border: 1px solid #d8e0ec;
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, .78);
  color: #111827;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.home-gallery-filters button:hover,
.home-gallery-filters button:focus-visible,
.home-gallery-filters button.is-active {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

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

.home-gallery-card {
  margin: 0;
  min-width: 0;
  border: 1px solid rgba(203, 213, 225, .74);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
  overflow: hidden;
}

.home-gallery-card.is-hidden {
  display: none;
}

[data-load-item].is-load-hidden {
  display: none !important;
}

.load-more-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.load-more-actions .btn {
  min-width: 140px;
  min-height: 42px;
  font-weight: 850;
}

.home-gallery-card button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.home-gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
  background: #eef4ff;
  transition: transform .26s ease;
}

.home-gallery-card:hover img {
  transform: scale(1.025);
}

.home-gallery-popup {
  position: fixed;
  inset: 0;
  z-index: 3600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(248, 250, 252, .54);
  backdrop-filter: blur(4px);
}

.home-gallery-popup.is-open {
  display: flex;
}

.home-gallery-popup-frame {
  position: relative;
  max-width: min(760px, 92vw);
  max-height: 86vh;
  border: 8px solid #ffffff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, .28);
  overflow: hidden;
}

.home-gallery-popup-frame img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #eef4ff;
}

.home-gallery-popup-close {
  position: fixed;
  z-index: 1;
  top: calc(50% - min(330px, 43vh));
  right: calc(50% - min(405px, 46vw));
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

.home-gallery-popup-caption {
  display: none;
  padding: 12px 14px;
}

.home-gallery-popup-caption strong {
  display: block;
  color: #101827;
}

.home-gallery-popup-caption span {
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 575px) {
  .home-team-slider {
    grid-auto-columns: minmax(230px, 86vw);
  }

  .home-team-head .eyebrow {
    gap: 10px;
    letter-spacing: .12em;
  }

  .home-team-head .eyebrow::before,
  .home-team-head .eyebrow::after {
    width: 32px;
  }

}

@media (max-width: 991px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-gallery-head .eyebrow {
    padding-left: 26px;
    letter-spacing: .12em;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-popup {
    padding: 16px;
  }

  .home-gallery-popup-close {
    top: 18px;
    right: 18px;
  }
}

.cms-public-hero {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  color: #fff;
  padding: 72px 0;
}

.cms-public-hero h1 {
  margin: 12px 0 10px;
  max-width: 900px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 950;
}

.cms-public-hero p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.7;
}

.cms-public-content .cms-render-widget {
  border-radius: 8px;
}

.cms-public-content .cms-render-widget h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 920;
}

.cms-public-content .cms-render-widget p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.cms-public-content .cms-render-widget img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.cms-render-layout {
  display: grid;
  gap: 18px;
}

.cms-render-layout-row,
.cms-render-layout-flexbox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.cms-render-layout-column {
  flex: 1 1 260px;
}

.cms-render-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: left;
}

.cms-render-card,
.cms-render-action,
.cms-render-embed,
.cms-render-list-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .05);
  text-align: left;
}

.cms-render-card h3,
.cms-render-action h3,
.cms-render-list-item h3 {
  margin: 10px 0 8px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
}

.cms-render-card h3 a,
.cms-render-list-item h3 a {
  color: inherit;
  text-decoration: none;
}

.cms-render-card .btn {
  margin-top: 10px;
}

.cms-render-card-icon,
.cms-render-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 20px;
}

.cms-render-tabs,
.cms-render-accordion,
.cms-render-list {
  display: grid;
  gap: 10px;
  text-align: left;
}

.cms-render-tab-list,
.cms-render-nav,
.cms-render-breadcrumbs,
.cms-render-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cms-render-tab-list button,
.cms-render-nav a,
.cms-render-pagination a,
.cms-render-pagination strong,
.cms-render-meta {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  padding: 9px 12px;
  font-weight: 800;
  text-decoration: none;
}

.cms-render-tab-list button.is-active,
.cms-render-pagination strong {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.cms-render-tab-panel,
.cms-render-accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.cms-render-media,
.cms-render-map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: #0f172a;
}

.cms-render-search {
  display: flex;
  gap: 10px;
  max-width: 620px;
}

.cms-render-progress {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cms-render-progress div {
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.cms-render-progress i {
  display: block;
  height: 100%;
  background: #2563eb;
}

.cms-render-stars {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #f59e0b;
  font-weight: 850;
}

.cms-render-code {
  margin: 0;
  white-space: pre-wrap;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px;
  text-align: left;
}

/* WordPress-style CMS page editor. */
.cms-wp-page-editor {
  color: #1d2327;
}

.cms-wp-editor-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.cms-wp-editor-heading h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 650;
}

.cms-wp-editor-heading-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cms-wp-editor-heading-actions label {
  margin: 0;
  font-weight: 700;
}

.cms-wp-editor-heading-actions .form-select {
  width: min(320px, 38vw);
}

.cms-wp-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 20px;
}

.cms-wp-editor-main {
  min-width: 0;
}

.cms-wp-title-input {
  width: 100%;
  min-height: 54px;
  padding: 8px 14px;
  border: 1px solid #8c8f94;
  border-radius: 2px;
  background: #fff;
  color: #1d2327;
  font-size: 24px;
  line-height: 1.3;
}

.cms-wp-title-input:focus {
  border-color: #2271b1;
  outline: 1px solid #2271b1;
}

.cms-wp-permalink {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 38px;
  padding: 9px 4px;
  color: #50575e;
  font-size: 13px;
}

.cms-wp-permalink a {
  color: #2271b1;
  overflow-wrap: anywhere;
}

.cms-wp-legacy-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-left: 4px solid #2271b1;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}

.cms-wp-legacy-notice > div:first-child strong,
.cms-wp-legacy-notice > div:first-child span {
  display: block;
}

.cms-wp-legacy-notice > div:first-child span {
  margin-top: 3px;
  color: #646970;
  font-size: 12px;
}

.cms-wp-legacy-notice > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cms-classic-editor,
.cms-legacy-preview {
  border: 1px solid #8c8f94;
  background: #fff;
}

.cms-wp-editor-tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  min-height: 39px;
  padding: 5px 8px;
  border-bottom: 1px solid #dcdcde;
  background: #f6f7f7;
}

.cms-wp-editor-tabs button {
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid #8c8f94;
  border-bottom-color: #fff;
  background: #fff;
  color: #1d2327;
  font-size: 12px;
  font-weight: 700;
}

.cms-wp-editor-tabs span {
  color: #646970;
  font-size: 12px;
}

.cms-classic-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px;
  border-bottom: 1px solid #dcdcde;
  background: #f6f7f7;
}

.cms-classic-toolbar button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 30px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: #2c3338;
}

.cms-classic-toolbar button:hover {
  border-color: #8c8f94;
  background: #fff;
}

.cms-wp-add-media {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  margin-right: 6px;
  padding: 4px 9px;
  border: 1px solid #2271b1;
  border-radius: 2px;
  background: #f6f7f7;
  color: #2271b1;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.cms-classic-surface {
  min-height: 560px;
  padding: 22px;
  background: #fff;
  color: #1d2327;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  outline: 0;
  overflow-wrap: anywhere;
}

.cms-classic-surface:focus {
  box-shadow: inset 0 0 0 2px rgba(34, 113, 177, .16);
}

.cms-wp-editor-sidebar {
  display: grid;
  gap: 14px;
}

.cms-wp-postbox {
  border: 1px solid #c3c4c7;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}

.cms-wp-postbox > header,
.cms-wp-postbox > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border-bottom: 1px solid #dcdcde;
  color: #1d2327;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.cms-wp-postbox > summary {
  cursor: pointer;
}

.cms-wp-postbox > summary::-webkit-details-marker {
  display: none;
}

.cms-wp-postbox[open] > summary i {
  transform: rotate(180deg);
}

.cms-wp-postbox h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.cms-wp-postbox-body {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.cms-wp-postbox-body > label {
  display: grid;
  gap: 5px;
  color: #50575e;
  font-size: 12px;
  font-weight: 700;
}

.cms-wp-postbox-body > a {
  color: #2271b1;
  font-size: 13px;
  text-decoration: none;
}

.cms-wp-publish-box > footer {
  display: flex;
  justify-content: flex-end;
  padding: 10px 12px;
  border-top: 1px solid #dcdcde;
  background: #f6f7f7;
}

.cms-legacy-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #dcdcde;
  background: #f6f7f7;
}

.cms-legacy-preview-copy strong,
.cms-legacy-preview-copy small {
  display: block;
}

.cms-legacy-preview-copy small {
  color: #646970;
}

.cms-legacy-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cms-legacy-preview iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #fff;
}

[data-dashboard-theme="dark"] .cms-wp-title-input,
[data-dashboard-theme="dark"] .cms-classic-editor,
[data-dashboard-theme="dark"] .cms-classic-surface,
[data-dashboard-theme="dark"] .cms-wp-postbox,
[data-dashboard-theme="dark"] .cms-wp-editor-tabs button {
  border-color: #475569;
  background: #111827;
  color: #f8fafc;
}

[data-dashboard-theme="dark"] .cms-wp-editor-tabs,
[data-dashboard-theme="dark"] .cms-classic-toolbar,
[data-dashboard-theme="dark"] .cms-wp-publish-box > footer,
[data-dashboard-theme="dark"] .cms-legacy-preview-bar {
  border-color: #334155;
  background: #0f172a;
}

[data-dashboard-theme="dark"] .cms-wp-postbox > header,
[data-dashboard-theme="dark"] .cms-wp-postbox > summary,
[data-dashboard-theme="dark"] .cms-wp-postbox h2 {
  border-color: #334155;
  color: #f8fafc;
}

@media (max-width: 991px) {
  .cms-wp-editor-layout {
    grid-template-columns: 1fr;
  }

  .cms-wp-editor-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .cms-wp-editor-heading,
  .cms-wp-editor-heading-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cms-wp-editor-heading-actions .form-select,
  .cms-wp-editor-heading-actions .btn {
    width: 100%;
  }

  .cms-wp-editor-sidebar {
    grid-template-columns: 1fr;
  }

  .cms-wp-legacy-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .cms-classic-surface,
  .cms-legacy-preview iframe {
    min-height: 420px;
    height: 420px;
  }
}

/* Keep every dashboard/CMS popup above the sticky sidebar and admin bar. */
body.dashboard-body > .modal {
  z-index: 4000 !important;
}

body.dashboard-body > .modal-backdrop {
  z-index: 3990 !important;
}

body.dashboard-body > .trio-confirm-modal,
body.dashboard-body > .google-review-edit-modal {
  z-index: 4020 !important;
}

body.dashboard-body > .modal-backdrop.trio-confirm-backdrop,
body.dashboard-body > .modal-backdrop.google-review-edit-backdrop {
  z-index: 4010 !important;
}

body.dashboard-body.modal-open .dashboard-admin-bar,
body.dashboard-body.modal-open .dashboard-sidebar {
  pointer-events: none;
}

/* WordPress-style CMS menu editor. */
.cms-menu-hero {
  margin-bottom: 18px;
}

.cms-menu-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #dcdcde;
  background: #fff;
  color: #1d2327;
}

.cms-menu-selector label {
  margin: 0;
  font-weight: 700;
}

.cms-menu-selector .form-select {
  width: min(360px, 100%);
}

.cms-menu-selector a {
  color: #2271b1;
  font-weight: 650;
}

.cms-wp-menu-form {
  border: 1px solid #c3c4c7;
  background: #f6f7f7;
}

.cms-menu-name-bar {
  display: grid;
  grid-template-columns: auto minmax(220px, 420px) 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #c3c4c7;
  background: #fff;
}

.cms-menu-name-bar label {
  margin: 0;
  color: #1d2327;
  font-weight: 750;
}

.cms-wp-menu-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
}

.cms-menu-sources > h2,
.cms-menu-structure h2 {
  margin: 0;
  color: #1d2327;
  font-size: 18px;
  font-weight: 750;
}

.cms-menu-sources > h2 {
  margin-bottom: 12px;
}

.cms-menu-source {
  margin-bottom: 10px;
  border: 1px solid #c3c4c7;
  background: #fff;
}

.cms-menu-source summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 12px;
  color: #1d2327;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.cms-menu-source summary::-webkit-details-marker,
.cms-menu-edit-item summary::-webkit-details-marker {
  display: none;
}

.cms-menu-source[open] summary {
  border-bottom: 1px solid #dcdcde;
}

.cms-menu-source summary i,
.cms-menu-edit-item summary i.fa-chevron-down {
  transition: transform .18s ease;
}

.cms-menu-source[open] summary i,
.cms-menu-edit-item[open] summary i.fa-chevron-down {
  transform: rotate(180deg);
}

.cms-menu-source-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px;
}

.cms-menu-page-list {
  display: grid;
  gap: 8px;
  max-height: 210px;
  overflow-y: auto;
  padding: 3px;
}

.cms-menu-page-list label,
.cms-menu-location-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2c3338;
  font-size: 13px;
  font-weight: 600;
}

.cms-field-error {
  min-height: 18px;
  margin: 0;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
}

.cms-menu-structure {
  min-width: 0;
  border: 1px solid #c3c4c7;
  background: #fff;
}

.cms-menu-structure > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #dcdcde;
}

.cms-menu-structure > header p,
.cms-menu-settings p {
  margin: 4px 0 0;
  color: #646970;
  font-size: 13px;
}

.cms-menu-structure > header > strong {
  color: #646970;
  font-size: 12px;
}

.cms-menu-sortable {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.cms-menu-edit-item {
  width: min(620px, 100%);
  border: 1px solid #c3c4c7;
  background: #fff;
}

.cms-menu-edit-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  background: #f6f7f7;
  color: #1d2327;
  cursor: pointer;
  list-style: none;
}

.cms-menu-edit-item summary > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.cms-menu-edit-item summary strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cms-menu-edit-item summary .fa-grip-vertical {
  color: #8c8f94;
}

.cms-menu-item-type {
  color: #646970;
  font-size: 12px;
  font-weight: 600;
}

.cms-menu-edit-body {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-top: 1px solid #dcdcde;
}

.cms-menu-edit-body > label:not(.form-check) {
  display: grid;
  gap: 5px;
  color: #50575e;
  font-size: 12px;
  font-weight: 700;
}

.cms-menu-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cms-menu-item-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #2271b1;
  font-size: 12px;
  font-weight: 700;
}

.cms-menu-item-actions button.is-danger {
  color: #b32d2e;
}

.cms-menu-empty {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 16px;
  padding: 32px 18px;
  border: 1px dashed #c3c4c7;
  color: #646970;
  text-align: center;
}

.cms-menu-empty i {
  margin-bottom: 4px;
  color: #8c8f94;
  font-size: 26px;
}

.cms-menu-empty strong {
  color: #1d2327;
}

.cms-menu-settings {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(230px, 1.2fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-top: 1px solid #dcdcde;
  background: #f6f7f7;
}

.cms-menu-settings h3 {
  margin: 0;
  color: #1d2327;
  font-size: 15px;
  font-weight: 750;
}

.cms-menu-location-options {
  display: grid;
  gap: 8px;
}

[data-dashboard-theme="dark"] .cms-menu-selector,
[data-dashboard-theme="dark"] .cms-menu-name-bar,
[data-dashboard-theme="dark"] .cms-menu-source,
[data-dashboard-theme="dark"] .cms-menu-structure,
[data-dashboard-theme="dark"] .cms-menu-edit-item {
  border-color: #334155;
  background: #111827;
}

[data-dashboard-theme="dark"] .cms-wp-menu-form,
[data-dashboard-theme="dark"] .cms-menu-edit-item summary,
[data-dashboard-theme="dark"] .cms-menu-settings {
  border-color: #334155;
  background: #0f172a;
}

[data-dashboard-theme="dark"] .cms-menu-selector,
[data-dashboard-theme="dark"] .cms-menu-name-bar label,
[data-dashboard-theme="dark"] .cms-menu-sources > h2,
[data-dashboard-theme="dark"] .cms-menu-structure h2,
[data-dashboard-theme="dark"] .cms-menu-source summary,
[data-dashboard-theme="dark"] .cms-menu-edit-item summary,
[data-dashboard-theme="dark"] .cms-menu-empty strong,
[data-dashboard-theme="dark"] .cms-menu-settings h3,
[data-dashboard-theme="dark"] .cms-menu-page-list label,
[data-dashboard-theme="dark"] .cms-menu-location-options label {
  color: #f8fafc;
}

@media (max-width: 991px) {
  .cms-wp-menu-layout {
    grid-template-columns: 1fr;
  }

  .cms-menu-sources {
    order: 2;
  }

  .cms-menu-structure {
    order: 1;
  }
}

@media (max-width: 767px) {
  .cms-menu-selector,
  .cms-menu-name-bar,
  .cms-menu-settings {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cms-menu-selector {
    display: grid;
  }

  .cms-menu-selector .form-select,
  .cms-menu-name-bar .btn,
  .cms-menu-settings .btn {
    width: 100%;
  }

  .cms-wp-menu-layout {
    padding: 12px;
  }
}

/* Keep dashboard navigation compact and scroll only the menu list. */
.dashboard-shell .dashboard-sidebar {
  overflow: hidden !important;
}

.dashboard-shell .dashboard-nav {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: max-content;
  align-content: start;
  gap: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dashboard-shell .dashboard-nav-group,
.dashboard-shell .dashboard-nav-group.open {
  min-height: 0;
  align-self: start;
}

.dashboard-shell .dashboard-nav > a,
.dashboard-shell .dashboard-nav-parent {
  min-height: 54px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.dashboard-shell .dashboard-subnav {
  padding: 4px 0;
}

.dashboard-shell .dashboard-subnav a {
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dashboard-shell .dashboard-nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.dashboard-shell .dashboard-nav::-webkit-scrollbar-track {
  background: transparent;
}

.dashboard-shell .dashboard-nav::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Desktop: let expanded groups increase the sidebar/document height. */
@media (min-width: 1200px) {
  .dashboard-shell {
    align-items: start;
    background: linear-gradient(
      to right,
      #111315 0,
      #111315 var(--dashboard-sidebar-width),
      #f3f6fa var(--dashboard-sidebar-width),
      #f3f6fa 100%
    ) !important;
  }

  .dashboard-shell .dashboard-sidebar {
    position: sticky !important;
    inset: 0 auto auto 0 !important;
    height: max-content !important;
    min-height: 100vh !important;
    max-height: none !important;
    align-self: start !important;
    overflow: visible !important;
  }

  .dashboard-shell .dashboard-nav {
    flex: 0 0 auto;
    max-height: none;
    overflow: visible;
  }
}

.cms-render-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
  text-align: left;
}

.cms-render-field {
  display: grid;
  gap: 7px;
}

.cms-render-field .form-label {
  margin: 0;
  color: #334155;
  font-size: 14px;
  font-weight: 850;
}

.cms-render-options {
  display: grid;
  gap: 8px;
}

.cms-render-options .form-check {
  margin: 0;
}

.cms-form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cms-form-submit {
  width: fit-content;
  min-width: 150px;
}

.cms-visibility-desktop,
.cms-visibility-tablet,
.cms-visibility-mobile,
.cms-visibility-hide_desktop,
.cms-visibility-hide_tablet,
.cms-visibility-hide_mobile {
  display: inherit;
}

@media (min-width: 992px) {
  .cms-visibility-tablet,
  .cms-visibility-mobile,
  .cms-visibility-hide_desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .cms-visibility-desktop,
  .cms-visibility-mobile,
  .cms-visibility-hide_tablet {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .cms-visibility-desktop,
  .cms-visibility-tablet,
  .cms-visibility-hide_mobile {
    display: none !important;
  }
}
/* CMS visual builder: three-panel editing workspace with responsive preview canvas. */
.cms-open-visual-builder{margin-left:auto!important;display:inline-flex!important;align-items:center;gap:7px!important;width:auto!important;padding:6px 12px!important;border:1px solid #cbd5e1!important;border-radius:7px!important;color:#334155!important;background:#fff!important}
.cms-classic-editor:not(.d-none)+.cms-visual-builder{display:none}
.cms-visual-builder{display:grid;grid-template-columns:245px minmax(420px,1fr) 285px;min-height:680px;border:1px solid #dbe3ef;border-radius:10px;overflow:hidden;background:#eef2f7}
.cms-builder-palette,.cms-builder-inspector{min-width:0;background:#fff}.cms-builder-palette{border-right:1px solid #dbe3ef}.cms-builder-inspector{border-left:1px solid #dbe3ef}
.cms-builder-panel-title{min-height:58px;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 14px;border-bottom:1px solid #e6ebf2}.cms-builder-panel-title strong{display:flex;align-items:center;gap:8px}.cms-builder-panel-title small{display:block;margin-top:3px;color:#64748b;font-size:10px}.cms-builder-panel-title button{width:32px;height:32px;border:1px solid #dbe3ef;border-radius:7px;color:#475569;background:#fff}
.cms-builder-palette>input{width:calc(100% - 24px);margin:12px}.cms-builder-widget-list{max-height:600px;overflow:auto;padding:0 12px 16px}.cms-builder-widget-list section{margin-bottom:16px}.cms-builder-widget-list h3{margin:0 0 7px;color:#64748b;font-size:10px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.cms-builder-widget-list section>div{display:grid;grid-template-columns:1fr 1fr;gap:7px}.cms-builder-widget-list button{display:grid;place-items:center;gap:5px;min-height:68px;padding:8px;border:1px solid #dbe3ef;border-radius:8px;color:#334155;background:#fff;font-size:10px;font-weight:750;text-align:center}.cms-builder-widget-list button:hover{border-color:#5b5ce2;color:#4338ca;background:#f5f3ff}.cms-builder-widget-list button i{font-size:16px}
.cms-builder-stage{min-width:0;padding:12px}.cms-builder-stage>header{display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:46px;margin-bottom:12px;padding:7px 10px;border:1px solid #dbe3ef;border-radius:8px;background:#fff}.cms-builder-stage>header>span{color:#64748b;font-size:11px}.cms-builder-devices{display:flex;gap:4px}.cms-builder-devices button{width:32px;height:32px;border:0;border-radius:7px;color:#64748b;background:#f1f5f9}.cms-builder-devices button.active{color:#fff;background:#4f46e5}
.cms-builder-canvas{width:100%;max-width:980px;min-height:570px;margin:0 auto;padding:20px;border:1px solid #d8e0eb;border-radius:8px;background:#fff;box-shadow:0 8px 28px rgba(15,23,42,.08);transition:max-width .2s ease}.cms-live-empty{min-height:520px;display:grid;place-items:center;border:2px dashed #cbd5e1;border-radius:8px;color:#64748b;text-align:center}.cms-live-section{position:relative;border:1px solid transparent;transition:border-color .15s ease,box-shadow .15s ease}.cms-live-section:hover{border-color:#a5b4fc}.cms-live-section.is-selected{border-color:#4f46e5;box-shadow:0 0 0 2px rgba(79,70,229,.13)}.cms-live-section.is-hidden-device{opacity:.35}.cms-live-section img{max-width:100%}.cms-live-children{min-height:70px;padding:10px;border:1px dashed #cbd5e1;border-radius:7px}.cms-live-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.cms-live-child-empty{padding:18px;color:#94a3b8;text-align:center}
.cms-builder-setting-tabs{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid #e6ebf2}.cms-builder-setting-tabs button{padding:11px 5px;border:0;border-bottom:2px solid transparent;color:#64748b;background:#fff;font-size:10px;font-weight:800}.cms-builder-setting-tabs button.active{border-color:#4f46e5;color:#4338ca}.cms-builder-setting-panel{display:none;max-height:565px;overflow:auto;padding:14px}.cms-builder-setting-panel.active{display:grid;gap:11px}.cms-builder-setting-panel label,.cms-builder-setting-panel [data-cms-schema-controls] label{display:grid;gap:5px;color:#334155;font-size:10px;font-weight:800}.cms-builder-setting-panel [data-cms-schema-controls]{display:grid;gap:11px}.cms-builder-element-actions{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;margin-top:5px}.cms-builder-element-actions button{height:34px;border:1px solid #dbe3ef;border-radius:7px;color:#475569;background:#fff}.cms-builder-element-actions button.is-danger{color:#dc2626;border-color:#fecaca;background:#fff1f2}.cms-widget-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.cms-widget-actions form{margin:0}
[data-dashboard-theme="dark"] .cms-visual-builder{border-color:#334155;background:#0f172a}[data-dashboard-theme="dark"] .cms-builder-palette,[data-dashboard-theme="dark"] .cms-builder-inspector,[data-dashboard-theme="dark"] .cms-builder-stage>header,[data-dashboard-theme="dark"] .cms-builder-canvas{border-color:#334155;color:#e2e8f0;background:#111827}[data-dashboard-theme="dark"] .cms-builder-widget-list button,[data-dashboard-theme="dark"] .cms-builder-panel-title button,[data-dashboard-theme="dark"] .cms-builder-setting-tabs button{border-color:#334155;color:#cbd5e1;background:#172033}
@media(max-width:1199px){.cms-visual-builder{grid-template-columns:210px minmax(360px,1fr) 250px}}
@media(max-width:991px){.cms-visual-builder{grid-template-columns:1fr}.cms-builder-palette,.cms-builder-inspector{border:0;border-bottom:1px solid #dbe3ef}.cms-builder-widget-list{max-height:250px}.cms-builder-widget-list section>div{grid-template-columns:repeat(4,1fr)}.cms-builder-setting-panel{max-height:none}.cms-builder-canvas{min-height:480px}.cms-live-empty{min-height:420px}}
@media(max-width:575px){.cms-builder-widget-list section>div{grid-template-columns:repeat(2,1fr)}.cms-builder-stage{padding:7px}.cms-builder-stage>header{align-items:flex-start;flex-wrap:wrap}.cms-builder-canvas{padding:10px}.cms-live-grid{grid-template-columns:1fr}}

/* Canonical CMS contact page: the visual builder and public page share this layout. */
.cms-contact-hero{background:linear-gradient(135deg,#2864eb,#244ba9)!important;color:#fff}.cms-contact-hero .cms-render-layout{max-width:1120px;margin:0 auto}.cms-contact-hero h2{color:#fff!important;font-size:clamp(38px,5vw,62px)!important;font-weight:950!important}.cms-contact-hero p{max-width:720px;color:#dbeafe!important}.cms-contact-hero .cms-render-breadcrumbs,.cms-contact-hero .cms-render-breadcrumbs a{color:#fff}.cms-contact-body>.cms-render-layout{max-width:1120px;margin:0 auto}.cms-contact-info-grid>.cms-render-layout{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.cms-contact-info-card{border:1px solid #dbe5f5!important;background:#eef4ff!important;box-shadow:0 14px 34px rgba(37,78,160,.08)}.cms-contact-info-card h2{font-size:17px!important}.cms-contact-main-grid>.cms-render-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:20px;align-items:stretch}.cms-contact-map-column,.cms-contact-form-column{height:100%;border:1px solid #e2e8f0!important;background:#fff!important;box-shadow:0 18px 45px rgba(15,23,42,.08)}.cms-contact-map-column>.cms-render-layout,.cms-contact-form-column>.cms-render-layout{height:100%}.cms-contact-form-column .cms-render-form{max-width:none;padding:0;border:0;box-shadow:none;grid-template-columns:repeat(2,minmax(0,1fr))}.cms-contact-form-column .cms-form-honeypot,.cms-contact-form-column .alert,.cms-contact-form-column .cms-form-message,.cms-contact-form-column .cms-field-requirement,.cms-contact-form-column .cms-form-submit,.cms-contact-form-column .visually-hidden{grid-column:1/-1}.cms-live-map-preview{min-height:220px;display:grid;place-items:center;align-content:center;gap:8px;border-radius:8px;color:#2563eb;background:linear-gradient(135deg,#dbeafe,#ecfeff)}.cms-live-map-preview i{font-size:34px}.cms-live-map-preview small{max-width:90%;overflow:hidden;color:#64748b;text-overflow:ellipsis}.cms-live-form-preview{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;text-align:left}.cms-live-form-preview div{display:grid;gap:4px}.cms-live-form-preview .is-wide,.cms-live-form-preview button{grid-column:1/-1}.cms-live-form-preview label{font-size:11px;font-weight:800}.cms-live-form-preview input,.cms-live-form-preview textarea{width:100%;padding:8px;border:1px solid #cbd5e1;border-radius:6px;background:#fff}.cms-live-form-preview button{width:max-content;padding:8px 14px;border:0;border-radius:7px;color:#fff;background:#2563eb}
@media(max-width:767.98px){.cms-contact-info-grid>.cms-render-layout,.cms-contact-main-grid>.cms-render-layout,.cms-contact-form-column .cms-render-form,.cms-live-form-preview{grid-template-columns:1fr}.cms-contact-hero{padding:46px 20px!important}.cms-contact-body{padding:24px 14px!important}}
