﻿:root {
  --blue-950: #071a35;
  --blue-900: #0b2447;
  --blue-800: #123865;
  --blue-100: #eaf2ff;
  --green-600: #15a673;
  --green-500: #1fbd84;
  --mint-100: #e9fbf3;
  --amber-500: #f2a93b;
  --ink: #172033;
  --muted: #627086;
  --line: #dbe4ef;
  --surface: #ffffff;
  --soft: #f6f9fc;
  --danger: #b42318;
  --shadow: 0 18px 48px rgba(7, 26, 53, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 239, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--green-600));
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #34445c;
  font-size: 15px;
  font-weight: 650;
}

.site-nav.is-static {
  display: flex;
}

.site-nav a:not(.btn):hover {
  color: var(--green-600);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--blue-900);
  box-shadow: 0 10px 24px rgba(11, 36, 71, 0.22);
}

.btn-secondary {
  color: #06251a;
  background: var(--green-500);
}

.btn-outline {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--line);
}

.btn-danger {
  color: #fff;
  background: var(--danger);
  border-color: var(--danger);
}

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

.section-band,
.section,
.cta-section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 75px);
  background:
    linear-gradient(110deg, rgba(234, 242, 255, 0.9), rgba(233, 251, 243, 0.82) 54%, #fff 54%),
    #fff;
}

.real-hero {
  min-height: calc(100vh - 75px);
  background:
    radial-gradient(circle at 82% 12%, rgba(31, 189, 132, 0.14), transparent 30%),
    linear-gradient(115deg, #f8fbff 0%, #eef6ff 47%, #ffffff 47%, #ffffff 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-900);
  font-size: 20px;
}

.hero-subtitle {
  max-width: 640px;
  color: #40516b;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #42536c;
}

.trust-row span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 228, 239, 0.86);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.proof-strip article {
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 228, 239, 0.92);
  border-radius: var(--radius);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--blue-950);
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
}

.product-showcase {
  position: relative;
  min-height: 560px;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-main {
  padding: 18px;
}

.showcase-floating {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(340px, 72%);
  padding: 16px;
}

.showcase-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.showcase-top strong,
.showcase-top small {
  display: block;
}

.showcase-top small {
  color: var(--muted);
}

.barber-mark {
  background: linear-gradient(135deg, #0f172a, #1f7a8c);
}

.showcase-screen {
  display: grid;
  grid-template-columns: 124px 1fr;
  min-height: 340px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.screen-sidebar {
  padding: 24px 14px;
  background: var(--blue-950);
}

.screen-sidebar span {
  display: block;
  height: 12px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.screen-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
}

.screen-kpis,
.odontogram-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.screen-kpis {
  padding: 16px;
}

.screen-kpis span,
.screen-kpis b {
  display: block;
}

.screen-kpis span {
  color: var(--muted);
}

.screen-kpis b {
  color: var(--blue-900);
  font-size: 34px;
}

.odontogram-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-content: center;
  padding: 22px;
}

.odontogram-preview i {
  display: block;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #ffffff, #dbe9f9);
  border: 2px solid #9db6d6;
  border-radius: 42% 42% 50% 50%;
}

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

.barber-lines {
  display: grid;
  gap: 10px;
}

.barber-lines span {
  display: block;
  height: 18px;
  background: linear-gradient(90deg, #eaf2ff, #e9fbf3);
  border-radius: 999px;
}

.device-stage {
  position: relative;
  min-height: 540px;
}

.device {
  background: #fff;
  border: 1px solid #cfdbea;
  box-shadow: var(--shadow);
}

.laptop {
  overflow: hidden;
  min-height: 390px;
  border-radius: 8px;
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px;
  background: var(--blue-900);
}

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

.dashboard-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 350px;
}

.dashboard-grid aside {
  padding: 24px 16px;
  color: #fff;
  background: var(--blue-950);
}

.dashboard-grid aside b,
.dashboard-grid aside small,
.dashboard-grid aside i {
  display: block;
}

.dashboard-grid aside small {
  margin: 6px 0 28px;
  color: #aebed4;
}

.dashboard-grid aside i {
  height: 12px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.dashboard-grid section {
  padding: 24px;
  background: var(--soft);
}

.dash-top,
.metric-row {
  display: grid;
  gap: 14px;
}

.dash-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
}

.dash-top strong {
  color: var(--green-600);
  font-size: 24px;
}

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

.metric-row article {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-row b {
  display: block;
  color: var(--blue-900);
  font-size: 24px;
}

.metric-row small {
  color: var(--muted);
}

.chart {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 150px;
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.chart span {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(180deg, var(--green-500), var(--blue-800));
  border-radius: 6px 6px 0 0;
}

.tablet {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 190px;
  min-height: 230px;
  padding: 22px;
  border-radius: 8px;
}

.phone {
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 138px;
  min-height: 230px;
  padding: 20px 16px;
  color: #fff;
  background: var(--blue-900);
  border-radius: 8px;
}

.tablet strong,
.phone strong,
.phone b {
  display: block;
}

.phone b {
  margin: 16px 0 24px;
  color: var(--green-500);
  font-size: 28px;
}

.tablet span,
.phone span {
  display: block;
  height: 14px;
  margin-top: 16px;
  background: var(--blue-100);
  border-radius: 999px;
}

.phone span {
  background: rgba(255, 255, 255, 0.22);
}

.section {
  max-width: 1320px;
  margin: 0 auto;
}

.muted {
  max-width: none;
  background: var(--soft);
}

.muted > * {
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.wide-heading {
  max-width: 880px;
}

.wide-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.solution-grid,
.benefit-grid,
.pricing-grid,
.demo-grid {
  display: grid;
  gap: 18px;
}

.systems-section {
  max-width: 1380px;
}

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

.catalog-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.98fr) 1fr;
  min-height: 360px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 26, 53, 0.08);
}

.catalog-card.coming-soon {
  opacity: 0.94;
}

.catalog-media {
  position: relative;
  display: grid;
  min-height: 320px;
  padding: 22px;
  place-items: center;
  color: #fff;
  background: var(--blue-900);
}

.dental-preview {
  background:
    linear-gradient(135deg, rgba(11, 36, 71, 0.92), rgba(21, 166, 115, 0.8)),
    var(--blue-900);
}

.barber-preview {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(31, 122, 140, 0.82)),
    #0f172a;
}

.billiard-preview {
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.92), rgba(24, 92, 58, 0.84)),
    #0c342a;
}

.store-preview {
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.92), rgba(180, 83, 9, 0.82)),
    #3f260a;
}

.capture-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  color: #0c233f;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.preview-shell {
  width: 100%;
  max-width: 360px;
  min-height: 220px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.preview-nav {
  height: 38px;
  background: var(--blue-950);
}

.preview-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
}

.preview-dashboard span,
.preview-dashboard div {
  display: block;
  background: var(--blue-100);
  border-radius: 6px;
}

.preview-dashboard span {
  height: 56px;
}

.preview-dashboard div {
  grid-column: 1 / -1;
  height: 96px;
  background:
    linear-gradient(90deg, var(--blue-100), var(--mint-100)),
    #fff;
}

.coming-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
}

.catalog-media > strong {
  font-size: 32px;
}

