:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --ink: #0d1b2a;
  --muted: #64748b;
  --navy: #071521;
  --navy-2: #0d2333;
  --primary: #14b8a6;
  --primary-light: #5eead4;
  --accent: #38bdf8;
  --line: #dce4ec;
  --shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(7, 21, 33, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #051119; font-weight: 900; }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { font-family: Manrope, sans-serif; letter-spacing: .12em; }
.brand small { color: #a8bac7; margin-top: 4px; font-size: 11px; letter-spacing: .06em; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #d7e2ea; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.btn):hover { color: var(--primary-light); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; }

.btn { min-height: 50px; display: inline-flex; justify-content: center; align-items: center; padding: 0 24px; border-radius: 13px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding: 0 18px; }
.btn-primary { color: #041311; background: linear-gradient(135deg, var(--primary-light), var(--primary)); box-shadow: 0 12px 25px rgba(20,184,166,.22); }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.btn-outline { color: var(--ink); border-color: var(--line); background: white; width: 100%; }
.btn-dark { background: var(--navy); color: white; }
.btn-full { width: 100%; border: 0; }

.hero { position: relative; overflow: hidden; min-height: 810px; padding: 165px 0 100px; background: radial-gradient(circle at 25% 15%, #12384a 0, transparent 35%), linear-gradient(135deg, #06131e 0%, #0b2434 55%, #071521 100%); color: #fff; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 140px; background: linear-gradient(to top, rgba(7,21,33,.32), transparent); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .35; }
.hero-glow-one { width: 420px; height: 420px; background: #14b8a6; right: -160px; top: 120px; }
.hero-glow-two { width: 280px; height: 280px; background: #38bdf8; left: -150px; bottom: 80px; }
.eyebrow { display: inline-block; color: var(--primary); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.hero h1, .section-heading h2, .split-copy h2, .consulting-card h2, .contact-copy h2 { margin: 16px 0 22px; font-family: Manrope, sans-serif; line-height: 1.08; letter-spacing: -.045em; }
.hero h1 { font-size: clamp(46px, 6vw, 76px); max-width: 760px; }
.hero-text { font-size: 19px; color: #b9c9d4; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; gap: 34px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust div { display: grid; }
.hero-trust strong { font-size: 21px; color: var(--primary-light); }
.hero-trust span { color: #8fa5b5; font-size: 12px; }

.dashboard-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); box-shadow: 0 35px 80px rgba(0,0,0,.35); backdrop-filter: blur(18px); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.dashboard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dashboard-top span, .dashboard-top strong { display: block; }
.dashboard-top span { color: #8fa5b5; font-size: 12px; }
.dashboard-top strong { font-size: 20px; margin-top: 4px; }
.status-pill { color: #8df4d9 !important; background: rgba(20,184,166,.15); border: 1px solid rgba(94,234,212,.25); padding: 7px 11px; border-radius: 999px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-grid article { padding: 15px; border-radius: 15px; background: rgba(4,18,28,.5); border: 1px solid rgba(255,255,255,.06); }
.metric-grid span, .metric-grid small { display: block; color: #8fa5b5; font-size: 10px; }
.metric-grid strong { display: block; margin: 5px 0; font-size: 21px; }
.metric-grid .positive { color: #74e8cd; }
.chart-box { margin-top: 13px; padding: 18px 16px 8px; border-radius: 17px; background: rgba(4,18,28,.5); border: 1px solid rgba(255,255,255,.06); }
.chart-labels { display: flex; justify-content: space-between; font-size: 12px; color: #a9bbc7; }
.chart-labels strong { color: #75ead0; }
.chart-box .area { fill: url(#areaGradient); }
.chart-box .line { fill: none; stroke: #5eead4; stroke-width: 4; stroke-linecap: round; }
.alert-card { margin-top: 13px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 14px; border-radius: 15px; background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.2); }
.alert-icon { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 9px; color: #06131e; background: var(--accent); font-weight: 900; }
.alert-card strong, .alert-card small { display: block; }
.alert-card small { color: #a9bbc7; font-size: 11px; }
.arrow { color: var(--primary-light); font-size: 22px; }

.logo-strip {
  padding: 48px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border-bottom: 1px solid #cdd9e8;
}
.logo-strip .container {
  padding: 30px 34px 32px;
  background: rgba(255,255,255,.92);
  border: 1px solid #dbe5f0;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 43, 77, .09);
}
.logo-strip p {
  text-align: center;
  color: #42638e;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
}
.platforms {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 25px;
}
.platforms span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
  color: #102f58;
  font-weight: 850;
  line-height: 1.25;
  background: linear-gradient(145deg, #f7fbff, #edf5ff);
  border: 1px solid #d5e5f7;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(29, 78, 135, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.platforms span:hover {
  transform: translateY(-4px);
  border-color: #7baee8;
  box-shadow: 0 13px 26px rgba(29, 78, 135, .14);
}

.section-heading { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section-heading h2, .split-copy h2, .consulting-card h2, .contact-copy h2 { font-size: clamp(34px, 4.3vw, 53px); }
.section-heading p, .split-copy > p, .consulting-card > p, .contact-copy > p { color: var(--muted); font-size: 17px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 38px rgba(15,23,42,.05); transition: transform .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(20,184,166,.45); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: #dcfaf5; color: #078c7e; font-size: 20px; font-weight: 900; }
.feature-card h3 { margin: 24px 0 10px; font-size: 19px; }
.feature-card p { color: var(--muted); margin: 0; font-size: 14px; }

.section-dark { background: var(--navy); color: white; }
.section-heading.light p { color: #9db0bd; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 610px; padding: 34px; border-radius: 24px; background: white; color: var(--ink); border: 1px solid rgba(255,255,255,.1); }
.price-card.featured { transform: translateY(-14px); border: 2px solid var(--primary); box-shadow: 0 30px 60px rgba(20,184,166,.16); }
.popular { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); padding: 7px 16px; border-radius: 999px; color: #041311; background: var(--primary-light); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.plan-label { color: #078c7e; font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
.price-top h3 { margin: 10px 0; font-size: 25px; }
.price-top p { margin: 0; min-height: 78px; color: var(--muted); font-size: 14px; }
.price { display: flex; align-items: baseline; gap: 4px; margin: 28px 0 8px; font-size: 44px; line-height: 1; font-weight: 900; letter-spacing: -.04em; }
.price > span { font-size: 23px; }
.price small { margin-left: 5px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0; }
.enterprise-price { flex-wrap: wrap; font-size: 37px; }
.enterprise-price > span { width: 100%; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.branches { display: inline-flex; align-self: flex-start; padding: 8px 12px; border-radius: 999px; background: var(--surface-2); color: #334155; font-size: 12px; font-weight: 800; }
.price-card ul { flex: 1; list-style: none; padding: 0; margin: 26px 0; }
.price-card li { position: relative; padding: 9px 0 9px 26px; border-bottom: 1px solid #edf1f4; font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.pricing-note { margin: 28px 0 0; text-align: center; color: #7f95a5; font-size: 12px; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.implementation-price { display: grid; margin: 32px 0; padding: 24px; border-radius: 18px; background: #e8f9f6; border-left: 4px solid var(--primary); }
.implementation-price span, .implementation-price small { color: var(--muted); font-size: 12px; }
.implementation-price strong { font-size: 28px; margin: 4px 0; }
.process-list { display: grid; gap: 12px; }
.process-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding: 24px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.process-list article > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--navy); color: var(--primary-light); font-weight: 900; }
.process-list h3 { margin: 0 0 4px; font-size: 17px; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; }

.consulting { background: #eaf0f5; }
.consulting-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.consulting-card, .consulting-prices { border-radius: 27px; }
.consulting-card { padding: 52px; background: var(--navy); color: white; }
.consulting-card > p { color: #a9bbc7; }
.consulting-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.consulting-tags span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: #d9e4eb; font-size: 12px; font-weight: 700; }
.consulting-prices { display: grid; gap: 16px; }
.consulting-prices article { display: grid; align-content: center; padding: 35px; border-radius: 22px; background: white; border: 1px solid var(--line); }
.consulting-prices span { color: var(--muted); font-size: 13px; font-weight: 700; }
.consulting-prices strong { margin: 4px 0; font-size: 37px; }
.consulting-prices small { color: var(--muted); }
.consulting-prices b { margin-top: 18px; color: #087f72; font-size: 12px; }
.highlight-price { background: linear-gradient(135deg, #dffaf5, #f5fffd) !important; border-color: rgba(20,184,166,.4) !important; }

.results-section { background: white; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.results-grid strong { color: var(--primary); font-size: 14px; }
.results-grid h3 { font-size: 23px; margin: 14px 0 10px; }
.results-grid p { color: var(--muted); font-size: 14px; }

.contact-section { background: linear-gradient(135deg, #06131e, #0b2638); color: white; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy > p { color: #a9bbc7; }
.contact-details { display: grid; gap: 18px; margin-top: 40px; }
.contact-details p { display: grid; margin: 0; }
.contact-details strong { color: var(--primary-light); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-details span { color: #d8e3ea; }
.contact-form { padding: 35px; border-radius: 24px; background: white; color: var(--ink); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: 12px; font-weight: 800; color: #334155; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #f9fbfc; padding: 13px 14px; outline: none; color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(20,184,166,.12); }
.contact-form textarea { resize: vertical; }
.form-message { min-height: 22px; margin: 12px 0 0; text-align: center; color: #087f72; font-size: 13px; font-weight: 700; }

.footer { padding: 42px 0 24px; background: #030b11; color: #93a5b2; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid > p { margin: 0; font-size: 13px; }
.footer-links { display: flex; gap: 22px; font-size: 13px; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; font-size: 11px; }
.whatsapp-float { position: fixed; z-index: 30; right: 24px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #05220e; box-shadow: 0 14px 30px rgba(0,0,0,.25); font-weight: 900; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 78px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border-radius: 16px; background: #0a1d2b; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero-grid, .split-section, .consulting-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .dashboard-card { max-width: 700px; transform: none; }
  .features-grid, .pricing-grid, .results-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .split-section, .contact-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .platforms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platforms span:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero h1 { font-size: 43px; }
  .hero-text { font-size: 16px; }
  .hero-actions, .hero-trust, .footer-bottom { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .logo-strip .container { padding: 24px 18px; }
  .platforms { grid-template-columns: 1fr; }
  .platforms span:last-child { grid-column: auto; }
  .hero-trust { gap: 14px; }
  .dashboard-card { padding: 15px; }
  .metric-grid, .features-grid, .pricing-grid, .results-grid, .form-row { grid-template-columns: 1fr; }
  .metric-grid article:nth-child(3) { display: none; }
  .chart-box svg { height: 145px; }
  .price-card { min-height: auto; }
  .consulting-card, .contact-form { padding: 28px; }
  .consulting-prices strong { font-size: 30px; }
  .footer-links { flex-wrap: wrap; }
}

/* Punto de venta, lealtad y reportes */
.pos-section { background: linear-gradient(180deg, #f7fafc 0%, #eef5f7 100%); }
.pos-showcase { margin: 48px 0 34px; }
.pos-window { overflow: hidden; border-radius: 26px; border: 1px solid #dbe6eb; background: #fff; box-shadow: 0 32px 70px rgba(7, 25, 38, .14); }
.pos-window-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid #e7eef2; background: #f8fbfc; font-size: 12px; }
.pos-window-top > :last-child { justify-self: end; }
.window-dot { display: inline-block; width: 9px; height: 9px; margin-right: 5px; border-radius: 50%; background: #cad6dc; }
.pos-layout { display: grid; grid-template-columns: 110px 1fr 320px; min-height: 420px; }
.pos-sidebar { display: grid; align-content: start; gap: 8px; padding: 18px 12px; background: var(--navy); }
.pos-sidebar button { border: 0; border-radius: 10px; padding: 12px 8px; background: transparent; color: #9fb2be; font: inherit; font-size: 12px; text-align: left; cursor: default; }
.pos-sidebar button.active { background: rgba(94,234,212,.14); color: var(--primary-light); font-weight: 800; }
.pos-products { padding: 22px; background: #f4f8fa; }
.pos-search { margin-bottom: 18px; padding: 13px 15px; border: 1px solid #dfe8ed; border-radius: 12px; background: #fff; color: #91a0a9; font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.product-grid span { display: grid; align-content: end; min-height: 110px; padding: 15px; border: 1px solid #dde8ec; border-radius: 16px; background: linear-gradient(145deg,#fff,#eaf7f4); color: var(--ink); font-weight: 800; }
.product-grid small { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 600; }
.pos-ticket { display: flex; flex-direction: column; padding: 22px; border-left: 1px solid #e3ebef; }
.ticket-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 16px; border-bottom: 1px solid #edf1f4; }
.ticket-head small { color: var(--muted); }
.pos-ticket ul { flex: 1; list-style: none; margin: 16px 0; padding: 0; }
.pos-ticket li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; color: #44535d; font-size: 12px; border-bottom: 1px dashed #e4eaee; }
.ticket-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-top: 15px; border-top: 2px solid #e3eaee; }
.ticket-total strong { font-size: 25px; }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.module-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.module-card > span { color: var(--primary); font-size: 12px; font-weight: 900; }
.module-card h3 { margin: 12px 0 8px; font-size: 18px; }
.module-card p { margin: 0; color: var(--muted); font-size: 13px; }
.loyalty-section { background: #fff; }
.loyalty-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.check-list { list-style: none; margin: 28px 0 34px; padding: 0; }
.check-list li { position: relative; padding: 9px 0 9px 28px; color: #44535d; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.loyalty-card { padding: 40px; border-radius: 28px; background: linear-gradient(145deg,#071826,#123347); color: #fff; box-shadow: 0 30px 65px rgba(7,24,38,.25); }
.member-top { display: flex; justify-content: space-between; align-items: center; color: #a8bac5; }
.member-badge { padding: 7px 11px; border-radius: 999px; background: var(--primary-light); color: #06211d; font-size: 11px; font-weight: 900; }
.loyalty-card h3 { margin: 34px 0 8px; font-size: 25px; }
.points { display: block; font-size: 44px; }
.points small { font-size: 13px; color: #a7bac5; }
.progress { height: 8px; margin: 22px 0 10px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
.progress span { display: block; width: 82%; height: 100%; border-radius: inherit; background: var(--primary-light); }
.loyalty-card > p { color: #9db0bd; font-size: 12px; }
.reward-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.reward-grid span { display: grid; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.05); font-size: 12px; font-weight: 800; }
.reward-grid small { margin-top: 4px; color: var(--primary-light); font-size: 10px; }
.reports-section { background: var(--navy); color: #fff; }
.report-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 22px; }
.report-tab { border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 10px 15px; background: transparent; color: #a9bbc7; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.report-tab.active { background: var(--primary-light); border-color: var(--primary-light); color: #061a17; }
.report-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; padding: 34px; border: 1px solid rgba(255,255,255,.09); border-radius: 26px; background: rgba(255,255,255,.045); }
.report-copy { padding: 15px 8px; }
.report-kicker { color: var(--primary-light); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.report-copy h3 { margin: 12px 0; font-size: 29px; }
.report-copy p, .report-copy li { color: #a9bbc7; font-size: 13px; }
.report-copy ul { padding-left: 18px; }
.report-copy li { margin: 9px 0; }
.report-dashboard { padding: 22px; border-radius: 20px; background: #fff; color: var(--ink); }
.report-head { display: flex; justify-content: space-between; align-items: center; gap: 15px; font-size: 12px; font-weight: 800; }
.report-head select { padding: 8px 10px; border: 1px solid var(--line); border-radius: 9px; color: #44535d; }
.report-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 20px 0; }
.report-metrics article { display: grid; padding: 14px; border-radius: 13px; background: #f4f8fa; }
.report-metrics span, .report-metrics small { color: var(--muted); font-size: 9px; }
.report-metrics strong { margin: 4px 0; font-size: 18px; }
.report-metrics small { color: #078c7e; }
.bar-chart { height: 160px; display: flex; align-items: end; gap: 12px; padding: 12px 10px 25px; border-left: 1px solid #e2e9ed; border-bottom: 1px solid #e2e9ed; }
.bar-chart span { position: relative; flex: 1; min-height: 12px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg,var(--primary-light),var(--primary)); }
.bar-chart b { position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%); color: #7d8c95; font-size: 8px; font-weight: 700; }
.report-catalog { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 22px; }
.report-catalog article { padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(255,255,255,.035); }
.report-catalog h3 { margin: 0 0 8px; color: #fff; font-size: 16px; }
.report-catalog p { margin: 0; color: #91a6b4; font-size: 12px; }

@media (max-width: 960px) {
  .pos-layout { grid-template-columns: 90px 1fr; }
  .pos-ticket { grid-column: 1 / -1; border-left: 0; border-top: 1px solid #e3ebef; }
  .module-grid, .report-catalog { grid-template-columns: 1fr 1fr; }
  .loyalty-grid, .report-panel { grid-template-columns: 1fr; gap: 35px; }
}
@media (max-width: 640px) {
  .pos-window-top { grid-template-columns: 1fr; }
  .pos-window-top > :last-child { justify-self: start; }
  .pos-layout { grid-template-columns: 1fr; }
  .pos-sidebar { grid-template-columns: repeat(2,1fr); }
  .product-grid, .module-grid, .report-catalog, .report-metrics { grid-template-columns: 1fr; }
  .pos-ticket { grid-column: auto; }
  .report-panel { padding: 20px; }
  .report-dashboard { padding: 15px; }
  .bar-chart { gap: 6px; }
  .loyalty-card { padding: 28px; }
}
