:root {
  --bg: #030816;
  --bg-2: #081226;
  --panel: rgba(8, 16, 35, 0.72);
  --panel-2: rgba(6, 14, 30, 0.9);
  --stroke: rgba(72, 130, 255, 0.22);
  --stroke-2: rgba(84, 154, 255, 0.38);
  --text: #f5f8ff;
  --muted: #9ab0d2;
  --soft: #6f88ae;
  --blue: #2b8cff;
  --blue-2: #49a7ff;
  --cyan: #4ce1ff;
  --green: #2bd67b;
  --yellow: #ffc44d;
  --orange: #ff9345;
  --red: #ff5d67;
  --shadow: 0 18px 80px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 0 0 1px rgba(67, 133, 255, 0.16), 0 12px 40px rgba(5, 10, 30, 0.68), inset 0 1px 0 rgba(173, 214, 255, 0.06);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(26, 81, 255, 0.12), transparent 26%),
    radial-gradient(circle at 90% 22%, rgba(38, 199, 255, 0.11), transparent 22%),
    radial-gradient(circle at 72% 68%, rgba(33, 90, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #040915 0%, #030813 30%, #050d1e 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-grid {
  position: fixed;
  inset: auto 0 0 0;
  height: 420px;
  background-image:
    linear-gradient(rgba(49, 108, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 108, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  transform: perspective(900px) rotateX(75deg) translateY(220px);
  transform-origin: center top;
  opacity: .42;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .85));
  z-index: 0;
}

.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 420px;
  height: 420px;
  background: #185dff;
  top: 160px;
  right: -120px;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: #19c6ff;
  top: 260px;
  left: -140px;
}

