:root {
  --purple: #6c5ce7;
  --purple-dark: #2d1e5f;
  --cyan: #00c2ff;
  --green: #00c896;
  --ink: #111827;
  --muted: #64748b;
  --bg: #f8fafc;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(45, 30, 95, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body::selection { background: rgba(0, 194, 255, 0.25); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-family: "Plus Jakarta Sans"; color: var(--purple-dark); }
.brand-logo {
  display: block;
  width: clamp(128px, 12vw, 170px);
  height: auto;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.28);
}
.nav { display: flex; justify-content: flex-start; gap: 14px; font-size: 0.88rem; font-weight: 700; color: #475569; }
.nav a { transition: color 180ms ease; }
.nav a:hover, .nav a.active { color: var(--purple); }
.header-actions, .hero-actions, .admin-actions { display: flex; align-items: center; gap: 12px; }
.ghost-link { color: var(--purple-dark); font-weight: 800; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--purple);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(108, 92, 231, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(108, 92, 231, 0.32); }
.button-secondary { background: white; color: var(--purple-dark); border: 1px solid var(--line); box-shadow: none; }
.button-small { min-height: 40px; padding-inline: 16px; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: white; border-radius: 8px; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--purple-dark); }

.section, .section-band { padding: 104px clamp(20px, 5vw, 72px); }
.section-band { background: var(--bg); }
.image-backed,
.image-accent { position: relative; overflow: hidden; }
.image-backed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.86), rgba(248, 250, 252, 0.68)),
    var(--section-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 240ms ease;
}
.image-backed.soft::after {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.76)),
    var(--section-image);
}
.image-backed.has-custom-image::after { opacity: 1; }
.image-backed > *,
.image-accent > * { position: relative; z-index: 1; }
.image-accent::before {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 36px;
  width: min(320px, 34vw);
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.14), rgba(0, 194, 255, 0.1)),
    var(--section-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  box-shadow: var(--shadow);
  pointer-events: none;
}
.image-accent.has-custom-image::before { opacity: 0.48; }
.hero + .section { padding-top: 0; }
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 82px;
}
.hero-clean {
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 92, 231, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-clean::before,
.hero-clean::after {
  display: none;
}
.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}
.hero-light.one {
  width: 280px;
  height: 280px;
  left: 4%;
  top: 12%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.22), rgba(108, 92, 231, 0));
  animation: floatSlow 8s ease-in-out infinite;
}
.hero-light.two {
  width: 340px;
  height: 340px;
  right: 8%;
  bottom: 2%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.22), rgba(0, 194, 255, 0));
  animation: floatSlow 10s ease-in-out infinite reverse;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(0, 194, 255, 0.08) 100%),
    url("data:image/svg+xml,%3Csvg width='1200' height='900' viewBox='0 0 1200 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236C5CE7' stroke-opacity='.18'%3E%3Cpath d='M0 180 C180 80 300 250 470 130 S780 40 1200 160'/%3E%3Cpath d='M0 520 C220 420 360 650 560 500 S880 380 1200 520'/%3E%3Cpath d='M110 0 V900 M330 0 V900 M550 0 V900 M770 0 V900 M990 0 V900' stroke-opacity='.08'/%3E%3Cpath d='M0 120 H1200 M0 340 H1200 M0 560 H1200 M0 780 H1200' stroke-opacity='.08'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}
.hero-grid {
  position: relative;
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero-copy p { max-width: 760px; margin: 18px auto 0; font-size: 1.08rem; }
.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 84px;
  background: var(--bg);
}
.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.page-hero h1 { max-width: 980px; }
.page-hero p {
  max-width: 780px;
  margin-top: 22px;
  color: #475569;
  font-size: 1.12rem;
}
.page-link-grid,
.module-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.page-link-grid a,
.module-grid-large article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(45, 30, 95, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.page-link-grid a:hover,
.module-grid-large article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.page-link-grid b,
.module-grid-large h3 {
  display: block;
  color: var(--purple-dark);
  font-family: "Plus Jakarta Sans";
  font-size: 1.2rem;
  line-height: 1.15;
}
.page-link-grid span,
.module-grid-large p {
  display: block;
  margin-top: 12px;
}
.module-grid-large span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900;
}
.eyebrow { display: inline-flex; margin-bottom: 16px; color: var(--purple); font-weight: 900; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; }
.hero-actions { justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; color: #475569; font-size: 0.9rem; font-weight: 800; }
.trust-row span { padding: 8px 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.76); border-radius: 999px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
  margin: 24px auto 0;
}
.hero-proof article {
  padding: 14px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}
.hero-proof strong { display: block; color: var(--purple-dark); font-size: 1.35rem; line-height: 1; }
.hero-proof span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.78rem; font-weight: 800; line-height: 1.25; }

