:root {
  --bg: #f4f0e8;
  --bg-deep: #d8d1c4;
  --ink: #13212f;
  --ink-soft: #55626e;
  --line: rgba(19, 33, 47, 0.12);
  --line-strong: rgba(19, 33, 47, 0.22);
  --surface: rgba(255, 252, 246, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --brand: #0f766e;
  --brand-dark: #0c4f4a;
  --accent: #ca6b2c;
  --accent-soft: rgba(202, 107, 44, 0.14);
  --shadow: 0 24px 60px rgba(26, 39, 51, 0.12);
  --shadow-strong: 0 36px 90px rgba(26, 39, 51, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-scroll: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 24%),
    radial-gradient(circle at right 12%, rgba(202, 107, 44, 0.1), transparent 20%),
    linear-gradient(180deg, #f7f2ea 0%, #ece5d9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.brand-logo-shell {
  padding: 5px;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
}

.bg-orb-one {
  top: -80px;
  left: -60px;
  width: 340px;
  height: 340px;
  background: var(--theme-secondary-glow);
  transform: translate3d(calc(var(--parallax-x) * -0.9), calc(var(--parallax-y) * -0.7 + var(--parallax-scroll) * -0.16), 0);
  will-change: transform;
}

.bg-orb-two {
  right: -100px;
  top: 180px;
  width: 360px;
  height: 360px;
  background: var(--theme-primary-glow);
  transform: translate3d(calc(var(--parallax-x) * 0.8), calc(var(--parallax-y) * 0.55 + var(--parallax-scroll) * 0.12), 0);
  will-change: transform;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 33, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 33, 47, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 95%);
  opacity: 0.55;
  transform: translate3d(calc(var(--parallax-x) * 0.25), calc(var(--parallax-y) * 0.22 + var(--parallax-scroll) * 0.08), 0);
  will-change: transform;
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.promo-bar {
  border-bottom: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(19, 33, 47, 0.95);
  color: #f5efe5;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  font-size: 0.95rem;
}

.promo-bar strong {
  color: #ffd2af;
}

.promo-bar a {
  font-weight: 700;
}

.top-strip {
  border-bottom: 1px solid var(--line);
}

.top-strip-inner,
.top-strip-copy,
.top-strip-actions,
.nav-shell,
.header-actions,
.hero-actions,
.hero-metrics,
.product-meta,
.catalog-meta-top,
.catalog-bottom,
.slider-actions,
.cta-actions,
.footer-grid,
.dashboard-panels,
.dashboard-head,
.promo-bar-inner,
.subhero-grid,
.split-panel,
.checkout-row,
.order-summary-row,
.cart-header,
.cart-total-row {
  display: flex;
}

.top-strip-inner,
.nav-shell,
.cart-header,
.cart-total-row {
  justify-content: space-between;
  align-items: center;
}

.top-strip-copy,
.top-strip-actions {
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip-inner {
  min-height: 48px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.top-strip select {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 234, 0.78);
  border-bottom: 1px solid rgba(19, 33, 47, 0.08);
}

.inner-header {
  position: relative;
}

.nav-shell {
  min-height: 82px;
  gap: 20px;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong,
.brand-footer strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.brand-copy small,
.brand-footer small {
  color: var(--ink-soft);
}

.site-nav {
  align-items: center;
  gap: 18px;
}

.site-nav > a,
.nav-mega-head > a {
  position: relative;
  padding: 10px 0;
  font-weight: 700;
}

.site-nav > a::after,
.nav-mega-head > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-current::after,
.nav-mega-head > a:hover::after,
.nav-mega-head > a.is-current::after {
  transform: scaleX(1);
}

.nav-mega {
  position: relative;
}

.nav-mega-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(19, 33, 47, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mega-toggle span,
.mega-toggle span::before {
  display: block;
  width: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  content: "";
}

.mega-toggle span::before {
  transform: rotate(90deg);
}

.nav-mega.is-open .mega-toggle,
.nav-mega:hover .mega-toggle,
.nav-mega:focus-within .mega-toggle {
  background: rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.2);
}

.nav-mega.is-open .mega-toggle {
  transform: rotate(45deg);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(920px, calc(100vw - 48px));
  transform: translateX(-34%);
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(19, 33, 47, 0.1);
  background:
    radial-gradient(circle at top right, rgba(202, 107, 44, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(248, 241, 231, 0.98));
  box-shadow: 0 30px 80px rgba(20, 35, 50, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: 0 10px;
  transition: opacity 180ms ease, visibility 180ms ease, translate 180ms ease;
}

.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel,
.nav-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  translate: 0 0;
}

.mega-panel-grid,
.mega-category-grid,
.hero-quick-grid,
.hero-spotlight-grid,
.software-tabs-grid {
  display: grid;
}

.mega-panel-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.mega-panel-main,
.mega-side-card,
.hero-spotlight-card,
.software-tab-card,
.catalog-spotlight {
  border-radius: 24px;
}

.mega-panel-main {
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.mega-panel-intro h3 {
  margin: 6px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.mega-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mega-category-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(19, 33, 47, 0.08);
  display: grid;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mega-category-card:hover,
.hero-spotlight-card:hover,
.software-tab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 118, 110, 0.18);
}

.mega-index,
.hero-spotlight-index,
.software-tab-index {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--brand);
}

.mega-category-card strong,
.mega-side-card strong,
.hero-quick-card strong,
.hero-spotlight-card strong,
.software-tab-card strong {
  font-family: "Sora", sans-serif;
}

.mega-category-card p,
.mega-side-card p,
.hero-spotlight-card p,
.software-tab-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.mega-cta,
.hero-spotlight-cta {
  color: var(--accent);
  font-weight: 800;
}

.mega-side-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(14, 39, 54, 0.98), rgba(13, 25, 41, 0.98));
  color: #fff8ef;
  display: grid;
  gap: 14px;
}

.mega-side-card .badge {
  width: fit-content;
}

.mega-side-card p {
  color: rgba(255, 248, 239, 0.78);
}

.mega-side-actions {
  display: grid;
  gap: 10px;
}

.hero-quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-quick-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(19, 33, 47, 0.08);
  backdrop-filter: blur(12px);
}

.hero-quick-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-spotlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  grid-column: 1 / -1;
}

.hero-spotlight-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 33, 47, 0.08);
  display: grid;
  gap: 10px;
}

.subhero-premium {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.7), rgba(241, 234, 223, 0.52));
}

.subhero-side-premium {
  display: grid;
  gap: 14px;
}

.subhero-side-meta,
.software-tab-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.software-tabs-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.software-tab-card {
  width: 100%;
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 244, 236, 0.9));
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.software-tab-card.is-active {
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 24px 60px rgba(15, 118, 110, 0.14);
}

.software-tab-footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.filter-panel-premium {
  align-self: start;
}

.catalog-grid-wrap {
  display: grid;
  gap: 18px;
}

.catalog-spotlight {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(202, 107, 44, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.action-link {
  font-weight: 600;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a.is-current,
.action-link:hover {
  color: var(--ink);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 33, 47, 0.08);
  font-weight: 700;
}

.cart-link strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.hero-section-premium {
  position: relative;
}

.hero-section-premium::after {
  content: "";
  position: absolute;
  inset: 32px 0 auto;
  height: 460px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(15, 118, 110, 0.05));
  border-radius: 42px;
  z-index: -1;
}

.hero-section,
.subhero {
  padding: 72px 0 24px;
}

.hero-grid,
.category-grid,
.product-showcase,
.pricing-grid,
.hosting-grid,
.process-grid,
.benefit-grid,
.footer-grid,
.catalog-grid,
.card-grid,
.story-grid,
.stat-grid,
.auth-grid,
.product-detail-grid,
.detail-top,
.tech-grid,
.screens-grid,
.checkout-grid {
  display: grid;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy h1,
.subhero h1,
.section-heading h2,
.cta-box h2,
.detail-copy h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 5.5rem);
}

.hero-copy p,
.section-heading p,
.subhero p,
.accent-copy p,
.cta-box p,
.benefit-card p,
.product-body p,
.catalog-body p,
.testimonial-card p,
.service-card p,
.story-card p,
.auth-card p,
.detail-copy p,
.detail-panel p,
.checkout-panel p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero-inline-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.hero-ribbon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-ribbon span,
.auth-metric-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(19, 33, 47, 0.06);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-inline-search button {
  border: 0;
}

.hero-inline-search input,
.catalog-search,
.auth-form input,
.auth-form textarea,
.auth-form select,
.checkout-panel input,
.checkout-panel textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-metrics {
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-metrics li {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.hero-metrics strong,
.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.dashboard-card,
.floating-card,
.glass-card,
.price-card,
.hosting-card,
.step-card,
.benefit-card,
.testimonial-card,
.service-card,
.catalog-card,
.story-card,
.stat-card,
.auth-card,
.detail-panel,
.checkout-panel,
.cart-item {
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.dashboard-card {
  position: absolute;
  inset: 48px 24px 38px 24px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 242, 235, 0.9)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), transparent 40%);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.dashboard-card-premium {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 237, 228, 0.95)),
    linear-gradient(135deg, rgba(202, 107, 44, 0.12), transparent 45%);
}

.dashboard-head {
  gap: 16px;
  margin-bottom: 30px;
}

.dashboard-head p,
.floating-card p,
.mini-card span,
.status-card p {
  margin: 0;
  color: var(--ink-soft);
}

.badge,
.product-pill,
.price-tag,
.rating-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.badge,
.product-pill,
.price-tag {
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand-dark);
}

.rating-chip {
  background: rgba(202, 107, 44, 0.12);
  color: #8a4a20;
}

.dashboard-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  height: 190px;
}

.dashboard-chart span {
  display: block;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.84), rgba(12, 79, 74, 0.92));
}

.dashboard-chart span:nth-child(1) { height: 42%; }
.dashboard-chart span:nth-child(2) { height: 74%; }
.dashboard-chart span:nth-child(3) { height: 58%; }
.dashboard-chart span:nth-child(4) { height: 88%; }
.dashboard-chart span:nth-child(5) { height: 63%; }
.dashboard-chart span:nth-child(6) { height: 94%; }

.dashboard-panels {
  gap: 14px;
  margin-top: 26px;
}

.dashboard-panels article {
  flex: 1;
  padding: 16px;
  border-radius: 18px;
  background: rgba(19, 33, 47, 0.04);
}

.dashboard-panels strong {
  display: block;
  margin-bottom: 6px;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
}

.status-card {
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 280px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #24b179;
  box-shadow: 0 0 0 10px rgba(36, 177, 121, 0.1);
}

.mini-card {
  left: 0;
  bottom: 0;
  width: 260px;
}

.section {
  padding: 40px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-box h2,
.subhero h1,
.detail-copy h1 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.category-grid,
.benefit-grid,
.process-grid,
.pricing-grid,
.hosting-grid,
.card-grid,
.story-grid,
.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.glass-card,
.price-card,
.hosting-card,
.step-card,
.benefit-card,
.service-card,
.story-card,
.stat-card,
.detail-panel,
.checkout-panel {
  padding: 24px;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(19, 33, 47, 0.06);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.product-showcase,
.catalog-grid,
.tech-grid,
.screens-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card,
.catalog-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.76);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.product-card-premium,
.category-card-premium {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card-premium:hover,
.category-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(26, 39, 51, 0.16);
  border-color: rgba(15, 118, 110, 0.18);
}

.product-media,
.catalog-media,
.hero-image-panel,
.screenshot-block {
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.product-media::before,
.catalog-media::before,
.hero-image-panel::before,
.screenshot-block::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 45%),
    rgba(19, 33, 47, 0.1);
}

.product-media-emerald,
.product-media-coral,
.product-media-blue,
.product-media-amber,
.product-media-slate,
.product-media-plum {
  background-size: cover;
  background-position: center;
}

.product-media-emerald { background: linear-gradient(135deg, #0f766e, #7ad0c6); }
.product-media-coral { background: linear-gradient(135deg, #ca6b2c, #f0b289); }
.product-media-blue { background: linear-gradient(135deg, #22577a, #7cc6fe); }
.product-media-amber { background: linear-gradient(135deg, #996515, #ffd17b); }
.product-media-slate { background: linear-gradient(135deg, #425466, #9db5c7); }
.product-media-plum { background: linear-gradient(135deg, #6d466b, #c7a5cf); }

.product-body,
.catalog-body {
  padding: 22px;
}

.product-body h3,
.catalog-body h3,
.service-card h3,
.benefit-card h3,
.price-card h3,
.hosting-card h3,
.detail-panel h3,
.auth-card h2,
.checkout-panel h2 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.feature-list,
.tabs-nav,
.cart-items,
.footer-grid div {
  padding: 0;
  margin: 0;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.feature-list.compact li {
  line-height: 1.55;
}

.product-meta,
.catalog-bottom {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.catalog-button,
.detail-action {
  position: relative;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(28, 41, 77, 0.08);
}

.catalog-button-cart,
.detail-action-cart {
  background: linear-gradient(135deg, #445cff 0%, #38bdf8 100%);
  color: #fff;
  border-color: rgba(68, 92, 255, 0.2);
}

.catalog-button-detail,
.detail-action-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 255, 0.94));
  color: #21345e;
  border-color: rgba(79, 103, 255, 0.16);
}

.catalog-button-demo,
.detail-action-demo {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(15, 118, 110, 0.05));
  color: #0c5f58;
  border-color: rgba(15, 118, 110, 0.2);
}

.detail-action-admin,
.detail-action-outline {
  background: linear-gradient(135deg, rgba(19, 33, 47, 0.96), rgba(35, 51, 74, 0.96));
  color: #fff;
  border-color: rgba(19, 33, 47, 0.24);
}

.catalog-button:hover,
.detail-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(28, 41, 77, 0.12);
}

.product-meta strong,
.catalog-bottom strong,
.price-card strong,
.hosting-card strong,
.summary-price,
.cart-price {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.accent-section {
  padding: 52px 0;
}

.accent-grid,
.split-panel,
.detail-top,
.checkout-grid {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 26px;
  align-items: start;
}

.pricing-grid,
.hosting-grid {
  margin-top: 12px;
}

.price-card.featured,
.hosting-card.featured {
  background: linear-gradient(180deg, rgba(19, 33, 47, 0.95), rgba(44, 55, 66, 0.96));
  color: #f7f2ea;
}

.price-card.featured p,
.hosting-card.featured p,
.price-card.featured li,
.hosting-card.featured li {
  color: rgba(247, 242, 234, 0.78);
}

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

.process-grid {
  counter-reset: step;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
}

.testimonial-slider {
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 252, 246, 0.76);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.spotlight-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 30px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 239, 229, 0.92));
  box-shadow: var(--shadow);
}

.spotlight-band h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

.spotlight-band p {
  margin: 0;
  max-width: 430px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.testimonial-track {
  position: relative;
  min-height: 160px;
}

.testimonial-card {
  display: none;
  padding: 26px;
}

.testimonial-card.is-active {
  display: block;
}

.slider-actions {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.slider-btn,
.filter-chip,
.tab-btn,
.qty-btn,
.ghost-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.cta-section {
  padding-bottom: 72px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(12, 79, 74, 0.96));
  color: #f7f2ea;
  box-shadow: var(--shadow-strong);
}

.cta-box p,
.cta-box .section-kicker {
  color: rgba(247, 242, 234, 0.85);
}

.cta-box .section-kicker {
  background: rgba(255, 255, 255, 0.14);
}

.site-footer {
  padding: 26px 0 44px;
  border-top: 1px solid rgba(19, 33, 47, 0.08);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.72fr 0.72fr 0.78fr 1fr;
  gap: 24px;
}

.footer-wordmark-panel {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 16px;
}

.footer-wordmark-link {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
}

.footer-wordmark-text {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.1rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: rgba(19, 33, 47, 0.92);
  text-transform: uppercase;
  text-wrap: balance;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--ink-soft);
  line-height: 1.7;
}

.footer-social-panel {
  display: grid;
  gap: 14px;
}

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

.footer-social-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(73, 96, 180, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.68), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92));
  box-shadow: 0 14px 28px rgba(28, 41, 77, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.footer-social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(28, 41, 77, 0.1);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #ffffff;
  flex: 0 0 auto;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social-card.is-instagram .footer-social-icon {
  background: linear-gradient(135deg, #fd1d1d 0%, #e1306c 45%, #fcb045 100%);
}

.footer-social-card.is-x .footer-social-icon {
  background: linear-gradient(135deg, #111827 0%, #334155 100%);
}

.footer-social-card.is-tiktok .footer-social-icon {
  background: linear-gradient(135deg, #111827 0%, #0ea5e9 48%, #ec4899 100%);
}

.footer-social-card.is-youtube .footer-social-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.footer-social-card.is-disabled {
  opacity: 0.7;
  cursor: default;
}

@media (max-width: 780px) {
  .footer-social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-social-card {
    min-height: 56px;
  }
}

.footer-copyright {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(73, 96, 180, 0.08);
}

.footer-copyright p {
  margin: 0;
  color: #607099;
  font-size: 0.88rem;
  text-align: center;
}

.subhero-grid,
.narrow-copy {
  max-width: 900px;
}

.subhero-side,
.filter-panel {
  align-self: stretch;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
}

.filter-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
  height: fit-content;
}

.filter-chip {
  justify-content: flex-start;
}

.filter-chip.is-active,
.tab-btn.is-active,
.ghost-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.catalog-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.catalog-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(19, 33, 47, 0.06);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.auth-grid,
.checkout-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.auth-grid-premium {
  align-items: stretch;
}

.auth-card-premium {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 232, 0.96));
}

.auth-card-hero {
  position: relative;
  overflow: hidden;
}

.auth-card-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.16), transparent 66%);
}

.auth-metric-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-form,
.checkout-form,
.coupon-form {
  display: grid;
  gap: 14px;
}

.auth-form textarea,
.checkout-panel textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

.auth-note,
.empty-message {
  color: var(--ink-soft);
  margin: 0;
}

.product-detail-grid {
  gap: 24px;
}

.detail-top {
  align-items: stretch;
}

.hero-image-panel {
  border-radius: 30px;
  background: linear-gradient(135deg, #0f766e, #2f857c 50%, #d7ece9 100%);
  box-shadow: var(--shadow-strong);
}

.catalog-media.has-image,
.hero-image-panel.has-image {
  background-image:
    linear-gradient(180deg, rgba(20, 28, 43, 0.1), rgba(20, 28, 43, 0.18)),
    var(--product-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-panel::after {
  content: "LIVE DEMO";
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f7f2ea;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.detail-copy {
  padding: 10px 0;
}

.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.detail-facts,
.tech-list {
  display: grid;
  gap: 12px;
}

.detail-facts article,
.tech-list article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-price {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  margin: 0 0 16px;
}

.tabs-nav {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.screens-grid {
  margin-top: 18px;
}

.screenshot-block {
  border-radius: 24px;
}

.screenshot-block.olive { background: linear-gradient(135deg, #335c4e, #93c1b0); }
.screenshot-block.copper { background: linear-gradient(135deg, #87553b, #ebb588); }
.screenshot-block.navy { background: linear-gradient(135deg, #24374f, #8cb6de); }

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

.faq-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(19, 33, 47, 0.04);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.cart-items {
  list-style: none;
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px;
}

.cart-item-main {
  display: grid;
  gap: 10px;
}

.qty-wrap,
.checkout-row,
.coupon-form-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-wrap {
  align-items: center;
}

.qty-number {
  min-width: 42px;
  text-align: center;
  font-weight: 800;
}

.cart-item-side {
  display: grid;
  align-content: space-between;
  justify-items: end;
}

.summary-box {
  display: grid;
  gap: 14px;
}

.order-summary-row,
.cart-total-row {
  gap: 12px;
}

.order-summary-row {
  justify-content: space-between;
  color: var(--ink-soft);
}

.order-summary-row.total,
.cart-total-row {
  color: var(--ink);
  font-weight: 800;
}

.checkout-panel {
  display: grid;
  gap: 18px;
}

.muted-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 260px;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(19, 33, 47, 0.96);
  color: #f7f2ea;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toast strong {
  display: block;
  margin-bottom: 4px;
}

.panel-hero {
  padding: 72px 0 18px;
}

.panel-hero-grid,
.panel-layout,
.panel-cards,
.ticket-list {
  display: grid;
}

.panel-hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.panel-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}

.panel-sidebar {
  display: grid;
  gap: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.panel-tab {
  justify-content: flex-start;
}

.panel-section {
  display: none;
}

.panel-section.is-active {
  display: block;
}

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

.ticket-list {
  gap: 14px;
  margin-top: 18px;
}

.ticket-card,
.license-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow);
}

.ticket-card strong,
.license-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.panel-banner {
  display: grid;
  gap: 10px;
}

.panel-banner .badge {
  width: fit-content;
}

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

.profile-avatar-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.16), rgba(87, 197, 255, 0.18));
  color: #2040c5;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(39, 67, 151, 0.12);
}

.profile-avatar-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip-compact {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.sales-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
}

.trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.74);
  box-shadow: var(--shadow);
}

.trust-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19, 33, 47, 0.06);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.outcome-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.estimator-card {
  display: grid;
  gap: 22px;
}

.estimator-list {
  display: grid;
  gap: 12px;
}

.estimator-option {
  justify-content: flex-start;
}

.estimator-summary {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(19, 33, 47, 0.96), rgba(39, 56, 72, 0.96));
  color: #f7f2ea;
}

.estimator-summary strong {
  display: block;
  margin: 8px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.estimator-summary p {
  color: rgba(247, 242, 234, 0.78);
  margin: 0;
}

.ops-layout,
.ops-metrics,
.ops-boards,
.ops-table,
.ops-activity {
  display: grid;
}

.ops-layout {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.ops-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ops-boards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ops-column {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow);
}

.ops-column h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
}

.deal-card,
.activity-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(19, 33, 47, 0.05);
  margin-bottom: 12px;
}

.deal-card strong,
.activity-card strong,
.ops-kpi strong {
  display: block;
  margin-bottom: 6px;
}

.ops-kpi {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow);
}

.ops-kpi strong {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
}

.ops-table {
  gap: 12px;
}

.ops-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.ops-row strong {
  font-size: 0.95rem;
}

.button[disabled],
.ghost-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.admin-shell {
  align-items: start;
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-alert {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow);
}

.admin-alert-success {
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand-dark);
}

.admin-alert-error {
  background: rgba(202, 107, 44, 0.14);
  color: #8a4a20;
}

.admin-grid,
.admin-split {
  display: grid;
  gap: 18px;
}

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

.admin-split {
  grid-template-columns: 1.05fr 0.95fr;
}

.admin-card {
  display: grid;
  gap: 16px;
}

.admin-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(19, 33, 47, 0.04);
  border: 1px solid rgba(19, 33, 47, 0.06);
}

.admin-row strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.admin-row p {
  margin: 0;
  color: var(--ink-soft);
}

.admin-row-actions,
.admin-inline-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-inline-form select,
.code-textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  border-radius: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
}