.site-header,
.hero,
.stats-strip,
.solutions-section,
.integrations-section,
.trust-section,
.process-section,
.about-section,
.testimonials-section,
.final-cta-section,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(2, 8, 19, 0.7);
  border-bottom: 1px solid rgba(90, 130, 255, 0.09);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 168px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.footer-links a {
  color: #dce7ff;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s ease, transform .2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 0 18px;
  min-height: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2a93ff 0%, #216dff 100%);
  box-shadow: 0 12px 32px rgba(32, 108, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(32, 108, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.btn-ghost,
.btn-dark {
  color: #edf3ff;
  background: rgba(7, 14, 30, 0.78);
  border-color: rgba(104, 143, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-dark:hover,
.btn-ghost:hover {
  border-color: rgba(126, 168, 255, 0.45);
}

.btn-lg {
  min-height: 58px;
  padding: 0 24px;
  font-size: 16px;
  border-radius: 18px;
}

.btn-xl {
  min-height: 60px;
  padding: 0 28px;
  font-size: 17px;
  border-radius: 18px;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 10px;
}

.hero {
  padding: 38px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.28fr;
  gap: 30px;
  align-items: start;
}

.hero-copy {
  padding-top: 36px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(75, 142, 255, 0.25);
  background: rgba(9, 18, 38, 0.66);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6de4ff, #2885ff);
  box-shadow: 0 0 18px #2e8cff;
}

.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(56px, 5.2vw, 88px);
  line-height: .95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero h1 span.typing-text {
  background: linear-gradient(180deg, #73ddff 0%, #2496ff 46%, #2b79ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-cursor {
  font-weight: 100;
  color: #73ddff;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-description {
  max-width: 720px;
  margin: 0;
  color: #d5e3ff;
  font-size: 24px;
  line-height: 1.52;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-proof-row {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(6, 14, 31, 0.5);
  border: 1px solid rgba(94, 142, 255, 0.14);
  width: fit-content;
}

.avatars {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  margin-right: -10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(4, 10, 24, 1);
  font-size: 14px;
  font-weight: 800;
  color: white;
}

.avatar-a {
  background: linear-gradient(135deg, #2f8fff, #1ce1ff);
}

.avatar-b {
  background: linear-gradient(135deg, #7a58ff, #2c79ff);
}

.avatar-c {
  background: linear-gradient(135deg, #00b4ff, #0768ff);
}

.avatar-d {
  background: linear-gradient(135deg, #2f76ff, #4bd2ff);
}

.hero-proof-text {
  display: grid;
  gap: 4px;
}

.hero-proof-text strong {
  font-size: 16px;
}

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

.hero-mini-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.mini-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
}

.mini-point strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.mini-point p {
  margin: 0;
  line-height: 1.5;
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(39, 112, 255, 0.26), rgba(22, 37, 78, 0.65));
  border: 1px solid rgba(93, 143, 255, 0.18);
  color: #59b8ff;
  flex: 0 0 36px;
}

.hero-visual {
  position: relative;
  min-height: 820px;
  transform: scale(0.85);
  transform-origin: left top;
}

.hero-orbit {
  position: absolute;
  left: -140px;
  bottom: 118px;
  width: 520px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(70, 132, 255, 0.12);
  border-left-color: rgba(70, 132, 255, 0.82);
  border-bottom-color: rgba(34, 211, 255, 0.55);
  filter: drop-shadow(0 0 20px rgba(56, 145, 255, 0.55));
  transform: rotate(-16deg);
  pointer-events: none;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(9, 18, 39, 0.82), rgba(7, 14, 31, 0.94));
  border: 1px solid rgba(77, 130, 255, 0.18);
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(18px);
}

.hero-dashboard {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 30px;
  min-height: 600px;
}

.hero-dashboard::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0%, rgba(50, 123, 255, 0.26), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(26, 195, 255, 0.15), transparent 22%);
  z-index: -1;
}

.dashboard-sidebar {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(9, 18, 38, 0.9), rgba(8, 13, 28, 0.96));
  border: 1px solid rgba(73, 127, 255, 0.14);
  padding: 16px 12px;
}

.dashboard-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 8px 16px;
}

.dashboard-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #24c8ff, #2664ff);
  font-weight: 900;
}

.dashboard-brand strong {
  display: block;
  font-size: 13px;
}

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

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-menu a {
  padding: 11px 12px;
  color: #a9bddf;
  font-size: 13px;
  border-radius: 12px;
  transition: all .2s ease;
}

.dashboard-menu a.active,
.dashboard-menu a:hover {
  color: #fff;
  background: linear-gradient(180deg, rgba(33, 115, 255, 0.56), rgba(18, 55, 140, 0.66));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-main {
  display: grid;
  gap: 16px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.dashboard-topbar h2 {
  margin: 0;
  font-size: 30px;
}

.dashboard-filters {
  display: flex;
  gap: 10px;
}

.dashboard-filters span,
.chip {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(10, 18, 35, 0.9);
  border: 1px solid rgba(92, 135, 255, 0.18);
  color: #c6d7f4;
  font-size: 12px;
  white-space: nowrap;
}

.chip {
  color: #d7e7ff;
}

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

.kpi-card,
.chart-card,
.automation-card,
.widget-card,
.metric-card,
.solution-card,
.trust-card,
.about-mini-card,
.testimonial-card,
.testimonial-lead,
.final-cta,
.process-flow,
.integrations-board {
  border-radius: 22px;
}

.kpi-card,
.chart-card,
.automation-card {
  background: rgba(8, 15, 32, 0.88);
  border: 1px solid rgba(86, 132, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.kpi-card {
  padding: 16px;
  display: grid;
  gap: 8px;
}

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

.kpi-card strong {
  font-size: 26px;
  line-height: 1;
}

.kpi-card em {
  font-style: normal;
  color: #29d97d;
  font-size: 12px;
}

.dashboard-charts-grid {
  display: grid;
  grid-template-columns: .98fr 1.2fr;
  gap: 16px;
}

.chart-card {
  padding: 18px;
}

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

.card-head h3 {
  margin: 0;
  font-size: 18px;
}

.chart-donut-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 178px;
}

.donut-ring {
  position: relative;
  border-radius: 50%;
  background: conic-gradient(#2f7cff 0 58%, #37c5ff 58% 84%, #2cd677 84% 95%, #764dff 95% 100%);
}

.donut-ring::after {
  content: '';
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(8, 16, 34, 1), rgba(4, 9, 18, 1));
  border: 1px solid rgba(74, 121, 255, 0.1);
}

.donut-big {
  width: 138px;
  height: 138px;
}

.donut-small {
  width: 78px;
  height: 78px;
}

.donut-card {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
}

.chart-legend,
.alert-list,
.check-list,
.pill-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chart-legend {
  display: grid;
  gap: 12px;
  color: #dce7ff;
  font-size: 13px;
}

.chart-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-1 {
  background: #2f7cff;
}

.dot-2 {
  background: #37c5ff;
}

.dot-3 {
  background: #2cd677;
}

.dot-4 {
  background: #764dff;
}

.chart-sparkline {
  position: relative;
  padding-top: 4px;
}

.chart-sparkline svg {
  width: 100%;
  height: 160px;
  overflow: visible;
}

.chart-sparkline .line {
  fill: none;
  stroke: #35a3ff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(53, 163, 255, 0.3));
}

.chart-sparkline .area {
  fill: url(#lineGlow);
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--soft);
  font-size: 11px;
}

.automation-card {
  padding: 18px;
}

.automation-steps {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
}

.step {
  min-width: 106px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #c8d8f5;
  text-align: center;
  font-size: 13px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(43, 120, 255, 0.28), rgba(15, 42, 102, 0.86));
  border: 1px solid rgba(100, 150, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step p {
  margin: 0;
}

.step-line {
  height: 2px;
  min-width: 34px;
  background: linear-gradient(90deg, rgba(69, 127, 255, .15), rgba(63, 177, 255, .65), rgba(69, 127, 255, .15));
}

.step-success .step-icon {
  background: linear-gradient(180deg, rgba(34, 204, 106, 0.42), rgba(7, 80, 37, 0.95));
}

.hero-side-widgets {
  position: absolute;
  top: 74px;
  right: -10px;
  display: grid;
  gap: 18px;
  width: 270px;
}

.widget-card {
  padding: 18px;
}

.widget-card-head {
  margin-bottom: 14px;
}

.widget-card-head h3 {
  margin: 0;
  font-size: 18px;
}

.ai-bot-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 202, 255, 0.34), transparent 60%),
    linear-gradient(180deg, rgba(36, 161, 255, 0.58), rgba(17, 57, 147, 0.96));
  border: 1px solid rgba(100, 180, 255, 0.25);
  box-shadow: 0 0 30px rgba(32, 121, 255, 0.3);
  position: relative;
}

.ai-bot-icon::before,
.ai-bot-icon::after {
  content: '';
  position: absolute;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7f5ff;
}

.ai-bot-icon::before {
  left: 18px;
}

.ai-bot-icon::after {
  right: 18px;
}

.widget-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
  font-size: 14px;
}

.alert-list {
  display: grid;
  gap: 14px;
}

.alert-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-list strong {
  display: block;
  font-size: 14px;
}

.alert-list small {
  color: var(--soft);
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 10px;
}

.alert-yellow {
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 196, 77, .55);
}

.alert-orange {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 147, 69, .5);
}

.alert-red {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 93, 103, .5);
}