.dashboard-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  animation: panelFloat 6s ease-in-out infinite;
}
.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.32), rgba(0, 194, 255, 0.28), rgba(0, 200, 150, 0.2));
  filter: blur(18px);
  opacity: 0.6;
}
.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(45, 30, 95, 0.12);
}
.chip-one { right: -14px; top: 72px; animation: bob 4s ease-in-out infinite; }
.chip-two { left: -18px; bottom: 82px; animation: bob 4.6s ease-in-out infinite reverse; }
.hero-product-frame {
  margin-bottom: -120px;
  transform: rotate(-1.4deg);
}
.mini-overlay {
  width: min(430px, 88%);
  margin: 0 0 0 auto;
  transform: translateY(-8px) rotate(1deg);
}
.product-screen-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.28);
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 34px 90px rgba(45, 30, 95, 0.22);
}
.product-screen-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 38%, rgba(0,194,255,0.12));
  pointer-events: none;
}
.product-screen-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}
.screen-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.92);
  color: var(--purple-dark);
  font-weight: 900;
  font-size: 0.78rem;
}
.window-dots { display: flex; gap: 7px; margin-bottom: 18px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.window-dots span:nth-child(1) { background: #ff6b6b; }
.window-dots span:nth-child(2) { background: #ffd166; }
.window-dots span:nth-child(3) { background: var(--green); }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi-grid article, .panel, .feature-card, .price-card, .testimonial-grid article, .contact-form, .module-list article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.kpi-grid article { padding: 16px; }
small, .kpi-grid small { color: var(--muted); font-weight: 700; }
.kpi-grid strong { display: block; margin-top: 8px; color: var(--purple-dark); font-size: 1.4rem; }
.kpi-grid em { color: var(--green); font-style: normal; font-weight: 900; font-size: 0.8rem; }
.chart-card { margin-top: 14px; padding: 18px; background: var(--purple-dark); color: white; border-radius: 14px; }
.chart-head { display: flex; justify-content: space-between; color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.bar-chart { display: flex; align-items: end; gap: 12px; height: 180px; margin-top: 22px; }
.bar-chart span { flex: 1; border-radius: 999px 999px 4px 4px; background: linear-gradient(180deg, var(--cyan), var(--green)); animation: grow 900ms ease both; }
.money-flow { display: flex; align-items: center; gap: 10px; margin-top: 14px; color: var(--muted); font-weight: 800; }
.money-flow i { flex: 1; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--green)); }

.section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading p { margin-top: 18px; font-size: 1.05rem; }
.benefit-grid, .security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
.feature-card { padding: 24px; transition: transform 180ms ease, box-shadow 180ms ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card span { color: var(--cyan); font-weight: 900; }
.feature-card h3 { margin: 12px 0 10px; color: var(--purple-dark); }
.command-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.command-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.finance-orbit {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(108, 92, 231, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(248,250,252,0.82));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.finance-orbit::before,
.finance-orbit::after {
  content: "";
  position: absolute;
  inset: 68px;
  border: 1px dashed rgba(108, 92, 231, 0.24);
  border-radius: 50%;
}
.finance-orbit::after { inset: 116px; border-color: rgba(0, 194, 255, 0.3); }
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--purple-dark);
  color: white;
  box-shadow: 0 28px 68px rgba(45, 30, 95, 0.32);
}
.orbit-core strong { font-size: 1.8rem; line-height: 1; }
.orbit-core span { color: rgba(255,255,255,0.72); font-weight: 800; }
.orbit-item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--purple-dark);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(45, 30, 95, 0.11);
}
.item-a { left: 12%; top: 18%; animation: bob 4.2s ease-in-out infinite; }
.item-b { right: 12%; top: 24%; animation: bob 4.8s ease-in-out infinite reverse; }
.item-c { left: 16%; bottom: 20%; animation: bob 5s ease-in-out infinite reverse; }
.item-d { right: 14%; bottom: 18%; animation: bob 4.4s ease-in-out infinite; }
.ticker-section { overflow: hidden; padding: 18px 0; background: var(--purple-dark); color: white; }
.ticker-track { display: flex; width: max-content; gap: 0; animation: ticker 30s linear infinite; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 10px 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  border-right: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.075);
  color: rgba(255,255,255,0.88);
  font-weight: 900;
  user-select: none;
}
.ticker-track span:first-child {
  border-left: 1px solid rgba(255,255,255,0.16);
}
.ticker-track i {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.14);
  font-style: normal;
  font-size: 0.88rem;
}
.product-showcase {
  background:
    radial-gradient(circle at 8% 12%, rgba(108, 92, 231, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}
.showcase-main,
.showcase-stack article {
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 18px;
  background: white;
  box-shadow: 0 22px 60px rgba(45, 30, 95, 0.12);
}
.showcase-main {
  position: relative;
  min-height: 520px;
}
.showcase-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top left;
}
.showcase-main div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.82);
  color: white;
  backdrop-filter: blur(14px);
}
.showcase-main span {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.showcase-main h3 {
  margin-top: 8px;
  max-width: 560px;
}
.showcase-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.showcase-stack article {
  position: relative;
  min-height: 250px;
}
.showcase-stack img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: top left;
  transition: transform 400ms ease;
}
.showcase-stack article:hover img { transform: scale(1.05); }
.showcase-stack b {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--purple-dark);
  font-size: 0.82rem;
}
.compact-showcase .product-screen-frame {
  max-width: 1180px;
  margin: 0 auto;
}
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.screenshot-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(45, 30, 95, 0.12);
}
.income-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 194, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}
.income-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.income-graphic {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(108, 92, 231, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(rgba(108, 92, 231, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.045) 1px, transparent 1px),
    rgba(255,255,255,0.92);
  background-size: 36px 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.income-graphic::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.22), transparent 68%);
}
.income-total {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.86);
}
.income-total span {
  color: var(--muted);
  font-weight: 900;
}
.income-total strong {
  color: var(--purple-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}
.income-bars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}
.income-bars article {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.income-bars div {
  display: flex;
  align-items: end;
  height: 220px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.86);
  border: 1px solid rgba(229, 231, 235, 0.86);
}
.income-bars span {
  display: block;
  width: 100%;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  box-shadow: 0 18px 34px rgba(0, 194, 255, 0.16);
  animation: grow 900ms ease both;
}
.income-bars article:nth-child(2) span { background: linear-gradient(180deg, var(--purple), var(--cyan)); animation-delay: 0.1s; }
.income-bars article:nth-child(3) span { background: linear-gradient(180deg, var(--green), rgba(0, 200, 150, 0.42)); animation-delay: 0.2s; }
.income-bars article:nth-child(4) span { background: linear-gradient(180deg, var(--purple-dark), var(--purple)); animation-delay: 0.3s; }
.income-bars b {
  color: var(--purple-dark);
  font-size: 0.92rem;
}
.income-bars small {
  color: var(--muted);
}
.real-finance-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(108, 92, 231, 0.08), transparent 30%),
    #ffffff;
}
.real-finance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.real-finance-layout .section-heading p {
  max-width: 620px;
}
.business-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 170px;
  gap: 14px;
}
.business-mosaic article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 18px;
  background: var(--purple-dark);
  box-shadow: 0 18px 48px rgba(45, 30, 95, 0.11);
}
.business-mosaic article.large {
  grid-row: span 2;
}
.business-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}
.business-mosaic article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(17, 24, 39, 0.72));
}
.business-mosaic article:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}
.business-mosaic span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--purple-dark);
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.16);
}

