:root {
  --navy-950: #061126;
  --navy-900: #0a1730;
  --navy-800: #122344;
  --navy-700: #1c3560;
  --blue-700: #155eef;
  --blue-600: #2878ff;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --violet-700: #6d3be8;
  --violet-600: #7c4dff;
  --violet-100: #ede9fe;
  --cyan-500: #06b6d4;
  --green-500: #16a36a;
  --green-100: #dcfce7;
  --orange-500: #f59e0b;
  --slate-900: #172033;
  --slate-700: #3d4b63;
  --slate-600: #5d6b82;
  --slate-500: #748197;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(15, 35, 68, 0.07);
  --shadow-md: 0 22px 70px rgba(15, 35, 68, 0.12);
  --shadow-blue: 0 20px 46px rgba(40, 120, 255, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--slate-700);
  background: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(40, 120, 255, 0.45);
  outline-offset: 3px;
}

.section-space {
  padding: 112px 0;
}

.section-space-sm {
  padding: 86px 0;
}

.section-soft {
  background: var(--slate-50);
}

.section-tint {
  background:
    radial-gradient(circle at 8% 15%, rgba(40, 120, 255, 0.08), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(124, 77, 255, 0.08), transparent 30%),
    #f7f9fd;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 15% 10%, rgba(40, 120, 255, 0.2), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(124, 77, 255, 0.18), transparent 30%),
    var(--navy-950);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  content: "";
  background: linear-gradient(135deg, var(--blue-600), var(--violet-600));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(40, 120, 255, 0.1);
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: #b9d5ff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3.4rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(100deg, #75b4ff 4%, #a985ff 58%, #7ee8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand:hover {
  color: var(--navy-950);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--violet-600));
  border-radius: 12px;
  box-shadow: 0 9px 22px rgba(40, 120, 255, 0.23);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  transform: rotate(-35deg);
}

.brand-mark::before {
  width: 7px;
  height: 25px;
  left: 12px;
}

.brand-mark::after {
  width: 7px;
  height: 17px;
  right: 10px;
  bottom: 8px;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 1.08rem;
}

.brand-name small {
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(203, 213, 225, 0.62);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(15, 35, 68, 0.08);
}

.site-header .navbar {
  min-height: var(--header-height);
}

.site-header .navbar-nav {
  gap: 0.2rem;
}

.site-header .nav-link {
  position: relative;
  padding: 0.65rem 0.78rem !important;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-header .nav-link::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.32rem;
  left: 0.78rem;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--violet-600));
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--blue-700);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--navy-950);
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  box-shadow: none !important;
}

.navbar-toggler-icon-custom {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    top 0.2s ease;
}

.navbar-toggler-icon-custom::before {
  top: -6px;
}

.navbar-toggler-icon-custom::after {
  top: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.8rem 1.2rem;
  border-radius: 13px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(110deg, var(--blue-700), var(--blue-600) 55%, var(--violet-600));
  border: 0;
  box-shadow: 0 12px 26px rgba(40, 120, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--white);
  background: linear-gradient(110deg, #104fd1, #1d69eb 55%, #6d3be8);
  box-shadow: var(--shadow-blue);
}

.btn-outline-brand {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--slate-300);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--blue-700);
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
}

.btn-light-brand {
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
}

.btn-light-brand:hover {
  color: var(--blue-700);
  background: #f8fbff;
}

.btn-link-brand {
  min-height: auto;
  padding: 0.2rem 0;
  color: var(--blue-700);
  border: 0;
  border-radius: 0;
}

.btn-link-brand:hover {
  color: var(--violet-700);
}