.text-link {
  color: #6ec8ff;
  font-weight: 700;
  font-size: 14px;
  margin-top: 14px;
  display: inline-block;
}

.stats-strip {
  padding: 18px 0 12px;
}

.metrics-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
}

.metric-card {
  padding: 22px 22px;
  min-height: 132px;
  background: rgba(7, 15, 31, 0.78);
  border-right: 1px solid rgba(92, 140, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.metric-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.metric-card em {
  font-style: normal;
  color: var(--green);
  font-size: 12px;
}

.metric-card em.negative {
  color: var(--red);
}

.mini-sparkline {
  width: 112px;
  height: 56px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.02);
  position: relative;
  flex: 0 0 112px;
}

.mini-sparkline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 157, 255, 0.16), transparent 80%);
  clip-path: polygon(0 78%, 10% 70%, 20% 74%, 30% 60%, 40% 63%, 50% 49%, 60% 54%, 70% 42%, 80% 50%, 90% 24%, 100% 12%, 100% 100%, 0 100%);
}

.mini-sparkline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #33a4ff;
  clip-path: polygon(0 78%, 10% 70%, 20% 74%, 30% 60%, 40% 63%, 50% 49%, 60% 54%, 70% 42%, 80% 50%, 90% 24%, 100% 12%, 100% 18%, 90% 29%, 80% 53%, 70% 47%, 60% 58%, 50% 53%, 40% 67%, 30% 64%, 20% 79%, 10% 75%, 0 83%);
  filter: drop-shadow(0 0 10px rgba(51, 164, 255, 0.32));
}