.catalog-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
}

.catalog-content h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 34px);
}

.catalog-content p {
  color: var(--muted);
}

.status-chip {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-chip.live {
  color: #063f2b;
  background: var(--mint-100);
}

.status-chip.soon {
  color: #5a3908;
  background: #fff4dc;
}

.solution-grid {
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  overflow-x: auto;
  padding-bottom: 6px;
}

.solution-card,
.benefit-grid article,
.price-card,
.demo-card,
.contact-card,
.login-panel,
.tenant-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solution-card {
  min-height: 252px;
  padding: 22px;
}

.solution-card p,
.benefit-grid p,
.steps p,
.demo-card p,
.contact-card p,
.tenant-panel p {
  color: var(--muted);
}

.solution-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-600);
  font-weight: 800;
}

.icon-pill,
.benefit-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--green-600);
  background: var(--mint-100);
  border-radius: var(--radius);
}

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

.benefit-grid article {
  padding: 24px;
}

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

.steps article {
  padding: 4px 10px 4px 0;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: #fff;
  background: var(--blue-900);
  border-radius: 50%;
  font-weight: 800;
}

.prices-preview {
  max-width: none;
  background: linear-gradient(180deg, #fff 0, var(--soft) 100%);
}

.prices-preview > * {
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
}

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

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--green-500);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  color: #06251a;
  background: var(--mint-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.price {
  color: var(--blue-950);
  font-size: 42px;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.price-card ul {
  min-height: 190px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: #40516b;
}

.price-card li {
  margin: 9px 0;
}

.note {
  margin-top: 24px;
  color: #40516b;
  text-align: center;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--blue-900);
}

.cta-section h2 {
  max-width: 780px;
  color: #fff;
}

.cta-section p:not(.eyebrow) {
  max-width: 700px;
  color: #cbd8ea;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #d4deec;
  background: var(--blue-950);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.95), rgba(18, 56, 101, 0.94)),
    var(--blue-900);
}

.page-hero h1,
.page-hero h2 {
  max-width: 840px;
  color: #fff;
}

.page-hero p {
  max-width: 760px;
  color: #cfdbeb;
  font-size: 18px;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(30px, 6vw, 78px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.tenant-panel {
  padding: clamp(26px, 4vw, 42px);
}

.tenant-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.tenant-list article {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tenant-list span:first-child {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--blue-900);
  border-radius: var(--radius);
  font-weight: 800;
}

.tenant-list small {
  color: var(--muted);
}

.login-panel {
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  color: var(--blue-900);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.form-field textarea {
  min-height: 124px;
  resize: vertical;
}

.login-alert {
  display: none;
  margin: 16px 0;
  padding: 12px 14px;
  color: var(--danger);
  background: #fff1f0;
  border: 1px solid #ffccc7;
  border-radius: var(--radius);
  font-weight: 700;
}

.login-alert.is-visible {
  display: block;
}

.login-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-login-box {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.demo-login-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.demo-login-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.demo-login-grid button {
  min-height: 42px;
  color: var(--blue-900);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.demo-login-grid button:hover {
  color: #fff;
  background: var(--blue-900);
}

.demo-login-box p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.demo-grid {
  grid-template-columns: 260px 1fr;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.demo-sidebar,
.demo-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.demo-sidebar {
  padding: 20px;
}

.demo-sidebar nav {
  display: grid;
  gap: 8px;
}

.demo-sidebar a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 700;
}

.demo-sidebar a.is-active,
.demo-sidebar a:hover {
  color: #fff;
  background: var(--blue-900);
}

.demo-main {
  overflow: hidden;
}

.demo-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.demo-content {
  padding: 22px;
}

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

.module-grid article {
  min-height: 116px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.contact-card {
  padding: 24px;
}

.contact-items {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-items a,
.contact-items span {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-page {
  min-height: calc(100vh - 75px);
  padding: clamp(28px, 5vw, 64px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(31, 189, 132, 0.28), transparent 28%),
    linear-gradient(135deg, #071a35, #0b2447);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.admin-hero h1 {
  max-width: 820px;
  color: #fff;
}

.admin-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #d7e6f8;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.admin-stats article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.07);
}

.admin-stats span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-600);
  background: var(--mint-100);
  border-radius: var(--radius);
}

.admin-stats small {
  color: var(--muted);
  font-weight: 750;
}

.admin-stats strong {
  color: var(--blue-950);
  font-size: 36px;
}

.admin-table-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(7, 26, 53, 0.09);
}

.admin-form-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(7, 26, 53, 0.08);
}

.admin-form-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.admin-form-card p:not(.eyebrow) {
  color: var(--muted);
}

.admin-create-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-create-form .form-field {
  margin-bottom: 0;
}

.admin-form-wide {
  grid-column: span 2;
}

.admin-table-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-table-head h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.admin-table-head p {
  color: var(--muted);
}

.admin-notice {
  display: none;
  align-self: start;
  padding: 10px 12px;
  color: #063f2b;
  background: var(--mint-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.admin-notice.is-visible {
  display: inline-flex;
}

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

.admin-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-900);
  background: #f8fbff;
  font-size: 13px;
  text-transform: uppercase;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small,
.url-hint {
  color: var(--muted);
  font-size: 12px;
}

.admin-url-input {
  width: min(520px, 100%);
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.client-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.client-status.is-active {
  color: #063f2b;
  background: var(--mint-100);
}

.client-status.is-inactive {
  color: #7a271a;
  background: #fff1f0;
}

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

.btn-small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.dental-app-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 42% 2%, rgba(96, 230, 206, 0.32), transparent 30%),
    linear-gradient(120deg, #ddfbff 0%, #eafcff 44%, #d9efff 100%);
}

.dental-app {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 100vh;
  color: #00263d;
}

.dental-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px 14px 22px;
  background: rgba(204, 247, 247, 0.78);
  border-right: 1px solid rgba(108, 206, 224, 0.36);
  backdrop-filter: blur(18px);
}

.dental-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #00344f;
}

.dental-logo-mark {
  display: grid;
  width: 94px;
  height: 48px;
  place-items: center;
  color: transparent;
  position: relative;
}

.dental-logo-mark::before {
  position: absolute;
  width: 90px;
  height: 32px;
  content: "";
  border: 8px solid #1c9cf6;
  border-right-color: #14bfa4;
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: skewX(-14deg);
}

.dental-logo strong,
.dental-logo small {
  display: block;
}

.dental-logo strong {
  font-size: 22px;
}

.dental-logo small {
  color: #4f7686;
  font-size: 16px;
}

.dental-nav {
  display: grid;
  gap: 9px;
}

.dental-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  color: #06435d;
  border-radius: 9px;
  font-size: 17px;
}

.dental-nav a svg {
  width: 24px;
  height: 24px;
}

.dental-nav a.is-active,
.dental-nav a:hover {
  color: #006096;
  background: rgba(226, 255, 247, 0.92);
  box-shadow: inset 5px 0 0 #1e91ff;
}

.dental-main {
  padding: 24px clamp(18px, 3vw, 36px) 42px;
}

.dental-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.dental-topbar p {
  margin-bottom: 6px;
  color: #547385;
  font-weight: 800;
  letter-spacing: 0;
}

.dental-topbar h1 {
  color: #00263d;
  font-size: clamp(36px, 4vw, 52px);
}

.dental-top-actions {
  display: flex;
  gap: 14px;
}

.dental-top-actions input {
  width: min(450px, 42vw);
  height: 50px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(114, 195, 220, 0.45);
  border-radius: 9px;
  font: inherit;
}

.dental-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.dental-kpis article,
.dental-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(92, 190, 220, 0.34);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 91, 118, 0.08);
}