.code-textarea {
  min-height: 280px;
  resize: vertical;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92rem;
  line-height: 1.6;
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 600;
}

.admin-product-form .admin-field {
  display: grid;
  gap: 8px;
  flex: 1 1 0;
}

.admin-field-full {
  min-width: 0;
}

.admin-field-hint {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.admin-product-image-preview {
  display: grid;
  gap: 10px;
  min-width: 180px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(79, 103, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 255, 0.92));
  box-shadow: 0 14px 28px rgba(28, 41, 77, 0.06);
}

.admin-product-image-preview span {
  color: #34508f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-product-image-preview img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(73, 96, 180, 0.1);
}

.danger-btn {
  color: #9a3218;
}

.agency-note {
  margin-top: 18px;
}

.admin-login-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
    radial-gradient(circle at right 18%, rgba(202, 107, 44, 0.14), transparent 24%),
    linear-gradient(180deg, #f5efe7 0%, #e7dece 100%);
}

.admin-auth-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 16px;
}

.admin-auth-card {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.admin-auth-copy {
  padding: 14px 10px 14px 6px;
}

.admin-auth-copy h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.admin-auth-copy p {
  max-width: 620px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-grid,
  .panel-hero-grid,
  .accent-grid,
  .split-panel,
  .detail-top,
  .catalog-layout,
  .panel-layout,
  .ops-layout,
  .checkout-grid,
  .auth-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .panel-cards,
  .ops-metrics,
  .ops-boards,
  .outcome-grid,
  .pricing-grid,
  .hosting-grid,
  .process-grid,
  .benefit-grid,
  .product-showcase,
  .catalog-grid,
  .card-grid,
  .story-grid,
  .stat-grid,
  .tech-grid,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    position: static;
  }

  .panel-sidebar {
    position: static;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-grid,
  .admin-split,
  .admin-auth-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .promo-bar-inner,
  .top-strip-inner,
  .nav-shell,
  .hero-inline-search,
  .hero-actions,
  .hero-ribbon,
  .sales-rail,
  .product-meta,
  .catalog-bottom,
  .slider-actions,
  .spotlight-band,
  .cart-header,
  .checkout-row,
  .coupon-form-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open,
  .header-actions.is-open {
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .nav-shell {
    align-items: flex-start;
    padding: 18px 0;
  }

  .hero-section,
  .subhero {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .category-grid,
  .panel-cards,
  .proof-grid,
  .ops-metrics,
  .ops-boards,
  .outcome-grid,
  .pricing-grid,
  .hosting-grid,
  .process-grid,
  .benefit-grid,
  .product-showcase,
  .catalog-grid,
  .card-grid,
  .story-grid,
  .stat-grid,
  .tech-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    position: relative;
    inset: auto;
  }

  .floating-card {
    position: relative;
    width: 100%;
    margin-top: 18px;
  }

  .hero-visual {
    min-height: auto;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .ops-row {
    grid-template-columns: 1fr;
  }

  .cart-item-side {
    justify-items: start;
  }

  .admin-row,
  .admin-inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-quick-grid,
  .hero-spotlight-grid,
  .software-tabs-grid,
  .mega-category-grid,
  .mega-panel-grid {
    grid-template-columns: 1fr;
  }

  .catalog-spotlight {
    flex-direction: column;
    align-items: flex-start;
  }
}

.admin-area-body .page-shell {
  min-height: 100vh;
}

.admin-topbar {
  backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at left center, rgba(84, 104, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(12, 20, 38, 0.94), rgba(18, 28, 49, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(6, 14, 30, 0.18);
}

.admin-topbar-shell {
  min-height: 92px;
  gap: 18px;
}

.admin-topbar .brand {
  gap: 14px;
}

.admin-topbar .brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 21px;
  box-shadow: 0 18px 34px rgba(51, 89, 217, 0.24);
}

.admin-topbar .brand-copy strong {
  color: #f3f7ff;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.admin-topbar .brand-copy small {
  color: rgba(209, 222, 255, 0.62);
  font-size: 0.94rem;
}

.admin-topbar .header-actions {
  align-items: center;
  gap: 12px;
}

.admin-topbar-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(110, 132, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(230, 238, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar .ghost-btn {
  min-height: 42px;
  padding: 0 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 241, 255, 0.92));
  color: #203457;
  box-shadow: 0 14px 30px rgba(7, 16, 35, 0.18);
}

.admin-topbar .action-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 245, 255, 0.84);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-topbar .action-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.admin-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px 0 72px;
}

.admin-login-hint {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .admin-auth-layout {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .nav-mega {
    width: 100%;
  }

  .nav-mega-head {
    justify-content: space-between;
  }

  .mega-panel {
    position: static;
    width: 100%;
    margin-top: 12px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    translate: 0 0;
    display: none;
  }

  .nav-mega.is-open .mega-panel {
    display: block;
  }

  .software-tabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.top-strip-premium {
  background: linear-gradient(180deg, var(--theme-topbar) 0%, var(--theme-topbar-soft) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip-premium .top-strip-inner {
  min-height: 52px;
  color: rgba(230, 238, 255, 0.8);
}

.top-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip-icon {
  color: var(--accent);
  font-size: 1rem;
}

.top-strip-premium .top-strip-actions select {
  color: #f3f6ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.top-auth-link {
  color: #e9efff;
  font-weight: 700;
}

.top-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 32px var(--theme-primary-glow);
}

.site-header-premium {
  background: linear-gradient(180deg, var(--theme-topbar) 0%, var(--theme-topbar-soft) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(8, 14, 26, 0.2);
}

.nav-shell-premium {
  min-height: 92px;
  gap: 28px;
}

.brand-premium .brand-copy strong,
.brand-premium .brand-copy small {
  color: #f4f7ff;
}

.brand-premium .brand-copy small {
  color: rgba(228, 236, 255, 0.72);
}

.brand-mark-premium {
  background: linear-gradient(135deg, var(--theme-topbar-soft) 0%, var(--brand) 100%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px var(--theme-secondary-glow);
}

.site-nav-premium {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: auto;
}

.site-nav-premium > a,
.site-nav-premium .nav-mega-head > a {
  color: rgba(228, 236, 255, 0.78);
  padding: 28px 6px;
  font-weight: 700;
}

.site-nav-premium > a::after,
.site-nav-premium .nav-mega-head > a::after {
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 100%);
}

.site-nav-premium > a:hover,
.site-nav-premium > a.is-current,
.site-nav-premium .nav-mega-head > a:hover,
.site-nav-premium .nav-mega-head > a.is-current {
  color: #ffffff;
}

.site-nav-premium .nav-mega {
  position: static;
}

.site-nav-premium .nav-mega-head {
  align-items: center;
  gap: 8px;
}

.site-nav-premium .mega-toggle {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
}

.site-nav-premium .mega-toggle span,
.site-nav-premium .mega-toggle span::before {
  background: rgba(228, 236, 255, 0.82);
}

.mega-panel-premium {
  top: calc(100% - 2px);
  left: 50%;
  width: min(1050px, calc(100vw - 56px));
  transform: translateX(-50%);
  padding: 26px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, var(--theme-primary-glow), transparent 26%),
    linear-gradient(180deg, var(--theme-topbar-soft) 0%, var(--theme-topbar) 100%);
  box-shadow: 0 34px 70px rgba(10, 15, 28, 0.35);
}

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

.mega-panel-header .section-kicker {
  color: rgba(184, 198, 255, 0.9);
}

.mega-panel-header h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  line-height: 1.25;
}

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

.mega-menu-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mega-menu-card:hover {
  transform: translateY(-4px);
  background: var(--theme-primary-glow);
  border-color: rgba(255, 255, 255, 0.16);
}

.mega-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--theme-primary-glow), var(--theme-secondary-glow));
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.mega-menu-copy {
  display: grid;
  gap: 6px;
}

.mega-menu-copy strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
}

.mega-menu-copy small {
  color: rgba(228, 236, 255, 0.62);
  font-size: 0.92rem;
}

.header-actions-premium {
  gap: 12px;
}

.header-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
  font-size: 1.15rem;
  transition: background 180ms ease, transform 180ms ease;
}

.header-tool:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.cart-link-premium {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
}

.cart-link-premium strong {
  background: #ff5a52;
  color: #fff;
}

.software-tabs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.software-tab-card {
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(22, 31, 48, 0.08);
  background:
    radial-gradient(circle at top right, rgba(94, 106, 255, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 233, 0.94));
  box-shadow: 0 18px 46px rgba(20, 28, 44, 0.1);
}

.software-tab-card.is-active {
  background:
    radial-gradient(circle at top right, rgba(94, 106, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 238, 255, 0.98));
  border-color: rgba(85, 98, 255, 0.24);
}

.section-tight {
  padding-top: 26px;
}

.contact-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.about-intro-card,
.about-capability-card,
.about-cta-band,
.about-experience-panel {
  position: relative;
  overflow: hidden;
}

.about-intro-card,
.about-cta-band {
  padding: 34px;
}

.about-intro-card::before,
.about-experience-panel::before,
.about-capability-card::before,
.about-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(93, 126, 255, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(31, 174, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.about-intro-card > *,
.about-experience-panel > *,
.about-capability-card > *,
.about-cta-band > * {
  position: relative;
  z-index: 1;
}

.about-intro-card {
  display: grid;
  gap: 18px;
}

.about-intro-card h2,
.about-cta-band h2,
.about-capability-card h3 {
  margin: 0;
  color: #101a34;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.about-intro-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
}

.about-intro-card p,
.about-capability-card p,
.about-experience-panel p,
.about-cta-band p {
  margin: 0;
  color: #5a678a;
  line-height: 1.78;
}

.about-experience-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 32px 30px;
  border: 1px solid rgba(58, 77, 144, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(12, 24, 56, 0.96), rgba(34, 52, 116, 0.9)),
    radial-gradient(circle at top right, rgba(77, 120, 255, 0.25), transparent 28%);
  box-shadow: 0 26px 64px rgba(17, 30, 72, 0.22);
  color: #ffffff;
}

.about-experience-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-experience-panel strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-experience-panel > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  font-weight: 700;
}

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

.about-experience-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.about-experience-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8bc5ff, #7c67ff);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

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

.about-capability-card {
  display: grid;
  gap: 12px;
  padding: 28px 24px;
}

.about-capability-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(93, 112, 255, 0.15), rgba(49, 182, 255, 0.18));
  color: #3457ef;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.about-capability-card h3 {
  font-size: 1.34rem;
}

.about-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.story-grid > .about-cta-band {
  grid-column: 1 / -1;
}

.about-cta-band > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.about-cta-band > p {
  min-width: 0;
}

.about-cta-band h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
  line-height: 1.12;
  margin-top: 8px;
}

.contact-side-stack {
  display: grid;
  gap: 24px;
}

.contact-premium-card {
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(54, 75, 138, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96)),
    radial-gradient(circle at top left, rgba(92, 110, 255, 0.08), transparent 34%);
  box-shadow: 0 26px 70px rgba(22, 36, 74, 0.12);
}

.contact-card-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.contact-card-head h3 {
  margin: 0;
  color: #101a34;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  letter-spacing: -0.04em;
}

.contact-card-head p,
.contact-info-item p {
  margin: 0;
  color: #5b6789;
  line-height: 1.7;
}

.contact-premium-form {
  display: grid;
  gap: 24px;
}

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

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field span {
  color: #384766;
  font-size: 1rem;
  font-weight: 700;
}

.contact-field em {
  color: #ff5a52;
  font-style: normal;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(95, 119, 187, 0.16);
  border-radius: 18px;
  padding: 0 18px;
  background: #ffffff;
  color: #12203a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-field textarea {
  min-height: 168px;
  padding: 18px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8b96b4;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #6941ff 0%, #3c67ff 42%, #17a8f2 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 20px 38px rgba(77, 99, 255, 0.28);
}

.contact-submit-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.contact-submit-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-list {
  display: grid;
  gap: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 8px;
  color: #111b37;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.contact-info-item a {
  color: #3458ef;
  font-weight: 700;
}

.contact-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(92, 106, 255, 0.12), rgba(121, 133, 255, 0.18));
  color: #3f54ed;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-icon-box svg,
.social-link-chip svg {
  width: 26px;
  height: 26px;
}

.contact-social-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(31, 48, 110, 0.16);
}

.social-facebook {
  background: linear-gradient(135deg, #4578ff, #3250d5);
}

.social-x {
  background: linear-gradient(135deg, #2ea2ff, #1d8ad8);
}

.social-instagram {
  background: linear-gradient(135deg, #ff3991, #c7287b);
}

.social-linkedin {
  background: linear-gradient(135deg, #3158f2, #2842be);
}

.sales-categories-section {
  padding-top: 34px;
}

.sales-categories-shell {
  padding: 34px 34px 28px;
  border-radius: 34px;
  border: 1px solid rgba(74, 96, 180, 0.1);
  background:
    radial-gradient(circle at top left, rgba(91, 109, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 255, 0.92));
  box-shadow: 0 20px 46px rgba(27, 40, 78, 0.06);
}

.sales-categories-head {
  max-width: 680px;
  margin: 0 auto 26px;
  text-align: center;
}

.sales-categories-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.sales-categories-head h2 span {
  color: #4156e4;
}

.sales-categories-head p {
  max-width: 540px;
  margin: 12px auto 0;
  color: #5e7098;
  font-size: 0.98rem;
  line-height: 1.7;
}

.sales-kicker {
  padding: 10px 18px;
  background: linear-gradient(180deg, rgba(126, 105, 255, 0.14), rgba(107, 123, 255, 0.12));
  color: #4256d6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

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

.sales-category-card {
  min-width: 0;
}

.sales-category-link {
  --category-surface-a: rgba(117, 124, 255, 0.08);
  --category-surface-b: rgba(255, 255, 255, 0.98);
  --category-border: rgba(76, 101, 185, 0.14);
  --category-accent: #4555db;
  --category-icon-bg: linear-gradient(180deg, rgba(128, 111, 255, 0.11), rgba(130, 147, 255, 0.16));
  --category-icon-color: #4555db;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 186px;
  padding: 24px 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--category-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--category-surface-b)),
    radial-gradient(circle at top left, var(--category-surface-a), transparent 36%);
  text-align: center;
  box-shadow: 0 14px 30px rgba(28, 41, 77, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.sales-category-link:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--category-accent) 34%, #ffffff);
  box-shadow: 0 18px 34px rgba(46, 61, 117, 0.1);
}

.sales-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--category-icon-bg);
  color: var(--category-icon-color);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sales-category-icon svg {
  width: 24px;
  height: 24px;
}

.sales-category-link::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--category-accent), color-mix(in srgb, var(--category-accent) 54%, #ffffff));
  opacity: 0.95;
}

.sales-category-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--category-accent) 11%, #ffffff);
  color: color-mix(in srgb, var(--category-accent) 82%, #132240);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sales-category-link h3 {
  margin: 0;
  color: #121c37;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  line-height: 1.32;
}