.hero {
  position: relative;
  min-height: 850px;
  padding: calc(var(--header-height) + 82px) 0 94px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 15% 18%, rgba(40, 120, 255, 0.26), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(124, 77, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #061126 0%, #0b1a37 56%, #111841 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 60% 45%, black, transparent 77%);
}

.hero::after {
  position: absolute;
  right: -240px;
  bottom: -390px;
  width: 720px;
  height: 720px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.018),
    0 0 0 200px rgba(255, 255, 255, 0.014);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.65rem, 5.4vw, 5.05rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero .btn-outline-brand {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn-outline-brand:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-trust i {
  color: #77e4bc;
}

.dashboard-scene {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  perspective: 1300px;
}

.dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 72%;
  background: rgba(40, 120, 255, 0.25);
  border-radius: 50%;
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.dashboard {
  position: relative;
  z-index: 2;
  width: min(690px, 108%);
  margin-left: -1%;
  overflow: hidden;
  color: var(--slate-700);
  background: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 23px;
  box-shadow:
    0 45px 95px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.65);
  transform: rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}

.dashboard-topbar {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 8px;
  height: 8px;
  background: var(--slate-300);
  border-radius: 50%;
}

.dashboard-dots span:first-child {
  background: #ff6b6b;
}

.dashboard-dots span:nth-child(2) {
  background: #fbbf24;
}

.dashboard-dots span:nth-child(3) {
  background: #34d399;
}

.dashboard-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-500);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-preview-label::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--blue-100);
}

.dashboard-body {
  display: grid;
  min-height: 420px;
  grid-template-columns: 116px 1fr;
}

.dashboard-sidebar {
  padding: 18px 12px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--navy-900);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
}

.mini-brand span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--violet-600));
  border-radius: 7px;
  font-size: 0.55rem;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 0.54rem;
  font-weight: 700;
}

.dashboard-nav-item.active {
  color: var(--white);
  background: rgba(40, 120, 255, 0.28);
}

.dashboard-nav-icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  background: currentColor;
  border-radius: 3px;
  opacity: 0.7;
}

.dashboard-content {
  min-width: 0;
  padding: 20px;
}

.dashboard-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-heading-row h2 {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.dashboard-period {
  padding: 5px 8px;
  color: var(--slate-500);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 7px;
  font-size: 0.47rem;
  font-weight: 700;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 11px;
}

.dashboard-metric {
  min-width: 0;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(15, 35, 68, 0.04);
}

.dashboard-metric span {
  display: block;
  overflow: hidden;
  color: var(--slate-500);
  font-size: 0.46rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-metric strong {
  display: block;
  margin: 3px 0 2px;
  color: var(--navy-950);
  font-size: 0.84rem;
  letter-spacing: -0.03em;
}

.dashboard-metric small {
  display: block;
  color: var(--green-500);
  font-size: 0.43rem;
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(120px, 0.85fr);
  gap: 11px;
}

.dashboard-panel {
  min-width: 0;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 11px;
}

.dashboard-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 0.56rem;
  font-weight: 800;
}

.dashboard-panel-title small {
  color: var(--slate-500);
  font-size: 0.42rem;
}

.chart-area {
  position: relative;
  height: 125px;
  overflow: hidden;
  background:
    linear-gradient(var(--slate-100) 1px, transparent 1px);
  background-size: 100% 31px;
  border-bottom: 1px solid var(--slate-200);
}

.chart-area svg {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: calc(100% - 10px);
}

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

.progress-item {
  display: grid;
  gap: 4px;
}

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--slate-600);
  font-size: 0.46rem;
  font-weight: 700;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  background: var(--slate-100);
  border-radius: 99px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--violet-600));
  border-radius: inherit;
}

.dashboard-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 184px;
  padding: 13px 15px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.dashboard-float-card i {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 10px;
}

.dashboard-float-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.73rem;
}

.dashboard-float-card span {
  display: block;
  color: var(--slate-500);
  font-size: 0.58rem;
}

.dashboard-float-card.float-top {
  top: 28px;
  right: -14px;
}

.dashboard-float-card.float-bottom {
  bottom: 25px;
  left: -30px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--slate-600);
  font-size: 0.84rem;
  font-weight: 700;
}

.proof-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 11px;
}

.problem-card,
.solution-card,
.difference-card {
  position: relative;
  height: 100%;
  padding: 1.7rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgba(15, 35, 68, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.problem-card:hover,
.solution-card:hover,
.difference-card:hover {
  border-color: rgba(40, 120, 255, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.35rem;
  place-items: center;
  color: var(--blue-700);
  background: linear-gradient(145deg, var(--blue-50), #f4f0ff);
  border: 1px solid rgba(40, 120, 255, 0.12);
  border-radius: 15px;
  font-size: 1.3rem;
}

.problem-card h3,
.solution-card h3,
.difference-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.problem-card p,
.solution-card p,
.difference-card p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.91rem;
}

.problem-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--violet-600));
  border-radius: 0 0 0 10px;
}