.dental-kpis article {
  padding: 26px;
}

.dental-kpis small {
  display: block;
  margin-bottom: 8px;
  color: #5f7a87;
  font-weight: 800;
}

.dental-kpis strong {
  font-size: 36px;
}

.dental-workspace {
  display: grid;
  grid-template-columns: minmax(360px, 450px) minmax(0, 1fr);
  gap: 20px;
}

.dental-panel {
  padding: 26px;
}

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

.dental-panel-head h2 {
  margin: 0;
  color: #00263d;
  font-size: 27px;
}

.dental-panel-head button,
.dental-panel-head a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #00709f;
  background: #e7fbf9;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-weight: 850;
}

.dental-form {
  display: grid;
  gap: 16px;
}

.dental-form label {
  display: grid;
  gap: 8px;
  color: #526d7b;
  font-weight: 800;
}

.dental-form input,
.dental-form select,
.dental-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid rgba(57, 177, 215, 0.34);
  border-radius: 9px;
  font: inherit;
}

.dental-form textarea {
  min-height: 92px;
  resize: vertical;
}

.dental-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dental-save {
  min-height: 50px;
  color: #fff;
  background: linear-gradient(135deg, #1f8fff, #13c59b);
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-weight: 900;
}

.dental-patients-panel {
  overflow: hidden;
}

.dental-pill {
  display: inline-flex;
  margin-right: 12px;
  padding: 7px 12px;
  color: #006f9e;
  background: #dff8ff;
  border-radius: 999px;
  font-weight: 900;
}

.dental-table-wrap {
  max-height: 630px;
  overflow: auto;
}

.dental-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.dental-table th,
.dental-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(70, 185, 221, 0.26);
  text-align: left;
  vertical-align: top;
}

.dental-table th {
  color: #5b7585;
  font-size: 14px;
  text-transform: uppercase;
}

.dental-table strong,
.dental-table small {
  display: block;
}

.dental-table small {
  margin-top: 4px;
  color: #526d7b;
}

.dental-table button {
  min-height: 40px;
  margin-right: 6px;
  padding: 0 14px;
  color: #006f9e;
  background: #fff;
  border: 1px solid rgba(57, 177, 215, 0.34);
  border-radius: 8px;
  font-weight: 850;
}

.dental-status {
  display: inline-flex;
  padding: 6px 10px;
  color: #00709f;
  background: #dff8ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dental-status.is-new {
  color: #b87900;
  background: #fff0c7;
}

.dental-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

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

.dental-list div {
  position: relative;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(57, 177, 215, 0.28);
  border-radius: 12px;
}

.dental-list strong,
.dental-list span {
  display: block;
}

.dental-list span {
  margin-top: 8px;
  color: #526d7b;
}

.dental-list b {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  color: #d8a007;
  background: #fff1c9;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero,
  .login-layout,
  .demo-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    min-height: 520px;
  }

  .catalog-grid,
  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 0;
  }

  .device-stage {
    min-height: 510px;
  }

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

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

  .admin-form-card,
  .admin-create-form {
    grid-template-columns: 1fr;
  }

  .admin-form-wide {
    grid-column: auto;
  }

  .dental-app {
    grid-template-columns: 1fr;
  }

  .dental-sidebar {
    position: static;
    height: auto;
  }

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

  .dental-workspace,
  .dental-bottom-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav.is-static {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    min-height: auto;
  }

  .showcase-floating {
    position: relative;
    width: 100%;
    margin-top: 16px;
    bottom: auto;
  }

  .showcase-screen {
    grid-template-columns: 1fr;
  }

  .screen-sidebar {
    display: none;
  }

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

  .dashboard-grid aside {
    display: none;
  }

  .tablet {
    right: 0;
  }

  .phone {
    left: 0;
  }

  .benefit-grid,
  .pricing-grid,
  .steps,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .price-card ul {
    min-height: auto;
  }

  .cta-section,
  .site-footer,
  .demo-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dental-topbar,
  .dental-top-actions {
    flex-direction: column;
  }

  .dental-top-actions,
  .dental-top-actions input {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .catalog-media {
    min-height: 260px;
    padding: 18px;
  }

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

  .preview-dashboard div {
    grid-column: auto;
  }

  .screen-content {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .odontogram-preview {
    grid-column: auto;
    grid-template-columns: repeat(4, 1fr);
  }

  .device-stage {
    min-height: 430px;
  }

  .laptop {
    min-height: 310px;
  }

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

  .chart {
    height: 110px;
  }

  .tablet {
    width: 156px;
    min-height: 190px;
    bottom: 52px;
  }

  .phone {
    width: 118px;
    min-height: 198px;
  }

  .dental-main {
    padding: 18px 12px 28px;
  }

  .dental-nav,
  .dental-kpis,
  .dental-form-row {
    grid-template-columns: 1fr;
  }

  .dental-panel {
    padding: 18px;
  }
}

/* EmpresaFacil commercial refresh */
.hero-impact {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  min-height: calc(100vh - 75px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 10, 25, 0.98) 0%, rgba(7, 26, 53, 0.88) 28%, rgba(7, 26, 53, 0.38) 52%, rgba(7, 26, 53, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 10, 25, 0.38), rgba(3, 10, 25, 0.54)),
    url("../images/hero-dashboard-devices.webp");
  background-color: #06142d;
  background-position: center center;
  background-size: cover;
}

.hero-impact::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 17% 73%, rgba(31, 189, 132, 0.24), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(20, 184, 166, 0.12), transparent 22%);
  pointer-events: none;
}

.hero-impact > * {
  position: relative;
  z-index: 1;
}

.hero-impact .eyebrow {
  color: #6ee7b7;
}

.hero-impact h1 {
  color: #fff;
  font-size: clamp(46px, 6.6vw, 86px);
  text-wrap: balance;
}

.hero-impact .hero-subtitle {
  max-width: 680px;
  color: #d8e7ff;
  font-size: clamp(19px, 2vw, 24px);
}

.hero-impact .hero-copy {
  max-width: 640px;
  padding: clamp(18px, 2vw, 28px) 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.36);
}

.hero-demo-btn {
  color: #fff;
  background: linear-gradient(135deg, #20c987, #15a673);
  box-shadow: 0 18px 42px rgba(21, 166, 115, 0.34);
}

.hero-impact .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero-impact .btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.ecosystem-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ecosystem-strip span {
  padding: 9px 13px;
  color: #e9f7ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual-spacer {
  min-height: 560px;
}

.hero-image-card {
  position: relative;
  margin: 0;
  min-height: 580px;
  overflow: hidden;
  border-radius: 32px;
}

.hero-image-card::before {
  position: absolute;
  inset: 8% 2% 12% 10%;
  content: "";
  background: rgba(31, 189, 132, 0.23);
  border-radius: 999px;
  filter: blur(66px);
}

.hero-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  max-width: 100%;
  border-radius: 28px;
  filter: drop-shadow(0 42px 90px rgba(0, 0, 0, 0.44));
}