.sales-category-link p {
  margin: 0;
  color: #607099;
  line-height: 1.55;
  font-size: 0.85rem;
  max-width: 188px;
}

.catalog-empty-state {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 28px 30px;
  text-align: center;
}

.catalog-empty-state strong {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  color: #162243;
}

.catalog-empty-state p {
  margin: 0;
  color: #607099;
}

@media (max-width: 1080px) {
  .about-intro-grid,
  .about-cta-band {
    grid-template-columns: 1fr;
  }

  .about-capability-grid {
    grid-template-columns: 1fr;
  }

  .contact-premium-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .about-intro-card,
  .about-experience-panel,
  .about-capability-card,
  .about-cta-band {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .about-cta-band {
    gap: 16px;
  }

  .about-cta-band h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
    line-height: 1.08;
  }

  .contact-premium-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-info-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .contact-icon-box,
  .social-link-chip {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .sales-categories-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sales-categories-shell {
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .sales-category-link {
    min-height: 164px;
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .sales-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .sales-category-link h3 {
    font-size: 0.95rem;
  }

  .sales-category-link p {
    font-size: 0.86rem;
  }
}

.software-tab-card strong {
  font-size: 1.05rem;
}

.software-tab-footer span:last-child {
  color: #4d63ff;
  font-weight: 800;
}

.catalog-spotlight {
  background:
    radial-gradient(circle at top right, rgba(84, 104, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(25, 34, 55, 0.96), rgba(33, 44, 68, 0.96));
  color: #f5f7ff;
}

.catalog-spotlight h2,
.catalog-spotlight .section-kicker {
  color: inherit;
}

.catalog-spotlight .button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .top-strip-premium .top-strip-inner,
  .top-strip-premium .top-strip-copy,
  .top-strip-premium .top-strip-actions {
    gap: 12px;
  }

  .nav-shell-premium {
    align-items: flex-start;
  }

  .site-nav-premium {
    margin: 0;
    width: 100%;
  }

  .mega-panel-premium {
    width: 100%;
    padding: 18px;
  }

  .mega-menu-grid,
  .software-tabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .top-strip-premium .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .site-nav-premium > a,
  .site-nav-premium .nav-mega-head > a {
    padding: 12px 0;
  }

  .mega-panel-premium {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mega.is-open .mega-panel-premium {
    display: block;
  }

  .mega-panel-header,
  .mega-menu-grid,
  .software-tabs-grid {
    grid-template-columns: 1fr;
  }

  .mega-panel-header {
    display: grid;
  }
}

/* Final premium header overrides */
.site-header-premium .nav-shell-premium {
  position: relative;
}

.site-header-premium .site-nav-premium {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.site-header-premium .site-nav-premium > a,
.site-header-premium .site-nav-premium .nav-mega-head > a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-header-premium .nav-mega {
  position: relative !important;
  width: auto !important;
}

.site-header-premium .mega-panel-premium {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(940px, calc(100vw - 64px)) !important;
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 30;
}

.site-header-premium .nav-mega:hover > .mega-panel-premium,
.site-header-premium .nav-mega:focus-within > .mega-panel-premium,
.site-header-premium .nav-mega.is-open > .mega-panel-premium {
  display: block !important;
}

.site-header-premium .mega-panel-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.site-header-premium .mega-menu-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.site-header-premium .mega-menu-card {
  display: flex !important;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.site-header-premium .mega-menu-copy {
  display: grid !important;
}

.site-header-premium .mega-menu-copy strong,
.site-header-premium .mega-menu-copy small {
  display: block;
}

.site-header-premium .top-strip-icon {
  min-width: 36px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--theme-primary-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(214, 226, 255, 0.94);
  font-size: 0.7rem;
  font-weight: 800;
}

.site-header-premium .header-tool {
  min-width: 52px;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .site-header-premium .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header-premium .site-nav-premium {
    display: none !important;
  }

  .site-header-premium .site-nav-premium.is-open {
    display: grid !important;
    justify-content: stretch;
    gap: 10px;
  }

  .site-header-premium .site-nav-premium.is-open > a,
  .site-header-premium .site-nav-premium.is-open .nav-mega-head {
    width: 100%;
  }

  .site-header-premium .mega-panel-premium {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 10px;
  }

  .site-header-premium .mega-panel-header {
    display: grid !important;
    gap: 14px;
  }

  .site-header-premium .mega-menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Stable premium navigation refresh */
.site-header-premium {
  background: linear-gradient(180deg, var(--theme-topbar) 0%, var(--theme-topbar-soft) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(7, 11, 20, 0.24);
}

.site-header-premium .nav-shell-premium {
  min-height: 92px;
  gap: 28px;
}

.site-header-premium .premium-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  margin: 0;
}

.site-header-premium .premium-nav > a,
.site-header-premium .software-trigger > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 92px;
  color: rgba(232, 238, 255, 0.76);
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header-premium .premium-nav > a::after,
.site-header-premium .software-trigger > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-header-premium .premium-nav > a:hover,
.site-header-premium .premium-nav > a.is-current,
.site-header-premium .software-trigger > a:hover,
.site-header-premium .software-trigger > a.is-current,
.site-header-premium .software-dropdown.is-open .software-trigger > a {
  color: #ffffff;
}

.site-header-premium .premium-nav > a:hover::after,
.site-header-premium .premium-nav > a.is-current::after,
.site-header-premium .software-trigger > a:hover::after,
.site-header-premium .software-trigger > a.is-current::after,
.site-header-premium .software-dropdown.is-open .software-trigger > a::after {
  transform: scaleX(1);
}

.site-header-premium .software-dropdown {
  position: relative !important;
}

.site-header-premium .software-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header-premium .software-trigger .mega-toggle {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-header-premium .software-trigger .mega-toggle span,
.site-header-premium .software-trigger .mega-toggle span::before {
  width: 8px;
  height: 8px;
  background: transparent;
  border-right: 2px solid rgba(232, 238, 255, 0.86);
  border-bottom: 2px solid rgba(232, 238, 255, 0.86);
  border-radius: 1px;
  content: "";
}

.site-header-premium .software-trigger .mega-toggle span {
  transform: rotate(45deg) translateY(-1px);
}

.site-header-premium .software-trigger .mega-toggle span::before {
  display: none;
}

.site-header-premium .software-dropdown.is-open .mega-toggle span {
  transform: rotate(-135deg) translateX(-1px);
}

.site-header-premium .software-mega {
  position: absolute !important;
  top: calc(100% - 4px) !important;
  left: 50% !important;
  width: min(980px, calc(100vw - 48px)) !important;
  padding: 28px 30px !important;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, var(--theme-primary-glow), transparent 22%),
    radial-gradient(circle at bottom right, var(--theme-secondary-glow), transparent 24%),
    linear-gradient(180deg, var(--theme-topbar-soft) 0%, var(--theme-topbar) 100%);
  box-shadow: 0 30px 70px rgba(7, 12, 22, 0.42);
  transform: translateX(-50%) !important;
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 40;
}

.site-header-premium .software-dropdown:hover > .software-mega,
.site-header-premium .software-dropdown:focus-within > .software-mega,
.site-header-premium .software-dropdown.is-open > .software-mega,
.site-header-premium .corporate-dropdown:hover > .corporate-mega,
.site-header-premium .corporate-dropdown:focus-within > .corporate-mega,
.site-header-premium .corporate-dropdown.is-open > .corporate-mega {
  display: block !important;
}

.site-header-premium .software-mega-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.site-header-premium .software-mega-header .section-kicker {
  color: #90a2ff;
}

.site-header-premium .software-mega-header h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.28;
}

.site-header-premium .mega-panel .button-secondary {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  border-color: rgba(129, 154, 255, 0.2);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(92, 107, 255, 0.96), rgba(54, 177, 255, 0.92));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(36, 63, 156, 0.24);
}

.site-header-premium .mega-panel .button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(36, 63, 156, 0.3);
}

.site-header-premium .software-mega-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.site-header-premium .software-link-card {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 12px 13px;
  text-align: left;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header-premium .software-link-card:hover {
  transform: translateY(-4px);
  background: var(--theme-primary-glow);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header-premium .software-link-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--theme-primary-glow), var(--theme-secondary-glow));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header-premium .software-link-icon::before,
.site-header-premium .software-link-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
}

.site-header-premium .software-icon-stack::before {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  top: 16px;
}

.site-header-premium .software-icon-stack::after {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  top: 28px;
  box-shadow: 0 -6px 0 rgba(255, 255, 255, 0.92);
}

.site-header-premium .software-icon-grid::before {
  width: 6px;
  height: 6px;
  top: 15px;
  left: 15px;
  box-shadow: 0 10px 0 rgba(255, 255, 255, 0.92), 10px 0 0 rgba(255, 255, 255, 0.92), 10px 10px 0 rgba(255, 255, 255, 0.92);
}

.site-header-premium .software-icon-grid::after {
  display: none;
}

.site-header-premium .software-icon-link::before,
.site-header-premium .software-icon-link::after {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  border-radius: 999px;
  top: 17px;
}

.site-header-premium .software-icon-link::before {
  left: 12px;
}

.site-header-premium .software-icon-link::after {
  right: 12px;
}

.site-header-premium .software-icon-service::before {
  width: 20px;
  height: 10px;
  border-radius: 10px 10px 6px 6px;
  bottom: 16px;
}

.site-header-premium .software-icon-service::after {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  top: 16px;
}

.site-header-premium .software-icon-glow::before {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  opacity: 0.9;
}

.site-header-premium .software-icon-glow::after {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  box-shadow: -10px 6px 0 rgba(255, 255, 255, 0.88), 10px 4px 0 rgba(255, 255, 255, 0.88);
}

.site-header-premium .software-icon-team::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  top: 15px;
  left: 12px;
  box-shadow: 12px 0 0 rgba(255, 255, 255, 0.92);
}

.site-header-premium .software-icon-team::after {
  width: 24px;
  height: 8px;
  border-radius: 999px 999px 6px 6px;
  bottom: 13px;
}

.site-header-premium .software-icon-brief::before {
  width: 22px;
  height: 14px;
  border-radius: 5px;
  bottom: 14px;
}

.site-header-premium .software-icon-brief::after {
  width: 12px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  top: 14px;
}

.site-header-premium .software-icon-host::before {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  top: 16px;
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.92), 0 16px 0 rgba(255, 255, 255, 0.92);
}

.site-header-premium .software-icon-host::after {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  right: 12px;
  top: 16px;
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.92), 0 16px 0 rgba(255, 255, 255, 0.92);
}

.site-header-premium .corporate-mega {
  width: min(720px, calc(100vw - 48px)) !important;
}

.site-header-premium .corporate-mega-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-header-premium .corporate-link-card {
  min-height: 72px;
}

.site-header-premium .corporate-link-icon {
  background: linear-gradient(135deg, var(--theme-primary-glow), var(--theme-secondary-glow));
}

.site-header-premium .corporate-icon-story::before {
  width: 18px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  border-radius: 4px;
}

.site-header-premium .corporate-icon-story::after {
  width: 2px;
  height: 18px;
  left: 24px;
  transform: rotate(-18deg);
  transform-origin: center;
}

.site-header-premium .corporate-icon-service::before {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  transform: rotate(45deg);
}

.site-header-premium .corporate-icon-service::after {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  transform: rotate(-45deg);
}

.site-header-premium .corporate-icon-briefing::before {
  width: 22px;
  height: 16px;
  border-radius: 5px;
  bottom: 13px;
}

.site-header-premium .corporate-icon-briefing::after {
  width: 10px;
  height: 4px;
  top: 14px;
  border-radius: 999px 999px 0 0;
}

.site-header-premium .corporate-icon-panel::before {
  width: 22px;
  height: 16px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: transparent;
}

.site-header-premium .corporate-icon-panel::after {
  width: 14px;
  height: 2px;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.92), 0 -6px 0 rgba(255, 255, 255, 0.92);
}

.site-header-premium .software-link-copy {
  display: grid !important;
  gap: 3px;
}

.site-header-premium .software-link-copy strong,
.site-header-premium .software-link-copy small {
  display: block;
}

.site-header-premium .software-link-copy strong {
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.12;
}

.site-header-premium .software-link-copy small {
  color: rgba(232, 238, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.18;
}

.site-header-premium .header-actions-premium {
  gap: 10px;
}

.site-header-premium .header-tool,
.site-header-premium .cart-link-premium {
  min-height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
}

.site-header-premium .header-tool {
  min-width: 58px;
  padding: 0 16px;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-header-premium .cart-link-premium {
  padding: 0 18px;
}

.site-header-premium .cart-link-premium strong {
  background: #ff5b51;
  color: #ffffff;
}

.software-tabs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.software-tab-card {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(22, 31, 48, 0.08);
  background:
    radial-gradient(circle at top right, rgba(94, 106, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 234, 0.96));
  box-shadow: 0 18px 36px rgba(22, 31, 48, 0.08);
}

.software-tab-card::before {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5f6cff 0%, #7e68ff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.software-tab-card:hover::before,
.software-tab-card.is-active::before {
  transform: scaleX(1);
}

.software-tab-card.is-active {
  border-color: rgba(95, 108, 255, 0.22);
  box-shadow: 0 26px 50px rgba(64, 77, 184, 0.12);
}

@media (max-width: 1180px) {
  .site-header-premium .software-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header-premium .premium-nav {
    gap: 18px;
  }

  .software-tabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header-premium .premium-nav {
    display: none !important;
  }

  .site-header-premium .premium-nav.is-open {
    display: grid !important;
    justify-content: stretch;
    gap: 8px;
    width: 100%;
    padding-top: 8px;
  }

  .site-header-premium .premium-nav.is-open > a,
  .site-header-premium .premium-nav.is-open .software-trigger {
    width: 100%;
    min-height: 0;
  }

  .site-header-premium .premium-nav.is-open > a,
  .site-header-premium .premium-nav.is-open .software-trigger > a {
    min-height: 0;
    padding: 14px 0;
  }

  .site-header-premium .software-mega {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 10px;
  }

  .site-header-premium .software-mega-header {
    display: grid !important;
    gap: 14px;
  }

  .site-header-premium .software-mega-grid {
    grid-template-columns: 1fr;
  }

  .site-header-premium .corporate-mega-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .software-tabs-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact elegant header calibration */
.top-strip-premium .top-strip-inner {
  min-height: 40px;
  font-size: 0.84rem;
}

.top-strip-premium .top-strip-copy,
.top-strip-premium .top-strip-actions {
  gap: 14px;
}

.top-strip-premium .top-strip-actions select {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.top-strip-premium .top-strip-link {
  gap: 7px;
}

.site-header-premium .top-strip-icon {
  min-width: 28px;
  min-height: 18px;
  padding: 0 6px;
  font-size: 0.62rem;
}

.top-auth-link {
  font-size: 0.88rem;
}

.top-auth-button {
  min-height: 34px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 0.88rem;
  box-shadow: 0 12px 24px rgba(77, 99, 255, 0.18);
}

.site-header-premium .nav-shell-premium {
  min-height: 72px;
  gap: 22px;
}

.site-header-premium .brand-premium {
  gap: 10px;
}

.site-header-premium .brand-mark-premium {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
  font-size: 0.95rem;
}

.site-header-premium .brand-premium .brand-copy {
  gap: 2px;
}

.site-header-premium .brand-premium .brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.05;
}

.site-header-premium .brand-premium .brand-copy small {
  display: none;
}

.site-header-premium .premium-nav {
  gap: 22px;
}

.site-header-premium .premium-nav > a,
.site-header-premium .software-trigger > a {
  min-height: 72px;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-header-premium .premium-nav > a::after,
.site-header-premium .software-trigger > a::after {
  bottom: 15px;
  height: 2px;
}

.site-header-premium .software-trigger {
  gap: 6px;
}

.site-header-premium .software-trigger .mega-toggle {
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.site-header-premium .header-actions-premium {
  gap: 8px;
}

.site-header-premium .header-tool,
.site-header-premium .cart-link-premium {
  min-height: 42px;
  border-radius: 14px;
}

.site-header-premium .header-tool {
  min-width: 44px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.site-header-premium .cart-link-premium {
  padding: 0 14px;
  gap: 8px;
  font-size: 0.92rem;
}

.site-header-premium .cart-link-premium strong {
  min-width: 22px;
  height: 22px;
  font-size: 0.78rem;
}

.site-header-premium .software-mega,
.site-header-premium .corporate-mega {
  top: calc(100% - 2px) !important;
}

@media (max-width: 1180px) {
  .site-header-premium .brand-premium .brand-copy small {
    display: none;
  }

  .site-header-premium .premium-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .top-strip-premium .top-strip-inner {
    min-height: 0;
  }

  .site-header-premium .nav-shell-premium {
    min-height: 64px;
  }

  .site-header-premium .brand-premium .brand-copy small {
    display: none;
  }
}

/* Refined software tabs and hero showcase */
.software-tabs-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.software-tab-card {
  padding: 16px 16px 15px;
  border-radius: 18px;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(22, 31, 48, 0.06);
}

.software-tab-card strong {
  font-size: 0.92rem;
  line-height: 1.28;
}

.software-tab-card p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.software-tab-index {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.software-tab-footer {
  font-size: 0.78rem;
  gap: 4px;
}

.subhero-premium .software-tab-card::before {
  inset: auto 16px 0;
}

.hero-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  max-width: 100%;
  padding: 10px 0;
  border-top: 1px solid rgba(77, 99, 255, 0.1);
  border-bottom: 1px solid rgba(77, 99, 255, 0.1);
}

.hero-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  animation: hdsoft-marquee 26s linear infinite;
}

.hero-marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #42506b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.hero-marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5668ff 0%, #7780ff 100%);
  box-shadow: 0 0 0 6px rgba(86, 104, 255, 0.08);
}

.status-card-compact {
  padding: 14px 16px;
}

.mini-card-compact {
  padding: 16px 18px;
}

.hero-showcase {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(22, 31, 48, 0.08);
  background:
    radial-gradient(circle at top right, rgba(94, 106, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 234, 0.96));
  box-shadow: 0 24px 52px rgba(21, 31, 48, 0.1);
}

.hero-showcase-track {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
}

.hero-showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 16px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-showcase-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-showcase-head,
.hero-showcase-actions,
.hero-showcase-metrics,
.hero-showcase-nav {
  display: flex;
  align-items: center;
}

.hero-showcase-head,
.hero-showcase-actions {
  justify-content: space-between;
  gap: 12px;
}

.hero-showcase-body {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.hero-showcase-body > p:first-child {
  margin: 0;
  color: #5f6cff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-showcase-body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.hero-showcase-body p:last-child {
  margin: 0;
  max-width: 34ch;
  color: #586680;
  line-height: 1.6;
}

.hero-showcase-price {
  color: #13263f;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-showcase-metrics {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-showcase-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(86, 104, 255, 0.08);
  color: #46536d;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-showcase-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-showcase-nav {
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-grid > *,
.hero-copy,
.hero-visual,
.hero-spotlight-grid,
.hero-spotlight-card,
.hero-inline-search,
.hero-actions {
  min-width: 0;
}

.hero-showcase-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 31, 49, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-showcase-dot.is-active {
  background: #5d69ff;
  transform: scale(1.2);
}

@keyframes hdsoft-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .software-tabs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-showcase-track {
    min-height: 340px;
  }

  .software-tabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hero-marquee-track span {
    font-size: 0.72rem;
  }

  .hero-showcase {
    padding: 16px;
  }

  .hero-showcase-track {
    min-height: 370px;
  }

  .hero-showcase-actions {
    flex-wrap: wrap;
  }

  .software-tabs-grid {
    grid-template-columns: 1fr;
  }
}

/* Modern hero slider */
.home-news-section {
  padding: 20px 0 8px;
}

.home-news-shell {
  display: grid;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(73, 96, 180, 0.08);
  background:
    radial-gradient(circle at top left, rgba(79, 103, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.88));
  box-shadow: 0 18px 38px rgba(28, 41, 77, 0.06);
}

.home-news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.home-news-heading h2 {
  margin: 6px 0 0;
  color: #152341;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
}

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

.home-news-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(79, 103, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.9));
  box-shadow: 0 14px 26px rgba(24, 38, 72, 0.05);
}

.home-news-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 103, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.home-news-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.12), rgba(87, 197, 255, 0.12));
  color: #2d4dd8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-news-card strong {
  position: relative;
  z-index: 1;
  color: #14233f;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.home-news-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #607099;
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-marquee-section {
  padding: 24px 0 8px;
}

.home-marquee-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--theme-topbar) 0%, var(--theme-topbar-soft) 100%);
  box-shadow: 0 18px 38px rgba(16, 27, 52, 0.16);
}