.insight-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.2rem;
  padding: 1.35rem 1.5rem;
  color: var(--navy-800);
  background: linear-gradient(110deg, var(--blue-50), #f5f1ff);
  border: 1px solid rgba(40, 120, 255, 0.15);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.insight-box i {
  color: var(--blue-600);
  font-size: 1.25rem;
}

.solution-card {
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
}

.solution-card .card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 13px;
  font-size: 1.15rem;
}

.solution-card p {
  flex-grow: 1;
}

.solution-number {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  color: var(--slate-300);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.custom-solution-banner {
  position: relative;
  display: grid;
  margin-top: 2rem;
  padding: 2.2rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(120deg, var(--navy-950), #112b57 55%, #2b1d61);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.custom-solution-banner::after {
  position: absolute;
  top: -95px;
  right: 12%;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(124, 77, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
}

.custom-solution-banner > * {
  position: relative;
  z-index: 1;
}

.custom-solution-banner h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.custom-solution-banner h2 {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.custom-solution-banner p {
  max-width: 750px;
  margin: 0;
}

.process-grid {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid::before {
  position: absolute;
  top: 35px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--violet-600));
  opacity: 0.3;
}

.process-grid-detailed {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-number {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 1.25rem;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--violet-600));
  border: 8px solid #f7f9fd;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(40, 120, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
}

.process-step p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.78rem;
  line-height: 1.6;
}

.process-highlight {
  display: grid;
  margin-top: 3rem;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-md);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.35rem;
}

.process-highlight-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--violet-600));
  border-radius: 17px;
  font-size: 1.4rem;
}

.process-highlight strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: 1.04rem;
}

.phases-shell {
  position: relative;
  padding: 1rem 0;
}

.phase-row {
  position: relative;
  display: grid;
  padding-bottom: 2rem;
  grid-template-columns: 116px 1fr;
  gap: 1.5rem;
}

.phase-row:last-child {
  padding-bottom: 0;
}

.phase-row::before {
  position: absolute;
  top: 61px;
  bottom: -1px;
  left: 57px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--blue-600), rgba(124, 77, 255, 0.16));
}

.phase-row:last-child::before {
  display: none;
}

.phase-label {
  position: relative;
  z-index: 1;
  display: grid;
  width: 116px;
  height: 58px;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-content {
  padding: 1.25rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
}

.phase-content h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.phase-content p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.phase-note {
  padding: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(124, 77, 255, 0.34), transparent 34%),
    var(--navy-950);
  border-radius: var(--radius-lg);
}

.phase-note .mini-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: #9fc5ff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase-note h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.phase-note p {
  color: rgba(255, 255, 255, 0.7);
}

.phase-note-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.phase-note-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.phase-note-list i {
  color: #78e0ba;
}

.data-visual {
  position: relative;
  min-height: 470px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(124, 77, 255, 0.17), transparent 32%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.data-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  border-radius: inherit;
}

.data-window {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.data-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.data-window-head strong {
  color: var(--white);
  font-size: 0.92rem;
}

.data-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b8d2ff;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.data-live::before {
  width: 7px;
  height: 7px;
  content: "";
  background: #62dcad;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(98, 220, 173, 0.1);
}

.data-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.data-kpi {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.data-kpi span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

.data-kpi strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--white);
  font-size: 1.25rem;
}

.data-main-chart {
  position: relative;
  height: 220px;
  margin-top: 0.9rem;
  padding: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.data-main-chart .chart-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.data-main-chart svg {
  position: absolute;
  right: 0.85rem;
  bottom: 1rem;
  left: 0.85rem;
  width: calc(100% - 1.7rem);
  height: 160px;
}

.feature-checks {
  display: grid;
  margin: 1.8rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  list-style: none;
}

.feature-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-checks i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: var(--green-500);
  background: var(--green-100);
  border-radius: 50%;
  font-size: 0.7rem;
}

.saas-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 15% 10%, rgba(40, 120, 255, 0.24), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(124, 77, 255, 0.27), transparent 34%),
    var(--navy-950);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.saas-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(120deg, black, transparent 75%);
}

.saas-panel > * {
  position: relative;
  z-index: 1;
}

.saas-panel h2,
.saas-panel h3 {
  color: var(--white);
}

.saas-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
}

.saas-list li {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  padding: 0.8rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.saas-list i {
  color: #77e4bc;
}

.saas-quote {
  padding: 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  font-size: 1.04rem;
  font-weight: 700;
}

.saas-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.75rem;
}

