@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 200 1000;
  src: url("../fonts/Mulish/mulish-variable.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-style: italic;
  font-weight: 200 1000;
  src: url("../fonts/Mulish/mulish-italic-variable.ttf") format("truetype");
}

:root {
  --font-sans: "Mulish", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-brand: #535097;
  --color-brand-mid: #6c69ad;
  --color-brand-dark: #403d78;
  --color-brand-deep: #302d5f;
  --color-brand-soft: #f4f3f8;
  --color-brand-soft-2: #e8e7f1;
  --color-brand-wash: #f0eff8;
  --color-brand-mist: #faf9ff;
  --color-ink: #141829;
  --color-ink-muted: #657084;
  --color-line: #dfe5ee;
  --color-page: #f2f6fb;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-success: #1f9d6a;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 20px 60px rgb(20 24 41 / 0.12);
  --shadow-card: 0 12px 36px rgb(83 80 151 / 0.14);
  --shadow-brand: 0 18px 46px rgb(83 80 151 / 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 46rem 28rem at 8% -6%, rgb(83 80 151 / 0.10), transparent 68%),
    radial-gradient(ellipse 38rem 22rem at 96% 18%, rgb(83 80 151 / 0.07), transparent 74%),
    radial-gradient(ellipse 58rem 18rem at 44% 104%, rgb(83 80 151 / 0.06), transparent 76%),
    linear-gradient(180deg, #ffffff 0%, var(--color-brand-mist) 38%, var(--color-page) 100%);
  font-family: var(--font-sans);
  line-height: 1.5;
  min-height: 100vh;
  padding-top: 84px;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
}

.skip-link {
  background: var(--color-brand);
  color: #fff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -10rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(223 229 238 / 0.75);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  height: 84px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  /* background: var(--color-brand-soft); */
  /* border: 1px solid var(--color-brand-soft-2); */
  border-radius: 1rem;
  display: grid;
  justify-items: center;
  padding: 0.45rem;
  width: 60px;
  aspect-ratio: 1;
}

.brand-mark img {
  height: auto;
  width: 100%;
}

.brand-name {
  color: var(--color-brand);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.desktop-nav {
  align-items: center;
  display: none;
  gap: 0.25rem;
}

.nav-link,
.nav-trigger {
  align-items: center;
  background: transparent;
  border-radius: 999px;
  color: var(--color-ink-muted);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link:focus-visible,
.nav-trigger:focus-visible {
  background: var(--color-brand-soft);
  color: var(--color-brand);
  outline: none;
}

.nav-link-demo {
  color: var(--color-brand);
  font-size: 1.05rem;
  font-weight: 900;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: unset;
  height: 0.75rem;
  position: absolute;
  right: 0;
  top: 100%;
  width: max(100%, 290px);
}

.nav-dropdown:hover::after {
  content: "";
}

.dropdown-panel {
  /* background: var(--color-surface); */
  background: rgb(248, 247, 255) !important;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.35rem;
  min-width: 290px;
  opacity: 0;
  padding: 0.65rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.dropdown-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-item {
  border-radius: 1rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: var(--color-brand-soft-2);
  outline: none;
}

.dropdown-item strong {
  color: var(--color-ink);
  font-size: 0.94rem;
}

.dropdown-item span {
  color: var(--color-ink-muted);
  font-size: 0.82rem;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 0.65rem;
}

.header-actions .panel-access {
  animation: cta-float-2 8s ease-in-out infinite;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 900;
  gap: 0.5rem;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-brand);
  box-shadow: 0 16px 28px rgb(83 80 151 / 0.22);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-brand);
  outline: none;
}

.btn-secondary {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--color-brand-soft-2);
  box-shadow: var(--shadow-card);
  outline: none;
}

.desktop-cta {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  background: var(--color-brand-soft);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgb(83 80 151 / 0.25);
  outline-offset: 2px;
}

.mobile-panel {
  background: rgb(20 24 41 / 0.38);
  inset: 84px 0 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 45;
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel-inner {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
}

.mobile-panel a {
  border-radius: 1rem;
  color: var(--color-ink);
  font-weight: 700;
  padding: 0.9rem 1rem;
}

.mobile-panel a.btn-primary,
.mobile-panel a.mobile-panel-cta {
  color: #fff;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: var(--color-brand-soft);
  outline: none;
  color: var(--color-ink);
}

.mobile-panel a.mobile-panel-cta:hover,
.mobile-panel a.mobile-panel-cta:focus-visible {
  color: #fff;
}

.mobile-group {
  display: grid;
  gap: 0.12rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.35rem;
}

.mobile-group-label {
  color: var(--color-ink-muted);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.4rem 1rem 0;
  text-transform: uppercase;
}

.mobile-panel .mobile-module-link {
  color: var(--color-ink-muted);
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0.5rem 1rem 0.5rem 1.75rem;
}

.mobile-panel .mobile-nav-link {
  padding-block: 0.8rem;
}

.mobile-panel .mobile-demo-link {
  color: var(--color-brand);
  font-weight: 900;
}

.mobile-panel .mobile-panel-cta {
  margin-top: 0.6rem;
}

.hero {
  background:
    radial-gradient(ellipse 34rem 22rem at 78% 12%, rgb(83 80 151 / 0.12), transparent 72%),
    radial-gradient(ellipse 32rem 16rem at 10% 92%, rgb(83 80 151 / 0.07), transparent 74%),
    linear-gradient(180deg, #ffffff 0%, rgb(244 243 248 / 0.92) 100%);
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4.75rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
}

.hero::before,
.module-hero::before {
  background: rgb(232 231 241 / 0.74);
  border-radius: 54% 46% 0 0 / 64% 78% 0 0;
  bottom: -26%;
  content: "";
  height: 46%;
  left: -12%;
  pointer-events: none;
  position: absolute;
  right: -10%;
  z-index: 0;
}

.hero::after,
.module-hero::after {
  background: rgb(83 80 151 / 0.055);
  border-radius: 50% 0 0 50% / 52% 0 0 48%;
  content: "";
  height: clamp(18rem, 34vw, 34rem);
  pointer-events: none;
  position: absolute;
  right: clamp(-10rem, -10vw, -5rem);
  top: clamp(1rem, 6vw, 4rem);
  width: clamp(18rem, 34vw, 34rem);
  z-index: 0;
}

.hero .container,
.module-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  align-items: center;
  background: var(--color-brand-soft);
  border: 1px solid var(--color-brand-soft-2);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.75rem;
}

.eyebrow-dot {
  background: var(--color-success);
  border-radius: 999px;
  height: 0.5rem;
  width: 0.5rem;
}

.hero h1 {
  color: var(--color-ink);
  font-size: clamp(2.45rem, 5.4vw, 4.05rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 800px;
}

.hero-lead {
  color: var(--color-ink-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  margin: 1.35rem 0 0;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.hero-points li {
  align-items: center;
  color: var(--color-ink);
  display: flex;
  font-size: 0.98rem;
  font-weight: 800;
  gap: 0.65rem;
  background: rgba(249, 247, 255, 0.28) !important;
  box-shadow: 0 18px 48px rgba(83, 80, 151, 0.11), inset 0 0px 0 rgba(255, 255, 255, 0.86) !important;
  border-radius: 99px;
}

.point-icon {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-grid;
  flex: 0 0 auto;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.point-icon::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 0.48rem;
  width: 0.48rem;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.mockup-stage {
  background:
    radial-gradient(ellipse 18rem 13rem at 86% 14%, rgb(83 80 151 / 0.12), transparent 72%),
    radial-gradient(ellipse 26rem 12rem at 12% 104%, rgb(83 80 151 / 0.07), transparent 74%),
    linear-gradient(180deg, rgb(255 255 255 / 0.94), rgb(244 243 248 / 0.78));
  border: 1px solid rgb(223 229 238 / 0.85);
  border-radius: 2.25rem;
  box-shadow: var(--shadow-soft);
  min-height: 530px;
  padding: clamp(0.9rem, 2vw, 1.25rem);
  position: relative;
}

.dashboard-mockup {
  background: var(--color-page);
  border: 1px solid var(--color-line);
  border-radius: 1.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.dashboard-topbar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.window-dots {
  display: flex;
  gap: 0.35rem;
}

.window-dots span {
  background: var(--color-line);
  border-radius: 999px;
  height: 0.58rem;
  width: 0.58rem;
}

.dashboard-title {
  color: var(--color-brand);
  font-size: 0.95rem;
  font-weight: 950;
}

.dashboard-body {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.metric-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
}

.metric-card,
.chart-card,
.table-card,
.floating-card {
  background: #fff;
  border: 1px solid rgb(223 229 238 / 0.8);
  border-radius: 1.1rem;
}

.metric-card {
  padding: 0.9rem;
}

.metric-label {
  color: var(--color-ink-muted);
  display: block;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-value {
  color: var(--color-brand);
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  margin-top: 0.2rem;
}

.chart-card {
  padding: 1rem;
}

.chart-bars {
  align-items: end;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(7, 1fr);
  height: 104px;
}

.chart-bars span {
  background: linear-gradient(180deg, var(--color-brand-mid), var(--color-brand-dark));
  border-radius: 999px 999px 0.4rem 0.4rem;
  min-height: 22px;
}

.table-card {
  overflow: hidden;
}

.table-head,
.table-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 0.65fr 0.65fr;
  padding: 0.72rem 0.85rem;
}

.table-head {
  background: var(--color-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.table-row {
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 0.8rem;
  font-weight: 780;
}

.phone-mockup {
  background: var(--color-ink);
  border: 7px solid var(--color-ink);
  border-radius: 2rem;
  bottom: -1.5rem;
  box-shadow: 0 26px 60px rgb(20 24 41 / 0.28);
  max-width: 210px;
  overflow: hidden;
  position: absolute;
  right: -0.45rem;
  width: 42%;
}

.phone-screen {
  background: var(--color-page);
  border-radius: 1.45rem;
  overflow: hidden;
}

.phone-header {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  padding: 0.9rem 0.75rem;
  text-align: center;
}

.phone-list {
  display: grid;
  gap: 0;
  padding: 0.5rem 0.65rem;
}

.phone-item {
  border-bottom: 1px solid var(--color-line);
  display: grid;
  gap: 0.1rem;
  padding: 0.65rem 0;
}

.phone-item strong {
  color: var(--color-ink);
  font-size: 0.72rem;
}

.phone-item span {
  color: var(--color-brand);
  font-size: 0.7rem;
  font-weight: 850;
}

.phone-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0.65rem;
}

.phone-total strong {
  font-size: 0.8rem;
}

.phone-total span {
  color: var(--color-brand);
  font-size: 0.9rem;
  font-weight: 950;
}

.phone-button {
  background: var(--color-brand);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  margin: 0 0.65rem 0.85rem;
  padding: 0.65rem;
  text-align: center;
}

.floating-card {
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.18rem;
  left: -0.75rem;
  padding: 0.85rem 1rem;
  position: absolute;
  top: 62%;
}

.floating-card span {
  color: var(--color-ink-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.floating-card strong {
  color: var(--color-brand);
  font-size: 1.05rem;
  font-weight: 950;
}

.ticket-chip {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem;
  position: absolute;
  right: 8%;
  top: -1.15rem;
  z-index: 1;
}

.qr {
  /* background:
    linear-gradient(90deg, var(--color-ink) 50%, transparent 0) 0 0 / 8px 8px,
    linear-gradient(var(--color-ink) 50%, transparent 0) 0 0 / 8px 8px,
    #fff; */
  border: 0;
  border-radius: 10px;
  padding: 3px;
  box-shadow: inset 0 0 0 1px var(--color-line);
  height: 46px;
  width: 46px;
}

.ticket-chip span {
  color: var(--color-ink-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.ticket-chip strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 950;
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  background:
    radial-gradient(ellipse 36rem 16rem at 6% 0%, rgb(83 80 151 / 0.08), transparent 72%),
    radial-gradient(ellipse 24rem 18rem at 98% 94%, rgb(83 80 151 / 0.06), transparent 74%),
    linear-gradient(180deg, var(--color-brand-wash), rgb(255 255 255 / 0.94));
  border-block: 1px solid rgb(83 80 151 / 0.12);
  overflow: hidden;
}

.section-problem {
  background:
    radial-gradient(ellipse 38rem 18rem at 100% 10%, rgb(83 80 151 / 0.075), transparent 74%),
    linear-gradient(180deg, #ffffff 0%, rgb(244 243 248 / 0.68) 100%);
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem) 0;
}

.section-problem::after,
.section-soft::after {
  background: rgb(232 231 241 / 0.54);
  border-radius: 50% 50% 0 0 / 78% 66% 0 0;
  bottom: -8.2rem;
  content: "";
  height: 15rem;
  left: -8%;
  pointer-events: none;
  position: absolute;
  width: 116%;
  z-index: 0;
}

.section-problem::after {
  background: rgb(244 243 248 / 0.78);
  border-radius: 0 0 50% 50% / 0 0 58% 72%;
  bottom: auto;
  height: 12rem;
  left: auto;
  right: -18%;
  top: -5.5rem;
  width: 58%;
}

.section-soft::before {
  background: rgb(83 80 151 / 0.045);
  border-radius: 0 0 50% 50% / 0 0 58% 42%;
  content: "";
  height: 10rem;
  left: -14%;
  pointer-events: none;
  position: absolute;
  top: -4rem;
  width: 66%;
  z-index: 0;
}

.section-header,
.section-copy {
  max-width: 760px;
}

.section-header {
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.section-copy h2,
.section-header h2,
.adaptability-band h2,
.cta-band h2 {
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.section-copy p,
.section-header p,
.content-card p,
.step-card p,
.adaptability-band p,
.cta-band p {
  color: var(--color-ink-muted);
  font-size: 1rem;
  font-weight: 680;
  margin: 0;
}

.section-copy p,
.section-header p {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  margin-top: 1rem;
}

.section-eyebrow {
  color: var(--color-brand);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.problem-grid,
.why-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.problem-grid {
  gap: clamp(1rem, 3vw, 2.25rem);
}

.section-problem .section-copy h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.12;
}

.section-problem .section-copy p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  max-width: 620px;
}

.problem-list {
  display: grid;
  gap: 0.6rem;
}

.problem-item {
  align-items: center;
  background: var(--color-surface);
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgb(83 80 151 / 0.08);
  color: var(--color-ink);
  display: flex;
  font-size: 0.92rem;
  font-weight: 830;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
}

.section-problem .card-icon {
  border-radius: 0.7rem;
  height: 1.85rem;
  width: 1.85rem;
}

.card-icon {
  align-items: center;
  background:
    linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  border-radius: 0.85rem;
  box-shadow: 0 10px 24px rgb(83 80 151 / 0.18);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 2.15rem;
  justify-content: center;
  position: relative;
  width: 2.15rem;
}

.heroicon {
  display: block;
  height: 1.15rem;
  width: 1.15rem;
}

.heroicon.icon-md {
  height: 1.7rem;
  width: 1.7rem;
}

.heroicon.full {
  display: block;
  height: 100%;
  width: 100%;
}

.solution-block {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.flow-strip {
  display: grid;
  gap: 0.8rem;
}

.section-solution {
  overflow: hidden;
}

.section-solution .section-header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  max-width: 860px;
}

.section-solution .section-header h2 {
  font-size: clamp(2.15rem, 4.3vw, 3.35rem);
}

.section-solution .section-header p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flow-node {
  align-items: center;
  background: var(--color-surface);
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgb(83 80 151 / 0.1);
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem;
}

.flow-node > span:first-child,
.step-number,
.module-number {
  align-items: center;
  background: var(--color-brand-soft);
  border: 1px solid var(--color-brand-soft-2);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.flow-node strong {
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.section-solution .flow-strip {
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.76), rgb(246 244 254 / 0.62));
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgb(83 80 151 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.86);
  overflow: hidden;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  position: relative;
}

.section-solution .flow-strip::before {
  background: linear-gradient(90deg, rgb(83 80 151 / 0), rgb(83 80 151 / 0.32), rgb(83 80 151 / 0));
  content: "";
  display: none;
  height: 2px;
  left: 8%;
  pointer-events: none;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.section-solution .flow-node {
  background: rgb(255 255 255 / 0.58);
  border-color: rgb(83 80 151 / 0.15);
  box-shadow:
    0 16px 36px rgb(83 80 151 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.78);
  gap: 0.7rem;
  min-height: 5.65rem;
  padding: 0.85rem;
  position: relative;
  z-index: 1;
}

.section-solution .flow-node::after {
  background: linear-gradient(180deg, rgb(83 80 151 / 0.26), rgb(83 80 151 / 0.06));
  border-radius: 999px;
  content: "";
  height: 1.25rem;
  left: 1.9rem;
  position: absolute;
  top: calc(100% + 0.1rem);
  width: 2px;
}

.section-solution .flow-node:last-child::after {
  content: none;
}

.section-solution .flow-index {
  background: var(--color-brand);
  border-color: rgb(255 255 255 / 0.46);
  box-shadow: 0 10px 24px rgb(83 80 151 / 0.2);
  color: #fff;
  height: 2.15rem;
  width: 2.15rem;
}

.section-solution .flow-icon {
  align-items: center;
  background: rgb(83 80 151 / 0.1);
  border: 1px solid rgb(83 80 151 / 0.12);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-flex;
  flex: 0 0 auto;
  height: 2.15rem;
  justify-content: center;
  width: 2.15rem;
}

.section-solution .flow-icon .heroicon {
  height: 1.7rem;
  width: 1.7rem;
}

.section-solution .flow-node strong {
  font-size: 1rem;
}

.card-grid,
.step-grid,
.module-grid {
  display: grid;
  gap: 1rem;
}

.content-card,
.step-card,
.comparison-card,
.adaptability-band,
.cta-band {
  background: var(--color-surface);
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgb(83 80 151 / 0.08);
}

.content-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
}

.content-card h3,
.step-card h3 {
  /* color: var(--color-ink); */
  color: var(--color-brand);
  font-size: 1.08rem;
  line-height: 1.18;
  margin: 0;
}

.benefit-card {
  min-height: 100%;
}

.section-why {
  background:
    radial-gradient(ellipse 34rem 20rem at 12% 16%, rgb(255 255 255 / 0.12), transparent 70%),
    radial-gradient(ellipse 32rem 24rem at 92% 82%, rgb(255 255 255 / 0.09), transparent 74%),
    linear-gradient(180deg, var(--color-brand-deep), var(--color-brand) 64%, var(--color-brand-mid));
  color: #fff;
  overflow: hidden;
}

.section-why::before {
  background: rgb(255 255 255 / 0.08);
  border-radius: 0 0 50% 50% / 0 0 66% 48%;
  content: "";
  height: 48%;
  left: -10%;
  pointer-events: none;
  position: absolute;
  top: -18%;
  width: 72%;
  z-index: 0;
}

.section-why::after {
  background: rgb(255 255 255 / 0.075);
  border-radius: 50% 50% 0 0 / 72% 58% 0 0;
  bottom: -11rem;
  content: "";
  height: 18rem;
  left: -8%;
  pointer-events: none;
  position: absolute;
  width: 120%;
  z-index: 0;
}

.section-why .section-copy h2,
.section-why .section-copy p {
  color: #fff;
}

.section-why .section-copy p {
  opacity: 0.9;
}

.comparison-card {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.comparison-head,
.comparison-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.comparison-head {
  background: var(--color-brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
}

.comparison-row {
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 820;
  padding: 0.9rem 1rem;
}

.comparison-row span:last-child {
  color: var(--color-ink-muted);
}

.module-card {
  position: relative;
}

.module-card-featured {
  background:
    radial-gradient(ellipse 20rem 12rem at 92% 8%, rgb(83 80 151 / 0.08), transparent 72%),
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(240 239 248 / 0.98));
  border-color: rgb(83 80 151 / 0.2);
  box-shadow: var(--shadow-brand);
}

.module-card-top {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
}

.module-icon,
.feature-icon {
  align-items: center;
  background: var(--color-brand-soft);
  border: 1px solid var(--color-brand-soft-2);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-flex;
  flex: 0 0 auto;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.text-link {
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 950;
  margin-top: 0.15rem;
  width: fit-content;
  text-decoration: underline;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-brand-dark);
  outline: none;
}

.step-grid {
  counter-reset: steps;
}

.step-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  position: relative;
}

.audience-card {
  background:
    linear-gradient(180deg, #fff, rgb(248 250 252 / 0.88));
}

.adaptability-band {
  align-items: center;
  background:
    radial-gradient(ellipse 28rem 13rem at 92% 18%, rgb(83 80 151 / 0.08), transparent 74%),
    radial-gradient(ellipse 20rem 12rem at 8% 94%, rgb(83 80 151 / 0.055), transparent 72%),
    linear-gradient(180deg, #ffffff, rgb(244 243 248 / 0.88));
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.section-cta {
  padding-top: clamp(3.2rem, 7vw, 6rem);
}

.cta-band {
  animation: cta-float 4.8s ease-in-out infinite;
  background:
    linear-gradient(135deg, rgb(108 105 173 / 0.72), transparent 58%),
    linear-gradient(180deg, var(--color-brand), var(--color-brand-deep));
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3rem);
  position: relative;
  will-change: transform;
}

.cta-band::before {
  content: none;
}

.cta-band::after {
  content: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band .section-eyebrow,
.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 620px;
  opacity: 0.9;
}

.cta-actions .btn-secondary {
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.28);
  color: #fff;
}

.module-hero {
  background:
    radial-gradient(ellipse 34rem 21rem at 84% 14%, rgb(83 80 151 / 0.115), transparent 72%),
    radial-gradient(ellipse 26rem 14rem at 7% 88%, rgb(83 80 151 / 0.07), transparent 74%),
    linear-gradient(180deg, #ffffff 0%, rgb(244 243 248 / 0.96) 100%);
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
}

.module-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.module-hero-copy {
  max-width: 680px;
}

.module-hero-copy h1 {
  color: var(--color-ink);
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.module-hero-copy p {
  color: var(--color-ink-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 680;
  margin: 1.2rem 0 0;
  max-width: 650px;
}

.module-visual {
  background:
    radial-gradient(ellipse 18rem 13rem at 84% 14%, rgb(83 80 151 / 0.12), transparent 72%),
    radial-gradient(ellipse 22rem 11rem at 12% 96%, rgb(83 80 151 / 0.065), transparent 74%),
    linear-gradient(180deg, rgb(255 255 255 / 0.94), rgb(244 243 248 / 0.76));
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: 2.25rem;
  box-shadow: var(--shadow-soft);
  min-height: 430px;
  padding: clamp(1rem, 3vw, 1.4rem);
  position: relative;
  user-select: none;
}

.demo-visual {
  display: grid;
  min-height: 500px;
  overflow: hidden;
}

.demo-dashboard {
  align-self: center;
  background: var(--color-page);
  border: 1px solid var(--color-line);
  border-radius: 1.8rem;
  box-shadow: var(--shadow-card);
  max-width: 560px;
  overflow: hidden;
  position: relative;
  width: 88%;
}

.demo-phone {
  background: var(--color-ink);
  border: 7px solid var(--color-ink);
  border-radius: 2rem;
  bottom: 1.5rem;
  box-shadow: 0 26px 60px rgb(20 24 41 / 0.26);
  max-width: 210px;
  overflow: hidden;
  position: absolute;
  right: 1.2rem;
  width: 38%;
}

.demo-phone .phone-total span {
  font-size: 0.74rem;
}

.demo-chip {
  align-items: center;
  background: #fff;
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: 1.3rem;
  box-shadow: var(--shadow-card);
  color: var(--color-ink);
  display: inline-flex;
  font-weight: 950;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  position: absolute;
  right: 8%;
  top: 1.1rem;
}

.demo-card-grid {
  display: grid;
  gap: 1rem;
}

.demo-info-card {
  min-height: 100%;
}

.demo-note {
  align-items: start;
  background:
    radial-gradient(ellipse 22rem 10rem at 92% 0%, rgb(83 80 151 / 0.07), transparent 72%),
    linear-gradient(180deg, #fff, rgb(244 243 248 / 0.78));
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgb(83 80 151 / 0.08);
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 1rem;
}

.demo-note p {
  color: var(--color-ink-muted);
  font-weight: 750;
  margin: 0;
}

.demo-form-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}

.demo-form-copy {
  display: grid;
  gap: 1.2rem;
}

.demo-form-copy h2 {
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.demo-form-copy p {
  color: var(--color-ink-muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 680;
  margin: 0;
}

.demo-expectations {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.demo-expectations h3 {
  color: var(--color-ink);
  font-size: 1.08rem;
  margin: 0;
}

.demo-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.demo-steps .flow-node {
  padding: 0.5rem 0.7rem;
}

.demo-form {
  background: var(--color-surface);
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brand);
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.required-mark {
  color: var(--color-brand);
  font-weight: 950;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--color-surface-soft);
  border: 1px solid rgb(223 229 238 / 0.95);
  border-radius: 0.95rem;
  color: var(--color-ink);
  min-height: 46px;
  padding: 0.78rem 0.9rem;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgb(83 80 151 / 0.48);
  box-shadow: 0 0 0 4px rgb(83 80 151 / 0.12);
  outline: none;
}

.form-field-full,
.form-required-note,
.form-privacy-note,
.form-status,
.form-submit {
  grid-column: 1 / -1;
}

.form-required-note {
  color: var(--color-brand);
  font-size: 0.84rem;
  font-weight: 900;
  margin: -0.2rem 0 0;
}

.form-privacy-note {
  color: var(--color-ink-muted);
  font-size: 0.88rem;
  font-weight: 720;
  margin: 0;
}

.form-submit {
  width: fit-content;
}

.form-honeypot {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.form-status {
  background: rgb(249 247 255 / 0.82);
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: 0.95rem;
  color: var(--color-ink-muted);
  display: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  padding: 0.8rem 0.95rem;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-success {
  background: rgb(238 247 242 / 0.92);
  border-color: rgb(50 132 86 / 0.22);
  color: #1f6b44;
}

.form-status.is-error {
  background: rgb(255 242 242 / 0.92);
  border-color: rgb(178 54 54 / 0.22);
  color: #9d2f2f;
}

.form-submit.is-loading {
  cursor: progress;
  opacity: 0.82;
}

.form-submit.is-loading::before {
  animation: form-spinner 760ms linear infinite;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  content: "";
  height: 1rem;
  width: 1rem;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}

.demo-contact-section {
  padding-top: 0;
}

.demo-contact {
  align-items: center;
  border-top: 1px solid rgb(83 80 151 / 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  justify-content: space-between;
  padding-top: 1.25rem;
}

.demo-contact h2 {
  color: var(--color-ink);
  font-size: 1rem;
  margin: 0;
}

.demo-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.demo-contact-links a {
  color: var(--color-brand);
  font-size: 0.94rem;
  font-weight: 850;
}

.demo-contact-links a:hover,
.demo-contact-links a:focus-visible {
  color: var(--color-brand-dark);
  outline: none;
}

.contact-visual {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 430px;
}

.contact-visual-panel {
  background: #fff;
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.8rem;
  max-width: 440px;
  padding: clamp(1.1rem, 4vw, 1.7rem);
  position: relative;
  width: 88%;
}

.contact-visual-panel strong {
  color: var(--color-ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.contact-visual-panel p {
  color: var(--color-ink-muted);
  font-weight: 720;
  margin: 0;
}

.contact-visual-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.contact-visual-lines span {
  background: var(--color-brand-soft-2);
  border-radius: 999px;
  height: 0.7rem;
}

.contact-visual-lines span:nth-child(2) {
  width: 82%;
}

.contact-visual-lines span:nth-child(3) {
  width: 58%;
}

.contact-visual-chip {
  align-items: center;
  background: #fff;
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  color: var(--color-brand);
  display: inline-flex;
  font-weight: 950;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  position: absolute;
  right: 8%;
  top: 18%;
}

.contact-card-grid {
  display: grid;
  gap: 1rem;
}

.contact-card a {
  color: var(--color-brand);
  font-size: 1.05rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--color-brand-dark);
  outline: none;
}

.contact-type-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.contact-type-list h3 {
  color: var(--color-ink);
  font-size: 1.08rem;
  margin: 0;
}

.contact-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-chip {
  align-items: center;
  background: #fff;
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: 999px;
  color: var(--color-ink);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 0.55rem;
  padding: 0.48rem 0.7rem 0.48rem 0.48rem;
}

.contact-demo-section {
  padding-top: 0;
}

.contact-demo-box {
  align-items: center;
  background:
    radial-gradient(ellipse 22rem 11rem at 92% 0%, rgb(83 80 151 / 0.06), transparent 72%),
    linear-gradient(180deg, #fff, rgb(244 243 248 / 0.72));
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgb(83 80 151 / 0.08);
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 4vw, 1.5rem);
}

.contact-demo-box h2 {
  color: var(--color-ink);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
  margin: 0;
}

.contact-demo-box p {
  color: var(--color-ink-muted);
  font-weight: 720;
  margin: 0.5rem 0 0;
}

section[aria-labelledby="contact-info-title"] {
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
}

section[aria-labelledby="contact-info-title"] + .section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.silwin-glass-theme {
  background:
    radial-gradient(circle at 12% 10%, rgb(83 80 151 / 0.2), transparent 29rem),
    radial-gradient(circle at 88% 18%, rgb(83 80 151 / 0.16), transparent 28rem),
    radial-gradient(circle at 12% 58%, rgb(108 105 173 / 0.12), transparent 32rem),
    radial-gradient(circle at 50% 92%, rgb(83 80 151 / 0.13), transparent 36rem),
    linear-gradient(180deg, #fbfaff 0%, #f4f2fb 37%, #fbfcff 66%, #eeeff8 100%);
}

.silwin-glass-theme .site-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  top: 0.85rem;
  padding: 0 0.75rem;
}

.silwin-glass-theme .header-inner {
  background: rgb(248 247 255 / 0.72);
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: 999px;
  box-shadow:
    0 18px 48px rgb(83 80 151 / 0.16),
    0 0 44px rgb(83 80 151 / 0.08),
    inset 0 0px 0 rgb(255 255 255 / 0.9);
  height: 72px;
  padding-inline: 0.95rem;
  backdrop-filter: blur(22px) saturate(1.35);
}

.silwin-glass-theme .dropdown-panel,
.silwin-glass-theme .mobile-panel-inner {
  /* background: rgb(248 247 255 / 0.8); */
  background: rgb(248, 247, 255) !important;
  border-radius: 1.25rem;
  border-color: rgb(83 80 151 / 0.14);
  box-shadow:
    0 24px 64px rgb(83 80 151 / 0.18),
    inset 0 0px 0 rgb(255 255 255 / 0.82);
  backdrop-filter: blur(22px) saturate(1.25);
}

.silwin-glass-theme .hero {
  background: transparent;
}

.silwin-glass-theme .module-hero {
  background: transparent;
}

.silwin-glass-theme .hero::before,
.silwin-glass-theme .module-hero::before {
  background:
    radial-gradient(circle at 34% 46%, rgb(83 80 151 / 0.17), transparent 18rem),
    rgb(237 235 249 / 0.5);
  border-radius: 999px;
  bottom: 4%;
  filter: blur(18px);
  height: clamp(18rem, 30vw, 30rem);
  left: 8%;
  width: clamp(18rem, 36vw, 38rem);
}

.silwin-glass-theme .hero::after,
.silwin-glass-theme .module-hero::after {
  /* background: rgb(83 80 151 / 0.15); */
  background: none;
  border-radius: 999px;
  filter: blur(28px);
  height: clamp(16rem, 32vw, 34rem);
  right: 4%;
  top: 12%;
  width: clamp(16rem, 36vw, 36rem);
}

.silwin-glass-theme .hero-copy {
  position: relative;
}

.silwin-glass-theme .module-hero-copy {
  position: relative;
  z-index: 1;
}

.silwin-glass-theme .eyebrow,
.silwin-glass-theme .section-eyebrow {
  background: rgb(244 243 251 / 0.66);
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: 999px;
  box-shadow: inset 0 0px 0 rgb(255 255 255 / 0.82);
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  backdrop-filter: blur(14px);
}

.silwin-glass-theme .btn-primary {
  background: rgb(83 80 151 / 0.92);
  border: 1px solid rgb(255 255 255 / 0.48);
  box-shadow:
    0 18px 48px rgb(83 80 151 / 0.32),
    0 0 34px rgb(83 80 151 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.28);
  backdrop-filter: blur(16px) saturate(1.25);
}

.silwin-glass-theme .btn-secondary {
  background: rgb(249 247 255 / 0.66);
  border-color: rgb(83 80 151 / 0.12);
  box-shadow:
    0 12px 34px rgb(83 80 151 / 0.1),
    inset 0 0px 0 rgb(255 255 255 / 0.9);
  backdrop-filter: blur(16px);
}

.silwin-glass-theme .hero-points li,
.silwin-glass-theme .metric-card,
.silwin-glass-theme .chart-card,
.silwin-glass-theme .table-card,
.silwin-glass-theme .floating-card,
.silwin-glass-theme .ticket-chip,
.silwin-glass-theme .problem-item,
.silwin-glass-theme .flow-node,
.silwin-glass-theme .content-card,
.silwin-glass-theme .step-card,
.silwin-glass-theme .comparison-card,
.silwin-glass-theme .adaptability-band,
.silwin-glass-theme .module-note-card,
.silwin-glass-theme .module-list-card,
.silwin-glass-theme .demo-form,
.silwin-glass-theme .contact-visual-panel,
.silwin-glass-theme .contact-demo-box,
.silwin-glass-theme .clients-proof-panel,
.silwin-glass-theme .metric-proof-card,
.silwin-glass-theme .logo-placeholder,
.silwin-glass-theme .trust-band {
  background: rgb(249 247 255 / 0.68);
  border-color: rgb(83 80 151 / 0.13);
  box-shadow:
    0 18px 48px rgb(83 80 151 / 0.11),
    inset 0 0px 0 rgb(255 255 255 / 0.86);
  backdrop-filter: blur(18px) saturate(1.2);
}

.silwin-glass-theme .section-solution .flow-strip {
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.74), rgb(246 244 254 / 0.66));
  border-color: rgb(83 80 151 / 0.14);
  box-shadow:
    0 26px 68px rgb(83 80 151 / 0.14),
    inset 0 1px 0 rgb(255 255 255 / 0.88);
  backdrop-filter: blur(18px) saturate(1.18);
}

.silwin-glass-theme .section-solution .flow-node {
  background: rgb(255 255 255 / 0.62);
  border-color: rgb(83 80 151 / 0.15);
  box-shadow:
    0 16px 36px rgb(83 80 151 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.78);
}

.silwin-glass-theme .section-solution .flow-icon {
  background: rgb(83 80 151 / 0.1);
  border-color: rgb(83 80 151 / 0.12);
  box-shadow: none;
}

.silwin-glass-theme .dashboard-mockup {
  background: rgb(249 247 255 / 0.58);
  border-color: rgb(83 80 151 / 0.14);
  box-shadow:
    0 28px 84px rgb(83 80 151 / 0.24),
    0 0 88px rgb(83 80 151 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.86);
  backdrop-filter: blur(24px) saturate(1.25);
}

.silwin-glass-theme .mockup-stage::before {
  background: rgb(83 80 151 / 0.2);
  border-radius: 999px;
  content: "";
  filter: blur(30px);
  height: 58%;
  inset: 12% 4% auto auto;
  position: absolute;
  width: 72%;
}

.silwin-glass-theme .phone-mockup {
  border-color: rgb(30 34 54 / 0.9);
  box-shadow:
    0 26px 64px rgb(20 24 41 / 0.24),
    0 0 68px rgb(83 80 151 / 0.22);
}

.silwin-glass-theme .phone-screen {
  background:
    radial-gradient(circle at 80% 0%, rgb(83 80 151 / 0.12), transparent 14rem),
    #fbfaff;
}

.silwin-glass-theme .pos-phone,
.silwin-glass-theme .verifier-phone,
.silwin-glass-theme .panel-shell,
.silwin-glass-theme .demo-dashboard,
.silwin-glass-theme .billing-portal,
.silwin-glass-theme .quote-modal,
.silwin-glass-theme .ticket-mockup {
  background: rgb(249 247 255 / 0.58);
  border-color: rgb(83 80 151 / 0.14);
  box-shadow:
    0 28px 84px rgb(83 80 151 / 0.22),
    0 0 82px rgb(83 80 151 / 0.16),
    inset 0 0px 0 rgb(255 255 255 / 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
}

.silwin-glass-theme .pos-phone,
.silwin-glass-theme .verifier-phone {
  box-shadow: 0 0px 13px -2px rgba(20, 24, 41, 0.24);
}

.silwin-glass-theme .billing-flow,
.silwin-glass-theme .module-visual,
.silwin-glass-theme .demo-visual,
.silwin-glass-theme .clients-visual,
.silwin-glass-theme .contact-visual {
  position: relative;
}



.silwin-glass-theme .billing-flow::before,
.silwin-glass-theme .demo-visual::before,
.silwin-glass-theme .clients-visual::before,
.silwin-glass-theme .contact-visual::before {
  background: rgb(83 80 151 / 0.17);
  border-radius: 999px;
  content: "";
  filter: blur(28px);
  height: 62%;
  inset: 14% 4% auto auto;
  pointer-events: none;
  position: absolute;
  width: 72%;
  z-index: 0;
}

.silwin-glass-theme .module-visual > *,
.silwin-glass-theme .demo-visual > *,
.silwin-glass-theme .clients-visual > *,
.silwin-glass-theme .contact-visual > *,
.silwin-glass-theme .billing-flow > * {
  position: relative;
  z-index: 1;
}

.silwin-glass-theme .demo-dashboard {
  position: relative;
  z-index: 1;
}

.silwin-glass-theme .demo-phone {
  bottom: 1.5rem;
  position: absolute;
  right: 1.2rem;
  z-index: 2;
}

.silwin-glass-theme .demo-chip {
  position: absolute;
  right: 8%;
  top: 1.1rem;
  width: auto;
  z-index: 3;
}

.module-page-panel-web .module-visual-panel,
.demo-page .demo-visual {
  overflow: visible;
}

.module-page-panel-web .panel-shell,
.demo-page .demo-dashboard {
  width: 100%;
}

.silwin-glass-theme .section,
.silwin-glass-theme .section-soft,
.silwin-glass-theme .section-problem,
.silwin-glass-theme .section-why {
  background: transparent;
}

.silwin-glass-theme main > .section::before,
.silwin-glass-theme main > .section::after,
.silwin-glass-theme #detalle > .section::before,
.silwin-glass-theme #detalle > .section::after,
.silwin-glass-theme .section-soft::before,
.silwin-glass-theme .section-soft::after,
.silwin-glass-theme .section-problem::before,
.silwin-glass-theme .section-problem::after,
.silwin-glass-theme .section-why::before,
.silwin-glass-theme .section-why::after {
  content: none;
}

.silwin-glass-theme main > .section {
  overflow: visible;
  position: relative;
}

.silwin-glass-theme #detalle > .section {
  overflow: visible;
  position: relative;
}

.silwin-glass-theme main > .section:nth-of-type(2)::before,
.silwin-glass-theme main > .section:nth-of-type(3)::before,
.silwin-glass-theme main > .section:nth-of-type(5)::before,
.silwin-glass-theme main > .section:nth-of-type(6)::before,
.silwin-glass-theme main > .section:nth-of-type(8)::before,
.silwin-glass-theme main > .section:nth-of-type(10)::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.silwin-glass-theme main > .section:nth-of-type(2)::before {
  background:
    radial-gradient(circle at 50% 50%, rgb(83 80 151 / 0.13), transparent 62%),
    rgb(255 255 255 / 0.22);
  border-radius: 56% 44% 54% 46% / 46% 58% 42% 54%;
  filter: blur(20px);
  height: clamp(18rem, 30vw, 28rem);
  right: 4%;
  top: 12%;
  width: clamp(18rem, 32vw, 30rem);
}

.silwin-glass-theme main > .section:nth-of-type(3)::before {
  width: 30rem;
  height: 100%;

  top: 10%;
  right: 10%;

  mask: url("/assets/images/blobs/blob-3.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/images/blobs/blob-3.svg") center / contain no-repeat;
  
  scale: 2;
  background: radial-gradient( ellipse at center, rgba(83, 80, 151, 0.18) 0%, transparent 60% ), rgba(255, 255, 255, 0.06);
}

.silwin-glass-theme main > .section:nth-of-type(5)::before {
  background:
    radial-gradient(circle at 72% 50%, rgb(83 80 151 / 0.13), transparent 58%),
    rgb(246 244 254 / 0.22);
  border: 1px solid rgb(83 80 151 / 0.08);
  border-radius: 3rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.48);
  filter: blur(6px);
  height: 68%;
  left: 6%;
  top: 16%;
  transform: rotate(-1.5deg);
  width: 88%;
}

.silwin-glass-theme main > .section:nth-of-type(5)::after,
.silwin-glass-theme main > .section:nth-of-type(9)::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.silwin-glass-theme main > .section:nth-of-type(5)::after {
  background: rgb(83 80 151 / 0.1);
  border-radius: 999px;
  filter: blur(22px);
  height: 12rem;
  right: 12%;
  top: 10%;
  width: 12rem;
}

.silwin-glass-theme main > .section:nth-of-type(6)::before {
  width: 30rem;
  height: 100%;

  top: 0;
  left: 20%;

  mask: url("/assets/images/blobs/blob-2.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/images/blobs/blob-2.svg") center / contain no-repeat;
  
  scale: 2.4;
  background: radial-gradient( ellipse at center, rgba(83, 80, 151, 0.18) 0%, transparent 60% ), rgba(255, 255, 255, 0.06);
}

.silwin-glass-theme main > .section:nth-of-type(8)::before {
  background:
    radial-gradient(ellipse at center, rgb(83 80 151 / 0.11), transparent 68%);
  border-radius: 999px;
  filter: blur(18px);
  height: 18rem;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: min(42rem, 78vw);
}

.silwin-glass-theme main > .section:nth-of-type(9)::after {
  background:
    radial-gradient(circle at 30% 30%, rgb(255 255 255 / 0.62), transparent 38%),
    rgb(83 80 151 / 0.08);
  border-radius: 48% 52% 42% 58% / 52% 44% 56% 48%;
  filter: blur(16px);
  height: 15rem;
  right: 10%;
  top: 14%;
  width: 18rem;
}

.silwin-glass-theme main > .section:nth-of-type(10)::before {
  background: rgb(83 80 151 / 0.15);
  border-radius: 999px;
  filter: blur(28px);
  height: clamp(16rem, 28vw, 26rem);
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: min(48rem, 82vw);
}

.silwin-glass-theme #detalle > .section:nth-child(2n)::before,
.silwin-glass-theme #detalle > .section:nth-child(3n)::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.silwin-glass-theme #detalle > .section:nth-child(2n)::before {
  background: rgb(83 80 151 / 0.09);
  border-radius: 999px;
  filter: blur(24px);
  height: clamp(14rem, 24vw, 23rem);
  right: 8%;
  top: 14%;
  width: clamp(16rem, 30vw, 30rem);
}

.silwin-glass-theme #detalle > .section:nth-child(3n)::after {
  width: 30rem;
  height: 100%;

  top: 10%;
  left: unset;
  right: 10%;

  mask: url("/assets/images/blobs/blob-1.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/images/blobs/blob-1.svg") center / contain no-repeat;
  
  scale: 2.4;
  background: radial-gradient( ellipse at center, rgba(83, 80, 151, 0.18) 0%, transparent 60% ), rgba(255, 255, 255, 0.06);
}

.silwin-glass-theme #detalle > .section > .container {
  position: relative;
  z-index: 1;
}

.silwin-glass-theme main > .section:nth-of-type(6)::after,
.silwin-glass-theme .demo-contact-section::before,
.silwin-glass-theme .demo-contact-section::after,
.silwin-glass-theme .clientes-cta::before,
.silwin-glass-theme .clientes-cta::after,
.silwin-glass-theme .section-cta::before,
.silwin-glass-theme .section-cta::after,
.silwin-glass-theme .section-why::before,
.silwin-glass-theme .hero::before,
.silwin-glass-theme .module-hero::before {
  content: unset !important;
}

.silwin-glass-theme .section > .container {
  position: relative;
  z-index: 1;
}

.silwin-glass-theme .section-why .section-copy h2,
.silwin-glass-theme .section-why .section-copy p {
  color: var(--color-ink);
}

.silwin-glass-theme .section-why .section-copy p {
  opacity: 1;
}

.silwin-glass-theme .comparison-head {
  background: rgb(83 80 151 / 0.9);
}

.silwin-glass-theme .module-card-featured,
.silwin-glass-theme .adaptability-band {
  background: rgb(246 244 254 / 0.72) !important;
}

.silwin-glass-theme .content-card:hover {
  background: var(--color-brand-mist);
  transition: all 300ms;
}

.silwin-glass-theme .cta-band {
  animation: cta-float 4.8s ease-in-out infinite;
  /* background:
    radial-gradient(circle at 18% 12%, rgb(255 255 255 / 0.64), transparent 12rem),
    radial-gradient(circle at 90% 18%, rgb(108 105 173 / 0.55), transparent 16rem),
    rgb(83 80 151 / 0.86); */
  background: var(--color-brand);
  border: 1px solid rgb(255 255 255 / 0.52);
  /* box-shadow:
    0 28px 88px rgb(83 80 151 / 0.32),
    0 0 108px rgb(83 80 151 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.34); */
  box-shadow: 0 0px 48px 11px rgba(83, 80, 151, 0.22);
  backdrop-filter: blur(22px) saturate(1.25);
}

.silwin-glass-theme .cta-band .section-eyebrow {
  background: rgb(255 255 255 / 0.16);
  border-color: rgb(255 255 255 / 0.24);
}

.silwin-glass-theme .cta-band .btn-primary {
  background: #fff;
  color: var(--color-brand);
}

.silwin-glass-theme .cta-actions .btn-secondary {
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.3);
}

.clients-visual {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 430px;
}

.clients-proof-panel {
  background:
    radial-gradient(ellipse 26rem 14rem at 100% 0%, rgb(83 80 151 / 0.08), transparent 72%),
    #fff;
  border: 1px solid rgb(83 80 151 / 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-brand);
  display: grid;
  gap: 1.25rem;
  max-width: 520px;
  padding: clamp(1.1rem, 4vw, 1.8rem);
  width: 100%;
}

.clients-proof-head {
  align-items: center;
  display: flex;
  gap: 0.85rem;
}

.clients-proof-head div {
  display: grid;
  gap: 0.1rem;
}

.clients-proof-head strong {
  color: var(--color-ink);
  font-size: 1.2rem;
  font-weight: 950;
}

.clients-proof-head span {
  font-size: 0.9rem;
  font-weight: 780;
}

.clients-proof-row {
  display: grid;
  gap: 0.75rem;
}

.clients-proof-row div {
  background: var(--color-brand-soft);
  border: 1px solid rgb(83 80 151 / 0.12);
  border-radius: 1rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem;
}

.clients-proof-row strong {
  color: var(--color-brand);
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.clients-proof-row span,
.clients-proof-list span {
  color: var(--color-ink-muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.clients-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.clients-proof-list span {
  background: #fff;
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: 999px;
  color: var(--color-brand-dark);
  padding: 0.42rem 0.7rem;
}

.clients-metrics-grid,
.logo-placeholder-grid,
.clients-sector-grid {
  display: grid;
  gap: 1rem;
}

.metric-proof-card {
  background: var(--color-surface);
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgb(83 80 151 / 0.08);
  display: grid;
  gap: 0.85rem;
  min-height: 190px;
  padding: clamp(1.1rem, 3vw, 1.35rem);
}

.metric-proof-value {
  color: var(--color-brand);
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.metric-proof-label {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.logo-placeholder {
  align-items: center;
  background:
    radial-gradient(ellipse 18rem 8rem at 100% 0%, rgb(83 80 151 / 0.05), transparent 72%),
    linear-gradient(180deg, #fff, rgb(244 243 248 / 0.58));
  border: 1px dashed rgb(83 80 151 / 0.24);
  border-radius: var(--radius-lg);
  color: var(--color-ink-muted);
  display: flex;
  font-size: 0.92rem;
  font-weight: 900;
  justify-content: center;
  min-height: 116px;
  padding: 1rem;
  text-align: center;
}

.sector-card {
  min-height: 100%;
}

.trust-band {
  background:
    radial-gradient(ellipse 34rem 14rem at 94% 0%, rgb(83 80 151 / 0.08), transparent 72%),
    linear-gradient(180deg, #fff, rgb(244 243 248 / 0.7));
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 34px rgb(83 80 151 / 0.08);
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.3rem, 5vw, 2.4rem);
}

.trust-band h2 {
  color: var(--color-ink);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.trust-band p {
  color: var(--color-ink-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 720;
  margin: 0;
  max-width: 820px;
}

.pos-phone {
  background: var(--color-page);
  border: 0px solid var(--color-ink);
  border-radius: 2.2rem;
  box-shadow: 0 26px 60px rgb(20 24 41 / 0.24);
  margin: 0 auto;
  max-width: 330px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.pos-topbar {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
  padding: 1rem;
  text-align: center;
}

.pos-list {
  display: grid;
}

.pos-row {
  border-bottom: 1px solid var(--color-line);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 0.95rem 0.85rem;
}

.pos-row strong {
  color: var(--color-ink);
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pos-row span,
.pos-row em,
.pos-row b {
  color: var(--color-brand);
  font-style: normal;
  font-weight: 900;
}

.pos-row div span,
.pos-row div em {
  display: block;
  font-size: 0.76rem;
  margin-top: 0.15rem;
}

.pos-row b {
  align-self: center;
  font-size: 0.84rem;
}

.pos-qty {
  align-self: center;
  color: var(--color-ink) !important;
  font-size: 0.9rem;
}

.pos-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 0.85rem;
}

.pos-total span {
  color: var(--color-ink);
  font-weight: 950;
}

.pos-total strong {
  color: var(--color-brand);
  font-size: 1.05rem;
}

.pos-pay {
  background: var(--color-brand);
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  margin: 0.4rem 0.85rem 0;
  padding: 0.9rem;
  text-align: center;
}

.pos-tabs {
  background: var(--color-brand);
  /* border-radius: 1.2rem 1.2rem 0 0; */
  border-radius: 0;
  bottom: 0;
  color: #fff;
  display: grid;
  font-size: 0.68rem;
  font-weight: 900;
  gap: 0.2rem;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  padding: 0.75rem 0.35rem;
  position: absolute;
  right: 0;
  text-align: center;
}

.panel-shell {
  background: var(--color-page);
  border: 1px solid var(--color-line);
  border-radius: 1.8rem;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
}

.panel-sidebar {
  align-items: center;
  background: #fff;
  border-right: 1px solid var(--color-line);
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 1rem 0;
}

.panel-sidebar span:not(.panel-logo) {
  background: var(--color-brand-soft-2);
  border-radius: 999px;
  height: 1.2rem;
  width: 1.2rem;
}

.panel-logo {
  border: 4px solid var(--color-brand);
  border-radius: 0.45rem;
  height: 1.8rem;
  width: 1.8rem;
}

.panel-main {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.panel-heading {
  align-items: start;
  display: grid;
  gap: 0.65rem;
}

.panel-heading strong {
  color: var(--color-brand);
  display: block;
  font-size: 1.35rem;
  font-weight: 950;
}

.panel-heading span {
  color: var(--color-ink-muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.panel-buttons,
.panel-days,
.panel-metrics,
.panel-content-grid,
.panel-side-cards {
  display: grid;
  gap: 0.6rem;
}

.panel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.panel-buttons span {
  background: var(--color-brand);
  border-radius: 999px;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.4rem 0.65rem;
}

.panel-days {
  grid-template-columns: repeat(2, 1fr);
}

.panel-days span,
.panel-metrics div,
.panel-table,
.panel-side-cards div {
  background: #fff;
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: 1rem;
}

.panel-days span {
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.55rem;
  text-align: center;
}

.panel-metrics div,
.panel-side-cards div {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
}

.panel-metrics strong,
.panel-side-cards strong {
  color: var(--color-brand);
  font-size: 0.9rem;
  font-weight: 950;
}

.panel-metrics span,
.panel-side-cards span {
  color: var(--color-ink-muted);
  font-size: 0.72rem;
  font-weight: 820;
}

.panel-table {
  overflow: hidden;
}

.panel-table .visual-subtitle {
  color: var(--color-brand);
  display: block;
  font-size: 0.95rem;
  font-weight: 950;
  margin: 0;
  padding: 0.75rem;
}

.panel-table-head,
.panel-table-row {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 0.8fr 1.4fr 0.75fr;
  padding: 0.62rem 0.75rem;
}

.panel-table-head {
  background: var(--color-brand);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-table-row {
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 0.7rem;
  font-weight: 820;
}

.module-section-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
}

.privacy-hero {
  padding: clamp(1.35rem, 3.5vw, 2.6rem) 0 clamp(1rem, 3vw, 2rem);
}

.privacy-page .site-shell {
  overflow: visible;
}

.privacy-hero-inner {
  position: relative;
  z-index: 1;
}

.privacy-hero .section-eyebrow {
  background: var(--color-brand);
  border-color: var(--color-brand);
  box-shadow: 0 10px 24px rgb(83 80 151 / 0.18);
  color: #fff;
  margin-bottom: 0.65rem;
  padding: 0.5rem 0.72rem;
}

.privacy-hero .module-hero-copy p {
  margin-top: 0.7rem;
  max-width: none;
}

.privacy-updated {
  color: var(--color-brand);
  font-size: 0.96rem;
  font-weight: 900;
  margin-top: 0.9rem;
}

.privacy-content-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.privacy-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.2rem, 4vw, 2rem);
}

.privacy-summary {
  position: sticky;
  top: 7rem;
}

.privacy-summary h2 {
  color: var(--color-ink);
  font-size: 1.08rem;
  margin: 0;
}

.privacy-index {
  display: grid;
  gap: 0.35rem;
  max-height: min(58vh, 520px);
  overflow: auto;
  padding-right: 0.25rem;
}

.privacy-index a {
  border-radius: 0.8rem;
  color: var(--color-ink-muted);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 0.55rem;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
  background: var(--color-brand-soft);
  color: var(--color-brand);
  outline: none;
}

.privacy-sections {
  display: grid;
  gap: 1rem;
}

.privacy-card {
  scroll-margin-top: 7.5rem;
}

.privacy-card h2 {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
  margin: 0;
}

.privacy-rich-text {
  color: var(--color-ink-muted);
  display: grid;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 680;
}

.privacy-rich-text h3 {
  color: var(--color-brand);
  font-size: 1.02rem;
  line-height: 1.25;
  margin: 0.35rem 0 0;
}

.privacy-rich-text p,
.privacy-rich-text ul {
  margin: 0;
}

.privacy-rich-text ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.25rem;
}

.privacy-rich-text a {
  color: var(--color-brand);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.module-note-card,
.module-list-card {
  background: var(--color-surface);
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgb(83 80 151 / 0.08);
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.module-note-card strong,
.module-list-card h3 {
  color: var(--color-ink);
  font-size: 1.02rem;
  margin: 0;
}

.module-note-card p {
  color: var(--color-ink-muted);
  font-weight: 680;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
}

.feature-list > span {
  align-items: center;
  /* background:
    radial-gradient(ellipse 14rem 7rem at 94% 0%, rgb(83 80 151 / 0.07), transparent 72%),
    linear-gradient(180deg, #fff, rgb(244 243 248 / 0.72)); */
  border: 1px solid rgb(83 80 151 / 0.13);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  display: flex;
  font-size: 0.94rem;
  font-weight: 820;
  gap: 0.7rem;
  padding: 0.72rem 0.8rem;
  background: #fff;
}

.feature-list > span .feature-icon {
  height: 1.85rem;
  width: 1.85rem;
}

#detalle > section .section-copy > .section-eyebrow {
  align-items: center;
  aspect-ratio: 1;
  background: var(--color-brand);
  border-radius: 999px;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 0;
  width: 2.5rem;
}

#detalle > section[aria-labelledby="punto-de-venta-section-3"] .module-section-grid,
#detalle > section[aria-labelledby="panel-web-section-3"] .module-section-grid,
#detalle > section[aria-labelledby="cotizaciones-section-2"] .module-section-grid {
  grid-template-columns: 1fr;
}

#detalle > section[aria-labelledby="punto-de-venta-section-3"] .feature-list,
#detalle > section[aria-labelledby="panel-web-section-3"] .feature-list,
#detalle > section[aria-labelledby="cotizaciones-section-2"] .feature-list {
  display: flex;
  flex-wrap: wrap;
}

#detalle > section[aria-labelledby="punto-de-venta-section-3"] .feature-list > span,
#detalle > section[aria-labelledby="panel-web-section-3"] .feature-list > span,
#detalle > section[aria-labelledby="cotizaciones-section-2"] .feature-list > span {
  flex: 0 1 auto;
}

.verifier-phone {
  background: var(--color-page);
  border: 0px solid var(--color-ink);
  border-radius: 2.2rem;
  box-shadow: 0 26px 60px rgb(20 24 41 / 0.24);
  margin: 0 auto;
  max-width: 330px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.verifier-result {
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  padding: 1.25rem 1rem 5.4rem;
  text-align: center;
}

.verifier-search {
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink-muted);
  display: flex;
  font-size: 0.72rem;
  font-weight: 850;
  gap: 0.45rem;
  justify-self: stretch;
  padding: 0.65rem 0.8rem;
  text-align: left;
}

.verifier-result .visual-title {
  color: var(--color-ink);
  display: block;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.verifier-result > strong {
  color: var(--color-brand);
  font-size: 2.35rem;
  font-weight: 950;
}

.verifier-result dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.verifier-result div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
}

.verifier-result dt {
  color: var(--color-brand);
  font-weight: 950;
}

.verifier-result dd {
  color: var(--color-ink);
  font-weight: 900;
  margin: 0;
}

.verifier-actions {
  display: grid;
  gap: 0.65rem;
  position: absolute;
  right: 0.9rem;
  top: 68%;
}

.verifier-actions span {
  align-items: center;
  background: var(--color-brand);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgb(83 80 151 / 0.24);
  color: #fff;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 950;
  gap: 0.22rem;
  justify-content: center;
  flex-direction: column;
  width: 2.8rem;
  height: 2.8rem;
}

.verifier-actions .heroicon {
  height: 1rem;
  width: 1rem;
}

.verifier-actions .heroicon.icon-md {
  height: 1.7rem;
  width: 1.7rem;
}

.verifier-actions b {
  font-size: 0.58rem;
}

.billing-flow {
  align-items: center;
  display: grid;
  gap: 1rem;
}

.ticket-mockup,
.billing-portal,
.quote-modal {
  background: #fff;
  border: 1px solid rgb(223 229 238 / 0.86);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgb(20 24 41 / 0.08);
}

.ticket-mockup {
  display: grid;
  gap: 0.45rem;
  justify-self: center;
  max-width: 250px;
  padding: 1.2rem;
  text-align: center;
  width: 100%;
}

.ticket-mockup strong {
  color: var(--color-brand);
  font-size: 1.05rem;
  font-weight: 950;
}

.ticket-mockup span,
.ticket-mockup p {
  color: var(--color-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  margin: 0;
}

.ticket-lines {
  border-block: 1px dashed var(--color-ink-muted);
  height: 2.4rem;
  margin: 0.45rem 0;
}

.ticket-qr-img {
  background: #fff;
  border: 7px solid #fff;
  box-shadow: inset 0 0 0 1px var(--color-line), 0 8px 20px rgb(20 24 41 / 0.08);
  height: 104px;
  justify-self: center;
  object-fit: contain;
  width: 104px;
}

.billing-portal {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
}

.billing-portal .visual-title {
  color: var(--color-ink);
  display: block;
  font-size: 1.25rem;
  font-weight: 950;
  margin: 0;
}

.portal-field {
  align-items: center;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-line);
  border-radius: 0.8rem;
  color: var(--color-ink-muted);
  display: flex;
  font-size: 0.75rem;
  font-weight: 850;
  height: 2.25rem;
  padding: 0 0.85rem;
}

.portal-field.short {
  width: 70%;
}

.portal-button {
  background: var(--color-brand);
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  padding: 0.75rem;
  text-align: center;
}

.quote-modal {
  margin: auto;
  max-width: 620px;
  overflow: hidden;
}

.quote-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.quote-heading strong {
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.quote-heading span {
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-table-head,
.quote-row {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr 0.65fr;
  padding: 0.8rem 1rem;
}

.quote-table-head {
  background: var(--color-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-row {
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.quote-row strong {
  align-items: center;
  background: var(--color-brand);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  gap: 0.25rem;
  justify-self: start;
  padding: 0.28rem 0.7rem;
}

.quote-row strong .heroicon {
  height: 0.85rem;
  width: 0.85rem;
}

.quote-flow {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem;
}

.quote-flow span {
  align-items: center;
  background: var(--color-brand-soft);
  border: 1px solid var(--color-brand-soft-2);
  border-radius: 999px;
  color: var(--color-brand);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 0.28rem;
  justify-content: center;
  padding: 0.55rem;
  text-align: center;
}

.quote-flow .heroicon {
  height: 0.95rem;
  width: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cta-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes cta-float-2 {
  0%,
  30% {
    transform: translateY(0);
  }

  15% {
    transform: translateY(-6px);
  }
}

@keyframes cta-halo {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }

  50% {
    opacity: 0.9;
    transform: translateY(7px);
  }
}

.bounce {
  animation: bounce 5s ease infinite;
}
@keyframes bounce {
	0%, 10%, 25%, 40%, 50% {transform: translateY(0);}
	20% {transform: translateY(-0.9375rem);}
	30% {transform: translateY(-0.46875rem);}
}

.site-footer {
  background: var(--color-brand);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  color: #fff;
  padding: 2rem 0;
}

.site-footer .brand-name {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand p,
.footer-column a,
.footer-column span {
  color: rgb(255 255 255 / 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  gap: 0.55rem;
}

.footer-column h2 {
  color: #fff;
  font-size: 0.82rem;
  margin: 0;
  text-transform: uppercase;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-column .footer-whatsapp-link {
  color: #fff;
  font-weight: 900;
}

.footer-column .footer-panel-link {
  align-items: center;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 999px;
  box-shadow:
    0 14px 34px rgb(20 24 41 / 0.16),
    inset 0 1px 0 rgb(255 255 255 / 0.24);
  color: #fff;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 900;
  justify-content: center;
  margin-top: 0.45rem;
  padding: 0.72rem 0.95rem;
  width: fit-content;
  grid-gap: 0.5rem;
}

.footer-column .footer-panel-link:hover,
.footer-column .footer-panel-link:focus-visible {
  background: #fff;
  color: var(--color-brand);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 0.16);
  color: rgb(255 255 255 / 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.85rem 1.25rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.footer-bottom a {
  color: inherit;
}

.footer-smartsys-link {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.footer-privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.footer-privacy-links a:hover,
.footer-privacy-links a:focus-visible,
.footer-smartsys-link:hover,
.footer-smartsys-link:focus-visible {
  color: #fff;
  outline: none;
}

.floating-actions {
  bottom: clamp(0.9rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.65rem;
  pointer-events: none;
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.4rem);
  z-index: 80;
}

.floating-action {
  align-items: center;
  aspect-ratio: 1;
  backdrop-filter: blur(18px) saturate(1.18);
  border: 1px solid rgb(255 255 255 / 0.48);
  border-radius: 999px;
  box-shadow:
    0 18px 44px rgb(41 37 92 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.32);
  display: inline-flex;
  justify-content: center;
  pointer-events: auto;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 220ms ease,
    transform 220ms ease;
  width: 3.5rem;
}

.floating-action .heroicon {
  height: 1.75rem;
  width: 1.75rem;
}

.floating-action-whatsapp {
  background: rgb(83 80 151 / 0.92);
  background: #26C767;
  color: #fff;
}

.floating-action-scroll {
  background: rgb(249 247 255 / 0.82);
  border-color: rgb(83 80 151 / 0.16);
  color: var(--color-brand);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.65rem) scale(0.94);
}

.floating-action-scroll.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-action:hover,
.floating-action:focus-visible {
  box-shadow:
    0 22px 54px rgb(41 37 92 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.36);
  outline: none;
  transform: translateY(-2px);
}

.floating-action-scroll:not(.is-visible):hover,
.floating-action-scroll:not(.is-visible):focus-visible {
  transform: translateY(0.65rem) scale(0.94);
}

@media (min-width: 760px) {

  .silwin-glass-theme .site-header {
    top: 0.75rem;
  }


  .desktop-nav {
    display: flex;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }

  .module-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }

  #detalle > section[aria-labelledby="verificador-de-precios-section-0"] .section-copy,
  #detalle > section[aria-labelledby="facturacion-en-linea-section-1"] .section-copy,
  #detalle > section[aria-labelledby="cotizaciones-section-0"] .section-copy,
  #detalle > section[aria-labelledby="panel-web-section-1"] .section-copy {
    order: 2;
  }

  #detalle > section[aria-labelledby="verificador-de-precios-section-0"] .module-list-card,
  #detalle > section[aria-labelledby="facturacion-en-linea-section-1"] .module-list-card,
  #detalle > section[aria-labelledby="cotizaciones-section-0"] .module-list-card,
  #detalle > section[aria-labelledby="panel-web-section-1"] .module-list-card {
    order: 1;
  }

  #detalle > section[aria-labelledby="punto-de-venta-section-1"] .section-copy {
    order: 2;
  }

  #detalle > section[aria-labelledby="punto-de-venta-section-1"] .module-list-card {
    order: 1;
  }

  .problem-grid,
  .why-grid,
  .module-section-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .privacy-layout {
    grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  }

  .section-problem .problem-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .section-problem .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #detalle > section[aria-labelledby="verificador-de-precios-section-1"] .feature-list,
  #detalle > section[aria-labelledby="panel-web-section-1"] .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .flow-node {
    align-items: start;
    display: grid;
  }

  .section-solution .flow-strip {
    align-items: stretch;
    gap: 0.7rem;
  }

  .section-solution .flow-strip::before {
    display: block;
  }

  .section-solution .flow-node {
    align-items: center;
    display: grid;
    gap: 0.55rem;
    grid-template-columns: auto;
    justify-items: center;
    min-height: 8.35rem;
    text-align: center;
  }

  .section-solution .flow-node::after {
    background:
      linear-gradient(90deg, rgb(83 80 151 / 0.3), rgb(83 80 151 / 0.08));
    height: 2px;
    left: calc(100% + 0.05rem);
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
  }

  .card-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .module-card {
    grid-column: span 3;
  }

  .module-card:nth-child(n + 3) {
    grid-column: span 2;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .adaptability-band {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  }

  .panel-days {
    grid-template-columns: repeat(4, 1fr);
  }

  .panel-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .panel-content-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.65fr);
  }

  .panel-heading {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .billing-flow {
    grid-template-columns: minmax(190px, 0.75fr) minmax(250px, 1fr);
  }

  .demo-steps {
    gap: 0.4rem 0.6rem;
  }

  .demo-card-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .demo-info-card {
    grid-column: span 2;
  }

  .demo-info-card:nth-child(-n + 4) {
    grid-column: span 3;
  }

  .demo-form-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .demo-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-demo-box {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .clients-proof-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-placeholder-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-sector-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
  }
}

@media (min-width: 1040px) {
  .contact-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-page-panel-web .module-hero-grid,
  .demo-page .module-hero-grid {
    grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
  }

  .module-page-panel-web .module-visual-panel {
    margin-right: clamp(-8rem, -7vw, -2rem);
    width: min(72vw, 860px);
  }

  .module-page-panel-web .panel-shell {
    min-height: clamp(430px, 30vw, 520px);
  }

  .demo-page .demo-visual {
    margin-right: clamp(-7rem, -6vw, -1.5rem);
    min-height: 540px;
    width: min(70vw, 780px);
  }

  .demo-page .demo-dashboard {
    max-width: none;
    width: min(100%, 700px);
  }

  .benefits-grid,
  .audiences-grid,
  .step-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 759px) {
  .floating-actions {
    bottom: 0.8rem;
    gap: 0.5rem;
    right: 0.8rem;
  }

  .floating-action {
    width: 2.8rem;
  }

  .floating-action .heroicon {
    height: 1.25rem;
    width: 1.25rem;
  }

  .floating-action-whatsapp .heroicon {
    height: 1.5rem;
    width: 1.5rem;
  }

  .demo-page main {
    display: flex;
    flex-direction: column;
  }

  .demo-page .module-hero {
    order: 1;
  }

  .demo-page .demo-form-section {
    order: 2;
  }

  .demo-page .demo-includes-section {
    order: 3;
  }

  .demo-page main > section[aria-labelledby="audience-demo-title"] {
    order: 4;
  }

  .demo-page .demo-contact-section {
    order: 5;
  }

  .hero-visual {
    min-height: 460px;
  }

  .mockup-stage {
    min-height: 430px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    max-width: 176px;
    right: 0.35rem;
    width: 50%;
  }

  .floating-card {
    left: 0.35rem;
  }

  .ticket-chip {
    right: 1rem;
  }

  .module-visual {
    min-height: auto;
  }

  .pos-phone {
    min-height: 520px;
  }

  .pos-pay {
    margin-bottom: 3rem;
  }

  .verifier-phone {
    min-height: 520px;
  }

  .quote-table-head,
  .quote-row {
    grid-template-columns: 1fr 0.9fr 0.65fr;
  }

  .panel-shell {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .module-page-panel-web .module-visual-panel,
  .demo-page .demo-visual {
    margin-right: 0;
    width: 100%;
  }

  .panel-sidebar {
    gap: 0.75rem;
  }

  .panel-table-head,
  .panel-table-row {
    grid-template-columns: 0.7fr 1.25fr 0.65fr;
  }

  .demo-visual {
    min-height: 430px;
  }

  .demo-dashboard {
    width: 100%;
  }

  .demo-phone {
    max-width: 174px;
    right: 0.8rem;
    width: 48%;
  }

  .demo-chip {
    right: 1rem;
  }

  .form-submit {
    width: 100%;
  }

  section[aria-labelledby="contact-info-title"] {
    padding: 2rem 0 1.35rem;
  }

  section[aria-labelledby="contact-info-title"] .section-header {
    margin-bottom: 1rem;
    text-align: left;
  }

  section[aria-labelledby="contact-info-title"] .section-eyebrow {
    margin-bottom: 0.45rem;
  }

  section[aria-labelledby="contact-info-title"] .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  section[aria-labelledby="contact-info-title"] .section-header p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-top: 0.55rem;
  }

  .contact-card-grid {
    gap: 0.55rem;
  }

  .contact-card {
    align-items: center;
    display: grid;
    gap: 0.1rem 0.75rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.72rem 0.82rem;
  }

  .contact-card .card-icon {
    grid-row: span 2;
    height: 2.15rem;
    width: 2.15rem;
  }

  .contact-card .card-icon .heroicon {
    height: 1rem;
    width: 1rem;
  }

  .contact-card h3 {
    font-size: 0.84rem;
    line-height: 1.1;
    margin: 0;
  }

  .contact-card a {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .contact-type-list {
    display: none;
  }

  .contact-visual {
    min-height: 360px;
  }

  .contact-visual-panel {
    width: 100%;
  }

  .contact-visual-chip {
    right: 1rem;
    top: 1rem;
  }

  .contact-demo-box .btn {
    width: 100%;
  }

  .clients-visual {
    min-height: 340px;
  }

  .clients-sector-grid {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
  }

  .privacy-index {
    display: none;
  }

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

  .footer-privacy-links {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