.home-marquee-shell::before,
.home-marquee-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.home-marquee-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18, 32, 64, 0.98), rgba(18, 32, 64, 0));
}

.home-marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(32, 49, 98, 0.98), rgba(32, 49, 98, 0));
}

.home-marquee-track,
.home-marquee-row {
  display: flex;
  align-items: center;
}

.home-marquee-track {
  width: max-content;
  min-width: 100%;
  animation: hdsoftMarquee 24s linear infinite;
}

.home-marquee-row {
  flex: 0 0 auto;
  gap: 14px;
  min-width: 100%;
  padding: 12px 18px;
}

.home-marquee-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(132, 162, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-marquee-row span:nth-child(odd) {
  color: #8bdcff;
}

@keyframes hdsoftMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-slider-section {
  padding: 34px 0 10px;
}

.hero-slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(135deg, rgba(247, 242, 234, 0.98), rgba(237, 229, 218, 0.96));
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: 0 30px 70px rgba(21, 31, 48, 0.12);
}

.hero-slider-track {
  position: relative;
  min-height: 600px;
}

.hero-slider-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 32px;
  padding: 52px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slider-theme-aurora {
  background:
    radial-gradient(circle at 82% 18%, rgba(100, 116, 255, 0.2), transparent 18%),
    radial-gradient(circle at 70% 68%, rgba(70, 187, 176, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(250, 248, 242, 0.94), rgba(240, 236, 230, 0.98));
}

.hero-slider-theme-ocean {
  background:
    radial-gradient(circle at 78% 18%, rgba(66, 153, 225, 0.24), transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(99, 102, 241, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(245, 249, 255, 0.94), rgba(232, 239, 248, 0.98));
}

.hero-slider-theme-sunset {
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 173, 85, 0.22), transparent 18%),
    radial-gradient(circle at 70% 72%, rgba(251, 113, 133, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(252, 245, 240, 0.96), rgba(244, 233, 226, 0.98));
}

.hero-slider-copy,
.hero-slider-visual,
.hero-visual-window-body {
  min-width: 0;
}

.hero-slider-copy {
  display: grid;
  gap: 20px;
}

.hero-slider-eyebrow {
  margin-bottom: 0;
  width: fit-content;
  background: rgba(255, 255, 255, 0.68);
}

.hero-slider-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #142338;
}

.hero-slider-copy p {
  margin: 0;
  max-width: 52ch;
  color: #57657f;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-slider-actions,
.hero-slider-badges,
.hero-slider-controls,
.hero-slider-dots,
.hero-visual-window-top,
.hero-visual-kicker {
  display: flex;
  align-items: center;
}

.hero-slider-actions,
.hero-slider-badges {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 33, 47, 0.08);
  color: #3f4f68;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-slider-visual {
  position: relative;
  min-height: 440px;
}

.hero-visual-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 60px rgba(26, 37, 56, 0.16);
  backdrop-filter: blur(18px);
}

.hero-visual-window-top {
  gap: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.56);
  border-bottom: 1px solid rgba(19, 33, 47, 0.06);
}

.hero-visual-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(20, 31, 49, 0.16);
}

.hero-visual-window-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.hero-visual-kicker {
  justify-content: space-between;
  gap: 12px;
}

.hero-visual-window-body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.04;
  color: #16253a;
}

.hero-visual-window-body p {
  margin: 0;
  color: #5a6780;
  line-height: 1.65;
}

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

.hero-visual-stats article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(19, 33, 47, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-visual-stats strong,
.hero-float strong {
  display: block;
  margin-bottom: 6px;
  color: #16253a;
  font-family: "Sora", sans-serif;
}

.hero-visual-stats span,
.hero-float span {
  color: #617089;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 210px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 42px rgba(20, 30, 48, 0.14);
  backdrop-filter: blur(16px);
}

.hero-float-main {
  right: 18px;
  bottom: 24px;
}

.hero-float-side {
  left: 18px;
  top: 28px;
}

.hero-slider-controls {
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px 24px;
}

.hero-slider-dots {
  gap: 10px;
}

.hero-slider-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(19, 33, 47, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #142338;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

@media (max-width: 1180px) {
  .hero-slider-slide {
    grid-template-columns: 1fr;
    padding: 42px 40px;
  }

  .hero-slider-copy h1 {
    max-width: 13ch;
  }

  .hero-slider-visual {
    min-height: 360px;
  }

  .hero-visual-window {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-float-side {
    left: auto;
    right: 18px;
    top: 18px;
  }
}

@media (max-width: 900px) {
  .hero-slider-track {
    min-height: 760px;
  }

  .hero-slider-slide {
    gap: 24px;
    padding: 32px 24px;
  }

  .hero-slider-copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 8vw, 3.6rem);
  }

  .hero-slider-visual {
    min-height: 330px;
  }

  .hero-visual-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-slider-shell {
    border-radius: 26px;
  }

  .hero-slider-track {
    min-height: 820px;
  }

  .hero-slider-controls {
    padding: 0 18px 18px;
  }

  .hero-float {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 14px;
  }
}

/* Midnight blue theme unification */
:root {
  --brand: #4f67ff;
  --brand-dark: #263a9a;
  --accent: #69c7ff;
  --accent-soft: rgba(105, 199, 255, 0.16);
  --line: rgba(30, 44, 86, 0.1);
  --line-strong: rgba(60, 88, 168, 0.18);
  --shadow: 0 24px 60px rgba(22, 31, 58, 0.12);
  --shadow-strong: 0 36px 90px rgba(14, 21, 42, 0.18);
}

body {
  background:
    radial-gradient(circle at top left, rgba(79, 103, 255, 0.12), transparent 24%),
    radial-gradient(circle at right 12%, rgba(105, 199, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #eef3ff 0%, #e3e9f8 52%, #edf1f9 100%);
}

.eyebrow,
.section-kicker {
  background: rgba(79, 103, 255, 0.09);
  color: #24408f;
}

.button-primary,
.top-auth-button {
  background: linear-gradient(135deg, #4d63ff 0%, #5c7aff 52%, #4ab8ff 100%);
  box-shadow: 0 18px 38px rgba(77, 99, 255, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(79, 103, 255, 0.16);
  color: #1d2f5e;
}

.glass-card,
.product-card,
.catalog-card,
.service-card,
.story-card,
.stat-card,
.price-card,
.hosting-card,
.testimonial-slider,
.spotlight-band,
.sales-rail,
.trust-strip,
.cta-box {
  background:
    radial-gradient(circle at top right, rgba(95, 118, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.9));
  border-color: rgba(45, 67, 134, 0.08);
}

.category-card-premium,
.product-card-premium,
.software-tab-card,
.catalog-spotlight,
.hero-spotlight-card {
  border-color: rgba(73, 96, 180, 0.09);
  box-shadow: 0 20px 44px rgba(28, 41, 77, 0.08);
}

.hero-spotlight-card,
.trust-strip span,
.hero-showcase-metrics span,
.hero-slider-badges span {
  background: rgba(79, 103, 255, 0.08);
  color: #314571;
}

.price-card.featured,
.hosting-card.featured,
.catalog-spotlight,
.cta-box,
.sales-rail-dark {
  background:
    radial-gradient(circle at top right, rgba(111, 130, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(21, 31, 58, 0.98), rgba(28, 40, 74, 0.98));
}

.price-card.featured strong,
.hosting-card.featured strong,
.price-card.featured h3,
.hosting-card.featured h3,
.catalog-spotlight h2,
.catalog-spotlight .section-kicker,
.cta-box h2 {
  color: #f4f7ff;
}

.price-card.featured p,
.hosting-card.featured p,
.price-card.featured li,
.hosting-card.featured li,
.catalog-spotlight p,
.cta-box p {
  color: rgba(236, 242, 255, 0.76);
}

.trust-strip span,
.product-pill,
.rating-chip,
.hero-showcase-dot.is-active,
.hero-slider-arrow:hover {
  box-shadow: 0 10px 24px rgba(77, 99, 255, 0.14);
}

.hosting-subhero {
  background:
    radial-gradient(circle at top left, rgba(76, 95, 255, 0.12), transparent 30%),
    radial-gradient(circle at right 20%, rgba(92, 186, 255, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(241, 246, 255, 0.88), rgba(230, 237, 248, 0.8));
}

.hosting-strip span {
  background: rgba(79, 103, 255, 0.08);
  color: #2d4476;
}

.hosting-card .button {
  margin-top: 10px;
}

.hero-gallery-section {
  padding: 28px 0 6px;
}

.hero-gallery-shell {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(245, 248, 255, 0.96), rgba(234, 240, 250, 0.94));
  box-shadow: 0 26px 60px rgba(24, 36, 72, 0.1);
  position: relative;
}

.hero-gallery-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}

.hero-gallery-track {
  min-height: 460px;
}

.hero-gallery-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
  transform: scale(1.01);
  overflow: hidden;
}

.hero-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, var(--theme-secondary-glow), transparent 20%),
    radial-gradient(circle at 82% 18%, var(--theme-primary-glow), transparent 22%),
    linear-gradient(180deg, rgba(3, 10, 26, 0.02), rgba(7, 15, 34, 0.18));
  pointer-events: none;
}

.admin-upload-row {
  align-items: stretch;
}

.admin-media-preview-card {
  display: grid;
  gap: 10px;
  min-width: 220px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 36, 68, 0.08);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(240, 245, 255, 0.92));
}

.admin-media-preview-card span {
  font-size: 0.82rem;
  font-weight: 800;
  color: #4f618d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-media-preview-card img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 38, 78, 0.08);
  padding: 10px;
}

.admin-slider-preview img {
  max-height: 140px;
  object-fit: cover;
  padding: 0;
}

.admin-settings-form input[type="color"] {
  min-height: 54px;
  padding: 8px;
  cursor: pointer;
}

.hero-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gallery-controls {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  justify-content: space-between;
  z-index: 2;
}

.home-trust-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.trust-strip-home {
  justify-content: center;
  padding: 14px;
  border-radius: 20px;
}

.trust-strip-home span {
  padding: 9px 12px;
  font-size: 0.81rem;
}

.home-intro-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-intro-rail {
  align-items: center;
  padding: 24px 26px;
  border-radius: 28px;
}

.home-intro-rail h2 {
  margin: 8px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.home-intro-rail p {
  max-width: 56ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.sales-categories-section {
  padding-top: 14px;
}

.sales-categories-shell {
  padding: 20px 20px 16px;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(27, 40, 78, 0.045);
}

.sales-categories-head {
  max-width: 500px;
  margin-bottom: 14px;
}

.sales-categories-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.92rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.sales-categories-head p {
  margin-top: 6px;
  max-width: 420px;
  font-size: 0.82rem;
  line-height: 1.62;
}

.sales-kicker {
  padding: 7px 12px;
  font-size: 0.68rem;
}

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

.sales-category-link {
  gap: 8px;
  min-height: 122px;
  padding: 15px 12px 14px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(30, 44, 84, 0.04);
}

.sales-category-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.sales-category-icon svg {
  width: 17px;
  height: 17px;
}

.sales-category-link::after {
  left: 12px;
  right: 12px;
  height: 3px;
}

.sales-category-meta {
  min-height: 22px;
  padding: 0 8px;
  font-size: 0.62rem;
}

.sales-category-link h3 {
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}

.sales-category-link p {
  max-width: 142px;
  font-size: 0.72rem;
  line-height: 1.42;
}

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

.home-testimonials-section {
  padding-top: 8px;
}

.home-testimonials-shell {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(78, 100, 182, 0.1);
  background:
    radial-gradient(circle at top left, rgba(79, 103, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.92));
  overflow: hidden;
}

.home-testimonials-head {
  margin-bottom: 2px;
}

.home-testimonials-shell::before,
.home-testimonials-shell::after,
.sales-categories-shell::before,
.sales-categories-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.home-testimonials-shell::before {
  top: -36px;
  right: 10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(92, 112, 255, 0.16), transparent 70%);
  transform: translate3d(calc(var(--parallax-x) * 0.24), calc(var(--parallax-y) * 0.12 + var(--parallax-scroll) * 0.04), 0);
}

.home-testimonials-shell::after {
  left: -40px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(83, 211, 255, 0.12), transparent 74%);
  transform: translate3d(calc(var(--parallax-x) * -0.18), calc(var(--parallax-y) * -0.12 + var(--parallax-scroll) * -0.03), 0);
}

.sales-categories-shell::before {
  top: -28px;
  left: 8%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(72, 104, 255, 0.12), transparent 72%);
  transform: translate3d(calc(var(--parallax-x) * 0.2), calc(var(--parallax-y) * 0.1 + var(--parallax-scroll) * 0.05), 0);
}

.sales-categories-shell::after {
  right: -32px;
  bottom: -48px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(17, 123, 197, 0.1), transparent 74%);
  transform: translate3d(calc(var(--parallax-x) * -0.14), calc(var(--parallax-y) * -0.08 + var(--parallax-scroll) * -0.03), 0);
}

.home-testimonials-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.96) 8%, rgba(0, 0, 0, 0.96) 92%, transparent);
}

.home-testimonials-track {
  display: flex;
  width: max-content;
  animation: home-testimonials-scroll 34s linear infinite;
  will-change: transform;
}

.home-testimonials-marquee:hover .home-testimonials-track {
  animation-play-state: paused;
}

.home-testimonial-row {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.home-testimonial-pill {
  display: grid;
  gap: 8px;
  width: min(320px, 72vw);
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(73, 96, 180, 0.1);
  background:
    radial-gradient(circle at top right, rgba(114, 207, 255, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 255, 0.9));
}

.home-testimonial-pill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-testimonial-pill-top strong {
  color: #152341;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  line-height: 1.2;
}

.home-testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.84rem;
  white-space: nowrap;
}

.home-testimonial-pill p {
  margin: 0;
  color: #586885;
  line-height: 1.58;
  font-size: 0.82rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-testimonial-meta {
  color: #6f7f9d;
  font-size: 0.74rem;
}

@keyframes home-testimonials-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home-cta-box {
  padding: 24px 26px;
  border-radius: 28px;
}

.home-cta-box h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.15;
}

.home-cta-box p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.blog-hero-section {
  padding-top: 44px;
  padding-bottom: 16px;
}

.blog-hero-shell,
.blog-sidebar-card,
.blog-post-card,
.blog-detail-card,
.blog-related-card {
  --blog-surface: rgba(79, 103, 255, 0.12);
  --blog-surface-soft: rgba(133, 181, 255, 0.12);
  --blog-border: rgba(68, 92, 178, 0.11);
  --blog-accent: #4f67ff;
  --blog-accent-soft: rgba(79, 103, 255, 0.1);
  border-radius: 28px;
  border: 1px solid var(--blog-border);
  background:
    radial-gradient(circle at top right, var(--blog-surface), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.95)),
    linear-gradient(135deg, var(--blog-surface-soft), transparent 48%);
}

.blog-hero-shell {
  padding: 30px 34px;
}

.blog-hero-shell h1,
.blog-detail-card h1 {
  margin: 10px 0 12px;
  color: #14233f;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.blog-hero-shell h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.blog-hero-shell p,
.blog-detail-summary {
  margin: 0;
  max-width: 760px;
  color: #607099;
  line-height: 1.75;
}

.blog-content-section {
  padding-top: 10px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 108px;
}

.blog-sidebar-card,
.blog-detail-card,
.blog-related-card {
  padding: 22px;
  box-shadow: 0 18px 40px rgba(24, 37, 73, 0.06);
}

.blog-category-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.blog-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--blog-border);
  color: #45557e;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 255, 0.82)),
    linear-gradient(90deg, var(--blog-accent-soft), transparent 60%);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.blog-category-link:hover,
.blog-category-link.is-active {
  color: var(--blog-accent);
  border-color: color-mix(in srgb, var(--blog-accent) 32%, #ffffff);
  transform: translateX(3px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.88)),
    linear-gradient(90deg, var(--blog-accent-soft), transparent 72%);
}

.blog-posts-grid,
.blog-related-list {
  display: grid;
  gap: 16px;
}

.blog-post-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(24, 37, 73, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--blog-accent) 30%, #ffffff);
  box-shadow: 0 26px 50px rgba(24, 37, 73, 0.08);
}

.blog-post-frame {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 124px;
  height: 124px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--blog-surface), transparent 72%),
    radial-gradient(circle at center, var(--blog-accent-soft), transparent 70%);
  opacity: 0.95;
  pointer-events: none;
}