.hero-devices {
  min-height: 620px;
  perspective: 1200px;
}

.hero-glow {
  position: absolute;
  inset: 56px 0 auto 80px;
  height: 380px;
  background: rgba(31, 189, 132, 0.2);
  border-radius: 999px;
  filter: blur(58px);
}

.hero-laptop {
  position: absolute;
  top: 26px;
  right: 0;
  width: min(720px, 100%);
  min-height: 448px;
  overflow: hidden;
  border: 10px solid #0d1728;
  border-radius: 18px;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: rotateY(-7deg) rotateX(3deg);
}

.hero-laptop .browser-bar {
  background: #111827;
}

.hero-laptop .dashboard-grid {
  min-height: 408px;
}

.hero-laptop .dashboard-grid aside {
  background: #071a35;
}

.hero-laptop .dashboard-grid section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.hero-tablet,
.hero-phone {
  z-index: 3;
  border: 8px solid #111827;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.36);
}

.hero-tablet {
  right: -6px;
  bottom: 38px;
  width: 210px;
  min-height: 260px;
}

.hero-phone {
  left: 30px;
  bottom: 12px;
  width: 148px;
  min-height: 256px;
}

.solutions-showcase {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.centered-heading {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.modern-solutions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  gap: 22px;
}

.modern-card {
  position: relative;
  min-height: 284px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 239, 0.9);
  box-shadow: 0 18px 45px rgba(7, 26, 53, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.modern-card::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.modern-card:hover {
  border-color: rgba(21, 166, 115, 0.42);
  box-shadow: 0 26px 70px rgba(7, 26, 53, 0.16);
  transform: translateY(-7px);
}

.large-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
}

.large-icon svg {
  width: 34px;
  height: 34px;
}

.modern-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.modern-card p {
  min-height: 72px;
}

.mini-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-radius: 999px;
  font-weight: 850;
}

.dental-soft {
  background: linear-gradient(135deg, #ffffff, #eafbf4);
}

.barber-soft {
  background: linear-gradient(135deg, #ffffff, #edf7ff);
}

.billiard-soft {
  background: linear-gradient(135deg, #ffffff, #eefbea);
}

.store-soft {
  background: linear-gradient(135deg, #ffffff, #fff6e8);
}

.hardware-soft {
  background: linear-gradient(135deg, #ffffff, #f3f6fb);
}

.restaurant-soft {
  background: linear-gradient(135deg, #ffffff, #fff0ee);
}

.card-with-image {
  min-height: 390px;
  padding: 0;
}

.card-with-image::after {
  display: none;
}

.solution-thumb {
  height: 178px;
  overflow: hidden;
  background: #071a35;
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
}

.solution-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.card-with-image:hover .solution-thumb img {
  transform: scale(1.06);
}

.card-with-image .solution-status,
.card-with-image h3,
.card-with-image p,
.card-with-image .mini-link {
  margin-left: 24px;
  margin-right: 24px;
}

.solution-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #063f2b;
  background: var(--mint-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.solution-status.soon {
  color: #5a3908;
  background: #fff4dc;
}

.card-with-image p {
  min-height: 56px;
}

.demo-catalog {
  max-width: none;
  padding-top: clamp(72px, 9vw, 124px);
  padding-bottom: clamp(72px, 9vw, 124px);
  background:
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.demo-catalog > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

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

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(7, 26, 53, 0.12);
}

.featured-product {
  display: grid;
  grid-template-rows: 370px auto;
}

.compact-product {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) 1fr;
  min-height: 260px;
}

.product-shot {
  position: relative;
  display: grid;
  min-height: 240px;
  padding: 24px;
  place-items: center;
  color: #fff;
}

.shot-image {
  min-height: 320px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(31, 189, 132, 0.16), transparent 36%),
    #071a35;
}

.shot-image img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: scale(0.995);
  transition: transform 220ms ease, filter 220ms ease;
}

.product-card:hover .shot-image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.shot-dental {
  background:
    linear-gradient(135deg, rgba(11, 36, 71, 0.9), rgba(21, 166, 115, 0.78)),
    #0b2447;
}

.shot-barber {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(31, 122, 140, 0.78)),
    #0f172a;
}

.shot-billar {
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.92), rgba(24, 92, 58, 0.84)),
    #0c342a;
}

.shot-bodega {
  background:
    linear-gradient(135deg, rgba(7, 26, 53, 0.92), rgba(180, 83, 9, 0.82)),
    #3f260a;
}

.shot-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 11px;
  color: #10253f;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.shot-window {
  display: grid;
  grid-template-columns: 74px 1fr;
  width: min(440px, 100%);
  min-height: 210px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}

.shot-sidebar {
  background: #071a35;
}

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

.shot-panel span,
.shot-panel div {
  display: block;
  background: var(--blue-100);
  border-radius: 8px;
}

.shot-panel span {
  height: 56px;
}

.shot-panel div {
  grid-column: 1 / -1;
  height: 98px;
  background: linear-gradient(90deg, #eaf2ff, #e9fbf3);
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 34px);
}

.product-info p {
  color: var(--muted);
}

.benefit-grid article {
  box-shadow: 0 14px 34px rgba(7, 26, 53, 0.06);
}

.prices-preview {
  padding-top: clamp(68px, 9vw, 118px);
  padding-bottom: clamp(68px, 9vw, 118px);
}

.price-card {
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(7, 26, 53, 0.08);
}

.cta-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(31, 189, 132, 0.24), transparent 28%),
    linear-gradient(135deg, #071a35, #0b2447 56%, #103f6d);
}

@media (max-width: 1180px) {
  .hero-impact {
    grid-template-columns: 1fr;
    background-position: 64% center;
  }

  .hero-devices {
    min-height: 570px;
  }

  .hero-image-card {
    min-height: 560px;
  }

  .hero-image-card img {
    width: 100%;
    object-position: 74% center;
  }

  .modern-solutions,
  .product-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual-spacer {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-impact {
    padding-top: 58px;
    background:
      linear-gradient(180deg, rgba(3, 10, 25, 0.96) 0%, rgba(7, 26, 53, 0.88) 56%, rgba(7, 26, 53, 0.42) 100%),
      url("../images/hero-dashboard-devices.webp");
    background-position: 68% center;
    background-size: cover;
  }

  .hero-devices {
    min-height: 500px;
  }

  .hero-image-card {
    min-height: 460px;
  }

  .hero-image-card img {
    width: min(780px, 118%);
  }

  .hero-laptop {
    position: relative;
    top: auto;
    width: 100%;
    transform: none;
  }

  .hero-tablet,
  .hero-phone {
    display: none;
  }

  .modern-solutions,
  .product-catalog,
  .compact-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-impact h1 {
    font-size: 43px;
  }

  .ecosystem-strip {
    display: none;
  }

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

  .hero-image-card {
    min-height: 320px;
  }

  .hero-image-card img {
    width: 100%;
    border-radius: 18px;
    object-position: 70% center;
  }

  .hero-laptop {
    min-height: 360px;
    border-width: 6px;
  }

  .hero-laptop .dashboard-grid {
    min-height: 340px;
  }

  .featured-product {
    grid-template-rows: 260px auto;
  }

  .shot-window {
    grid-template-columns: 1fr;
  }

  .shot-sidebar {
    display: none;
  }
}

/* EmpresaFacil premium landing */
.premium-home {
  color: #eef5ff;
  background: #070d19;
}

.premium-home .premium-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 111, 237, 0.16), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(21, 166, 115, 0.14), transparent 32%),
    linear-gradient(180deg, #070d19 0%, #0a1222 44%, #070d19 100%);
}