.benefit-card {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.05rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(15, 35, 68, 0.04);
}

.benefit-card i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 9px;
}

.benefit-card span {
  padding-top: 0.15rem;
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 700;
}

.difference-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.difference-card:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(117, 180, 255, 0.4);
  box-shadow: none;
}

.difference-card .card-icon {
  color: #b9d5ff;
  background: rgba(117, 180, 255, 0.1);
  border-color: rgba(117, 180, 255, 0.17);
}

.difference-card h3 {
  color: var(--white);
}

.difference-card p {
  color: rgba(255, 255, 255, 0.64);
}

.audience-panel {
  padding: clamp(1.7rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.audience-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.5rem;
  list-style: none;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--slate-700);
  font-size: 0.91rem;
  font-weight: 700;
}

.audience-list i {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 50%;
  font-size: 0.65rem;
}

.segment-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.segment-cloud span {
  padding: 0.58rem 0.8rem;
  color: var(--navy-700);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.about-visual {
  position: relative;
  min-height: 510px;
}

.about-main-card {
  position: absolute;
  inset: 30px 30px 40px 0;
  padding: 2rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 80% 18%, rgba(124, 77, 255, 0.36), transparent 34%),
    linear-gradient(145deg, var(--navy-950), #102b55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-main-card::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.025),
    0 0 0 110px rgba(255, 255, 255, 0.018);
}

.about-main-card .brand {
  margin-bottom: 3.7rem;
  color: var(--white);
}

.about-main-card .brand:hover {
  color: var(--white);
}

.about-main-card .brand-name small {
  color: #9ec3ff;
}

.about-main-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.about-floating {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 260px;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.about-floating i {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--violet-700);
  background: var(--violet-100);
  border-radius: 13px;
  font-size: 1.1rem;
}

.about-floating strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-950);
  font-size: 0.95rem;
}

.about-floating span {
  color: var(--slate-600);
  font-size: 0.78rem;
  line-height: 1.55;
}

.about-pillars {
  display: grid;
  margin-top: 1.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  color: var(--navy-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-pillar i {
  color: var(--blue-600);
}

.identity-panel {
  position: relative;
  margin-top: 4rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 77, 255, 0.32), transparent 30%),
    radial-gradient(circle at 8% 85%, rgba(40, 120, 255, 0.2), transparent 28%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.identity-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(120deg, black, transparent 78%);
}

.identity-panel > * {
  position: relative;
  z-index: 1;
}

.identity-panel .eyebrow {
  color: #c5dbff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.identity-heading {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.identity-heading h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.identity-card {
  display: flex;
  min-width: 0;
  gap: 0.9rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
}

.identity-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: #b9d5ff;
  background: rgba(117, 180, 255, 0.11);
  border-radius: 12px;
}

.identity-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 0.92rem;
}

.identity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.6;
}

.identity-values {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.identity-values > strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.82rem;
}

.identity-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.identity-values li {
  padding: 0.5rem 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.faq-accordion .accordion-item {
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px !important;
}

.faq-accordion .accordion-button {
  padding: 1.15rem 1.25rem;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: none;
  font-size: 0.94rem;
  font-weight: 800;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--blue-700);
  background: var(--blue-50);
}

.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 3px rgba(40, 120, 255, 0.17);
}

.faq-accordion .accordion-body {
  padding: 0.25rem 1.25rem 1.25rem;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(40, 120, 255, 0.11), transparent 30%),
    radial-gradient(circle at 94% 88%, rgba(124, 77, 255, 0.1), transparent 30%),
    #f7f9fd;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.contact-card > p {
  margin-bottom: 1.7rem;
  color: var(--slate-600);
}

.form-label {
  margin-bottom: 0.45rem;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 800;
}

.required-mark {
  color: #d92d20;
}

.form-control,
.form-select {
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  color: var(--navy-900);
  background-color: #fbfcfe;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  font-size: 0.88rem;
}

textarea.form-control {
  min-height: 118px;
  resize: vertical;
}

.form-control::placeholder {
  color: #98a3b5;
}

.form-control:focus,
.form-select:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 0.24rem rgba(40, 120, 255, 0.12);
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-input:checked {
  background-color: var(--blue-600);
  border-color: var(--blue-600);
}