.mini-sparkline.red::before {
  background: linear-gradient(180deg, rgba(255, 93, 103, 0.16), transparent 80%);
}

.mini-sparkline.red::after {
  background: #ff6970;
}

.metric-circle {
  justify-content: center;
}

.metric-circle .donut-small {
  flex: 0 0 78px;
}

.solutions-section,
.integrations-section,
.trust-section,
.process-section,
.about-section,
.testimonials-section,
.final-cta-section {
  padding: 22px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
  line-height: 1.65;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.solution-card {
  padding: 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: linear-gradient(180deg, rgba(41, 126, 255, 0.24), rgba(15, 43, 105, 0.86));
  border: 1px solid rgba(98, 150, 255, 0.18);
}

.solution-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.solution-chart.bars-chart {
  margin-top: auto;
  height: 112px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.solution-chart.bars-chart span {
  display: block;
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(60, 175, 255, 0.95), rgba(36, 104, 255, 0.3));
  box-shadow: 0 0 18px rgba(47, 124, 255, 0.16);
}

.solution-chart.bars-chart span:nth-child(1) {
  height: 38%;
}

.solution-chart.bars-chart span:nth-child(2) {
  height: 54%;
}

.solution-chart.bars-chart span:nth-child(3) {
  height: 42%;
}

.solution-chart.bars-chart span:nth-child(4) {
  height: 72%;
}

.solution-chart.bars-chart span:nth-child(5) {
  height: 65%;
}

.solution-chart.bars-chart span:nth-child(6) {
  height: 88%;
}

.solution-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.solution-footer strong {
  font-size: 14px;
  color: var(--muted);
}

.solution-footer span {
  font-size: 20px;
  font-weight: 800;
}

.solution-split {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
}

.solution-split ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #dce7ff;
}

.solution-split li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.progress-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.progress-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: center;
  font-size: 14px;
  color: #dbe6ff;
}

.progress-list i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.progress-list i::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, #27cfff, #256dff);
}

.pill-list,
.check-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.pill-list li,
.check-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(93, 134, 255, 0.12);
  border-radius: 14px;
  color: #d8e6ff;
}

.check-list li::before {
  content: '✓';
  color: #37cbff;
  margin-right: 10px;
  font-weight: 800;
}

.economy-box {
  margin-top: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(93, 134, 255, 0.12);
  border-radius: 18px;
  display: grid;
  gap: 8px;
}

.economy-box span {
  color: var(--muted);
  font-size: 14px;
}

.economy-box strong {
  font-size: 30px;
}

.economy-box em {
  font-style: normal;
  color: var(--green);
  font-size: 13px;
}

.integrations-board {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.integration-logos span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(94, 137, 255, 0.12);
  color: #edf4ff;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.trust-card {
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(41, 126, 255, 0.24), rgba(15, 43, 105, 0.86));
  border: 1px solid rgba(98, 150, 255, 0.18);
}

.trust-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stat-highlight {
  flex-direction: column;
  align-items: flex-start;
}

.stat-highlight strong {
  font-size: 36px;
  line-height: 1;
}

.process-flow {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
}

.flow-item {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(94, 137, 255, 0.12);
  font-weight: 700;
  color: #f0f5ff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-item span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2398ff, #2667ff);
}

.flow-line {
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(70, 132, 255, 0.1), rgba(70, 132, 255, 0.75), rgba(70, 132, 255, 0.1));
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.about-copy h2 {
  margin: 16px 0 16px;
  font-size: clamp(36px, 3.2vw, 58px);
  line-height: .98;
  letter-spacing: -0.05em;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-mini-card {
  padding: 22px;
  min-height: 180px;
}

.about-mini-card strong {
  display: block;
  font-size: 21px;
  margin-bottom: 12px;
}

.about-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 18px;
}

.testimonial-lead,
.testimonial-card,
.final-cta,
.about-mini-card,
.trust-card,
.solution-card,
.integrations-board,
.process-flow {
  background: linear-gradient(180deg, rgba(9, 18, 39, 0.78), rgba(7, 14, 31, 0.96));
  border: 1px solid rgba(77, 130, 255, 0.18);
  box-shadow: var(--shadow-blue);
}

.testimonial-lead,
.testimonial-card {
  padding: 24px;
}