.premium-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 18px;
  background: rgba(9, 18, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.premium-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.premium-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2f6fed, #18bf82);
  border-radius: 12px;
  font-weight: 900;
}

.premium-brand strong,
.premium-brand small {
  display: block;
}

.premium-brand strong {
  color: #fff;
  font-size: 18px;
}

.premium-brand small {
  color: #94a6bf;
  font-size: 12px;
}

.premium-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #aebed4;
  font-size: 15px;
  font-weight: 750;
}

.premium-links a:hover {
  color: #fff;
}

.premium-login {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.premium-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.premium-toggle span {
  background: #fff;
}

.premium-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 132px clamp(22px, 5vw, 72px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(7, 18, 36, 0.92) 30%, rgba(7, 18, 36, 0.48) 58%, rgba(7, 18, 36, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.26), rgba(3, 8, 18, 0.62)),
    url("../images/hero-dashboard-devices.webp");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, #070d19);
  pointer-events: none;
}

.premium-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.42);
}

.premium-badge,
.premium-heading span,
.premium-system-info small,
.premium-product-card small,
.premium-plans small,
.premium-cta span {
  display: inline-flex;
  width: fit-content;
  color: #73e3b5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-badge {
  margin-bottom: 22px;
  padding: 8px 13px;
  background: rgba(31, 189, 132, 0.12);
  border: 1px solid rgba(115, 227, 181, 0.28);
  border-radius: 999px;
}

.premium-hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.premium-hero p {
  max-width: 610px;
  color: #d4e0f1;
  font-size: clamp(18px, 2vw, 23px);
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.premium-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-btn svg {
  width: 19px;
  height: 19px;
}

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

.premium-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #21c886, #14a671);
  box-shadow: 0 20px 46px rgba(20, 166, 113, 0.32);
}

.premium-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.premium-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-trust span {
  display: inline-flex;
  gap: 6px;
  padding: 9px 12px;
  color: #c9d6e8;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 13px;
}

.premium-trust b {
  color: #fff;
}

.premium-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
}

.premium-metrics article {
  padding: 24px;
  background: rgba(17, 27, 46, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.premium-metrics strong {
  display: block;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.premium-metrics span {
  display: block;
  margin-top: 8px;
  color: #94a6bf;
  font-weight: 700;
}

.premium-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.premium-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.premium-heading h2 {
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.04;
}

.premium-heading p {
  color: #94a6bf;
  font-size: 18px;
}

.premium-system-list {
  display: grid;
  gap: 28px;
}

.premium-system-card {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(300px, 0.92fr);
  overflow: hidden;
  background: rgba(17, 27, 46, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.premium-system-card.barber .premium-system-media {
  order: 2;
}

.premium-system-card.barber .premium-system-info {
  order: 1;
}

.premium-system-media {
  min-height: 390px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 200, 134, 0.16), transparent 36%),
    #061224;
}

.premium-system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 16px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.36);
}

.premium-system-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 54px);
}

.premium-system-info h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.premium-system-info p {
  color: #aebed4;
  font-size: 18px;
}

.premium-system-info .premium-btn {
  margin-top: 18px;
}

.premium-solutions {
  width: auto;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 16% 0%, rgba(47, 111, 237, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.025);
}

.premium-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.premium-solution-grid article,
.premium-flow-grid article,
.premium-plan-grid article {
  padding: 30px;
  background: rgba(17, 27, 46, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease;
}

.premium-solution-grid article:hover,
.premium-plan-grid article:hover {
  border-color: rgba(115, 227, 181, 0.28);
  transform: translateY(-6px);
}

.solution-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  place-items: center;
  color: #6ee7b7;
  background: rgba(31, 189, 132, 0.12);
  border: 1px solid rgba(115, 227, 181, 0.18);
  border-radius: 16px;
}

.solution-icon svg {
  width: 32px;
  height: 32px;
}

.premium-solution-grid h3,
.premium-flow-grid h3,
.premium-plan-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
}

.premium-solution-grid p,
.premium-flow-grid p,
.premium-plan-grid p {
  color: #94a6bf;
}

.premium-solution-grid a,
.premium-product-card a,
.premium-plan-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: #73e3b5;
  font-weight: 900;
}

.premium-catalog {
  padding-top: clamp(72px, 9vw, 118px);
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.premium-product-card {
  overflow: hidden;
  background: rgba(17, 27, 46, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.24);
}

.premium-product-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top left;
  background: #061224;
}

.premium-product-card div {
  padding: 26px;
}

.premium-product-card h3 {
  margin: 10px 0;
  color: #fff;
  font-size: 30px;
}

.premium-product-card p {
  color: #94a6bf;
}

.muted-product {
  opacity: 0.9;
}

.premium-flow-grid,
.premium-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.premium-flow-grid b {
  display: inline-flex;
  margin-bottom: 18px;
  color: #73e3b5;
  font-size: 14px;
}

.premium-plans {
  width: auto;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035));
}

.premium-plan-grid article.featured {
  border-color: rgba(115, 227, 181, 0.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(31, 189, 132, 0.18), transparent 36%),
    rgba(17, 27, 46, 0.96);
}

.premium-plan-grid strong {
  display: block;
  margin: 18px 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.premium-plan-grid strong span {
  color: #94a6bf;
  font-size: 15px;
}

.premium-note {
  margin-top: 24px;
  color: #94a6bf;
  text-align: center;
}

.premium-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 86px;
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at 88% 18%, rgba(31, 189, 132, 0.25), transparent 30%),
    linear-gradient(135deg, #10213e, #081225);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.premium-cta h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 46px);
}

.premium-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #94a6bf;
  background: #050a13;
}

.premium-footer strong {
  color: #fff;
}

.premium-footer nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 1040px) {
  .premium-hero {
    grid-template-columns: 1fr;
    background-position: 64% center;
  }

  .premium-metrics,
  .premium-solution-grid,
  .premium-flow-grid,
  .premium-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-system-card,
  .premium-system-card.barber {
    grid-template-columns: 1fr;
  }

  .premium-system-card.barber .premium-system-media,
  .premium-system-card.barber .premium-system-info {
    order: initial;
  }
}