.form-check-label {
  color: var(--slate-600);
  font-size: 0.76rem;
}

.form-check-label a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.9rem;
  color: var(--slate-500);
  font-size: 0.72rem;
}

.form-note i {
  color: var(--green-500);
}

.contact-side {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 77, 255, 0.36), transparent 30%),
    linear-gradient(145deg, var(--navy-950), #102c59);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-side .eyebrow {
  color: #c7dbff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-side h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-side-list {
  display: grid;
  margin: 1.8rem 0 2rem;
  padding: 0;
  gap: 0.9rem;
  list-style: none;
}

.contact-side-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-side-list i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: #78e0ba;
  background: rgba(98, 220, 173, 0.11);
  border-radius: 9px;
}

.direct-contact {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.direct-contact span {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 800;
}

.direct-contact a:hover {
  color: #a9caff;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  background: linear-gradient(120deg, var(--blue-700), #405ee7 48%, var(--violet-700));
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.final-cta::before {
  top: -180px;
  left: -130px;
  width: 390px;
  height: 390px;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.025),
    0 0 0 120px rgba(255, 255, 255, 0.018);
}

.final-cta::after {
  right: -90px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 1.2rem;
  margin-left: auto;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.final-cta p {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 1.7rem;
  margin-left: auto;
  font-size: 1.04rem;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.3rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.58);
  background: #040c1c;
}

.footer-main {
  padding: 72px 0 50px;
}

.site-footer .brand {
  margin-bottom: 1.2rem;
  color: var(--white);
}

.site-footer .brand:hover {
  color: var(--white);
}

.site-footer .brand-name small {
  color: #93bbfa;
}

.footer-description {
  max-width: 390px;
  margin-bottom: 1.4rem;
  font-size: 0.86rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer h2 {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 0.87rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.62rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover {
  color: var(--white);
  background: rgba(40, 120, 255, 0.25);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #1fbf66;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(18, 140, 76, 0.3);
  font-size: 1.55rem;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(31, 191, 102, 0.45);
  border-radius: 50%;
  animation: pulse-ring 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #16a857;
  box-shadow: 0 18px 38px rgba(18, 140, 76, 0.4);
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  width: max-content;
  max-width: 210px;
  padding: 0.55rem 0.72rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.85);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.legal-page,
.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 4%, rgba(40, 120, 255, 0.09), transparent 25%),
    var(--slate-50);
}

.legal-hero {
  padding: calc(var(--header-height) + 70px) 0 55px;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 77, 255, 0.23), transparent 30%),
    var(--navy-950);
}

.legal-hero h1 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-content section {
  margin-bottom: 2rem;
  padding: 1.7rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.legal-content p,
.legal-content li {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 20% 10%, rgba(40, 120, 255, 0.28), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(124, 77, 255, 0.27), transparent 32%),
    var(--navy-950);
}

.error-card {
  width: min(760px, 100%);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 0.4rem;
  color: transparent;
  background: linear-gradient(100deg, #75b4ff, #a985ff);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.error-card h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.error-card p {
  max-width: 580px;
  margin: 0 auto 1.8rem;
}

.internal-page {
  min-height: 100vh;
  background: var(--white);
}

.internal-hero {
  position: relative;
  padding: calc(var(--header-height) + 92px) 0 88px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 15% 14%, rgba(40, 120, 255, 0.27), transparent 28%),
    radial-gradient(circle at 88% 75%, rgba(124, 77, 255, 0.26), transparent 34%),
    var(--navy-950);
}

.internal-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 55% 30%, black, transparent 78%);
}

.internal-hero .container {
  position: relative;
  z-index: 1;
}

.internal-hero .eyebrow {
  color: #bdd7ff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.internal-hero h1 {
  max-width: 900px;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 5rem);
}

.internal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.internal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.internal-hero .btn-outline-brand {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

.internal-hero .btn-outline-brand:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.4);
}