.split, .story-layout, .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; max-width: 1240px; margin: 0 auto; }
.split.reverse { grid-template-columns: 1fr 0.9fr; }
.module-list { display: grid; gap: 14px; }
.module-list article { padding: 22px; display: grid; gap: 6px; }
.module-list b { color: var(--purple-dark); }
.module-list span { color: var(--muted); }

.dashboard-demo { max-width: 1240px; margin: 0 auto; }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 16px; }
.metric-row article { padding: 22px; background: var(--purple-dark); color: white; border-radius: var(--radius); }
.metric-row small { color: rgba(255,255,255,0.72); }
.metric-row strong { display: block; margin-top: 8px; font-size: 1.45rem; }
.dashboard-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.panel { padding: 22px; min-height: 210px; }
.panel.wide { grid-column: span 2; }
.panel-head { display: flex; justify-content: space-between; align-items: center; }
.panel-head span { color: var(--green); font-weight: 900; }
.line-chart { height: 180px; margin-top: 12px; }
.line-chart path { fill: none; stroke: var(--purple); stroke-width: 8; stroke-linecap: round; }
.line-chart .fill { fill: rgba(108, 92, 231, 0.12); stroke: none; }
.donut { width: 148px; height: 148px; margin: 24px auto 0; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--green) 0 72%, #e2e8f0 72% 100%); }
.donut span { display: grid; place-items: center; width: 96px; height: 96px; border-radius: 50%; background: white; font-weight: 900; color: var(--purple-dark); }
.status-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; font-weight: 800; color: #475569; }
.status-list span { display: inline-block; width: 10px; height: 10px; margin-right: 8px; border-radius: 50%; }
.ok { background: var(--green); } .warn { background: #f59e0b; } .danger { background: #ef4444; }
.table-panel { grid-column: span 2; }
table { width: 100%; border-collapse: collapse; margin-top: 18px; }
td, th { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: left; }
td:last-child { font-weight: 900; color: var(--purple-dark); text-align: right; }
.alerts-panel { background: linear-gradient(135deg, var(--purple-dark), #4d3cb0); color: white; }
.alerts-panel p { color: rgba(255,255,255,0.76); margin-top: 12px; }

.price-controls { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; }
.price-controls button {
  border: 1px solid var(--line);
  background: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--purple-dark);
  cursor: pointer;
}
.price-controls button.active { background: var(--purple-dark); color: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
.price-card { padding: 26px; display: flex; flex-direction: column; min-height: 520px; }
.price-card.featured { border-color: rgba(0, 194, 255, 0.5); box-shadow: var(--shadow); transform: translateY(-10px); }
.price-card span { color: var(--purple); font-weight: 900; font-size: 0.82rem; text-transform: uppercase; }
.price-card h3 { margin-top: 12px; }
.price-card strong { display: block; margin-top: 22px; font-size: 2rem; color: var(--purple-dark); line-height: 1.1; }
.price-card small { margin-top: 6px; }
.price-card p { margin-top: 18px; font-weight: 800; color: var(--ink); }
.price-card ul { padding: 0; margin: 22px 0; list-style: none; display: grid; gap: 10px; color: #475569; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; }
.price-card .button { margin-top: auto; }

.story-visual { min-height: 360px; position: relative; }
.stack-card { position: absolute; left: 8%; right: 8%; padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: white; box-shadow: var(--shadow); font-weight: 900; color: var(--purple-dark); }
.stack-card.one { top: 24px; transform: rotate(-4deg); }
.stack-card.two { top: 128px; transform: rotate(3deg); }
.stack-card.three { top: 232px; background: var(--purple-dark); color: white; }
.audience-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1120px; margin: 0 auto; }
.audience-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; font-weight: 900; text-align: center; color: var(--purple-dark); }
.audience-interactive-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(108, 92, 231, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}
.audience-interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.audience-interactive-grid article {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 18px;
  background: var(--purple-dark);
  box-shadow: 0 18px 48px rgba(45, 30, 95, 0.12);
  cursor: pointer;
  outline: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.audience-interactive-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17,24,39,0.02) 20%, rgba(17,24,39,0.82) 100%);
}
.audience-interactive-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}
.audience-interactive-grid div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.62);
  color: white;
  backdrop-filter: blur(12px);
  transform: translateY(18px);
  transition: transform 220ms ease, background 220ms ease;
}
.audience-interactive-grid h3 {
  color: white;
}
.audience-interactive-grid p {
  margin-top: 10px;
  color: rgba(255,255,255,0.76);
}
.audience-interactive-grid article:hover,
.audience-interactive-grid article:focus {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 255, 0.45);
  box-shadow: 0 28px 74px rgba(45, 30, 95, 0.18);
}
.audience-interactive-grid article:hover img,
.audience-interactive-grid article:focus img {
  transform: scale(1.07);
  filter: saturate(1.08);
}
.audience-interactive-grid article:hover div,
.audience-interactive-grid article:focus div {
  transform: translateY(0);
  background: rgba(45, 30, 95, 0.7);
}
.timeline { display: grid; gap: 16px; }
.timeline article { padding: 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.timeline span { color: var(--purple); font-weight: 900; }
.timeline p { margin-top: 8px; }
.story-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 194, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.story-card {
  padding: 28px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgba(45, 30, 95, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.story-card.large {
  grid-row: span 2;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 20% 12%, rgba(108, 92, 231, 0.13), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}
.story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.38);
  box-shadow: var(--shadow);
}
.story-card span,
.mv-card span {
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.story-card h2,
.story-card h3 {
  margin-top: 12px;
  color: var(--purple-dark);
}
.story-card p,
.story-card ul {
  margin-top: 16px;
}
.story-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.story-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan);
}
.story-flow-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 200, 150, 0.12), transparent 30%),
    var(--bg);
}
.evolution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  counter-reset: step;
}
.evolution-steps article {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 18px;
  background: white;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.evolution-steps article::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--green));
  opacity: 0.42;
}
.evolution-steps article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.evolution-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--purple-dark);
  color: white;
  font-weight: 900;
}
.evolution-steps h3 {
  margin-top: 48px;
  color: var(--purple-dark);
}
.evolution-steps p {
  margin-top: 12px;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.mv-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  border-radius: 22px;
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow);
}
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  pointer-events: none;
}
.mv-card > * {
  position: relative;
  z-index: 1;
}
.mv-card.mission {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}
.mv-card.vision {
  background: linear-gradient(135deg, #073b4c, var(--cyan));
}
.mv-card span {
  color: rgba(255,255,255,0.78);
}
.mv-card h2 {
  margin-top: 16px;
  color: white;
}
.mv-card p {
  margin-top: 18px;
  color: rgba(255,255,255,0.8);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1340px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 8px;
}
.values-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--value) 32%, white);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--value) 10%, white), white 58%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.values-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--value);
  box-shadow: 0 24px 62px color-mix(in srgb, var(--value) 22%, transparent);
}
.values-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--value);
  color: white;
  font-weight: 900;
}
.values-grid h3 {
  margin-top: 18px;
  color: var(--purple-dark);
}
.values-grid p {
  margin-top: 12px;
}
.why-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 194, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(108, 92, 231, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}
.why-problem-grid,
.choice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.problem-stack {
  display: grid;
  gap: 14px;
}
.problem-stack article {
  padding: 22px 24px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 16px;
  background: white;
  color: var(--purple-dark);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(45, 30, 95, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.problem-stack article:nth-child(1) { transform: translateX(18px); }
.problem-stack article:nth-child(2) { transform: translateX(-12px); }
.problem-stack article:nth-child(3) { transform: translateX(28px); }
.problem-stack article:nth-child(4) {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: white;
}
.problem-stack article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-audience-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 200, 150, 0.12), transparent 28%),
    var(--bg);
}
.why-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.why-chip-grid span {
  padding: 12px 16px;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--purple-dark);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(45, 30, 95, 0.06);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.why-chip-grid span:hover {
  transform: translateY(-4px);
  background: var(--purple);
  color: white;
}
.choice-panel,
.latam-card {
  padding: 34px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.choice-panel h2,
.latam-card h2 {
  margin-top: 12px;
}
.choice-panel p + p {
  margin-top: 16px;
}
.choice-meter {
  display: grid;
  gap: 16px;
}
.choice-meter article {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(45, 30, 95, 0.08);
}
.choice-meter article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--purple), var(--cyan), var(--green));
}
.choice-meter b {
  display: block;
  color: var(--purple-dark);
  font-size: 1.2rem;
}
.choice-meter span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}
.why-benefits-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(108, 92, 231, 0.12), transparent 30%),
    var(--bg);
}
.why-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.why-benefit-grid article {
  min-height: 320px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--why) 30%, white);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--why) 10%, white), white 62%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.why-benefit-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--why);
  box-shadow: 0 24px 62px color-mix(in srgb, var(--why) 22%, transparent);
}
.why-benefit-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--why);
  color: white;
  font-weight: 900;
}
.why-benefit-grid h3 {
  margin-top: 18px;
  color: var(--purple-dark);
}
.why-benefit-grid p {
  margin-top: 12px;
}
.why-latam-section {
  background: white;
}
.latam-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 194, 255, 0.14), transparent 38%),
  white;
}
.security-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 194, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 20%, rgba(0, 200, 150, 0.13), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}
.security-risk-grid,
.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 54px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.security-alert-stack {
  display: grid;
  gap: 14px;
}
.security-alert-stack article {
  padding: 22px 24px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 42px rgba(45, 30, 95, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.security-alert-stack article:last-child {
  background: linear-gradient(135deg, var(--purple-dark), var(--green));
  color: white;
}
.security-alert-stack article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.security-alert-stack b,
.security-alert-stack span {
  display: block;
}
.security-alert-stack span {
  margin-top: 6px;
  color: var(--muted);
}
.security-alert-stack article:last-child span {
  color: rgba(255,255,255,0.78);
}
.access-section,
.protected-modules-section,
.security-real-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(108, 92, 231, 0.1), transparent 30%),
    var(--bg);
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.access-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 38px rgba(45, 30, 95, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.access-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.access-grid span {
  color: var(--purple-dark);
  font-weight: 900;
  font-size: 1.1rem;
}
.access-grid p {
  margin-top: 12px;
}
.audit-panel {
  padding: 34px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.audit-panel h2 {
  margin-top: 12px;
}
.audit-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}
.audit-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--cyan), var(--green));
}
.audit-timeline article {
  position: relative;
  display: grid;
  gap: 4px;
  margin-left: 56px;
  padding: 18px 20px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 16px;
  background: white;
  box-shadow: 0 14px 34px rgba(45, 30, 95, 0.07);
}
.audit-timeline article::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 24px;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.14);
}
.audit-timeline span {
  color: var(--purple);
  font-weight: 900;
}
.audit-timeline b {
  color: var(--purple-dark);
}
.protected-module-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.protected-module-grid span {
  padding: 12px 16px;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--purple-dark);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(45, 30, 95, 0.06);
}
.security-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.security-card-grid article {
  min-height: 360px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--secure) 30%, white);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--secure) 10%, white), white 62%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.security-card-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--secure);
  box-shadow: 0 24px 62px color-mix(in srgb, var(--secure) 22%, transparent);
}
.security-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--secure);
  color: white;
  font-weight: 900;
}
.security-card-grid h3 {
  margin-top: 18px;
  color: var(--purple-dark);
}
.security-card-grid p {
  margin-top: 12px;
}
.security-real-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 194, 255, 0.14), transparent 38%),
    white;
  text-align: center;
  box-shadow: var(--shadow);
}
.security-real-card h2 {
  margin-top: 12px;
}
.testimonial-grid article { padding: 26px; }
.testimonial-grid p { color: var(--ink); font-size: 1.02rem; }
.testimonial-grid b { display: block; margin-top: 18px; color: var(--purple-dark); }
.testimonial-grid span { color: var(--muted); font-size: 0.9rem; }

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: 46px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 194, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(108, 92, 231, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}
.contact-hero h1 {
  max-width: 860px;
}
.contact-hero p {
  max-width: 780px;
}
.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.contact-help-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(45, 30, 95, 0.95), rgba(108, 92, 231, 0.9)),
    var(--purple-dark);
  color: white;
  box-shadow: 0 32px 80px rgba(45, 30, 95, 0.28);
}
.contact-help-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.32);
  filter: blur(28px);
  animation: floatSlow 8s ease-in-out infinite;
}
.contact-help-card > * {
  position: relative;
  z-index: 1;
}
.contact-help-card span {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.contact-help-card h2 {
  margin-top: 14px;
  color: white;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}
.contact-help-card ul,
.contact-channel-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  list-style: none;
}
.contact-help-card li,
.contact-channel-card li {
  position: relative;
  padding-left: 22px;
}
.contact-help-card li::before,
.contact-channel-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.14);
}
.contact-talk-section,
.contact-form-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(108, 92, 231, 0.1), transparent 30%),
    var(--bg);
}
.contact-talk-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.contact-focus-grid {
  display: grid;
  gap: 16px;
}
.contact-focus-grid article {
  padding: 22px 24px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 42px rgba(45, 30, 95, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.contact-focus-grid article:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}
.contact-focus-grid span {
  color: var(--cyan);
  font-weight: 900;
}
.contact-focus-grid b {
  display: block;
  margin-top: 8px;
  color: var(--purple-dark);
}
.contact-focus-grid p {
  margin-top: 6px;
}
.contact-channels-section {
  background: white;
}
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 34px auto 0;
}
.contact-channel-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--channel) 28%, white);
  border-radius: 20px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--channel) 9%, white), white 54%);
  box-shadow: 0 18px 54px rgba(45, 30, 95, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.contact-channel-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -46px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--channel) 30%, transparent);
  filter: blur(24px);
}
.contact-channel-card:hover {
  transform: translateY(-8px);
  border-color: var(--channel);
  box-shadow: 0 28px 72px color-mix(in srgb, var(--channel) 18%, transparent);
}
.contact-channel-card > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--channel);
  color: white;
  font-weight: 900;
}
.contact-channel-card h3 {
  margin-top: 18px;
  color: var(--purple-dark);
}
.contact-channel-card b {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}
.contact-channel-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--purple);
  font-weight: 900;
}
.contact-channel-card p {
  margin-top: 16px;
}
.contact-grid { grid-template-columns: 0.85fr 1fr; }
.contact-info { display: grid; gap: 10px; margin-top: 28px; color: var(--purple-dark); font-weight: 800; }
.contact-form { padding: 28px; display: grid; gap: 16px; box-shadow: var(--shadow); }
.contact-human-card {
  padding: 34px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 194, 255, 0.14), transparent 34%),
    white;
  box-shadow: 0 22px 62px rgba(45, 30, 95, 0.08);
}
.contact-human-card h2 {
  margin-top: 10px;
}
.contact-human-card p {
  margin-top: 14px;
}
.contact-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.contact-pill-row span {
  padding: 10px 13px;
  border: 1px solid rgba(108, 92, 231, 0.16);
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.07);
  color: var(--purple-dark);
  font-weight: 900;
}
.contact-start-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: white;
}
.contact-start-box p {
  color: rgba(255,255,255,0.78);
}
.contact-form-premium {
  border-color: rgba(108, 92, 231, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), #ffffff),
    white;
}
.contact-form-premium h2 {
  margin-top: -8px;
  color: var(--purple-dark);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 194, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #020617, #2d1e5f 55%, #050816);
}
.contact-final-cta .eyebrow {
  color: var(--cyan);
}
label { display: grid; gap: 8px; color: var(--purple-dark); font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }
.form-note { min-height: 24px; color: var(--green); font-weight: 800; }
.final-cta { padding: 86px 20px; text-align: center; background: var(--purple-dark); color: white; }
.final-cta p { margin: 16px 0 28px; color: rgba(255,255,255,0.78); }
.final-cta .button { background: var(--green); box-shadow: 0 18px 42px rgba(0, 200, 150, 0.26); }
.footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 64px clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 92, 231, 0.48), transparent 32%),
    linear-gradient(135deg, #020617 0%, #0b1020 18%, #2d145f 52%, #12091f 78%, #020617 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.26);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 26%, rgba(0,194,255,0.05) 56%, transparent 76%);
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer .brand-logo {
  filter: drop-shadow(0 18px 32px rgba(0, 194, 255, 0.18));
}
.footer p {
  margin-top: 16px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.065);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 194, 255, 0.55);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.34), rgba(0, 194, 255, 0.2));
  box-shadow: 0 14px 34px rgba(0, 194, 255, 0.12);
}
.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  max-width: 680px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}
.footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.footer nav a:hover {
  color: white;
  border-color: rgba(0, 194, 255, 0.52);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.28), rgba(0, 194, 255, 0.18));
  box-shadow: 0 14px 34px rgba(0, 194, 255, 0.12);
  transform: translateY(-3px);
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  min-height: 62px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 200, 150, 0.96), rgba(0, 194, 255, 0.88));
  color: white;
  box-shadow: 0 24px 58px rgba(0, 200, 150, 0.28), 0 10px 28px rgba(45, 30, 95, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 200, 150, 0.2);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  color: white;
  filter: saturate(1.08);
  box-shadow: 0 28px 70px rgba(0, 200, 150, 0.36), 0 14px 34px rgba(45, 30, 95, 0.22);
}
.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal { opacity: 0; transform: translateY(22px) scale(0.985); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 120ms; }
@keyframes grow { from { transform: scaleY(0.2); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
@keyframes panelFloat { 0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); } 50% { transform: translateY(-10px) rotateX(1.2deg) rotateY(-1.2deg); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatSlow { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(18px,-18px,0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes whatsappPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.12; }
  50% { transform: scale(1.08); opacity: 0.28; }
}

.admin-body { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; background: var(--bg); }
.admin-body.admin-locked {
  display: block;
  background:
    radial-gradient(circle at 68% 18%, rgba(0, 194, 255, 0.18), transparent 30%),
    radial-gradient(circle at 28% 12%, rgba(108, 92, 231, 0.32), transparent 34%),
    linear-gradient(135deg, #020617, #1c0b3f 48%, #050816);
}
.admin-locked [data-admin-shell] { display: none !important; }
.cristal-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: white;
}
.cristal-login::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}
.cristal-login-card {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}
.cristal-login-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.cristal-login-brand .brand-logo { width: 150px; }
.cristal-login-brand span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--purple-dark);
  font-weight: 900;
}
.cristal-login-card h1 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cristal-login-card p {
  margin-top: 12px;
}
.cristal-login-card form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.cristal-login-card .button {
  width: 100%;
  margin-top: 6px;
}
.login-error {
  min-height: 22px;
  margin: 0;
  color: #e11d48;
  font-weight: 900;
}
.admin-unlocked .cristal-login { display: none; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  padding-bottom: 40px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: white;
  border-right: 1px solid var(--line);
}
.admin-sidebar::-webkit-scrollbar { width: 10px; }
.admin-sidebar::-webkit-scrollbar-track { background: rgba(108, 92, 231, 0.06); }
.admin-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.72), rgba(0, 194, 255, 0.72));
  border: 2px solid white;
  border-radius: 999px;
}
.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple), var(--cyan));
}
.admin-sidebar nav { display: grid; gap: 8px; margin-top: 10px; }
.admin-sidebar-label { margin-top: 28px; color: var(--muted); font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.admin-sidebar a:not(.brand), .admin-sidebar button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #475569;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.admin-sidebar a.active, .admin-sidebar a:hover, .admin-sidebar button.active, .admin-sidebar button:hover { background: rgba(108, 92, 231, 0.1); color: var(--purple); }
.admin-main { padding: 34px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.admin-top h1 { font-size: 2.4rem; }
.admin-top p { margin-top: 8px; }
.admin-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.admin-overview article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.admin-overview b { display: block; color: var(--purple-dark); font-size: 1.8rem; line-height: 1; }
.admin-overview span { display: block; margin-top: 8px; color: var(--muted); font-weight: 800; }
.admin-editor-shell { display: grid; grid-template-columns: 280px 1fr; gap: 18px; margin-bottom: 22px; }
.admin-page-list {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 10px;
}
.admin-page-card {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  text-align: left;
  cursor: pointer;
}
.admin-page-card b { color: var(--purple-dark); }
.admin-page-card span { color: var(--muted); font-weight: 800; font-size: 0.86rem; }
.admin-page-card.active { border-color: rgba(108, 92, 231, 0.5); box-shadow: 0 14px 34px rgba(108, 92, 231, 0.14); }
.admin-page-editor {
  min-width: 0;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.admin-page-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; margin-bottom: 20px; }
.admin-field-group {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}
.admin-field-group header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.admin-field-group h3 { color: var(--purple-dark); }
.admin-field-group header span { color: var(--muted); font-weight: 900; font-size: 0.86rem; }
.admin-section { margin-bottom: 22px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-panel[hidden] { display: none !important; }
.admin-section-head { margin-bottom: 22px; }
.admin-section h2 { font-size: 1.5rem; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.admin-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-grid small { color: #94a3b8; font-weight: 700; word-break: break-word; }
.image-field { align-content: start; }
.admin-upload-input {
  width: 100%;
  padding: 10px;
  border: 1px dashed rgba(108, 92, 231, 0.35);
  border-radius: 8px;
  background: rgba(108, 92, 231, 0.06);
  color: var(--purple-dark);
  font-weight: 800;
}
.image-preview {
  display: block;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.16), rgba(0, 194, 255, 0.12)),
    var(--preview-image);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.image-preview::after {
  content: "Preview de imagen";
  display: inline-flex;
  margin: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.media-manager, .admin-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.upload-box, .admin-cards article, .empty-state { min-height: 120px; display: grid; place-items: center; padding: 20px; border: 1px dashed #cbd5e1; border-radius: var(--radius); color: var(--muted); font-weight: 900; }
.admin-cards article { place-items: start; border-style: solid; }
.admin-cards span { color: var(--muted); }
.swatch-row { display: flex; gap: 12px; }
.swatch-row span { width: 52px; height: 52px; border-radius: 12px; background: var(--swatch); border: 1px solid var(--line); }
.lead-table { overflow-x: auto; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-actions { display: none; }
  .hero-grid, .split, .split.reverse, .story-layout, .story-grid, .why-problem-grid, .choice-layout, .security-risk-grid, .audit-layout, .contact-grid, .contact-hero, .contact-talk-grid, .command-grid, .showcase-grid, .income-layout, .real-finance-layout, .mission-vision-grid { grid-template-columns: 1fr; }
  .benefit-grid, .security-grid, .pricing-grid, .page-link-grid, .module-grid-large, .screenshot-strip, .audience-interactive-grid, .evolution-steps, .why-benefit-grid, .access-grid, .security-card-grid, .contact-channel-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-row, .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
    max-height: 72vh;
    overflow-y: auto;
  }
  .admin-editor-shell { grid-template-columns: 1fr; }
  .admin-page-list { position: static; grid-template-columns: repeat(3, 1fr); }
  .admin-overview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .section, .section-band { padding: 72px 18px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-width: 0; }
  .brand-logo { width: 118px; }
  .hero-proof { grid-template-columns: 1fr; }
  .finance-orbit { min-height: 330px; }
  .orbit-item { min-width: auto; font-size: 0.82rem; }
  .kpi-grid, .benefit-grid, .security-grid, .pricing-grid, .page-link-grid, .module-grid-large, .screenshot-strip, .showcase-stack, .income-bars, .metric-row, .dashboard-grid, .audience-grid, .audience-interactive-grid, .evolution-steps, .why-benefit-grid, .access-grid, .security-card-grid, .contact-channel-grid, .form-row, .testimonial-grid, .admin-grid, .admin-grid.compact, .media-manager, .admin-cards, .admin-page-list, .admin-overview, .admin-page-toolbar { grid-template-columns: 1fr; }
  .problem-stack article:nth-child(n) { transform: none; }
  .story-card.large { grid-row: auto; }
  .mv-card { min-height: auto; }
  .audience-interactive-grid article { min-height: 300px; }
  .income-bars div { height: 120px; }
  .business-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .business-mosaic article.large { grid-row: span 1; }
  .hero-product-frame { margin-bottom: 18px; transform: none; }
  .mini-overlay { width: 100%; transform: none; }
  .showcase-main, .showcase-main img { min-height: 360px; }
  .panel.wide, .table-panel { grid-column: auto; }
  .price-card.featured { transform: none; }
  .footer, .admin-top { flex-direction: column; align-items: flex-start; }
  .footer nav { justify-content: flex-start; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
  }
  .admin-main { padding: 18px; }
}