.blog-post-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blog-accent) 12%, #ffffff);
  color: color-mix(in srgb, var(--blog-accent) 88%, #10203e);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.blog-post-card h2 {
  margin: 0;
  color: #14233f;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.blog-post-card p,
.blog-related-link small,
.blog-detail-content {
  color: #607099;
  line-height: 1.72;
}

.blog-post-card p {
  margin: 0;
  max-width: 680px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: #7b8aa8;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

.blog-post-card-empty {
  min-height: 220px;
  align-content: center;
}

.blog-detail-section {
  padding-top: 42px;
}

.blog-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.blog-back-link {
  width: fit-content;
  margin-bottom: 12px;
}

.blog-detail-content {
  margin-top: 18px;
  font-size: 0.97rem;
}

.blog-related-list {
  margin-top: 12px;
}

.blog-related-link {
  display: grid;
  gap: 6px;
  padding: 14px 14px 14px 16px;
  border-top: 1px solid rgba(74, 98, 180, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 255, 0.76)),
    linear-gradient(90deg, var(--blog-accent-soft), transparent 64%);
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.blog-related-link:first-child {
  border-top: 0;
}

.blog-related-link:hover {
  transform: translateX(3px);
  border-color: color-mix(in srgb, var(--blog-accent) 26%, #ffffff);
}

.blog-related-link strong {
  color: #152341;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
}

.auth-stage-section,
.cart-stage-section {
  padding-top: 56px;
  padding-bottom: 28px;
}

.auth-stage-grid,
.cart-stage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.auth-stage-card,
.cart-stage-preview-card {
  border-radius: 30px;
  border: 1px solid rgba(68, 92, 178, 0.12);
  background:
    radial-gradient(circle at top right, rgba(101, 216, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.94));
  box-shadow: 0 26px 56px rgba(24, 37, 73, 0.08);
}

.auth-stage-form-card,
.auth-stage-visual-card,
.cart-stage-preview-card {
  padding: 30px;
}

.auth-stage-topline,
.cart-stage-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.auth-stage-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.08);
  color: #2c458d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-stage-form-card h1,
.cart-stage-copy h1 {
  margin: 14px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: #142340;
}

.auth-stage-form-card p,
.auth-stage-visual-card p,
.cart-stage-copy p,
.cart-stage-preview-card p,
.cart-stage-support p {
  margin: 0;
  color: #5f7096;
  line-height: 1.72;
}

.auth-stage-form {
  margin-top: 24px;
}

.auth-stage-form-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.auth-stage-field {
  display: grid;
  gap: 8px;
}

.auth-stage-field span {
  color: #1a2a4f;
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-stage-field-wide {
  grid-column: 1 / -1;
}

.auth-stage-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.auth-stage-button {
  min-width: 220px;
}

.auth-stage-link {
  color: #2f4fe5;
  font-weight: 800;
}

.auth-stage-notes,
.cart-stage-badges,
.cart-stage-preview-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-stage-notes {
  margin-top: 18px;
}

.auth-stage-notes span,
.cart-stage-badges span,
.cart-stage-preview-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.08);
  color: #314c87;
  font-size: 0.8rem;
  font-weight: 700;
}

.auth-stage-visual-card {
  position: relative;
  overflow: hidden;
}

.auth-stage-visual-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 103, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.auth-stage-visual-panel,
.auth-stage-feature-stack,
.auth-stage-benefit-list {
  display: grid;
  gap: 16px;
}

.auth-stage-panel-head {
  display: flex;
  gap: 8px;
}

.auth-stage-panel-head span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7d91ff, #45b8ff);
}

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

.auth-stage-stat-grid article,
.auth-stage-feature-card,
.auth-stage-benefit,
.cart-stage-summary-box,
.cart-stage-support {
  border-radius: 22px;
  border: 1px solid rgba(72, 93, 166, 0.09);
  background: rgba(255, 255, 255, 0.74);
}

.auth-stage-stat-grid article {
  padding: 18px 16px;
  display: grid;
  gap: 6px;
}

.auth-stage-stat-grid strong,
.auth-stage-feature-card strong,
.auth-stage-benefit strong,
.cart-stage-preview-card strong,
.cart-stage-support strong {
  color: #132240;
  font-family: "Sora", sans-serif;
}

.auth-stage-stat-grid strong {
  font-size: 1.3rem;
}

.auth-stage-stat-grid span {
  color: #5e7097;
  font-size: 0.84rem;
}

.auth-stage-feature-card,
.auth-stage-benefit,
.cart-stage-support {
  padding: 18px 18px 16px;
}

.auth-stage-feature-card p,
.auth-stage-benefit p {
  margin-top: 8px;
}

.auth-stage-quote {
  margin-top: 4px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(21, 33, 63, 0.97), rgba(34, 53, 107, 0.96));
  color: #eef4ff;
  box-shadow: 0 22px 44px rgba(19, 29, 58, 0.16);
}

.auth-stage-quote p {
  margin-top: 12px;
  color: rgba(238, 244, 255, 0.8);
}

.cart-stage-hero {
  align-items: center;
}

.cart-stage-copy {
  display: grid;
  gap: 16px;
}

.cart-stage-preview {
  display: grid;
  align-items: stretch;
}

.cart-stage-preview-card {
  min-height: 100%;
  display: grid;
  gap: 18px;
  align-content: center;
}

.cart-stage-content {
  padding-top: 18px;
}

.cart-stage-grid {
  align-items: start;
}

.cart-stage-panel {
  border-radius: 30px;
  border: 1px solid rgba(68, 92, 178, 0.12);
  background:
    radial-gradient(circle at top right, rgba(101, 216, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.94));
  box-shadow: 0 24px 54px rgba(24, 37, 73, 0.08);
}

.cart-stage-main-panel {
  padding: 28px;
}

.cart-stage-summary {
  padding: 26px;
}

.cart-stage-header h2,
.cart-stage-summary-head h2 {
  margin: 8px 0 0;
}

.cart-stage-empty {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(79, 103, 255, 0.05);
}

.cart-stage-coupon {
  padding: 18px;
  border-radius: 22px;
  background: rgba(79, 103, 255, 0.05);
}

.cart-stage-coupon-btn,
.cart-stage-checkout {
  min-width: 170px;
}

.cart-stage-summary-box {
  padding: 18px 18px 6px;
}

.cart-stage-support {
  display: grid;
  gap: 10px;
}

@media (max-width: 1080px) {
  .auth-stage-grid,
  .cart-stage-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .auth-stage-form-card,
  .auth-stage-visual-card,
  .cart-stage-preview-card,
  .cart-stage-main-panel,
  .cart-stage-summary {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .auth-stage-form-split,
  .auth-stage-stat-grid {
    grid-template-columns: 1fr;
  }

  .auth-stage-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-stage-button,
  .cart-stage-coupon-btn,
  .cart-stage-checkout {
    width: 100%;
    min-width: 0;
  }
}

.admin-dashboard-page {
  padding: 26px 0 42px;
}

.admin-dashboard-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
}

.admin-dashboard-shell-topnav {
  grid-template-columns: 1fr;
}

.admin-dashboard-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: calc(100vh - 120px);
  padding: 18px 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(112, 141, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(50, 200, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(14, 20, 42, 0.99), rgba(22, 31, 56, 0.98));
  box-shadow: 0 28px 65px rgba(8, 14, 30, 0.28);
  overflow: hidden;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-brand strong {
  display: block;
  color: #f4f7ff;
  font-family: "Sora", sans-serif;
}

.admin-sidebar-brand small,
.admin-sidebar-card p,
.admin-dashboard-topbar p,
.admin-section-intro p {
  color: rgba(228, 236, 255, 0.7);
}

.admin-sidebar-group,
.admin-sidebar-card,
.admin-dashboard-main,
.admin-overview-grid,
.admin-stack-grid,
.admin-highlight-list,
.admin-status-list,
.admin-content-grid,
.admin-section-intro {
  display: grid;
  gap: 12px;
}

.admin-sidebar-label,
.admin-mini-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar-label {
  color: rgba(175, 192, 255, 0.56);
  padding: 0 6px;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 11px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(229, 236, 255, 0.82);
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  position: relative;
  overflow: hidden;
}

.admin-sidebar-link:hover,
.admin-sidebar-link.is-active {
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.2), rgba(74, 184, 255, 0.16));
  color: #ffffff;
  transform: translateX(1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(41, 67, 155, 0.16);
}

.admin-sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.8;
}

.admin-sidebar-card {
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(95, 118, 255, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-sidebar-card strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.admin-sidebar-card .button {
  margin-top: 4px;
}

.admin-dashboard-main {
  gap: 18px;
}

.admin-top-nav-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px 18px;
  padding: 16px 20px;
  border-radius: 28px;
  border: 1px solid rgba(77, 99, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(98, 118, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  box-shadow: 0 18px 42px rgba(24, 38, 72, 0.07);
}

.admin-top-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: 1;
  grid-row: 1;
}

.admin-top-nav-brand strong {
  display: block;
  color: #152341;
  font-family: "Sora", sans-serif;
}

.admin-top-nav-brand small {
  color: #6880ad;
}

.admin-top-nav-groups {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  grid-column: 1 / -1;
  grid-row: 2;
  padding-bottom: 82px;
}

.admin-nav-group {
  position: static;
  flex: 1 1 0;
}

.admin-nav-group-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.06);
  color: #263554;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 10px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-nav-group-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.admin-nav-group-icon::before,
.admin-nav-group-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.admin-nav-group-icon-dashboard::before {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid currentColor;
  box-shadow: inset 5px 0 0 currentColor, inset 0 5px 0 transparent;
}

.admin-nav-group-icon-orders::before {
  width: 14px;
  height: 10px;
  border-radius: 3px;
  border: 2px solid currentColor;
  top: 5px;
}

.admin-nav-group-icon-orders::after {
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  top: 2px;
}

.admin-nav-group-icon-hosting::before {
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  top: 3px;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.admin-nav-group-icon-hosting::after {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  right: 2px;
  top: 4px;
  box-shadow: 0 5px 0 #ffffff, 0 10px 0 #ffffff;
}

.admin-nav-group-icon-settings::before {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid currentColor;
}

.admin-nav-group-icon-settings::after {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.admin-nav-group:hover .admin-nav-group-trigger,
.admin-nav-group.is-active .admin-nav-group-trigger,
.admin-nav-group-trigger.is-active {
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.14), rgba(87, 197, 255, 0.14));
  color: #2443c9;
  transform: translateY(-1px);
}

.admin-nav-dropdown {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  transform: none;
  width: auto;
  min-width: 0;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(77, 99, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(103, 214, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 255, 0.97));
  box-shadow: 0 22px 48px rgba(24, 38, 72, 0.14);
  display: none;
  z-index: 30;
}

.admin-nav-group:hover .admin-nav-dropdown,
.admin-nav-group:focus-within .admin-nav-dropdown,
.admin-nav-group.is-active .admin-nav-dropdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  width: 100%;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: rgba(79, 103, 255, 0.04);
  color: #304567;
  text-align: left;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.1), rgba(87, 197, 255, 0.1));
  color: #1f3ec8;
  transform: translateX(1px);
}

.admin-nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(90deg, rgba(98, 118, 255, 0), rgba(98, 118, 255, 0.08), rgba(87, 197, 255, 0));
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: none;
}

.admin-nav-link:hover::after,
.admin-nav-link.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.admin-nav-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.82;
}

.admin-top-nav-status {
  display: grid;
  gap: 2px;
  justify-items: end;
  grid-column: 2;
  grid-row: 1;
}

.admin-top-nav-status-label {
  color: #7283ac;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-top-nav-status strong {
  color: #152341;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.admin-dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  border-radius: 30px;
  border: 1px solid rgba(77, 99, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(101, 216, 255, 0.16), transparent 24%),
    radial-gradient(circle at left center, rgba(92, 109, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  box-shadow: 0 24px 58px rgba(24, 38, 72, 0.1);
}

.admin-topbar-copy {
  display: grid;
  gap: 8px;
  flex: 1 1 540px;
}

.admin-topbar-visual {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

.admin-topbar-emblem {
  width: 100%;
  max-width: 210px;
  padding: 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(104, 123, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(103, 214, 255, 0.28), transparent 42%),
    radial-gradient(circle at bottom left, rgba(109, 118, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(21, 35, 65, 0.98), rgba(44, 67, 124, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 38px rgba(20, 33, 63, 0.22);
  display: grid;
  gap: 6px;
  text-align: left;
}

.admin-topbar-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 206, 255, 0.72);
}

.admin-topbar-emblem strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.admin-topbar-emblem small {
  color: rgba(220, 230, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.35;
}

.admin-dashboard-topbar h1,
.admin-card-head h2,
.admin-section-intro h2 {
  margin: 8px 0 0;
  color: #152341;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.admin-dashboard-topbar h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.admin-dashboard-topbar p {
  max-width: 70ch;
  margin: 10px 0 0;
  color: #5c6d95;
  line-height: 1.7;
}

.admin-topbar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-topbar-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.1), rgba(87, 197, 255, 0.12));
  border: 1px solid rgba(84, 104, 255, 0.12);
  color: #3550ce;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(73, 96, 170, 0.08);
}

.admin-dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-kpi-grid,
.admin-table-grid,
.admin-form-layout {
  display: grid;
  gap: 18px;
}

.admin-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-utility-grid {
  margin-bottom: 2px;
}

.admin-kpi-card,
.admin-surface {
  border-radius: 28px;
  border: 1px solid rgba(74, 97, 185, 0.1);
  background:
    radial-gradient(circle at top right, rgba(79, 103, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(87, 197, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96));
  box-shadow: 0 20px 44px rgba(28, 41, 77, 0.07);
}

.admin-kpi-card {
  padding: 24px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.admin-kpi-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(93, 113, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.admin-kpi-card span,
.admin-mini-kicker {
  color: #7183ae;
}

.admin-kpi-card strong {
  color: #14233f;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.admin-kpi-card small {
  color: #5c6d95;
}

.admin-overview-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.12), rgba(78, 193, 255, 0.12));
  color: #3350d9;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid rgba(79, 103, 255, 0.1);
}

.admin-chart-card,
.admin-orders-card,
.admin-editor-card,
.admin-form-card,
.admin-list-card {
  padding: 22px;
}

.admin-mini-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 280px;
  margin-top: 18px;
}

.admin-chart-bar {
  display: grid;
  gap: 10px;
  align-items: end;
  justify-items: center;
}

.admin-chart-bar i {
  width: 100%;
  min-height: 22px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #4d63ff, #3aa9ff);
  box-shadow: 0 12px 26px rgba(77, 99, 255, 0.18);
}

.admin-chart-value,
.admin-highlight-list strong,
.admin-status-row strong {
  color: #152341;
  font-family: "Sora", sans-serif;
}

.admin-chart-bar small {
  color: #7183ae;
  font-size: 0.78rem;
}

.admin-highlight-list {
  gap: 14px;
}

.admin-highlight-list div,
.admin-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.06), rgba(87, 197, 255, 0.06));
  border: 1px solid rgba(79, 103, 255, 0.06);
}

.admin-highlight-list span {
  color: #6a7ca8;
  font-weight: 700;
}

.admin-status-list {
  gap: 10px;
}

.admin-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.09);
  color: #2f4bdd;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-table-grid,
.admin-form-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}

.admin-data-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-data-table th,
.admin-data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(67, 91, 169, 0.08);
  text-align: left;
  white-space: nowrap;
}

.admin-data-table th {
  color: #6d7ea7;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-data-table td {
  color: #263554;
}

.admin-section-intro h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.admin-section-intro p {
  margin: 0;
  color: #607099;
  line-height: 1.7;
}

.admin-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.admin-management-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.admin-management-card h3 {
  margin: 0;
  color: #152341;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.admin-management-card p {
  margin: 0;
  color: #607099;
  line-height: 1.65;
}

