:root {
  --brand: #5C3AFD;
  --brand-2: #7A8CFF;
  --brand-soft: #E9EDFF;
  --brand-bg: #F2F4F7;
  --ink: #1E2330;
  --muted: #5F6B7A;
  --line: #E1E6F0;
  --white: #FFFFFF;
  --success: #64B70B;
  --shadow: 0 24px 70px rgba(30, 35, 48, 0.12);
  --shadow-soft: 0 12px 32px rgba(30, 35, 48, 0.08);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.page-loader { min-height: 100vh; display: grid; place-items: center; gap: 14px; align-content: center; color: var(--muted); background: linear-gradient(180deg, #fff, var(--brand-bg)); }
.page-loader img { width: 230px; max-width: 75%; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(225, 230, 240, .9);
}
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -0.04em; font-size: 22px; }
.logo img { width: 184px; height: auto; display: block; }
.logo-fallback { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; color: #3D4656; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; border-radius: 999px; transform: scaleX(0); transform-origin: center; transition: .18s ease; background: var(--brand); }
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 999px; padding: 13px 20px; font-weight: 800; cursor: pointer; transition: .2s ease; white-space: nowrap; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 16px 30px rgba(92,58,253,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 38px rgba(92,58,253,.3); }
.btn-secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(30,35,48,.04); }
.btn-secondary:hover { transform: translateY(-2px); border-color: #BFC8FF; color: var(--brand); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--brand); font-weight: 900; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 10% 10%, rgba(92,58,253,.16), transparent 34%),
    radial-gradient(circle at 88% 6%, rgba(122,140,255,.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #F7F8FF 55%, #fff 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(30,35,48,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(30,35,48,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 76%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-weight: 800; font-size: 13px; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--brand); box-shadow: 0 0 0 6px rgba(92,58,253,.13); }
h1 { margin: 20px 0 20px; font-size: clamp(42px, 6vw, 74px); line-height: .96; letter-spacing: -0.065em; color: var(--ink); }
.gradient { background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; line-height: 1.78; color: #4F5C6D; margin: 0 0 26px; max-width: 660px; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line); background: rgba(255,255,255,.86); border-radius: 999px; font-size: 13px; font-weight: 800; color: #364152; box-shadow: 0 8px 18px rgba(30,35,48,.04); }
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 34px; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.stat { padding: 16px; border: 1px solid rgba(225,230,240,.9); background: rgba(255,255,255,.75); border-radius: 20px; box-shadow: 0 12px 24px rgba(30,35,48,.05); }
.stat strong { display: block; font-size: 23px; letter-spacing: -.04em; color: var(--brand); }
.stat span { color: var(--muted); font-size: 12px; font-weight: 700; }
.dashboard { border: 1px solid rgba(225,230,240,.95); border-radius: 34px; padding: 14px; background: rgba(255,255,255,.8); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.dashboard-inner { border-radius: 26px; overflow: hidden; background: #fff; color: var(--ink); border: 1px solid rgba(225,230,240,.8); }
.dash-head { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.dash-title { font-weight: 900; letter-spacing: -.03em; }
.dash-dots { display: flex; gap: 7px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.65); }
.dash-body { padding: 24px; background: linear-gradient(180deg, #fff, #FAFBFF); }
.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.metric { padding: 16px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(30,35,48,.055); }
.metric label { display: block; color: var(--muted); font-size: 12px; margin-bottom: 8px; font-weight: 700; }
.metric strong { display: block; font-size: 22px; color: var(--ink); letter-spacing: -.04em; }
.metric.indigo, .metric.purple, .metric.orange, .metric.lime, .metric.cyan { background: linear-gradient(180deg, #fff, var(--brand-soft)); border-color: #DDE3FF; }
.activity { margin-top: 18px; display: grid; gap: 10px; }
.activity-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 14px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 18px rgba(30,35,48,.04); }
.tag { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-weight: 900; }
.activity-row b { display: block; font-size: 14px; color: var(--ink); }
.activity-row small { display: block; color: var(--muted); }
.activity-row em { font-style: normal; font-weight: 900; color: var(--brand); }
section { padding: 94px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-head h2 { margin: 14px 0 14px; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.055em; color: var(--ink); }
.section-head p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 17px; }
.products { background: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card, .feature-card, .price-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; box-shadow: 0 14px 38px rgba(30,35,48,.055); transition: .22s ease; }
.product-card:hover, .feature-card:hover, .price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(30,35,48,.1); border-color: #BFC8FF; }
.icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; color: var(--brand); background: var(--brand-soft); border: 1px solid #DDE3FF; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(92,58,253,.08); }
.icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tone-indigo, .tone-purple, .tone-orange, .tone-lime, .tone-cyan { color: var(--brand); background: linear-gradient(180deg, #fff, var(--brand-soft)); }
.product-card h3, .feature-card h3, .price-card h3 { margin: 0 0 8px; font-size: 23px; letter-spacing: -.035em; color: var(--ink); }
.sub { color: var(--brand); font-size: 13px; font-weight: 900; margin-bottom: 13px; }
.desc { color: var(--muted); line-height: 1.65; margin: 0 0 16px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { color: #3D4656; font-weight: 650; font-size: 14px; display: flex; gap: 9px; align-items: flex-start; }
.check-list li::before { content: ""; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; background: var(--brand-soft); margin-top: 1px; box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 10px var(--brand); }
.features { background: linear-gradient(180deg, var(--brand-bg), #fff); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing { background: #F6F8FB; color: var(--ink); position: relative; overflow: visible; }
.pricing .container { position: relative; width: min(1240px, calc(100% - 40px)); }
.pricing-head { margin-bottom: 42px; }
.pricing-head h2 { display: none; }
.pricing-head p { max-width: 640px; margin: 0 auto; color: #334155; font-size: 17px; line-height: 1.65; }
.billing-toggle { width: max-content; margin: 0 auto 48px; display: flex; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid #E1E6F0; background: #fff; box-shadow: 0 4px 12px rgba(30,35,48,.08); }
.billing-toggle button { min-width: 96px; border: 0; border-radius: 999px; padding: 10px 22px; color: #334155; background: transparent; font-weight: 800; cursor: pointer; transition: .18s ease; }
.billing-toggle button.active { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 18px rgba(92,58,253,.24); }
.price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.price-card { position: relative; color: var(--ink); padding: 25px 24px 24px; border-radius: 14px; border: 1px solid #DCE2EA; background: #fff; box-shadow: 0 2px 4px rgba(30,35,48,.04); min-height: 550px; display: flex; flex-direction: column; transition: .22s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(30,35,48,.09); border-color: #BFC8FF; }
.price-card.popular { border: 2px solid var(--brand); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(92,58,253,.08); }
.price-card.popular:hover { transform: translateY(-7px); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 6px 13px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-weight: 900; font-size: 12px; white-space: nowrap; box-shadow: 0 10px 24px rgba(92,58,253,.24); }
.price-card h3 { margin: 0 0 4px; font-size: 21px; letter-spacing: -.035em; }
.price-card .sub { color: #64748b; font-size: 15px; font-weight: 500; margin-bottom: 18px; }
.price { margin: 0 0 9px; display: flex; align-items: flex-end; gap: 5px; white-space: nowrap; }
.price strong { font-size: clamp(27px, 2.55vw, 33px); letter-spacing: -.055em; line-height: 1; color: #06122A; }
.price span { color: #64748b; font-weight: 600; padding-bottom: 3px; font-size: 14px; }
.discount-badge { display: inline-flex; align-items: center; justify-content: center; width: max-content; margin: 2px 0 16px; padding: 5px 12px; border-radius: 4px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 900; letter-spacing: -.01em; }
.plan-feature-list, .plan-include-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.plan-feature-list { margin-bottom: 26px; }
.plan-feature-list li { display: flex; align-items: center; gap: 12px; color: #243148; font-size: 14.5px; line-height: 1.35; }
.feature-icon { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 999px; background: var(--brand-soft); color: var(--brand); }
.feature-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.include-title { margin: 0 0 13px; color: var(--ink); line-height: 1.4; font-size: 14.5px; }
.plan-include-list { gap: 12px; margin-bottom: 24px; }
.plan-include-list li { display: flex; gap: 11px; align-items: flex-start; color: #334155; font-size: 14.5px; line-height: 1.32; }
.plan-include-list li::before { content: "✓"; flex: 0 0 auto; color: var(--success); font-weight: 900; line-height: 1; margin-top: 1px; }
.plan-cta { margin-top: auto; min-height: 36px; display: inline-flex; align-items: center; justify-content: center; width: 100%; border-radius: 9px; border: 2px solid #D1D5DB; color: #1f2937; background: #fff; font-weight: 900; font-size: 14px; box-shadow: 0 1px 3px rgba(30,35,48,.08); transition: .18s ease; }
.plan-cta:hover { transform: translateY(-1px); border-color: #BFC8FF; color: var(--brand); }
.plan-cta.primary { border-color: transparent; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 10px 22px rgba(92,58,253,.24); }
.invoice { background: linear-gradient(135deg, rgba(92,58,253,.1), rgba(122,140,255,.12)); }
.invoice-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; padding: 42px; border-radius: 34px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
.invoice-card h2 { margin: 14px 0 16px; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.055em; }
.highlight-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.highlight { padding: 18px; border-radius: 20px; background: var(--brand-bg); border: 1px solid var(--line); font-weight: 900; }
.footer { background: var(--ink); color: #fff; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 34px; }
.footer .logo { width: max-content; padding: 9px 12px; border-radius: 18px; background: #fff; margin-bottom: 16px; }
.footer .logo img { width: 178px; }
.footer p, .footer a, .footer li { color: #D2D8E5; }
.footer ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 9px; }
.footer h4 { margin: 0; color: #fff; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #AEB7C8; font-size: 13px; }
.chat { position: fixed; right: 22px; bottom: 22px; z-index: 60; }
.chat-panel { width: min(360px, calc(100vw - 40px)); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; display: none; margin-bottom: 12px; }
.chat.open .chat-panel { display: block; }
.chat-head { padding: 16px 18px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-weight: 900; }
.chat-body { padding: 18px; color: #475569; }
.quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.quick a { padding: 8px 11px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 800; }
.chat-button { width: 62px; height: 62px; border-radius: 999px; border: 0; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 22px 46px rgba(92,58,253,.35); cursor: pointer; font-size: 25px; }
.empty { color: #94a3b8; }
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav.open { height: auto; align-items: flex-start; padding: 18px 0; flex-wrap: wrap; }
  .nav.open .nav-links { order: 3; display: grid; width: 100%; gap: 8px; padding: 12px 0; }
  .hero-grid, .invoice-card { grid-template-columns: 1fr; }
  .card-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 48px 0; }
  .nav-actions .btn-secondary { display: none; }
  .stats, .dash-cards, .card-grid, .feature-grid, .price-grid, .highlight-grid, .footer-grid { grid-template-columns: 1fr; }
  .invoice-card { padding: 24px; }
  section { padding: 62px 0; }
  .logo img { width: 152px; }
  .price-card { min-height: auto; }
}
.chat-button svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* AnnualPOS solution showcase patch */
.products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 3%, rgba(92,58,253,.09), transparent 30%),
    radial-gradient(circle at 6% 46%, rgba(122,140,255,.1), transparent 34%),
    #fff;
}
.products::before {
  content: "AP";
  position: absolute;
  top: 170px;
  right: -48px;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.12em;
  color: rgba(92,58,253,.045);
  pointer-events: none;
}
.products .container { position: relative; }
.solutions-overview {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(225,230,240,.95);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0 0, rgba(92,58,253,.12), transparent 28%),
    linear-gradient(135deg, #fff 0%, #F8F9FF 100%);
  box-shadow: var(--shadow-soft);
  margin-bottom: 34px;
}
.solution-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
.solution-brand-row img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(92,58,253,.16));
}
.solution-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.solution-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.solutions-overview h3,
.solution-copy h3 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.07em;
  color: var(--ink);
}
.solutions-overview h3 span,
.solution-copy h3::first-letter { color: var(--ink); }
.solutions-overview h3,
.solution-copy h3,
.solution-copy h4 { text-wrap: balance; }
.solutions-overview h3::after,
.solution-copy h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.solutions-overview h4,
.solution-copy h4 {
  margin: 18px 0 14px;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -.05em;
  color: var(--ink);
}
.solutions-overview p,
.solution-copy p {
  color: #4F5C6D;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 610px;
}
.solutions-overview-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E8ECF5;
  box-shadow: 0 22px 60px rgba(30,35,48,.1);
}
.solutions-overview-media img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}
.overview-module-list,
.solution-module-list,
.solution-chip-grid {
  display: grid;
  gap: 12px;
}
.overview-module-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}
.solution-module-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 18px;
}
.solution-module {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid #E4E9F3;
  box-shadow: 0 10px 22px rgba(30,35,48,.055);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}
.solution-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 14px 24px rgba(92,58,253,.22);
}
.solution-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.solution-summary-grid {
  margin: 18px 0 52px;
}
.product-detail-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
  border-bottom: 2px solid rgba(92,58,253,.25);
}
.solution-showcases {
  display: grid;
  gap: 38px;
  margin-top: 24px;
}
.solution-panel {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: center;
  min-height: 640px;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 42px;
  border: 1px solid rgba(225,230,240,.95);
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 4%, rgba(92,58,253,.1), transparent 28%),
    linear-gradient(135deg, #fff 0%, #F7F8FF 58%, #fff 100%);
  box-shadow: var(--shadow-soft);
}
.solution-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% -8%;
  height: 170px;
  background: linear-gradient(135deg, #5C3AFD, #263BFF 55%, #7A8CFF);
  border-radius: 55% 45% 0 0 / 32% 24% 0 0;
  opacity: .96;
}
.solution-panel::after {
  content: "";
  position: absolute;
  top: 4%;
  right: 6%;
  width: min(260px, 30vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 30px solid rgba(92,58,253,.06);
  opacity: .8;
}
.solution-panel.is-reverse { grid-template-columns: 1.08fr .92fr; }
.solution-panel.is-reverse .solution-copy { order: 2; }
.solution-panel.is-reverse .solution-visual { order: 1; }
.solution-copy,
.solution-visual { position: relative; z-index: 2; }
.solution-copy h3 {
  font-size: clamp(40px, 5vw, 78px);
}
.solution-copy h3,
.solution-copy h4 { max-width: 720px; }
.solution-copy h3 strong,
.solution-copy .accent { color: var(--brand); }
.solution-chip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.solution-chip-grid > span {
  min-height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(225,230,240,.95);
  box-shadow: 0 10px 22px rgba(30,35,48,.055);
  color: #14213B;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}
.solution-chip-grid > span .solution-icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 12px;
  box-shadow: none;
}
.solution-chip-grid > span .solution-icon svg { width: 20px; height: 20px; }
.solution-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.solution-link {
  color: var(--brand);
  font-weight: 900;
}
.solution-visual {
  min-width: 0;
  display: grid;
  place-items: center;
}
.solution-poster-card {
  width: min(520px, 100%);
  border-radius: 34px;
  padding: 10px;
  background: rgba(255,255,255,.9);
  border: 1px solid #E5E9F4;
  box-shadow: 0 28px 75px rgba(30,35,48,.18);
}
.solution-poster-card img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  display: block;
  border-radius: 25px;
  background: #fff;
}
.solution-custom-visual {
  min-height: 520px;
}
.custom-dashboard {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #F6F8FF);
  border: 1px solid #E5E9F4;
  box-shadow: 0 28px 75px rgba(30,35,48,.16);
  text-align: center;
}
.custom-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.custom-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand-soft);
}
.custom-logo img {
  width: 118px;
  filter: drop-shadow(0 14px 26px rgba(92,58,253,.18));
}
.custom-dashboard h3 {
  margin: 18px 0 10px;
  font-size: 34px;
  letter-spacing: -.06em;
}
.custom-dashboard p {
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 360px;
  line-height: 1.6;
}
.custom-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.custom-metrics strong {
  padding: 16px 10px;
  border-radius: 18px;
  color: var(--brand);
  background: var(--brand-soft);
}
@media (max-width: 1060px) {
  .solutions-overview,
  .solution-panel,
  .solution-panel.is-reverse {
    grid-template-columns: 1fr;
  }
  .solution-panel.is-reverse .solution-copy,
  .solution-panel.is-reverse .solution-visual {
    order: initial;
  }
  .solutions-overview-media { min-height: auto; }
  .solution-panel { min-height: auto; }
  .solution-chip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .solutions-overview,
  .solution-panel {
    padding: 20px;
    border-radius: 28px;
  }
  .solutions-overview h3,
  .solution-copy h3 {
    font-size: clamp(36px, 13vw, 58px);
  }
  .solution-module-list,
  .overview-module-list,
  .solution-chip-grid {
    grid-template-columns: 1fr;
  }
  .solution-poster-card { border-radius: 24px; padding: 7px; }
  .solution-poster-card img { border-radius: 18px; max-height: none; }
  .solution-panel::before { height: 110px; }
  .solution-actions .btn { width: 100%; }
  .solution-link { width: 100%; text-align: center; }
  .products::before { display: none; }
}

/* Patch: soluciones limpias sin bocetos duplicados */
.products {
  background:
    radial-gradient(circle at 94% 2%, rgba(92,58,253,.07), transparent 30%),
    radial-gradient(circle at 6% 32%, rgba(122,140,255,.08), transparent 34%),
    #fff;
}
.products::before {
  opacity: .45;
}
.solutions-overview-clean,
.solution-panel-clean {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.solutions-overview-clean {
  grid-template-columns: 1fr !important;
  padding: clamp(28px, 4vw, 54px);
  text-align: center;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,249,255,.98)),
    radial-gradient(circle at 50% 0%, rgba(92,58,253,.11), transparent 40%);
}
.solutions-overview-clean .solutions-overview-copy {
  max-width: 900px;
  margin: 0 auto;
}
.solutions-overview-clean .solution-brand-row,
.solution-panel-clean .solution-brand-row,
.solutions-overview-clean .solution-eyebrow,
.solution-panel-clean .solution-eyebrow {
  justify-content: center;
}
.solutions-overview-clean h3,
.solution-panel-clean h3,
.solution-panel-clean h4,
.solutions-overview-clean h4,
.solutions-overview-clean p,
.solution-panel-clean p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.solutions-overview-clean h3,
.solution-panel-clean h3 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
}
.solutions-overview-clean h3::after,
.solution-panel-clean h3::after {
  margin-left: auto;
  margin-right: auto;
}
.solutions-overview-media,
.solution-visual,
.solution-poster-card {
  display: none !important;
}
.solution-showcases-clean {
  gap: 26px;
}
.solution-panel-clean,
.solution-panel-clean.is-reverse {
  display: block !important;
  grid-template-columns: 1fr !important;
  min-height: 0 !important;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 34px;
  border: 1px solid #E4E9F3;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,249,255,.98));
  box-shadow: 0 18px 50px rgba(30,35,48,.08);
  overflow: hidden;
}
.solution-panel-clean::before {
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  border-radius: 0;
  background: linear-gradient(90deg, #5C3AFD, #7A8CFF);
  opacity: 1;
}
.solution-panel-clean::after {
  top: -80px;
  right: -70px;
  width: 210px;
  border-width: 24px;
  opacity: .45;
}
.solution-panel-clean .solution-copy {
  max-width: 980px;
  margin: 0 auto;
}
.solution-panel-clean .solution-module-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px auto 20px;
}
.solution-panel-clean .solution-module {
  justify-content: flex-start;
  min-height: 72px;
  border-radius: 20px;
}
.solution-panel-clean .solution-chip-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
}
.solution-panel-clean .solution-chip-grid > span {
  min-height: 98px;
  border-radius: 20px;
  background: #fff;
}
.solution-panel-clean .solution-actions {
  justify-content: center;
  padding-top: 4px;
}
@media (max-width: 1060px) {
  .solution-panel-clean .solution-module-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solution-panel-clean .solution-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .solutions-overview-clean,
  .solution-panel-clean {
    border-radius: 26px;
    padding: 24px 18px;
  }
  .solutions-overview-clean h3,
  .solution-panel-clean h3 {
    font-size: clamp(30px, 12vw, 46px);
    letter-spacing: -.055em;
  }
  .solution-panel-clean .solution-module-list,
  .overview-module-list,
  .solution-panel-clean .solution-chip-grid {
    grid-template-columns: 1fr;
  }
  .solution-panel-clean .solution-actions {
    display: grid;
  }
  .solution-panel-clean .solution-link {
    width: 100%;
    text-align: center;
  }
}