@media (max-width: 820px) {
  .premium-nav {
    align-items: flex-start;
  }

  .premium-toggle {
    display: block;
  }

  .premium-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    background: rgba(9, 18, 34, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  }

  .premium-links.is-open {
    display: grid;
  }

  .premium-hero {
    min-height: auto;
    padding-top: 116px;
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.98) 0%, rgba(7, 18, 36, 0.86) 58%, rgba(7, 18, 36, 0.42) 100%),
      url("../images/hero-dashboard-devices.webp");
    background-position: 68% center;
    background-size: cover;
  }

  .premium-hero h1 {
    font-size: 46px;
  }

  .premium-metrics,
  .premium-solution-grid,
  .premium-product-grid,
  .premium-flow-grid,
  .premium-plan-grid {
    grid-template-columns: 1fr;
  }

  .premium-cta,
  .premium-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .premium-brand small {
    display: none;
  }

  .premium-hero h1 {
    font-size: 40px;
  }

  .premium-actions,
  .premium-btn {
    width: 100%;
  }

  .premium-trust {
    display: none;
  }

  .premium-metrics {
    margin-top: -22px;
  }

  .premium-system-media {
    min-height: 280px;
    padding: 12px;
  }

  .premium-product-card img {
    height: 230px;
  }
}

/* Premium landing scale refinement */
.premium-nav {
  width: min(1120px, calc(100% - 36px));
  padding: 11px 16px;
}

.premium-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.premium-brand strong {
  font-size: 17px;
}

.premium-links {
  gap: 18px;
  font-size: 14px;
}

.premium-login {
  min-height: 38px;
}

.premium-hero {
  min-height: 92vh;
  grid-template-columns: minmax(320px, 0.76fr) minmax(480px, 1fr);
  padding: 122px clamp(22px, 5vw, 72px) 66px;
  background-size: auto, auto, min(1120px, 68vw) auto;
  background-repeat: no-repeat;
  background-position: center, center, 88% 52%;
}

.premium-hero-copy {
  max-width: 590px;
}

.premium-badge {
  margin-bottom: 18px;
  padding: 7px 12px;
}

.premium-hero h1 {
  max-width: 600px;
  font-size: clamp(42px, 5.25vw, 72px);
  line-height: 1.02;
}

.premium-hero p {
  max-width: 560px;
  font-size: clamp(17px, 1.55vw, 20px);
}

.premium-actions {
  margin: 28px 0 24px;
}

.premium-btn {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 10px;
}

.premium-trust span {
  padding: 8px 11px;
  font-size: 12px;
}

.premium-metrics {
  width: min(1120px, calc(100% - 44px));
  margin-top: -30px;
}

.premium-metrics article {
  padding: 20px;
  border-radius: 14px;
}

.premium-metrics strong {
  font-size: 31px;
}

.premium-section {
  width: min(1120px, calc(100% - 44px));
  padding: clamp(62px, 8vw, 96px) 0;
}

.premium-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.premium-heading h2 {
  font-size: clamp(30px, 3.55vw, 46px);
}

.premium-heading p {
  font-size: 17px;
}

.premium-system-card {
  grid-template-columns: minmax(340px, 1fr) minmax(300px, 0.86fr);
  border-radius: 18px;
}

.premium-system-media {
  min-height: 330px;
  padding: 15px;
}

.premium-system-media img {
  border-radius: 13px;
}

.premium-system-info {
  padding: clamp(26px, 3.3vw, 44px);
}

.premium-system-info h3 {
  font-size: clamp(28px, 3.2vw, 38px);
}

.premium-system-info p {
  font-size: 17px;
}

.premium-solutions,
.premium-plans {
  padding-right: max(22px, calc((100% - 1120px) / 2));
  padding-left: max(22px, calc((100% - 1120px) / 2));
}

.premium-solution-grid {
  gap: 18px;
}