.admin-management-card strong {
  color: #1e2f54;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

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

.admin-maintenance-card {
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.admin-maintenance-card h3 {
  margin: 0;
  color: #152341;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.admin-maintenance-card p {
  margin: 0;
  color: #607099;
  line-height: 1.65;
}

.admin-maintenance-summary {
  padding: 20px;
}

.admin-inline-list,
.admin-feature-list {
  display: grid;
  gap: 10px;
}

.admin-inline-list {
  margin: 0;
  padding-left: 18px;
  color: #5c6d95;
}

.admin-inline-list li {
  line-height: 1.55;
}

.admin-feature-row {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(79, 103, 255, 0.05);
}

.admin-feature-row strong {
  color: #182748;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.admin-feature-row span {
  color: #607099;
  line-height: 1.6;
}

.admin-settings-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-settings-nav {
  position: sticky;
  top: 24px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.admin-settings-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: #324466;
  font-weight: 700;
  text-decoration: none;
  background: rgba(79, 103, 255, 0.04);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.admin-settings-link:hover {
  transform: translateX(3px);
  background: rgba(79, 103, 255, 0.1);
  color: #1f3ccb;
}

.admin-settings-stack {
  display: grid;
  gap: 18px;
}

.admin-settings-card {
  padding: 22px;
}

.admin-settings-card p {
  margin: 6px 0 0;
  color: #607099;
  line-height: 1.7;
}

.admin-settings-form {
  margin-top: 16px;
}

.admin-field {
  display: grid;
  gap: 8px;
  width: 100%;
}

.admin-field span {
  color: #44557c;
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
}

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

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(67, 91, 169, 0.12);
  border-radius: 16px;
  background: rgba(79, 103, 255, 0.03);
  color: #243452;
  font-weight: 700;
}

.admin-check input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.admin-slider-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(67, 91, 169, 0.12);
  border-radius: 18px;
  background: rgba(79, 103, 255, 0.04);
}

.admin-slider-card strong {
  color: #152341;
  font-family: "Sora", sans-serif;
}

.admin-row-panel {
  padding: 18px;
  border-radius: 18px;
  background: rgba(79, 103, 255, 0.05);
  border: 1px solid rgba(66, 88, 166, 0.08);
}

.admin-row-panel strong {
  color: #152341;
  font-family: "Sora", sans-serif;
}

.admin-row-panel p {
  margin: 6px 0 0;
  color: #5f7097;
}

.admin-order-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-order-form {
  min-width: 260px;
}

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

  .admin-top-nav-surface {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .admin-top-nav-brand,
  .admin-top-nav-status {
    justify-items: start;
  }

  .admin-top-nav-brand,
  .admin-top-nav-status,
  .admin-top-nav-groups {
    grid-column: 1;
  }

  .admin-top-nav-status {
    grid-row: 2;
  }

  .admin-top-nav-groups {
    grid-row: 3;
    padding-bottom: 0;
  }

  .admin-top-nav-groups {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .admin-dashboard-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-overview-grid,
  .admin-table-grid,
  .admin-form-layout,
  .admin-content-grid,
  .admin-management-grid,
  .admin-optimization-grid,
  .admin-settings-layout {
    grid-template-columns: 1fr;
  }

  .admin-settings-nav {
    position: static;
  }
}

@media (max-width: 780px) {
  .admin-dashboard-page {
    padding: 18px 0 28px;
  }

  .admin-dashboard-shell {
    width: min(100%, calc(100% - 20px));
    gap: 16px;
  }

  .admin-dashboard-topbar,
  .admin-chart-card,
  .admin-orders-card,
  .admin-editor-card,
  .admin-form-card,
  .admin-list-card {
    padding: 18px;
    border-radius: 22px;
  }

  .admin-dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-top-nav-surface {
    padding: 14px;
    border-radius: 22px;
  }

  .admin-top-nav-groups {
    display: grid;
    gap: 10px;
  }

  .admin-nav-group {
    width: 100%;
  }

  .admin-nav-group-trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .admin-nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    box-sizing: border-box;
  }

  .admin-topbar-visual {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-toggle-grid {
    grid-template-columns: 1fr;
  }

  .admin-mini-chart {
    gap: 8px;
    min-height: 220px;
  }

  .admin-order-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .sales-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-layout,
  .blog-detail-shell {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .home-marquee-row {
    gap: 10px;
    padding: 10px 14px;
  }

  .home-marquee-row span {
    min-height: 32px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .hero-gallery-track {
    min-height: 320px;
  }

  .sales-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero-shell,
  .blog-sidebar-card,
  .blog-post-card,
  .blog-detail-card,
  .blog-related-card {
    border-radius: 22px;
  }
}

@media (max-width: 780px) {
  .home-news-shell {
    padding: 16px;
    border-radius: 20px;
  }

  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card {
    min-height: 0;
  }

  .home-testimonials-shell {
    padding: 16px 14px 14px;
    border-radius: 22px;
  }

  .home-testimonial-row {
    gap: 10px;
    padding-right: 10px;
  }

  .home-testimonial-pill {
    width: min(280px, 82vw);
    padding: 13px 14px;
  }

  .home-testimonial-pill p {
    font-size: 0.78rem;
  }

  .home-marquee-section {
    padding: 18px 0 6px;
  }

  .home-marquee-shell {
    border-radius: 16px;
  }

  .blog-hero-shell,
  .blog-sidebar-card,
  .blog-post-card,
  .blog-detail-card,
  .blog-related-card {
    padding: 18px;
  }

  .blog-post-meta {
    align-items: flex-start;
  }

  .home-marquee-shell::before,
  .home-marquee-shell::after {
    width: 28px;
  }

  .hero-gallery-shell {
    border-radius: 24px;
  }

  .hero-gallery-track {
    min-height: 240px;
  }

  .hero-gallery-controls {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .home-intro-rail,
  .home-cta-box,
  .sales-categories-shell {
    padding: 18px 16px;
    border-radius: 22px;
  }

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

  .sales-category-link {
    min-height: 116px;
    padding: 14px 10px 12px;
  }

  .sales-category-link h3 {
    font-size: 0.76rem;
  }

  .sales-category-link p {
    font-size: 0.68rem;
    max-width: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials-track {
    animation: none;
    transform: none;
  }

  .home-marquee-track {
    animation-duration: 1ms;
  }
}

.site-footer {
  background: linear-gradient(180deg, rgba(235, 241, 252, 0.55), rgba(229, 236, 248, 0.86));
}

.admin-chip-success {
  background: rgba(16, 185, 129, 0.14);
  color: #0f8c68;
}

.admin-inline-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(74, 98, 180, 0.1);
  background: rgba(248, 251, 255, 0.82);
  color: #5f7096;
  line-height: 1.65;
}

.live-support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: min(392px, calc(100vw - 28px));
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.live-support-widget.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.live-support-trigger,
.live-support-panel {
  border-radius: 26px;
  border: 1px solid rgba(79, 103, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(90, 121, 255, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(67, 205, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  box-shadow: 0 28px 60px rgba(19, 31, 64, 0.12);
  backdrop-filter: blur(10px);
}

.live-support-widget.is-online .live-support-trigger,
.live-support-widget.is-online .live-support-panel {
  box-shadow: 0 26px 58px rgba(24, 53, 123, 0.18);
}

.live-support-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 14px;
  text-align: left;
}

.live-support-trigger-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(14, 23, 56, 0.94), rgba(53, 89, 255, 0.84));
  box-shadow: 0 16px 28px rgba(41, 66, 163, 0.24);
}

.live-support-trigger-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

.live-support-trigger-copy {
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
}

.live-support-trigger-copy strong {
  color: #14233f;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.live-support-trigger-copy small {
  color: #5670c8;
  font-size: 0.77rem;
  font-weight: 700;
}



.live-support-panel {
  display: none;
  margin-top: 12px;
  padding: 18px;
}

.live-support-widget:hover .live-support-panel,
.live-support-widget:focus-within .live-support-panel,
.live-support-widget.is-open .live-support-panel {
  display: grid;
  gap: 14px;
}

.live-support-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.live-support-panel-head-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.live-support-panel-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  padding: 5px;
  background: linear-gradient(135deg, rgba(12, 20, 50, 0.96), rgba(57, 100, 255, 0.86));
  box-shadow: 0 14px 24px rgba(41, 66, 163, 0.18);
}

.live-support-panel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

.live-support-panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.1);
  color: #3151c6;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-support-panel-head h3 {
  margin: 8px 0 0;
  color: #14233f;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.live-support-panel-meta {
  display: block;
  margin-top: 6px;
  color: #7a89ac;
  font-size: 0.74rem;
  font-weight: 700;
}

.live-support-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(99, 115, 145, 0.12);
  color: #5b6884;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-support-status-pill.is-online {
  background: rgba(16, 185, 129, 0.14);
  color: #0f8c68;
}

.live-support-panel p {
  margin: 0;
  color: #607099;
  line-height: 1.7;
}

.live-support-feedback {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.6;
}

.live-support-feedback-success {
  background: rgba(34, 197, 94, 0.1);
  color: #157347;
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.live-support-feedback-error {
  background: rgba(239, 68, 68, 0.1);
  color: #b42318;
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.live-support-chat {
  display: grid;
  gap: 10px;
  max-height: 246px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(79, 103, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(92, 122, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(242, 247, 255, 0.94), rgba(255, 255, 255, 0.96));
  overflow-y: auto;
}

.live-support-bubble {
  display: grid;
  gap: 4px;
  max-width: 88%;
  padding: 13px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.live-support-bubble strong {
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-support-bubble-admin {
  justify-self: start;
  border-top-left-radius: 10px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(25, 39, 88, 0.97), rgba(70, 96, 255, 0.94));
  color: #f8fbff;
}

.live-support-bubble-admin strong {
  color: rgba(255, 255, 255, 0.8);
}

.live-support-bubble-user {
  justify-self: end;
  border-top-right-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.94));
  border: 1px solid rgba(79, 103, 255, 0.12);
  color: #163057;
  box-shadow: 0 12px 24px rgba(24, 38, 72, 0.06);
}

.live-support-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.live-support-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 103, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 255, 0.92));
  color: #3451c7;
  font-size: 0.77rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.live-support-chip:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: linear-gradient(135deg, #4a64ff, #28b3ff);
  box-shadow: 0 12px 22px rgba(50, 78, 191, 0.16);
}

.live-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.live-support-actions .button {
  flex: 1 1 160px;
  justify-content: center;
}

.live-support-whatsapp {
  background: linear-gradient(135deg, rgba(36, 194, 127, 0.14), rgba(12, 160, 101, 0.08));
  border-color: rgba(24, 167, 106, 0.18);
  color: #0b8557;
}

.live-support-whatsapp:hover {
  background: linear-gradient(135deg, rgba(36, 194, 127, 0.22), rgba(12, 160, 101, 0.14));
}

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

.live-support-form input,
.live-support-form textarea {
  width: 100%;
  border: 1px solid rgba(74, 98, 180, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #14233f;
  padding: 13px 14px;
}

/* Medyaweb-inspired homepage and color system refinement */
body {
  color: #16233b;
  background:
    radial-gradient(circle at top left, rgba(76, 110, 245, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(242, 140, 27, 0.06), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 56%, #edf3ff 100%);
}

.top-strip-premium {
  background: linear-gradient(180deg, #0f192d 0%, #14213a 100%);
}

.site-header.site-header-premium {
  position: sticky;
  top: 0;
  z-index: 16;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(26, 45, 88, 0.08);
  box-shadow: 0 18px 40px rgba(16, 28, 58, 0.06);
  backdrop-filter: blur(14px);
}

.site-header-premium .brand-premium .brand-copy strong {
  color: #15233f;
}

.site-header-premium .brand-premium .brand-copy small {
  color: #6f7f98;
}

.site-header-premium .premium-nav > a,
.site-header-premium .software-trigger > a {
  color: #23365a;
  font-weight: 700;
}

.site-header-premium .premium-nav > a:hover,
.site-header-premium .premium-nav > a.is-current,
.site-header-premium .software-trigger > a:hover,
.site-header-premium .software-trigger > a.is-current,
.site-header-premium .software-dropdown.is-open .software-trigger > a,
.site-header-premium .corporate-dropdown.is-open .software-trigger > a {
  color: #2f57ef;
}

.site-header-premium .premium-nav > a.is-current::after,
.site-header-premium .software-trigger > a.is-current::after {
  background: linear-gradient(90deg, #2f57ef, #4a7cff);
}

.site-header-premium .mega-toggle {
  color: #556786;
}

.site-header-premium .header-tool,
.site-header-premium .cart-link-premium {
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  border-color: rgba(47, 87, 239, 0.1);
  color: #223760;
  box-shadow: 0 12px 24px rgba(20, 34, 70, 0.06);
}

.site-header-premium .header-tool:hover,
.site-header-premium .cart-link-premium:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 87, 239, 0.18);
  box-shadow: 0 16px 28px rgba(20, 34, 70, 0.1);
}

.site-header-premium .cart-link-premium strong {
  background: linear-gradient(135deg, #ff7e36, #ff5146);
}

.home-hero-stage {
  padding-top: 22px;
  padding-bottom: 18px;
}

.home-hero-grid {
  align-items: stretch;
  gap: 28px;
}

.home-hero-copy {
  padding: 34px 0 18px;
}

.home-hero-kicker {
  background: rgba(47, 87, 239, 0.08);
  color: #2f57ef;
  box-shadow: inset 0 0 0 1px rgba(47, 87, 239, 0.08);
}

.home-hero-copy h1 {
  color: #132240;
  font-size: clamp(2.25rem, 4.3vw, 4.15rem);
  line-height: 1.05;
  max-width: 12.5ch;
}

.home-hero-copy p {
  max-width: 58ch;
  color: #5b6c88;
  font-size: 1.03rem;
}

.home-hero-search {
  max-width: 720px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 35, 59, 0.08);
  box-shadow: 0 20px 40px rgba(22, 35, 59, 0.08);
}

.home-hero-search input {
  min-height: 60px;
  padding: 0 20px;
  border-radius: 16px;
  background: #f8faff;
  border: 1px solid rgba(47, 87, 239, 0.08);
  color: #15233f;
  font-size: 1rem;
}

.home-hero-search .button {
  min-width: 210px;
  min-height: 60px;
  border-radius: 16px;
}

.button.button-primary,
.home-hero-primary,
.home-hero-search .button {
  background: linear-gradient(135deg, #ff8f1f 0%, #ff7b1b 52%, #ff653f 100%);
  box-shadow: 0 18px 34px rgba(255, 122, 31, 0.24);
}

.button.button-primary:hover,
.home-hero-primary:hover,
.home-hero-search .button:hover {
  box-shadow: 0 20px 36px rgba(255, 122, 31, 0.3);
}

.home-hero-secondary,
.button.button-secondary {
  color: #21365c;
  border-color: rgba(33, 54, 92, 0.1);
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
}

.home-domain-pills {
  gap: 10px;
}

.home-domain-pill {
  min-width: 120px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.95));
  border: 1px solid rgba(22, 35, 59, 0.08);
  box-shadow: 0 14px 28px rgba(20, 34, 70, 0.05);
}

.home-domain-pill strong {
  color: #14223f;
}

.home-domain-pill span {
  color: #ef7a13;
}

.home-hero-mini-features span {
  background: rgba(21, 35, 63, 0.05);
  color: #41506c;
}

.hero-gallery-shell {
  min-height: 100%;
  background:
    radial-gradient(circle at 15% 18%, rgba(59, 130, 246, 0.32), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(255, 143, 31, 0.18), transparent 22%),
    linear-gradient(145deg, #0f1d35 0%, #142844 54%, #1a3561 100%);
  border: 1px solid rgba(106, 145, 255, 0.12);
  box-shadow: 0 34px 80px rgba(13, 24, 46, 0.28);
}

.hero-gallery-slide::after {
  background:
    radial-gradient(circle at 14% 20%, rgba(79, 103, 255, 0.22), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(255, 143, 31, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(7, 14, 28, 0.06), rgba(7, 14, 28, 0.24));
}

.hero-slider-arrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-showcase-dot.is-active {
  background: #ff9a2a;
}

.home-marquee-shell,
.home-news-shell,
.sales-categories-shell,
.home-intro-rail,
.home-testimonials-shell,
.home-cta-box {
  background:
    radial-gradient(circle at top right, rgba(76, 110, 245, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96));
  border: 1px solid rgba(22, 35, 59, 0.08);
  box-shadow: 0 22px 50px rgba(20, 34, 70, 0.06);
}

.sales-categories-head h2 span,
.home-testimonials-head h2 span {
  color: #2f57ef;
}

.sales-category-link {
  background:
    radial-gradient(circle at top right, var(--category-surface-a), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
  box-shadow: 0 18px 34px rgba(20, 34, 70, 0.05);
}

.sales-category-link h3 {
  color: #17243c;
}

.sales-category-link p {
  color: #667791;
}

.home-news-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.95));
  border: 1px solid rgba(22, 35, 59, 0.08);
}

.home-news-badge {
  background: rgba(47, 87, 239, 0.08);
  color: #2f57ef;
}

.home-testimonial-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.92));
  border: 1px solid rgba(22, 35, 59, 0.08);
  box-shadow: 0 12px 24px rgba(20, 34, 70, 0.04);
}

.cta-box {
  align-items: center;
}

.cta-box h2 {
  color: #15233f;
}

.cta-box p {
  color: #60708b;
}

@media (max-width: 1080px) {
  .home-hero-copy {
    padding: 12px 0 0;
  }

  .home-hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header-premium .brand-premium .brand-copy small {
    display: none;
  }

  .home-hero-copy h1 {
    font-size: 2rem;
  }

  .home-hero-search {
    padding: 8px;
  }

  .home-hero-search .button {
    min-width: 100%;
  }
}

/* Homepage news hero and unified button palette */
.button,
.ghost-btn,
.filter-chip,
.catalog-button,
.detail-action-secondary,
.detail-action-outline,
.detail-action-demo,
.detail-action-admin {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button.button-primary,
.catalog-button-detail,
.detail-action-demo,
.detail-action-admin {
  background: linear-gradient(135deg, #ff921f 0%, #ff7f1f 52%, #ff6642 100%);
  border-color: rgba(255, 140, 31, 0.2);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(255, 127, 31, 0.24);
}

.button.button-primary:hover,
.catalog-button-detail:hover,
.detail-action-demo:hover,
.detail-action-admin:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(255, 127, 31, 0.32);
}

.button.button-secondary,
.ghost-btn,
.catalog-button-demo,
.detail-action-secondary,
.detail-action-outline {
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  border-color: rgba(47, 87, 239, 0.14);
  color: #233a62;
  box-shadow: 0 12px 24px rgba(20, 34, 70, 0.06);
}

.button.button-secondary:hover,
.ghost-btn:hover,
.catalog-button-demo:hover,
.detail-action-secondary:hover,
.detail-action-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 87, 239, 0.22);
  box-shadow: 0 16px 28px rgba(20, 34, 70, 0.1);
}

.catalog-button-cart,
.detail-action-cart {
  background: linear-gradient(135deg, #2d57ef 0%, #4271ff 56%, #5f98ff 100%);
  border-color: rgba(47, 87, 239, 0.2);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(47, 87, 239, 0.22);
}

.catalog-button-cart:hover,
.detail-action-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(47, 87, 239, 0.3);
}

.home-news-hero-section {
  padding: 26px 0 8px;
}

.home-news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.home-news-hero-copy {
  padding: 24px 0 8px;
}

.home-news-hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(85, 109, 176, 0.12);
  background:
    radial-gradient(circle at top right, rgba(76, 110, 245, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(242, 140, 27, 0.12), transparent 24%),
    linear-gradient(145deg, #13213a 0%, #1b2d4c 55%, #1f3b66 100%);
  box-shadow: 0 34px 80px rgba(13, 24, 46, 0.26);
}

.home-news-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #eff5ff;
}

.home-news-hero-head strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.home-news-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 146, 43, 0.2), rgba(255, 102, 66, 0.24));
  color: #fff4eb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-news-hero-list {
  display: grid;
  gap: 12px;
}

.home-news-hero-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  opacity: 0.48;
  transform: scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-news-hero-item.is-active,