.testimonial-lead h2 {
  margin: 16px 0 0;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.testimonial-card p {
  margin: 0 0 28px;
  color: #e5efff;
  line-height: 1.8;
  font-size: 16px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
}

.testimonial-footer span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.testimonial-footer b {
  color: #5dc9ff;
  font-size: 16px;
  text-align: right;
}

.final-cta {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-copy h2 {
  margin: 14px 0;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.cta-points {
  display: grid;
  gap: 14px;
}

.cta-point {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(93, 134, 255, 0.12);
}

.cta-point strong {
  display: block;
  margin-bottom: 5px;
}

.cta-point span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.cta-actions small {
  color: var(--soft);
}

.site-footer {
  padding: 26px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(94, 137, 255, 0.1);
}

.footer-brand {
  max-width: 520px;
}

.footer-brand img {
  width: 168px;
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 1480px) {

  .hero-grid,
  .about-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .hero-side-widgets {
    position: static;
    width: 100%;
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 1200px) {

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open,
  .header-actions.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    padding: 18px;
    border-radius: 22px;
    background: rgba(6, 14, 30, 0.98);
    border: 1px solid rgba(84, 138, 255, 0.2);
    box-shadow: var(--shadow-blue);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-actions.open {
    top: calc(100% + 236px);
  }

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

  .dashboard-sidebar {
    display: none;
  }

  .kpi-grid,
  .dashboard-charts-grid,
  .trust-grid,
  .testimonials-grid,
  .about-cards,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .metric-circle {
    grid-column: span 2;
  }

  .integrations-board,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-proof-row {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-mini-points {
    gap: 12px;
  }

  .hero-side-widgets,
  .kpi-grid,
  .dashboard-charts-grid,
  .solutions-grid,
  .about-cards,
  .testimonials-grid,
  .trust-grid,
  .metrics-board {
    grid-template-columns: 1fr;
  }

  .metric-circle {
    grid-column: auto;
  }

  .hero-dashboard,
  .widget-card,
  .solution-card,
  .about-mini-card,
  .testimonial-card,
  .testimonial-lead,
  .final-cta,
  .process-flow,
  .integrations-board,
  .metrics-board {
    border-radius: 22px;
  }

  .hero-dashboard {
    padding: 14px;
  }

  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-topbar h2 {
    font-size: 24px;
  }

  .dashboard-filters {
    flex-wrap: wrap;
  }

  .chart-donut-wrap,
  .solution-split,
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-flow {
    padding: 16px;
  }

  .flow-item {
    min-width: 140px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* --- New Solucoes UI Styles (Images) --- */
.mockup-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 2048 / 987;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto;
}

.mockup-stage::before,
.mockup-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 27%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(44, 154, 255, 0.23);
  pointer-events: none;
  filter: drop-shadow(0 0 35px rgba(27, 133, 255, 0.28));
}

.mockup-stage::before {
  left: -15%;
  top: -21%;
}

.mockup-stage::after {
  right: -14%;
  top: -22%;
}

.mockup-stage > img {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.top-pill {
  left: 27.832031%;
  top: 3.343465%;
  width: 45.800781%;
  filter: drop-shadow(0 0 18px rgba(0, 130, 255, 0.18));
}

.card {
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 12px rgba(30, 126, 255, 0.05));
  transform: translateZ(0);
}

.card-1 {
  left: 1.464844%;
  top: 13.069909%;
  width: 14.84375%;
}

.card-2 {
  left: 17.773438%;
  top: 13.069909%;
  width: 14.257813%;
}

.card-3 {
  left: 33.007813%;
  top: 13.069909%;
  width: 15.576172%;
}

.card-4 {
  left: 49.169922%;
  top: 13.069909%;
  width: 14.160156%;
  filter:
    drop-shadow(0 20px 34px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 18px rgba(42, 232, 110, 0.20));
}

.card-5 {
  left: 64.013672%;
  top: 13.069909%;
  width: 18.945313%;
}

.card-6 {
  left: 83.935547%;
  top: 13.069909%;
  width: 13.720703%;
}

@media (max-width: 900px) {
  .mockup-stage {
    width: 1000px;
    height: auto;
  }
  .solutions-section {
    overflow-x: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* --- End New Solucoes UI Styles --- */