.premium-solution-grid article,
.premium-flow-grid article,
.premium-plan-grid article {
  padding: 25px;
  border-radius: 16px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.solution-icon svg {
  width: 29px;
  height: 29px;
}

.premium-solution-grid h3,
.premium-flow-grid h3,
.premium-plan-grid h3 {
  font-size: 22px;
}

.premium-product-card {
  border-radius: 18px;
}

.premium-product-card img {
  height: 250px;
}

.premium-product-card div {
  padding: 24px;
}

.premium-product-card h3 {
  font-size: 26px;
}

.premium-plan-grid strong {
  font-size: 36px;
}

.premium-cta {
  width: min(1120px, calc(100% - 44px));
  margin-bottom: 70px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 20px;
}

.premium-cta h2 {
  font-size: clamp(27px, 3.1vw, 40px);
}

@media (max-width: 1040px) {
  .premium-hero {
    background-size: auto, auto, min(920px, 98vw) auto;
    background-position: center, center, 70% 58%;
  }
}

@media (max-width: 820px) {
  .premium-hero {
    min-height: auto;
    background-size: auto, min(820px, 122vw) auto;
    background-position: center, 68% 58%;
  }

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

@media (max-width: 560px) {
  .premium-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .premium-hero {
    padding-top: 106px;
  }

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

  .premium-metrics,
  .premium-section,
  .premium-cta {
    width: min(100% - 28px, 1120px);
  }

  .premium-system-media {
    min-height: 235px;
  }

  .premium-product-card img {
    height: 205px;
  }
}

/* Clean client access page */
.client-login-page {
  min-height: 100vh;
  margin: 0;
  color: #f1f5f9;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 111, 237, 0.2), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(14, 165, 168, 0.16), transparent 34%),
    linear-gradient(180deg, #0b1120 0%, #070d19 100%);
  font-family: "Outfit", Inter, ui-sans-serif, system-ui, sans-serif;
}

.client-login-screen {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
}

.client-login-card {
  width: min(100%, 440px);
  padding: clamp(28px, 5vw, 44px);
  background: rgba(20, 27, 46, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.client-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 32px;
}

.client-login-brand > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2f6fed, #0ea5a8);
  border-radius: 12px;
  font-weight: 900;
}

.client-login-brand strong,
.client-login-brand small {
  display: block;
}

.client-login-brand strong {
  color: #fff;
  font-size: 21px;
}

.client-login-brand small {
  color: #8a94a6;
  font-size: 14px;
}

.client-login-form .form-field {
  margin-bottom: 18px;
}

.client-login-form .form-field label {
  color: #f1f5f9;
  font-weight: 800;
}

.client-login-form .form-field input {
  min-height: 54px;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.client-login-form .form-field input:focus {
  border-color: #0ea5a8;
  box-shadow: 0 0 0 4px rgba(14, 165, 168, 0.12);
  outline: none;
}

.client-login-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: #07101f;
  background: linear-gradient(135deg, #25d366, #0ea5a8);
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(14, 165, 168, 0.24);
}

.client-login-page .login-alert {
  color: #ffd5d0;
  background: rgba(180, 35, 24, 0.16);
  border-color: rgba(255, 120, 110, 0.28);
}

.client-login-page .login-helper {
  min-height: 20px;
  color: #8a94a6;
}

/* Super Admin console */
.admin-console-page {
  min-height: 100vh;
  color: #eaf2ff;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 111, 237, 0.16), transparent 34%),
    radial-gradient(circle at 86% 66%, rgba(21, 166, 115, 0.12), transparent 34%),
    linear-gradient(180deg, #070d19 0%, #0a1222 54%, #070d19 100%);
  font-family: "Outfit", Inter, ui-sans-serif, system-ui, sans-serif;
}

.admin-console-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(8, 15, 29, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.admin-console-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.admin-console-brand > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2f6fed, #0ea5a8);
  border-radius: 12px;
  font-weight: 900;
}

.admin-console-brand strong,
.admin-console-brand small {
  display: block;
}

.admin-console-brand strong {
  color: #fff;
  font-size: 18px;
}

.admin-console-brand small {
  color: #8a94a6;
  font-size: 12px;
}

.admin-console-topbar nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aebed4;
  font-weight: 750;
}

.admin-console-topbar nav a:hover {
  color: #fff;
}

.admin-console-topbar button {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-console {
  width: min(1380px, 100%);
  margin: 0 auto;
  background: transparent;
}

.admin-console.admin-page {
  padding-top: clamp(22px, 4vw, 44px);
}

.admin-console-hero {
  align-items: stretch;
  margin-bottom: 18px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 85% 8%, rgba(31, 189, 132, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(18, 33, 62, 0.96), rgba(8, 18, 36, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
}

.admin-console-hero h1 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.admin-console-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 16px;
}

.admin-console-hero .eyebrow,
.admin-console-form .eyebrow,
.admin-console-table .eyebrow {
  color: #73e3b5;
}

.admin-hero-panel {
  display: grid;
  min-width: 260px;
  align-content: center;
  gap: 6px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.admin-hero-panel span {
  color: #8a94a6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-hero-panel strong {
  color: #fff;
  font-size: 24px;
}

.admin-hero-panel small {
  color: #aebed4;
}

.admin-console-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.admin-console-stats article,
.admin-rubro-strip article,
.admin-console-form,
.admin-console-table {
  background: rgba(17, 27, 46, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.admin-console-stats article {
  padding: 18px;
  border-radius: 18px;
}

.admin-console-stats span {
  width: 36px;
  height: 36px;
  color: #73e3b5;
  background: rgba(31, 189, 132, 0.12);
}

.admin-console-stats small {
  color: #94a6bf;
  font-size: 13px;
}

.admin-console-stats strong {
  color: #fff;
  font-size: 30px;
}

.admin-rubro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.admin-rubro-strip article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 16px;
}

.admin-rubro-strip small {
  color: #94a6bf;
  font-weight: 850;
}

.admin-rubro-strip strong {
  color: #fff;
  font-size: 22px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.admin-console-form {
  position: sticky;
  top: 86px;
  display: block;
  margin-bottom: 0;
  padding: 22px;
  border-radius: 20px;
}

.admin-console-form h2,
.admin-console-table h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.admin-console-form p:not(.eyebrow),
.admin-console-table p {
  color: #94a6bf;
  font-size: 14px;
}

.admin-console-form .admin-create-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.admin-console-form .form-field label {
  color: #dce7f7;
  font-size: 13px;
}

.admin-console-form .form-field input,
.admin-console-form .form-field select {
  min-height: 44px;
  padding: 10px 12px;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
  font-size: 14px;
}

.admin-console-form .form-field input::placeholder {
  color: #6f7c91;
}

.admin-console-form .form-field input:focus,
.admin-console-form .form-field select:focus {
  border-color: #0ea5a8;
  box-shadow: 0 0 0 4px rgba(14, 165, 168, 0.12);
  outline: none;
}

.admin-console-form .btn-primary {
  min-height: 46px;
  margin-top: 4px;
  color: #07101f;
  background: linear-gradient(135deg, #25d366, #0ea5a8);
  box-shadow: 0 18px 42px rgba(14, 165, 168, 0.24);
}

.admin-created-credentials {
  display: none;
  margin-top: 18px;
  padding: 16px;
  color: #dce7f7;
  background: rgba(31, 189, 132, 0.1);
  border: 1px dashed rgba(115, 227, 181, 0.34);
  border-radius: 14px;
}

.admin-created-credentials.is-visible {
  display: grid;
  gap: 6px;
}

.admin-created-credentials strong {
  color: #73e3b5;
}

.admin-created-credentials span {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.admin-created-credentials small {
  color: #94a6bf;
}

.admin-console-table {
  border-radius: 20px;
}

.admin-console-table .admin-table-head {
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-console-table .admin-table {
  min-width: 900px;
}

.admin-console-table .admin-table th {
  color: #94a6bf;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.admin-console-table .admin-table td {
  color: #dce7f7;
  border-color: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.admin-console-table .admin-table th,
.admin-console-table .admin-table td {
  padding: 14px 16px;
}

.admin-console-table .admin-url-input {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 13px;
}

.admin-console-table .btn-small {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.admin-console-table .admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.admin-console-table .admin-table td strong {
  color: #fff;
}

.admin-console-table .admin-table td small,
.admin-console-table .url-hint {
  color: #8a94a6;
}

.admin-console-table .admin-url-input {
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.admin-console-table .btn-primary {
  background: #2f6fed;
}

.admin-console-table .btn-secondary {
  color: #07101f;
  background: #73e3b5;
}

.admin-console-table .btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.admin-console-table .btn-danger {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

.admin-console-table .admin-notice {
  color: #07101f;
  background: #73e3b5;
}

@media (max-width: 1080px) {
  .admin-workspace,
  .admin-console-hero {
    grid-template-columns: 1fr;
  }

  .admin-console-form {
    position: static;
  }

  .admin-console-stats,
  .admin-rubro-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .admin-console-topbar,
  .admin-console-topbar nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-console-stats,
  .admin-rubro-strip {
    grid-template-columns: 1fr;
  }
}

/* Compact light Super Admin */
.admin-compact-page {
  min-height: 100vh;
  color: #102b2d;
  background: #edf4f3;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.admin-compact-page * {
  letter-spacing: 0;
}

.admin-compact-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px max(18px, calc((100% - 1680px) / 2));
  color: #ffffff;
  background: #073c41;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.admin-compact-brand > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #073c41;
  background: #dceae9;
  border-radius: 8px;
  font-weight: 800;
}

.admin-compact-brand strong,
.admin-compact-brand small {
  display: block;
}

.admin-compact-brand strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
}

.admin-compact-brand small {
  color: #b8d4d2;
  font-size: 11px;
}

.admin-compact-topbar nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #bfdad8;
  font-size: 13px;
  font-weight: 700;
}

.admin-compact-topbar nav a:hover {
  color: #fff;
}

.admin-compact-topbar button {
  min-height: 30px;
  padding: 0 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.admin-compact {
  width: min(1680px, calc(100% - 24px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.admin-compact-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-compact-intro h1 {
  margin: 10px 0 4px;
  color: #102b2d;
  font-size: 26px;
  line-height: 1.1;
}

.admin-compact-intro p {
  max-width: 620px;
  margin: 0;
  color: #5b7679;
  font-size: 13.5px;
}

.admin-compact-page .demo-badge {
  display: inline-flex;
  padding: 3px 8px;
  color: #c7431f;
  background: #fce7e0;
  border: 1px solid #f3c5b5;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
}

.admin-compact-mode {
  min-width: 250px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #cfe2e1;
  border-radius: 10px;
  box-shadow: 0 8px 20px -14px rgba(16, 43, 45, 0.28);
}

.admin-compact-mode small,
.admin-compact-mode strong,
.admin-compact-mode span {
  display: block;
}

.admin-compact-mode small {
  color: #5b7679;
  font-size: 11px;
  font-weight: 700;
}

.admin-compact-mode strong {
  margin: 2px 0;
  color: #073c41;
  font-size: 14px;
}

.admin-compact-mode span {
  color: #5b7679;
  font-size: 12px;
}

.admin-compact-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.admin-compact-stats article,
.admin-compact-card {
  background: #ffffff;
  border: 1px solid #cfe2e1;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(16, 43, 45, 0.06), 0 8px 20px -14px rgba(16, 43, 45, 0.22);
}

.admin-compact-stats article {
  padding: 14px 16px;
}

.admin-compact-stats small {
  display: block;
  color: #5b7679;
  font-size: 12px;
  font-weight: 800;
}

.admin-compact-stats strong {
  display: block;
  margin-top: 6px;
  color: #102b2d;
  font-size: 24px;
  line-height: 1;
}

.admin-compact-rubros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-compact-rubros span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #073c41;
  background: #dceae9;
  border: 1px solid #cfe2e1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.admin-compact-rubros b {
  color: #0b6e76;
}

.admin-compact-card {
  margin-bottom: 18px;
  overflow: hidden;
}

.admin-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 14px;
}

.admin-card-head h2 {
  margin: 0 0 5px;
  color: #102b2d;
  font-size: 19px;
  line-height: 1.2;
}

.admin-card-head p {
  margin: 0;
  color: #5b7679;
  font-size: 13px;
}

.admin-compact-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 22px 22px;
}

.admin-compact-form .form-field {
  margin: 0;
}

.admin-compact-form label {
  color: #5b7679;
  font-size: 12px;
  font-weight: 800;
}

.admin-compact-form input,
.admin-compact-form select {
  min-height: 40px;
  padding: 8px 10px;
  color: #102b2d;
  background: #edf4f3;
  border: 1px solid #cfe2e1;
  border-radius: 7px;
  font: inherit;
  font-size: 13.5px;
}

.admin-compact-form input:focus,
.admin-compact-form select:focus {
  border-color: #0f8089;
  outline: none;
}

.admin-compact-form .admin-url-field {
  grid-column: span 2;
}

.admin-compact-form .btn-primary {
  align-self: end;
  min-height: 40px;
  color: #ffffff;
  background: #e85b3c;
  border-color: #e85b3c;
  box-shadow: none;
}

.admin-compact-page .admin-created-credentials {
  margin: 0 22px 22px;
  padding: 12px 14px;
  color: #073c41;
  background: #dceae9;
  border-color: #0f8089;
  border-radius: 8px;
}

.admin-compact-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}

.admin-compact-table th,
.admin-compact-table td {
  padding: 10px 12px;
  border-top: 1px solid #cfe2e1;
  text-align: left;
  vertical-align: top;
}

.admin-compact-card .admin-table-wrap {
  overflow-x: visible;
}

.admin-compact-table.admin-table {
  min-width: 0;
}

.admin-compact-table th:nth-child(1),
.admin-compact-table td:nth-child(1) {
  width: 15%;
}

.admin-compact-table th:nth-child(2),
.admin-compact-table td:nth-child(2) {
  width: 16%;
}

.admin-compact-table th:nth-child(3),
.admin-compact-table td:nth-child(3) {
  width: 9%;
}

.admin-compact-table th:nth-child(4),
.admin-compact-table td:nth-child(4) {
  width: 12%;
}

.admin-compact-table th:nth-child(5),
.admin-compact-table td:nth-child(5) {
  width: 12%;
}

.admin-compact-table th:nth-child(6),
.admin-compact-table td:nth-child(6) {
  width: 8%;
}

.admin-compact-table th:nth-child(7),
.admin-compact-table td:nth-child(7) {
  width: 28%;
}

.admin-compact-table th {
  color: #5b7679;
  background: #f7fbfa;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-compact-table td strong {
  display: block;
  color: #102b2d;
  font-size: 13px;
  line-height: 1.25;
}

.admin-compact-table .cell-mono {
  color: #5b7679;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  overflow-wrap: anywhere;
}

.admin-compact-table .chip-type {
  display: inline-flex;
  max-width: 150px;
  padding: 3px 8px;
  color: #073c41;
  background: #dceae9;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-compact-table .client-status {
  padding: 3px 8px;
  font-size: 11px;
}

.admin-compact-table .admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 100%;
}

.admin-compact-table .btn-small {
  min-height: 30px;
  padding: 0 7px;
  border-radius: 7px;
  font-size: 11px;
  box-shadow: none;
  white-space: nowrap;
}

.admin-compact-table .btn-primary {
  color: #fff;
  background: #073c41;
}

.admin-compact-table .btn-secondary {
  color: #fff;
  background: #0b6e76;
}

.admin-compact-table .btn-outline {
  color: #073c41;
  background: #fff;
  border-color: #cfe2e1;
}

.admin-compact-table .btn-danger {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

.admin-compact-table .url-details {
  margin-top: 7px;
  color: #5b7679;
  font-size: 11.5px;
  flex-basis: 100%;
}

.admin-compact-table .url-details summary {
  width: fit-content;
  cursor: pointer;
  font-weight: 700;
}

.admin-compact-table .url-hint.is-warning {
  color: #9a5a00;
  font-weight: 800;
}

.admin-compact-table .url-hint.is-danger {
  color: #b42318;
  font-weight: 800;
}

.admin-compact-table .admin-url-input {
  display: block;
  width: 100%;
  min-height: 34px;
  margin-top: 6px;
  padding: 7px 9px;
  color: #102b2d;
  background: #edf4f3;
  border: 1px solid #cfe2e1;
  border-radius: 7px;
  font: inherit;
  font-size: 12.5px;
}

.admin-compact-table .admin-inline-select,
.admin-compact-table .admin-date-input {
  width: 100%;
  min-height: 32px;
  padding: 6px 8px;
  color: #102b2d;
  background: #edf4f3;
  border: 1px solid #cfe2e1;
  border-radius: 7px;
  font: inherit;
  font-size: 12px;
}

.admin-compact-table .admin-date-input {
  width: 100%;
}

.admin-compact-page .admin-notice {
  display: none;
  padding: 6px 9px;
  color: #073c41;
  background: #dceae9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.admin-compact-page .admin-notice.is-visible {
  display: inline-flex;
}

.admin-compact-page .admin-danger-card {
  border-color: rgba(180, 35, 24, 0.24);
  background: #fffafa;
}

.admin-delete-auth-form {
  grid-template-columns: minmax(280px, 1fr) 180px;
  align-items: end;
}

.admin-delete-auth-form .btn {
  min-height: 42px;
  box-shadow: none;
}

@media (max-width: 980px) {
  .admin-compact-intro,
  .admin-compact-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-compact-mode {
    width: 100%;
  }

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

  .admin-compact-form .admin-url-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .admin-compact-card .admin-table-wrap {
    overflow-x: auto;
  }

  .admin-compact-table.admin-table {
    min-width: 980px;
    table-layout: auto;
  }
}

@media (max-width: 620px) {
  .admin-compact-stats,
  .admin-compact-form {
    grid-template-columns: 1fr;
  }
}