.home-news-hero-item:hover {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 146, 43, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.home-news-hero-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.home-news-hero-content {
  display: grid;
  gap: 6px;
}

.home-news-hero-content strong {
  color: #f7fbff;
  font-size: 1rem;
  line-height: 1.45;
}

.home-news-hero-content p {
  margin: 0;
  color: rgba(227, 236, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.62;
}

.software-tab-card,
.software-tab-card:visited,
.filter-chip,
.filter-chip:visited {
  text-decoration: none;
}

.software-tab-card {
  color: #17243c;
}

.software-tab-card:hover,
.software-tab-card.is-active {
  transform: translateY(-2px);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, var(--chip-accent, #2f57ef) 0%, color-mix(in srgb, var(--chip-accent, #2f57ef) 78%, #ffffff) 100%);
  color: #ffffff;
  border-color: var(--chip-accent, #2f57ef);
  box-shadow: 0 16px 28px color-mix(in srgb, var(--chip-accent, #2f57ef) 18%, transparent);
}

.filter-chip:hover {
  color: var(--chip-accent, #2f57ef);
}

.catalog-spotlight {
  background:
    radial-gradient(circle at top right, rgba(255, 146, 43, 0.18), transparent 34%),
    linear-gradient(135deg, #13213a 0%, #1a2c49 100%);
}

.catalog-spotlight .button-secondary {
  color: #233a62;
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1080px) {
  .home-news-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-news-hero-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .home-news-hero-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-news-hero-index {
    width: 38px;
    height: 38px;
  }
}

/* Refined home technology hero */
.home-news-hero-section {
  padding: 18px 0 2px;
}

.home-news-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  align-items: center;
}

.home-news-hero-copy {
  padding: 10px 0 6px;
}

.home-news-hero-copy .home-hero-kicker {
  min-height: 36px;
  padding: 0 15px;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  box-shadow:
    inset 0 0 0 1px rgba(76, 110, 245, 0.08),
    0 10px 22px rgba(59, 86, 174, 0.06);
}

.home-news-hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-news-hero-copy p {
  max-width: 54ch;
  font-size: 0.98rem;
  line-height: 1.72;
}

.home-news-hero-copy .home-hero-cta-row {
  gap: 10px;
}

.home-news-hero-copy .button {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.home-news-hero-copy .home-hero-mini-features {
  gap: 8px;
}

.home-news-hero-copy .home-hero-mini-features span {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.79rem;
}

.home-news-hero-panel {
  position: relative;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(13, 24, 46, 0.2);
}

.home-news-hero-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(80, 122, 255, 0.28), transparent 70%);
  filter: blur(16px);
  animation: homeHeroFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.home-news-hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 147, 43, 0.18), transparent 70%);
  filter: blur(18px);
  animation: homeHeroFloatAlt 12s ease-in-out infinite;
  pointer-events: none;
}

.home-news-hero-head,
.home-news-hero-list {
  position: relative;
  z-index: 1;
}

.home-news-hero-head {
  gap: 10px;
}

.home-news-hero-head strong {
  font-size: 0.94rem;
}

.home-news-hero-badge {
  min-height: 30px;
  padding: 0 13px;
  font-size: 0.68rem;
  box-shadow: 0 8px 18px rgba(255, 133, 31, 0.14);
}

.home-news-hero-list {
  gap: 10px;
}

.home-news-hero-item {
  padding: 14px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  opacity: 0.62;
  transform: scale(0.992);
}

.home-news-hero-item.is-active,
.home-news-hero-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 34px rgba(7, 14, 28, 0.14);
}

.home-news-hero-index {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.76rem;
}

.home-news-hero-content {
  gap: 4px;
}

.home-news-hero-content strong {
  font-size: 0.92rem;
  line-height: 1.42;
}

.home-news-hero-content p {
  font-size: 0.82rem;
  line-height: 1.6;
}

@keyframes homeHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(14px, 10px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes homeHeroFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(-10px, -14px, 0) scale(1.06);
    opacity: 0.96;
  }
}

@media (max-width: 1080px) {
  .home-news-hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .home-news-hero-section {
    padding-top: 10px;
  }

  .home-news-hero-copy h1 {
    font-size: 2.05rem;
  }

  .home-news-hero-copy p {
    font-size: 0.93rem;
  }

  .home-news-hero-panel {
    padding: 14px;
    border-radius: 22px;
  }
}

/* Orange-black marquee refinement */
.home-marquee-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 147, 43, 0.16), transparent 18%),
    radial-gradient(circle at 88% 50%, rgba(76, 110, 245, 0.12), transparent 18%),
    linear-gradient(135deg, #0f1727 0%, #172338 52%, #1b2740 100%);
  border: 1px solid rgba(255, 146, 43, 0.14);
  box-shadow: 0 22px 48px rgba(12, 20, 38, 0.18);
}

.home-marquee-shell::before {
  background: linear-gradient(90deg, rgba(15, 23, 39, 0.98), rgba(15, 23, 39, 0));
}

.home-marquee-shell::after {
  background: linear-gradient(270deg, rgba(27, 39, 64, 0.98), rgba(27, 39, 64, 0));
}

.home-marquee-row {
  gap: 12px;
  padding: 10px 18px;
}

