:root {
  --color-bg: #f5f8fb;
  --color-surface: #ffffff;
  --color-surface-soft: #eef6f8;
  --color-dark: #0d1b2a;
  --color-muted: #5f6f82;
  --color-primary: #1266f1;
  --color-primary-dark: #0b4fc1;
  --color-accent: #18b77a;
  --color-accent-dark: #0d8a5a;
  --color-warning: #f59e0b;
  --color-border: #dbe7ef;
  --shadow-soft: 0 20px 60px rgba(13, 27, 42, 0.1);
  --shadow-card: 0 12px 30px rgba(13, 27, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

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

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

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

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

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 231, 239, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-dark);
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 12px 25px rgba(18, 102, 241, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu a {
  color: #304155;
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(18, 102, 241, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 86px;
  background:
    radial-gradient(circle at 82% 12%, rgba(24, 183, 122, 0.2), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(18, 102, 241, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef7f3 100%);
}

.hero-grid,
.system-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(18, 102, 241, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.system-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-dark);
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 7vw, 4.8rem);
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(18, 102, 241, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(18, 102, 241, 0.3);
}

.btn-secondary,
.btn-outline {
  border-color: var(--color-border);
  background: #ffffff;
  color: var(--color-dark);
}

.btn-secondary:hover,
.btn-outline:hover {
  box-shadow: var(--shadow-card);
}

.dashboard-card {
  border: 1px solid rgba(219, 231, 239, 0.95);
  border-radius: var(--radius-lg);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.tech-mockup {
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(135deg, rgba(18, 102, 241, 0.16), rgba(24, 183, 122, 0.16));
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(219, 231, 239, 0.95);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-floating-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(290px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 18px;
  background: rgba(13, 27, 42, 0.82);
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-floating-card strong,
.hero-floating-card span {
  display: block;
}

.hero-floating-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.mockup-window {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #ffffff;
}

.mockup-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 390px;
}

.mockup-sidebar {
  background: #0d1b2a;
}

.mockup-content {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #f7fbfd;
}

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-kpis span,
.mockup-table span {
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.06);
}

.mockup-kpis span {
  height: 86px;
}

.mockup-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 150px;
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
}

.mockup-chart i {
  flex: 1;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
}

.mockup-table {
  display: grid;
  gap: 10px;
}

.mockup-table span {
  height: 34px;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card,
.project-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 0 0 rgba(13, 27, 42, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 102, 241, 0.32);
  box-shadow: var(--shadow-card);
}

.service-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: rgba(18, 102, 241, 0.1);
  color: var(--color-primary);
  font-weight: 900;
}

.service-icon,
.mini-icon,
.metric-icon {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.service-icon {
  margin-bottom: 2px;
}

.mini-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
}

.metric-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.service-card h3,
.project-card h3 {
  margin: 18px 0 8px;
}

.service-card p,
.project-card p {
  margin: 0;
  color: var(--color-muted);
}

.help-section {
  background: #ffffff;
}

.project-image {
  height: 145px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dff8ec, #1266f1);
}

.project-market {
  background: linear-gradient(135deg, #dff8ec, #18b77a);
}

.project-restaurant {
  background: linear-gradient(135deg, #fff7d6, #f59e0b);
}

.project-store {
  background: linear-gradient(135deg, #e7f0ff, #1266f1);
}

.project-academy {
  background: linear-gradient(135deg, #f1e8ff, #7c3aed);
}

.project-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-primary);
  font-weight: 900;
}

.project-card img {
  width: 100%;
  height: 170px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(13, 27, 42, 0.04);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: #7df0b7;
  font-weight: 800;
}

.form-message.error {
  color: #fca5a5;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.footer-columns h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-columns a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  max-width: var(--container);
  margin: 26px auto 0;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-top,
.chart-heading,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top span,
.metric span,
.chart-heading span {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.dashboard-top strong {
  display: block;
  font-size: 1.15rem;
}

.status-pill {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(24, 183, 122, 0.12);
  color: var(--color-accent-dark) !important;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.metric {
  min-height: 116px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
}

.metric strong {
  display: block;
  margin-top: 12px;
  font-size: 1.55rem;
}

.metric-warning strong {
  color: var(--color-warning);
}

.chart-card {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px;
  background: #0d1b2a;
  color: #ffffff;
}

.chart-heading strong {
  color: #7df0b7;
}

.bar-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 160px;
  gap: 12px;
  margin-top: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bar-chart span {
  width: 100%;
  min-width: 18px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #7df0b7, #1266f1);
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading h2,
.system-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p,
.system-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.feature-grid,
.module-grid,
.pricing-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card,
.module-card,
.plan-card,
.value-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--color-surface);
  box-shadow: 0 0 0 rgba(13, 27, 42, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover,
.module-card:hover,
.plan-card:hover,
.value-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 102, 241, 0.32);
  box-shadow: var(--shadow-card);
}

.card-icon,
.module-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(18, 102, 241, 0.1);
  color: var(--color-primary);
  font-weight: 900;
}

.info-card h3,
.module-card h3,
.value-card h3,
.plan-card h3 {
  margin: 18px 0 8px;
  line-height: 1.18;
}

.info-card p,
.module-card p,
.value-card p {
  margin: 0;
  color: var(--color-muted);
}

.system-section,
.pricing-section {
  background: #ffffff;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #34475b;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: inset 0 0 0 4px #dff8ec;
}

.store-preview {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  background: #f8fafc;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-bar span:nth-child(2) {
  background: #febc2e;
}

.browser-bar span:nth-child(3) {
  background: #28c840;
}

.browser-bar small {
  margin-left: 10px;
  color: var(--color-muted);
  font-weight: 700;
}

.store-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(135deg, #0d1b2a, #123d68);
  color: #ffffff;
}

.store-hero span {
  color: #7df0b7;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-hero h3 {
  margin: 6px 0;
  font-size: 1.65rem;
}

.store-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.whatsapp-btn {
  flex: 0 0 auto;
  border-radius: 12px;
  padding: 11px 14px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-thumb {
  height: 90px;
  border-radius: 12px;
}

.product-green {
  background: linear-gradient(135deg, #dff8ec, #18b77a);
}

.product-blue {
  background: linear-gradient(135deg, #e7f0ff, #1266f1);
}

.product-yellow {
  background: linear-gradient(135deg, #fff7d6, #f59e0b);
}

.product-card h4 {
  margin: 12px 0 4px;
  font-size: 0.95rem;
}

.product-card span {
  color: var(--color-accent-dark);
  font-weight: 900;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 16px;
  background: #ffffff;
  color: #304155;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.module-card {
  min-height: 196px;
}

.module-card.hidden {
  display: none;
}

.audience-section,
.value-section {
  background: linear-gradient(180deg, #f5f8fb 0%, #eef6f8 100%);
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(24, 183, 122, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  background: #ffffff;
  color: #244056;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.05);
}

.badge-grid img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.plan-card.featured {
  border: 2px solid var(--color-primary);
  transform: translateY(-12px);
  box-shadow: 0 24px 55px rgba(18, 102, 241, 0.16);
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(24, 183, 122, 0.12);
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 10px 0 20px;
  color: var(--color-primary);
  font-size: 2.3rem;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  color: #405267;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

.value-grid {
  grid-template-columns: repeat(5, 1fr);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.94), rgba(17, 57, 96, 0.94)),
    #0d1b2a;
  color: #ffffff;
}

.contact-copy h2,
.contact-copy p {
  color: #ffffff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7df0b7;
  box-shadow: 0 0 0 4px rgba(125, 240, 183, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 30px 0;
  background: #07111d;
  color: #ffffff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.admin-page {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  background: #eef4f8;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 24px;
  background: #0d1b2a;
  color: #ffffff;
}

.admin-logo {
  color: #ffffff;
}

.admin-nav {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.admin-nav a {
  border-radius: 12px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.admin-back {
  margin-top: auto;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

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

.admin-user {
  min-width: 190px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.admin-user span,
.admin-metric-card span,
.admin-panel-head span,
.report-cards span {
  display: block;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.admin-user strong {
  display: block;
  color: var(--color-dark);
}

.admin-section {
  scroll-margin-top: 28px;
  margin-bottom: 26px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.admin-metric-card,
.admin-panel {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.admin-metric-card {
  padding: 20px;
}

.admin-metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.admin-metric-card small {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
}

.admin-metric-card.warning strong {
  color: var(--color-warning);
}

.admin-content-grid,
.split-admin {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
}

.admin-panel {
  min-width: 0;
  padding: 22px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-panel-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.admin-panel-head select,
.admin-search,
.sale-form-preview input,
.sale-form-preview select {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 11px 12px;
  background: #ffffff;
  color: var(--color-dark);
  outline: none;
}

.small-action {
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(18, 102, 241, 0.08);
  color: var(--color-primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.strong-action {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(18, 102, 241, 0.18);
}

.admin-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 14px;
  min-height: 260px;
  padding-top: 20px;
}

.admin-bars div {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 10px;
  height: 240px;
  text-align: center;
}

.admin-bars span {
  display: block;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
}

.admin-bars small {
  color: var(--color-muted);
  font-weight: 800;
}

.order-list,
.customer-list,
.report-cards,
.sale-form-preview {
  display: grid;
  gap: 12px;
}

.order-list article,
.customer-list article,
.report-cards article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 14px;
  background: #f8fbfd;
}

.order-list span,
.customer-list small {
  display: block;
  color: var(--color-muted);
}

.sale-form-preview label {
  display: grid;
  gap: 7px;
  color: #34475b;
  font-weight: 800;
}

.sale-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  padding: 16px;
  background: #eef6f8;
}

.sale-total strong {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.admin-table {
  overflow-x: auto;
}

.table-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 14px;
  min-width: 560px;
  border-bottom: 1px solid var(--color-border);
  padding: 13px 0;
  color: #33475c;
}

.product-table .table-row {
  grid-template-columns: minmax(190px, 1.3fr) repeat(4, minmax(100px, 1fr));
  min-width: 760px;
}

.company-table .table-row {
  grid-template-columns: minmax(190px, 1.3fr) repeat(4, minmax(120px, 1fr));
  min-width: 820px;
}

.web-table .table-row,
.support-table .table-row {
  grid-template-columns: minmax(190px, 1.2fr) repeat(4, minmax(110px, 1fr));
  min-width: 820px;
}

.table-row.is-hidden {
  display: none;
}

.table-head {
  color: var(--color-muted);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.state-ok,
.state-wait {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.82rem;
  font-weight: 900;
}

.state-ok {
  background: rgba(24, 183, 122, 0.12);
  color: var(--color-accent-dark);
}

.state-wait {
  background: rgba(245, 158, 11, 0.14);
  color: #a16207;
}

.customer-list article {
  justify-content: flex-start;
}

.customer-list article > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(18, 102, 241, 0.1);
  color: var(--color-primary);
  font-weight: 900;
}

.report-cards article {
  display: grid;
  align-items: start;
}

.report-cards strong {
  font-size: 1.1rem;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 20px;
  margin-top: 20px;
}

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

.pipeline-grid article {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px;
  background: #f8fbfd;
}

.pipeline-grid span {
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.pipeline-grid strong {
  display: block;
  margin: 6px 0;
  font-size: 1.7rem;
  line-height: 1;
}

.pipeline-grid small,
.health-list small {
  color: var(--color-muted);
}

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

.health-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 14px;
  background: #f8fbfd;
}

.health-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.health-dot.ok {
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(24, 183, 122, 0.12);
}

.health-dot.warn {
  background: var(--color-warning);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.13);
}

.system-demo-page {
  background: #f5f8fb;
}

.system-demo-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(24, 183, 122, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fbff, #eef7f3);
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 46px;
  align-items: center;
}

.demo-hero-grid h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 1.08;
}

.demo-hero-grid p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.demo-summary-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.demo-summary-card div {
  border-radius: 16px;
  padding: 16px;
  background: #f7fbfd;
}

.demo-summary-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.demo-summary-card strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.demo-switch-section {
  padding-top: 56px;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.demo-tab {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 12px 18px;
  background: #ffffff;
  color: var(--color-dark);
  font-weight: 900;
  cursor: pointer;
}

.demo-tab.active,
.demo-tab:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.demo-view {
  display: none;
}

.demo-view.active {
  display: block;
}

.client-store-shell {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.client-store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.client-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.client-brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 900;
}

.client-store-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #34475b;
  font-weight: 800;
}

.client-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  padding: 42px 30px;
  background: linear-gradient(135deg, #0d1b2a, #124f70);
  color: #ffffff;
}

.client-hero span {
  color: #7df0b7;
  font-weight: 900;
  text-transform: uppercase;
}

.client-hero h2 {
  max-width: 660px;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.client-hero p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
}

.client-hero-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.client-hero-card span {
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.client-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 24px 0;
}

.client-categories button {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 9px 13px;
  background: #ffffff;
  color: #34475b;
  font-weight: 800;
}

.client-categories button.active,
.client-categories button:hover {
  background: rgba(24, 183, 122, 0.12);
  color: var(--color-accent-dark);
}

.client-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
}

.shop-product {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.shop-product-image {
  height: 132px;
  border-radius: 14px;
}

.product-clean {
  background: linear-gradient(135deg, #e0f2fe, #38bdf8);
}

.shop-product h3 {
  margin: 14px 0 4px;
  font-size: 1rem;
}

.shop-product p {
  margin: 0 0 14px;
  color: var(--color-muted);
}

.shop-product > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shop-product strong {
  color: var(--color-accent-dark);
  font-size: 1.05rem;
}

.add-cart-btn {
  border: 0;
  border-radius: 10px;
  padding: 9px 11px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.client-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 24px 24px;
  border-radius: 18px;
  padding: 20px;
  background: #eef6f8;
}

.client-checkout h2,
.client-checkout p {
  margin: 0;
}

.client-checkout p {
  color: var(--color-muted);
}

.embedded-admin {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.embedded-admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: #0d1b2a;
  color: #ffffff;
}

.embedded-admin-sidebar strong {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.embedded-admin-sidebar a {
  border-radius: 12px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.embedded-admin-sidebar a.active,
.embedded-admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.embedded-admin-main {
  min-width: 0;
  padding: 24px;
  background: #eef4f8;
}

.embedded-admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.embedded-admin-top span {
  color: var(--color-muted);
  font-weight: 800;
}

.embedded-admin-top h2 {
  margin: 4px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.embedded-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  margin-bottom: 18px;
}

/* Admin platform */
.admin-app-page {
  min-height: 100vh;
  background: #eef4f8;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(360px, 620px);
  gap: 28px;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 20%, rgba(24, 183, 122, 0.18), transparent 30%),
    linear-gradient(135deg, #0d1b2a, #123d68);
}

.login-card {
  display: grid;
  gap: 16px;
  width: min(100%, 460px);
  border-radius: 24px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.login-visual {
  position: relative;
  overflow: hidden;
  width: min(100%, 620px);
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.login-visual::after {
  content: "Gestión de clientes, proyectos y soporte";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(13, 27, 42, 0.82);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.login-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.login-card h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
}

.login-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.login-card label,
.modal-card label,
.settings-form label {
  display: grid;
  gap: 7px;
  color: #34475b;
  font-weight: 800;
}

.login-card input,
.modal-card input,
.settings-form input {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 13px;
  outline: none;
}

.demo-credentials {
  border-radius: 12px;
  padding: 11px 12px;
  background: #eef6f8;
  font-size: 0.92rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-menu-link {
  border: 0;
  border-radius: 12px;
  padding: 13px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-menu-link:hover,
.admin-menu-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.logout-link {
  color: #fecaca;
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.admin-metrics-six {
  grid-template-columns: repeat(6, 1fr);
}

.clients-table .table-row {
  grid-template-columns: 80px minmax(180px, 1.3fr) minmax(140px, 1fr) minmax(150px, 1fr) minmax(120px, 1fr) minmax(110px, 0.8fr) minmax(90px, 0.7fr);
  min-width: 980px;
}

.support-table .table-row {
  grid-template-columns: 100px minmax(150px, 1fr) minmax(220px, 1.4fr) minmax(100px, 0.7fr) minmax(110px, 0.8fr) minmax(120px, 0.8fr);
  min-width: 900px;
}

.quote-table .table-row {
  grid-template-columns: minmax(160px, 1fr) minmax(140px, 1fr) minmax(180px, 1.2fr) minmax(140px, 0.8fr) minmax(110px, 0.7fr);
  min-width: 820px;
}

.table-action {
  width: fit-content;
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(18, 102, 241, 0.08);
  color: var(--color-primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.project-admin-grid,
.app-grid,
.report-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.project-admin-card h2 {
  margin: 0 0 8px;
}

.project-admin-card p,
.project-admin-card span,
.project-admin-card small {
  display: block;
  color: var(--color-muted);
}

.progress {
  overflow: hidden;
  height: 10px;
  margin: 16px 0 8px;
  border-radius: 999px;
  background: #e5eef5;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.app-card {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.app-card > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(18, 102, 241, 0.1);
  color: var(--color-primary);
  font-weight: 900;
}

.app-card h3 {
  margin: 16px 0 8px;
}

.app-card p {
  color: var(--color-muted);
}

.mini-bars {
  display: grid;
  gap: 14px;
}

.mini-bars p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.mini-bars b {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(13, 27, 42, 0.62);
}

.modal-card {
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.modal-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .feature-grid,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-grid,
  .project-grid,
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-login {
    grid-template-columns: 1fr;
  }

  .login-visual {
    display: none;
  }

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

  .admin-page {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-nav {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .admin-back {
    margin-top: 22px;
  }

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

  .ops-grid,
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-hero-grid,
  .embedded-admin,
  .embedded-admin-grid {
    grid-template-columns: 1fr;
  }

  .client-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    display: block;
    border-radius: 12px;
    padding: 14px;
  }

  .nav-menu a:hover {
    background: var(--color-surface-soft);
  }

  .hero-grid,
  .system-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .project-admin-grid,
  .report-dashboard,
  .settings-form {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 20px;
  }

  .admin-topbar,
  .admin-content-grid,
  .split-admin {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-top-actions {
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .client-store-header,
  .client-checkout,
  .embedded-admin-top {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding-top: 70px;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .feature-grid,
  .module-grid,
  .service-grid,
  .project-grid,
  .app-grid,
  .value-grid,
  .metric-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 380px;
  }

  .hero-floating-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .mockup-sidebar {
    min-height: 54px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .dashboard-card,
  .contact-form,
  .plan-card {
    padding: 20px;
    border-radius: 18px;
  }

  .store-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-sidebar,
  .admin-main {
    padding: 16px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

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

  .admin-top-actions,
  .admin-top-actions .small-action {
    width: 100%;
  }

  .admin-panel {
    padding: 18px;
  }

  .admin-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-panel-head select,
  .admin-search {
    width: 100%;
  }

  .admin-bars {
    gap: 8px;
  }

  .demo-tabs,
  .client-store-header nav {
    flex-direction: column;
  }

  .demo-tab,
  .client-checkout .btn {
    width: 100%;
  }

  .client-products {
    grid-template-columns: 1fr;
  }

  .client-hero,
  .client-products,
  .client-categories,
  .embedded-admin-main {
    padding: 18px;
  }

  .embedded-admin-sidebar {
    padding: 18px;
  }
}