.internal-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.detail-summary {
  padding: 1.5rem;
  color: var(--navy-800);
  background: linear-gradient(115deg, var(--blue-50), #f6f2ff);
  border: 1px solid rgba(40, 120, 255, 0.15);
  border-radius: var(--radius-md);
}

.detail-summary h2,
.detail-summary h3 {
  margin-bottom: 0.7rem;
}

.detail-summary p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.detail-list {
  display: grid;
  margin: 1.4rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  list-style: none;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--slate-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.detail-list i {
  color: var(--blue-600);
}

@media (max-width: 1199.98px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 2.2rem;
  }

  .process-grid-detailed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .dashboard {
    width: 105%;
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 74px;
  }

  .section-space {
    padding: 88px 0;
  }

  .site-header .navbar {
    min-height: var(--header-height);
  }

  .navbar-collapse {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 1rem 1.2rem 1.3rem;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 18px 40px rgba(15, 35, 68, 0.12);
  }

  .site-header .navbar-nav {
    gap: 0.2rem;
  }

  .site-header .nav-link {
    padding: 0.78rem 0.25rem !important;
  }

  .site-header .nav-link::after {
    right: auto;
    bottom: 0.45rem;
    left: 0.25rem;
    width: 28px;
  }

  .site-header .navbar-cta {
    width: 100%;
    margin-top: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 65px);
  }

  .hero-copy {
    max-width: 780px;
  }

  .dashboard-scene {
    min-height: 550px;
    margin-top: 2.5rem;
  }

  .dashboard {
    width: 94%;
    margin: auto;
    transform: none;
  }

  .dashboard-float-card.float-top {
    right: 0;
  }

  .dashboard-float-card.float-bottom {
    left: 0;
  }

  .proof-item {
    justify-content: flex-start;
  }

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

  .data-visual {
    margin-bottom: 2.5rem;
  }

  .about-visual {
    margin-bottom: 3rem;
  }

  .identity-grid {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 74px 0;
  }

  .section-space-sm {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .brand-name small {
    display: none;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .dashboard-scene {
    min-height: 410px;
  }

  .dashboard {
    width: 100%;
    border-radius: 18px;
  }

  .dashboard-body {
    min-height: 310px;
    grid-template-columns: 78px 1fr;
  }

  .dashboard-sidebar {
    padding: 13px 8px;
  }

  .mini-brand {
    margin-bottom: 17px;
    font-size: 0;
  }

  .dashboard-nav-item {
    gap: 4px;
    padding: 6px;
    font-size: 0;
  }

  .dashboard-nav-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .dashboard-content {
    padding: 12px;
  }

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

  .dashboard-metric:nth-child(n + 3) {
    display: none;
  }

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

  .dashboard-panel:last-child {
    display: none;
  }

  .chart-area {
    height: 105px;
  }

  .dashboard-float-card {
    display: none;
  }

  .proof-strip {
    padding: 20px 0;
  }

  .custom-solution-banner {
    padding: 1.7rem;
    grid-template-columns: 1fr;
  }

  .custom-solution-banner .btn {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-grid-detailed {
    grid-template-columns: 1fr;
  }

  .process-step {
    display: grid;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
  }

  .process-number {
    width: 48px;
    height: 48px;
    margin: 0;
    border-width: 4px;
    grid-row: span 2;
  }

  .process-step h3 {
    margin-top: 0.15rem;
  }

  .process-highlight {
    padding: 1.4rem;
    grid-template-columns: 1fr;
  }

  .phase-row {
    padding-bottom: 1rem;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .phase-row::before {
    display: none;
  }

  .phase-label {
    width: max-content;
    height: auto;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
  }

  .feature-checks,
  .audience-list,
  .saas-list {
    grid-template-columns: 1fr;
  }

  .data-visual {
    min-height: 390px;
    padding: 0.8rem;
  }

  .data-window {
    padding: 1rem;
  }

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

  .data-kpi:last-child {
    display: none;
  }

  .data-main-chart {
    height: 195px;
  }

  .saas-panel {
    border-radius: var(--radius-lg);
  }

  .about-visual {
    min-height: 470px;
  }

  .about-main-card {
    inset: 0 0 70px;
  }

  .about-main-card .brand {
    margin-bottom: 2.5rem;
  }

  .about-floating {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .identity-panel {
    margin-top: 3rem;
  }

  .identity-card {
    padding: 1rem;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 58px 0 40px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 0.7rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 399.98px) {
  .brand-name {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

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

  .dashboard-scene {
    min-height: 380px;
  }

  .dashboard-body {
    grid-template-columns: 58px 1fr;
  }

  .dashboard-topbar {
    padding: 0 10px;
  }

  .dashboard-preview-label {
    font-size: 0.53rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