.home-marquee-row span {
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 146, 43, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: #fff7ef;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-marquee-row span:nth-child(odd) {
  color: #ffb25d;
  border-color: rgba(255, 169, 82, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 174, 95, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.home-marquee-row span:nth-child(even) {
  color: #dfe8ff;
}

@media (max-width: 720px) {
  .home-marquee-row {
    gap: 10px;
    padding: 10px 14px;
  }

  .home-marquee-row span {
    min-height: 31px;
    padding: 0 12px;
    font-size: 0.7rem;
  }
}

.live-support-form textarea {
  resize: vertical;
  min-height: 108px;
}

@media (max-width: 780px) {
  .live-support-widget {
    right: 12px;
    bottom: 12px;
    width: min(352px, calc(100vw - 20px));
  }

  .live-support-trigger {
    padding: 12px 14px;
  }

  .live-support-trigger-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .live-support-panel {
    padding: 16px;
  }

  .live-support-chat {
    max-height: 200px;
  }

  .live-support-bubble {
    max-width: 92%;
  }

  .live-support-panel-head {
    flex-direction: column;
  }
}

/* Admin action and category button polish */
.admin-dashboard-actions .button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.admin-dashboard-actions .button-secondary {
  border-color: rgba(79, 103, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(92, 122, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.94));
  color: #21419f;
  box-shadow: 0 14px 30px rgba(40, 61, 128, 0.1);
}

.admin-dashboard-actions .button-primary {
  background: linear-gradient(135deg, #4058f1 0%, #5672ff 52%, #38bdf8 100%);
  box-shadow: 0 18px 38px rgba(64, 88, 241, 0.24);
}

.admin-nav-group-trigger {
  min-height: 46px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(235, 241, 255, 0.78));
  border: 1px solid rgba(79, 103, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.admin-nav-group:hover .admin-nav-group-trigger,
.admin-nav-group.is-active .admin-nav-group-trigger,
.admin-nav-group-trigger.is-active {
  background:
    radial-gradient(circle at top left, rgba(103, 214, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(79, 103, 255, 0.16), rgba(87, 197, 255, 0.18));
  color: #2041c6;
  box-shadow: 0 14px 28px rgba(66, 92, 194, 0.12);
}

.admin-nav-link {
  min-height: 44px;
  border: 1px solid rgba(79, 103, 255, 0.05);
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 246, 255, 0.78));
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
  border-color: rgba(79, 103, 255, 0.12);
  box-shadow: 0 12px 24px rgba(51, 76, 160, 0.08);
}

.ghost-btn,
.filter-chip {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  border-color: rgba(73, 96, 180, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.9));
  color: #1e2c4f;
  box-shadow: 0 12px 24px rgba(26, 41, 78, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.ghost-btn:hover,
.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 103, 255, 0.2);
  box-shadow: 0 16px 28px rgba(45, 67, 130, 0.08);
}

.filter-chip {
  justify-content: center;
  text-align: center;
  font-size: 0.98rem;
  border-color: color-mix(in srgb, var(--chip-accent, #4f67ff) 18%, #dbe4f4);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(180deg, var(--chip-soft, rgba(79, 103, 255, 0.14)), rgba(255, 255, 255, 0.96));
  color: var(--chip-accent, #243a63);
}

.filter-chip.is-active,
.tab-btn.is-active,
.ghost-btn.is-active,
.admin-chip-button {
  background: linear-gradient(135deg, #152334 0%, #22324a 100%);
  color: #ffffff;
  border-color: #152334;
  box-shadow: 0 16px 30px rgba(21, 35, 52, 0.18);
}

.admin-chip-button {
  min-width: 104px;
}

.admin-empty-note {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(79, 103, 255, 0.18);
  background: rgba(244, 248, 255, 0.82);
  color: #536383;
}

.software-tab-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  border-color: color-mix(in srgb, var(--tab-accent, #4f67ff) 16%, #d8e2f6);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--tab-accent, #4f67ff) 16%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), color-mix(in srgb, var(--tab-soft, rgba(79, 103, 255, 0.14)) 88%, #ffffff));
}

.software-tab-card:hover,
.software-tab-card.is-active {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--tab-accent, #4f67ff) 24%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), color-mix(in srgb, var(--tab-soft, rgba(79, 103, 255, 0.14)) 100%, #ffffff));
}

.software-tab-footer span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tab-accent, #4f67ff) 18%, #ffffff), color-mix(in srgb, var(--tab-accent, #4f67ff) 10%, #dff4ff));
  color: var(--tab-accent, #3752df);
  font-weight: 800;
}

.software-tab-card.is-active .software-tab-footer span:last-child,
.software-tab-card:hover .software-tab-footer span:last-child {
  background: linear-gradient(135deg, var(--tab-accent, #4d63ff) 0%, color-mix(in srgb, var(--tab-accent, #4d63ff) 74%, #ffffff) 100%);
  color: #ffffff;
}

/* Admin header refinement */
.admin-top-nav-surface {
  position: relative;
  overflow: hidden;
  gap: 18px 20px;
  padding: 18px 22px 20px;
  border-radius: 32px;
  border: 1px solid rgba(77, 99, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(96, 114, 255, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(88, 208, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 255, 0.97));
  box-shadow: 0 26px 58px rgba(24, 38, 72, 0.1);
}

.admin-top-nav-surface::after {
  content: "";
  position: absolute;
  inset: auto 22px 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(77, 99, 255, 0), rgba(77, 99, 255, 0.16), rgba(87, 197, 255, 0));
  pointer-events: none;
}

.admin-top-nav-brand {
  gap: 14px;
}

.admin-top-nav-brand .brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 19px;
  box-shadow: 0 18px 34px rgba(39, 65, 168, 0.18);
}

.admin-top-nav-brand strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.admin-top-nav-brand small {
  font-size: 0.88rem;
}

.admin-top-nav-status {
  align-self: center;
  min-width: 190px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(77, 99, 255, 0.08);
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.08), rgba(87, 197, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.admin-top-nav-status strong {
  font-size: 1.08rem;
}

.admin-top-nav-groups {
  padding-bottom: 86px;
  gap: 14px;
}

.admin-nav-group-trigger {
  min-height: 48px;
  border-radius: 18px;
  font-size: 0.96rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.54), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 243, 255, 0.84));
}

.admin-nav-group:hover .admin-nav-group-trigger,
.admin-nav-group.is-active .admin-nav-group-trigger,
.admin-nav-group-trigger.is-active {
  transform: translateY(-2px);
}

.admin-nav-dropdown {
  top: 62px;
  padding: 16px;
  border-radius: 26px;
  box-shadow: 0 28px 54px rgba(24, 38, 72, 0.16);
}

.admin-nav-group:hover .admin-nav-dropdown,
.admin-nav-group:focus-within .admin-nav-dropdown,
.admin-nav-group.is-active .admin-nav-dropdown {
  gap: 12px;
}

.admin-nav-link {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 15px;
}

.admin-dashboard-topbar {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 220px) auto;
  align-items: center;
  gap: 24px;
  padding: 30px 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at left top, rgba(79, 103, 255, 0.12), transparent 28%),
    radial-gradient(circle at right center, rgba(88, 208, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.96));
  box-shadow: 0 28px 60px rgba(24, 38, 72, 0.1);
}

.admin-dashboard-topbar::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 103, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.admin-topbar-copy {
  position: relative;
  z-index: 1;
}

.admin-dashboard-topbar h1 {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.02;
}

.admin-dashboard-topbar p {
  margin-top: 8px;
  max-width: 60ch;
}

.admin-topbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.admin-topbar-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 103, 255, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: #4f638c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-topbar-pills {
  margin-top: 8px;
}

.admin-topbar-visual {
  align-self: stretch;
  align-items: center;
}

.admin-topbar-emblem {
  min-height: 144px;
  justify-content: center;
  padding: 22px;
  border-radius: 28px;
}

.admin-dashboard-actions {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  align-self: start;
}

.admin-dashboard-actions .button {
  min-width: 144px;
}

.admin-news-kpi-grid {
  margin-bottom: 6px;
}

.admin-dev-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-dev-paths {
  display: grid;
  gap: 12px;
}

.admin-dev-paths div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(77, 99, 255, 0.08);
  background: rgba(244, 248, 255, 0.72);
}

.admin-dev-paths span {
  color: #5e719a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-dev-paths code {
  color: #162647;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  word-break: break-all;
}

@media (max-width: 1180px) {
  .admin-dashboard-topbar {
    grid-template-columns: 1fr;
  }

  .admin-topbar-visual,
  .admin-dashboard-actions {
    justify-content: flex-start;
  }

  .admin-dev-list {
    grid-template-columns: 1fr;
  }
}

/* Admin nav visibility upgrade */
.admin-dashboard-main {
  gap: 14px;
}

.admin-top-nav-surface {
  gap: 16px 18px;
  padding: 16px 18px 18px;
  border-radius: 28px;
}

.admin-top-nav-groups-row,
.admin-top-nav-subtabs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-top-nav-groups-row {
  grid-column: 1 / -1;
  align-items: center;
}

.admin-top-nav-subtabs {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(77, 99, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(103, 214, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.admin-top-nav-subtabs-label {
  color: #6d80aa;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-nav-group-trigger {
  width: auto;
  min-width: 210px;
  justify-content: center;
  text-decoration: none;
}

.admin-top-nav-subtabs .admin-nav-link {
  width: auto;
  min-width: 180px;
  flex: 0 1 auto;
}

.admin-top-nav-status {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.admin-dashboard-topbar {
  padding: 24px 28px;
  border-radius: 28px;
}

.admin-topbar-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.admin-topbar-copy p {
  max-width: 760px;
}

@media (max-width: 1180px) {
  .admin-top-nav-groups-row,
  .admin-top-nav-subtabs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-nav-group-trigger,
  .admin-top-nav-subtabs .admin-nav-link {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .admin-top-nav-groups-row,
  .admin-top-nav-subtabs-grid {
    grid-template-columns: 1fr;
  }

  .admin-top-nav-subtabs {
    padding: 12px;
  }
}

/* Admin tabs premium color pass */
.admin-top-nav-surface {
  background:
    radial-gradient(circle at top left, rgba(88, 112, 255, 0.16), transparent 22%),
    radial-gradient(circle at top right, rgba(74, 208, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.97));
  border-color: rgba(73, 99, 188, 0.12);
  box-shadow: 0 22px 52px rgba(20, 35, 78, 0.09);
}

.admin-top-nav-subtabs {
  background:
    radial-gradient(circle at right center, rgba(92, 204, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.95), rgba(238, 244, 255, 0.92));
  border-color: rgba(79, 103, 255, 0.09);
}

.admin-nav-group-trigger {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 20px;
  color: #223453;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(234, 241, 255, 0.86));
  border: 1px solid rgba(79, 103, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 20px rgba(31, 45, 88, 0.04);
}

.admin-nav-group-trigger .admin-nav-group-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(79, 103, 255, 0.14), rgba(74, 208, 255, 0.18));
  color: #3151d6;
}

.admin-nav-group-trigger .admin-nav-group-icon::after,
.admin-nav-group-trigger .admin-nav-group-icon::before {
  transform: scale(0.88);
}

.admin-nav-group-trigger:hover,
.admin-nav-group-trigger.is-active {
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #4662ff 0%, #3d7eff 45%, #26b0ff 100%);
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(61, 92, 217, 0.2);
}

.admin-nav-group-trigger:hover .admin-nav-group-icon,
.admin-nav-group-trigger.is-active .admin-nav-group-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.admin-top-nav-subtabs-label {
  color: #4c63a6;
}

.admin-top-nav-subtabs .admin-nav-link {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  color: #2b4166;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.68), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 245, 255, 0.84));
  border: 1px solid rgba(83, 108, 188, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.admin-top-nav-subtabs .admin-nav-link:hover,
.admin-top-nav-subtabs .admin-nav-link.is-active {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(82, 103, 255, 0.96), rgba(66, 198, 255, 0.92));
  box-shadow: 0 16px 28px rgba(56, 84, 191, 0.16);
  transform: translateY(-1px);
}

.admin-top-nav-subtabs .admin-nav-link-dot {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.admin-top-nav-status {
  border-radius: 20px;
  border: 1px solid rgba(79, 103, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(74, 208, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 241, 255, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Admin nav compact visibility pass */
.admin-top-nav-groups-row {
  gap: 10px;
}

.admin-top-nav-subtabs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.admin-nav-group-trigger {
  min-width: 172px;
  min-height: 46px;
  padding: 0 16px;
  font-size: 1rem;
}

.admin-top-nav-subtabs .admin-nav-link {
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.96rem;
}

.admin-top-nav-subtabs-label {
  margin-bottom: 2px;
}

@media (max-width: 1180px) {
  .admin-top-nav-subtabs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Domain hero widget */
.hero-gallery-shell {
  position: relative;
  overflow: hidden;
}

.domain-hero-widget {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
  pointer-events: none;
}

.domain-hero-copy,
.domain-hero-pricing {
  pointer-events: auto;
}

.domain-hero-copy {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.78), rgba(13, 24, 46, 0.72));
  border: 1px solid rgba(121, 170, 255, 0.22);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 44px rgba(6, 15, 34, 0.22);
}

.domain-hero-badge {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(95, 120, 255, 0.24), rgba(56, 189, 248, 0.26));
  border: 1px solid rgba(139, 175, 255, 0.22);
  color: #eff5ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.domain-hero-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.08;
}

.domain-hero-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(234, 241, 255, 0.82);
  font-size: 0.98rem;
}

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

.domain-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.domain-hero-search input {
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(151, 180, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 18px;
  font-size: 1rem;
  color: #14213d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.domain-hero-extension-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.domain-extension-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.domain-extension-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.domain-extension-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(149, 176, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
  color: #eef4ff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.domain-extension-pill:hover span,
.domain-extension-pill input:checked + span,
.domain-extension-pill.is-active span {
  background: linear-gradient(135deg, rgba(92, 110, 255, 0.92), rgba(45, 182, 255, 0.88));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(60, 95, 220, 0.24);
}

.domain-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-hero-pricing {
  display: grid;
  gap: 12px;
  align-content: start;
}

.domain-price-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.92));
  border: 1px solid rgba(104, 133, 232, 0.14);
  box-shadow: 0 18px 30px rgba(17, 30, 68, 0.12);
}

.domain-price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.domain-price-card-top strong {
  color: #16223d;
  font-size: 1.05rem;
}

.domain-price-card-top span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.1);
  color: #3f57dc;
  font-size: 0.75rem;
  font-weight: 800;
}

.domain-price-main {
  color: #13213b;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.domain-price-card p {
  margin: 0;
  color: #607190;
  font-size: 0.9rem;
}

.domain-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4662ff 0%, #2fb8ff 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.domain-provider-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(9, 17, 31, 0.68);
  border: 1px solid rgba(123, 165, 255, 0.16);
  color: rgba(239, 245, 255, 0.78);
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  .domain-hero-widget {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 18px 18px 0;
    grid-template-columns: 1fr;
  }

  .hero-gallery-track {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .domain-hero-widget {
    margin: 14px 14px 0;
  }

  .domain-hero-copy,
  .domain-price-card {
    border-radius: 20px;
  }

  .domain-hero-search {
    grid-template-columns: 1fr;
  }
}

/* Header auth dedupe */
.top-strip-actions .top-auth-link,
.top-strip-actions .top-auth-button {
  display: none;
}

/* Admin menu refinement */
.admin-top-nav-surface {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: start;
  padding: 18px 22px 14px;
  border-radius: 30px;
}

.admin-top-nav-brand {
  align-self: center;
}

.admin-top-nav-groups-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.admin-nav-group-trigger {
  flex: 0 0 auto;
  min-width: 182px;
  min-height: 52px;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1;
}

.admin-nav-group-trigger .admin-nav-group-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 11px;
}

.admin-top-nav-subtabs {
  grid-column: 1 / -1;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(92, 116, 196, 0.08);
  background:
    radial-gradient(circle at top right, rgba(77, 205, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.92), rgba(237, 243, 255, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.admin-top-nav-subtabs-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.08);
  color: #5369a6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-top-nav-subtabs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-top-nav-subtabs .admin-nav-link {
  width: auto;
  min-width: 0;
  flex: 0 1 auto;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}

.admin-top-nav-subtabs .admin-nav-link:hover,
.admin-top-nav-subtabs .admin-nav-link.is-active {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(56, 84, 191, 0.14);
}

.admin-top-nav-subtabs .admin-nav-link-dot {
  width: 7px;
  height: 7px;
}

.admin-top-nav-status {
  min-width: 238px;
  min-height: 80px;
  padding: 16px 18px;
  border-radius: 22px;
}

@media (max-width: 1320px) {
  .admin-top-nav-surface {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 1fr);
  }

  .admin-top-nav-status {
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 1080px) {
  .admin-top-nav-surface {
    grid-template-columns: 1fr;
  }

  .admin-top-nav-status {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .admin-nav-group-trigger {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .admin-top-nav-surface {
    padding: 16px 14px 12px;
  }

  .admin-top-nav-groups-row {
    gap: 10px;
    flex-wrap: wrap;
  }

  .admin-nav-group-trigger {
    flex-basis: 100%;
    min-height: 48px;
    font-size: 0.92rem;
  }

  .admin-top-nav-subtabs {
    padding: 14px;
  }

  .admin-top-nav-subtabs .admin-nav-link {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }
}

/* Homepage hero stage refinement */
.home-hero-stage {
  padding-top: 26px;
  padding-bottom: 14px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px 10px 18px 0;
}

.home-hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(79, 103, 255, 0.08);
  color: #4660f0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #13243e;
}

.home-hero-copy p {
  margin: 0;
  max-width: 58ch;
  color: #5b6c86;
  font-size: 1rem;
  line-height: 1.78;
}

.home-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(79, 103, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94));
  box-shadow: 0 16px 34px rgba(28, 41, 77, 0.07);
}

.home-hero-search input {
  min-height: 58px;
  border: 1px solid rgba(79, 103, 255, 0.08);
  border-radius: 16px;
  padding: 0 18px;
  background: #ffffff;
  color: #16243d;
  font-size: 1rem;
}

.home-domain-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-domain-pill {
  display: inline-grid;
  gap: 4px;
  min-width: 118px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(79, 103, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(79, 103, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.92));
  box-shadow: 0 14px 28px rgba(28, 41, 77, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-domain-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 103, 255, 0.18);
  box-shadow: 0 18px 34px rgba(28, 41, 77, 0.08);
}

.home-domain-pill strong {
  color: #16233c;
  font-size: 1rem;
  font-family: "Sora", sans-serif;
}

.home-domain-pill span {
  color: #4d63ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.home-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero-mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero-mini-features span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(19, 35, 61, 0.05);
  color: #334663;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .home-hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .home-hero-search {
    grid-template-columns: 1fr;
  }

  .home-domain-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Light professional site theme */
body {
  color: #172338;
  background:
    radial-gradient(circle at top left, rgba(79, 103, 255, 0.08), transparent 22%),
    radial-gradient(circle at right 14%, rgba(15, 118, 110, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 52%, #eef4ff 100%);
}

.site-bg .bg-orb {
  opacity: 0.24;
  filter: blur(95px);
}

.site-bg .bg-grid {
  opacity: 0.18;
}

.site-header,
.site-header-premium,
.inner-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(73, 96, 180, 0.08);
  box-shadow: 0 12px 30px rgba(28, 41, 77, 0.05);
}

.glass-card,
.dashboard-card,
.floating-card,
.price-card,
.hosting-card,
.step-card,
.benefit-card,
.testimonial-card,
.service-card,
.catalog-card,
.story-card,
.stat-card,
.auth-card,
.detail-panel,
.checkout-panel,
.cart-item,
.admin-surface,
.admin-top-nav-surface,
.admin-dashboard-topbar {
  background:
    radial-gradient(circle at top right, rgba(79, 103, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 0.95));
  border-color: rgba(73, 96, 180, 0.08);
  box-shadow: 0 20px 44px rgba(28, 41, 77, 0.07);
}

.hero-section-premium::after,
.subhero-premium,
.panel-hero,
.section-tight {
  background:
    radial-gradient(circle at top left, rgba(79, 103, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 247, 255, 0.68));
}

.hero-copy p,
.section-heading p,
.subhero p,
.accent-copy p,
.cta-box p,
.benefit-card p,
.product-body p,
.catalog-body p,
.testimonial-card p,
.service-card p,
.story-card p,
.auth-card p,
.detail-copy p,
.detail-panel p,
.checkout-panel p,
.auth-note,
.empty-message,
.brand-copy small,
.brand-footer small,
.promo-bar-inner,
.top-strip-inner {
  color: #5b6b85;
}

.hero-copy h1,
.subhero h1,
.section-heading h2,
.cta-box h2,
.detail-copy h1,
.brand-copy strong,
.brand-footer strong {
  color: #16233b;
}

.button-primary {
  background: linear-gradient(135deg, #445cff 0%, #5873ff 54%, #39bdf8 100%);
  box-shadow: 0 18px 36px rgba(68, 92, 255, 0.22);
}

.button-secondary,
.ghost-btn,
.tab-btn,
.qty-btn,
.filter-chip {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.92));
  border-color: rgba(79, 103, 255, 0.12);
  color: #21345e;
}

.button-dark {
  background: linear-gradient(135deg, #16233b 0%, #223654 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(22, 35, 59, 0.18);
}

.catalog-spotlight,
.mega-side-card,
.admin-topbar,
.estimator-summary {
  background:
    radial-gradient(circle at top right, rgba(100, 126, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #16243b 0%, #213552 100%);
  color: #f6f9ff;
}

.catalog-spotlight h2,
.catalog-spotlight p,
.mega-side-card strong,
.mega-side-card p,
.admin-topbar .brand-copy strong,
.admin-topbar .brand-copy small,
.estimator-summary p {
  color: inherit;
}

.top-strip-premium {
  background: linear-gradient(180deg, #131d31 0%, #18253d 100%);
}

.footer-shell {
  background:
    radial-gradient(circle at top right, rgba(79, 103, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.96));
  border-top: 1px solid rgba(73, 96, 180, 0.08);
}

.footer-copyright {
  border-top-color: rgba(73, 96, 180, 0.08);
}

/* Refined dark header and stronger hero scene */
.site-header.site-header-premium {
  background:
    radial-gradient(circle at left top, rgba(79, 103, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #162237 0%, #1b2942 100%);
  border-bottom: 1px solid rgba(140, 166, 255, 0.12);
  box-shadow: 0 20px 42px rgba(9, 16, 30, 0.22);
}

.site-header-premium .brand-premium .brand-copy strong {
  color: #f8fbff;
}

.site-header-premium .brand-premium .brand-copy small {
  color: rgba(214, 226, 255, 0.72);
}

.site-header-premium .premium-nav > a,
.site-header-premium .software-trigger > a {
  color: rgba(232, 239, 255, 0.82);
}

.site-header-premium .premium-nav > a:hover,
.site-header-premium .premium-nav > a.is-current,
.site-header-premium .software-trigger > a:hover,
.site-header-premium .software-trigger > a.is-current,
.site-header-premium .software-dropdown.is-open .software-trigger > a,
.site-header-premium .corporate-dropdown.is-open .software-trigger > a {
  color: #ffffff;
}

.site-header-premium .header-tool,
.site-header-premium .cart-link-premium {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f7fbff;
}

.site-header-premium .header-tool:hover,
.site-header-premium .cart-link-premium:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-slider-section.hero-gallery-section {
  padding-top: 22px;
}

.hero-gallery-shell {
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(58, 124, 255, 0.24), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.18), transparent 18%),
    linear-gradient(135deg, #10203a 0%, #173056 55%, #1c3e72 100%);
  border: 1px solid rgba(133, 169, 255, 0.14);
  box-shadow: 0 30px 72px rgba(13, 24, 46, 0.28);
}

.hero-gallery-shell::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  opacity: 0.22;
}

.hero-gallery-slide::after {
  background:
    radial-gradient(circle at 14% 20%, rgba(79, 103, 255, 0.18), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(56, 189, 248, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(7, 14, 28, 0.08), rgba(7, 14, 28, 0.26));
}

.hero-gallery-controls {
  right: 26px;
  left: 26px;
  bottom: 24px;
}

.hero-slider-arrow {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 28px rgba(20, 40, 84, 0.22);
}

.hero-showcase-dot {
  background: rgba(255, 255, 255, 0.32);
}

.hero-showcase-dot.is-active {
  background: #ffffff;
}

.home-marquee-shell {
  background:
    radial-gradient(circle at left center, rgba(79, 103, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 255, 0.78));
  border: 1px solid rgba(79, 103, 255, 0.08);
  border-radius: 18px;
}

/* Final unified button theme */
.admin-row-actions,
.admin-inline-form {
  gap: 8px;
}

.ghost-btn,
.admin-row-actions .ghost-btn,
.admin-inline-form .ghost-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(47, 87, 239, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(180deg, #ffffff, #f3f7ff);
  color: #233a62;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 24px rgba(20, 34, 70, 0.06);
}

.ghost-btn:hover,
.admin-row-actions .ghost-btn:hover,
.admin-inline-form .ghost-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 87, 239, 0.2);
  box-shadow: 0 16px 28px rgba(20, 34, 70, 0.1);
}

.danger-btn,
.admin-row-actions .danger-btn,
.admin-inline-form .danger-btn {
  border-color: rgba(255, 122, 68, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 204, 0.46), transparent 38%),
    linear-gradient(180deg, #fff6f2, #fff0ea);
  color: #d2551b;
  box-shadow: 0 12px 24px rgba(255, 122, 68, 0.08);
}

.danger-btn:hover,
.admin-row-actions .danger-btn:hover,
.admin-inline-form .danger-btn:hover {
  border-color: rgba(255, 122, 68, 0.28);
  background: linear-gradient(135deg, #ff9240 0%, #ff6f3c 100%);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(255, 122, 68, 0.18);
}

.admin-chip-button {
  border-radius: 16px;
  min-width: 112px;
  padding: 0 18px;
  background: linear-gradient(135deg, #2d57ef 0%, #4271ff 100%);
  border-color: rgba(47, 87, 239, 0.18);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(47, 87, 239, 0.18);
}

.admin-chip-button:hover {
  box-shadow: 0 18px 30px rgba(47, 87, 239, 0.26);
}

@media (max-width: 720px) {
  .ghost-btn,
  .admin-row-actions .ghost-btn,
  .admin-inline-form .ghost-btn,
  .danger-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

/* Final hero and marquee visibility overrides */
.home-news-hero-copy {
  padding: 6px 0 4px;
}

.home-news-hero-title {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.home-news-hero-copy h1 {
  display: none;
}

.typewriter-prefix {
  color: #16243d;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.typewriter-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.4em;
  color: #1f3560;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

[data-typewriter-text] {
  color: #203864;
}

.typewriter-caret {
  display: inline-block;
  width: 2px;
  height: 0.92em;
  margin-left: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9120, #ff6d34);
  box-shadow: 0 0 0 1px rgba(255, 145, 32, 0.04), 0 0 16px rgba(255, 145, 32, 0.32);
  animation: typewriterCaretBlink 0.85s ease-in-out infinite;
}

@keyframes typewriterCaretBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.22;
  }
}

.home-news-hero-copy p {
  max-width: 49ch;
  color: #53657f;
  font-size: 0.97rem;
  line-height: 1.78;
}

.home-news-hero-copy .button {
  min-height: 46px;
  padding: 0 18px;
}

.home-news-hero-copy .home-hero-mini-features span {
  background: rgba(21, 35, 63, 0.07);
  color: #324969;
}

.home-marquee-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 147, 43, 0.22), transparent 18%),
    radial-gradient(circle at 88% 50%, rgba(76, 110, 245, 0.16), transparent 18%),
    linear-gradient(135deg, #0d1423 0%, #172339 52%, #202c47 100%);
  border: 1px solid rgba(255, 146, 43, 0.16);
  box-shadow: 0 24px 52px rgba(10, 18, 34, 0.22);
}

.home-marquee-shell::before {
  width: 34px;
  background: linear-gradient(90deg, rgba(13, 20, 35, 0.94), rgba(13, 20, 35, 0));
}

.home-marquee-shell::after {
  width: 34px;
  background: linear-gradient(270deg, rgba(32, 44, 71, 0.94), rgba(32, 44, 71, 0));
}

.home-marquee-track {
  animation-duration: 20s;
}

.home-marquee-row span {
  position: relative;
  border: 1px solid rgba(255, 162, 66, 0.2);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  color: #fffaf4;
  opacity: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.12);
}

.home-marquee-row span:nth-child(odd) {
  color: #ffc27b;
  border-color: rgba(255, 184, 102, 0.24);
  background:
    radial-gradient(circle at top left, rgba(255, 174, 95, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.home-marquee-row span:nth-child(even) {
  color: #eef4ff;
}

.home-marquee-row span strong,
.home-marquee-row span b {
  color: inherit;
}

@media (max-width: 720px) {
  .home-marquee-shell::before,
  .home-marquee-shell::after {
    width: 22px;
  }

  .typewriter-prefix {
    font-size: 1.45rem;
  }

  .typewriter-line {
    font-size: 1.85rem;
  }

  .home-news-hero-copy p {
    font-size: 0.91rem;
  }
}

/* Final button centering and theme polish */
.button,
.ghost-btn,
.danger-btn,
.admin-chip-button,
.filter-chip,
.software-tab-card-cta,
.home-hero-mini-features span,
.home-marquee-row span,
.admin-row-actions .ghost-btn,
.admin-row-actions .danger-btn,
.admin-inline-form .ghost-btn,
.admin-inline-form .danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}

.button,
.ghost-btn,
.danger-btn,
.admin-chip-button,
.admin-row-actions .ghost-btn,
.admin-row-actions .danger-btn,
.admin-inline-form .ghost-btn,
.admin-inline-form .danger-btn {
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 30px rgba(18, 32, 66, 0.08);
}

.button.button-primary {
  background: linear-gradient(135deg, #ff922f 0%, #ff6d2d 100%);
  border: 1px solid rgba(255, 122, 52, 0.24);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(255, 122, 52, 0.2);
}

.button.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(255, 122, 52, 0.24);
}

.button.button-secondary,
.ghost-btn,
.admin-row-actions .ghost-btn,
.admin-inline-form .ghost-btn {
  min-width: 112px;
}

.button.button-secondary {
  border: 1px solid rgba(41, 66, 112, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(180deg, #ffffff, #f3f7ff);
  color: #22385f;
}

.button.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 52, 0.18);
  box-shadow: 0 18px 30px rgba(18, 32, 66, 0.1);
}

.ghost-btn,
.admin-row-actions .ghost-btn,
.admin-inline-form .ghost-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(41, 66, 112, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(180deg, #ffffff, #f4f7ff);
  color: #22385f;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(18, 32, 66, 0.08);
}

.ghost-btn:hover,
.admin-row-actions .ghost-btn:hover,
.admin-inline-form .ghost-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 52, 0.16);
  box-shadow: 0 18px 32px rgba(18, 32, 66, 0.12);
}

.danger-btn,
.admin-row-actions .danger-btn,
.admin-inline-form .danger-btn {
  min-width: 84px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 68, 0.2);
  background:
    radial-gradient(circle at top left, rgba(255, 223, 210, 0.5), transparent 40%),
    linear-gradient(180deg, #fff7f3, #ffefe7);
  color: #d45a1f;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(255, 122, 68, 0.1);
}

.danger-btn:hover,
.admin-row-actions .danger-btn:hover,
.admin-inline-form .danger-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 68, 0.28);
  background: linear-gradient(135deg, #ff9240 0%, #ff6f3c 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(255, 122, 68, 0.2);
}

.admin-chip-button {
  min-width: 126px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 18px;
  line-height: 1;
}

@media (max-width: 720px) {
  .button,
  .ghost-btn,
  .danger-btn,
  .admin-chip-button,
  .admin-row-actions .ghost-btn,
  .admin-row-actions .danger-btn,
  .admin-inline-form .ghost-btn,
  .admin-inline-form .danger-btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .button.button-secondary,
  .ghost-btn,
  .admin-row-actions .ghost-btn,
  .admin-inline-form .ghost-btn {
    min-width: 100px;
  }
}

.product-description-stack {
  display: grid;
  gap: 16px;
}

.product-description-muted {
  color: var(--ink-soft);
}

.product-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tag-list span,
.product-empty-note {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(19, 33, 47, 0.05);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.product-empty-note {
  color: var(--ink-soft);
}

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

.screenshot-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(19, 33, 47, 0.08);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow);
}

.screenshot-card-media {
  min-height: 180px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, #335c4e, #93c1b0);
}

.screenshot-card.copper .screenshot-card-media {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, #87553b, #ebb588);
}

.screenshot-card.navy .screenshot-card-media {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, #24374f, #8cb6de);
}

.screenshot-card-media.has-image {
  background:
    linear-gradient(rgba(17, 26, 44, 0.24), rgba(17, 26, 44, 0.24)),
    var(--shot) center/cover no-repeat;
}

.screenshot-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.screenshot-card p {
  margin: 0;
  color: var(--ink-soft);
}
.admin-product-gallery-preview {
  display: grid;
  gap: 10px;
  align-content: start;
}

.admin-product-gallery-preview span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.admin-product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-product-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.tabs-nav .tab-btn {
  cursor: pointer;
}

.tabs-nav .tab-btn:focus-visible {
  outline: 2px solid rgba(75, 99, 255, 0.28);
  outline-offset: 2px;
}
/* Live support quick reply and online pulse */
.live-support-widget.is-online .live-support-trigger-copy small,
.live-support-status-pill.is-online {
  animation: hdsoftSupportOnlineBlink 1.4s ease-in-out infinite;
}

.live-support-chip {
  position: relative;
  overflow: hidden;
}

.live-support-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.45) 50%, transparent 90%);
  transform: translateX(-120%);
  transition: transform 380ms ease;
}

.live-support-chip:hover::after {
  transform: translateX(120%);
}

@keyframes hdsoftSupportOnlineBlink {
  0%, 100% {
    opacity: 1;
    filter: saturate(1);
  }
  50% {
    opacity: 0.66;
    filter: saturate(1.2);
  }
}