@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --navy-950: #03101e;
  --navy-900: #06192c;
  --navy-850: #082139;
  --navy-800: #0b2945;
  --navy-700: #103757;
  --cyan-500: #21d4fd;
  --cyan-400: #50ddff;
  --cyan-300: #81e8ff;
  --blue-500: #2888ff;
  --white: #ffffff;
  --text-primary: #f5fbff;
  --text-secondary: #a9bfd0;
  --text-dark: #071a2d;
  --border: rgba(153, 208, 236, 0.18);
  --glass: rgba(8, 33, 57, 0.68);
  --glass-light: rgba(255, 255, 255, 0.055);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.34);
  --shadow-cyan: 0 20px 70px rgba(33, 212, 253, 0.17);
  --container: 1480px;
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.page-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 73% 12%,
      rgba(24, 142, 201, 0.18),
      transparent 33%
    ),
    linear-gradient(
      135deg,
      var(--navy-950),
      var(--navy-900) 48%,
      #092944
    );
}

.background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(
      rgba(120, 204, 238, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(120, 204, 238, 0.06) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 75%
    );
}

.background-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.3;
}

.background-orb-one {
  top: 7%;
  right: 8%;
  width: 400px;
  height: 400px;
  background: var(--cyan-500);
}

.background-orb-two {
  bottom: 2%;
  left: -7%;
  width: 360px;
  height: 360px;
  background: var(--blue-500);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(3, 16, 30, 0.82);
  backdrop-filter: blur(22px);
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 175px;
}

.brand-logo {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  margin-right: 38px;
}

.desktop-navigation a {
  position: relative;
  color: #dcecf7;
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 10px;
  background: var(--cyan-500);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-navigation a:hover {
  color: var(--white);
}

.desktop-navigation a:hover::after {
  transform: scaleX(1);
}

.navigation-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #03101e;
  background:
    linear-gradient(
      135deg,
      var(--cyan-300),
      var(--cyan-500)
    );
  box-shadow:
    0 13px 34px rgba(33, 212, 253, 0.23);
}

.button-primary:hover {
  box-shadow:
    0 18px 42px rgba(33, 212, 253, 0.32);
}

.button-secondary {
  border-color: rgba(192, 231, 249, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(80, 221, 255, 0.5);
  background: rgba(80, 221, 255, 0.08);
}

.button-ghost {
  border-color: rgba(192, 231, 249, 0.26);
  color: var(--white);
  background: transparent;
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
  border-radius: 15px;
}

.mobile-menu-button,
.mobile-navigation {
  display: none;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: calc(var(--header-height) + 84px) 0 40px;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.91fr)
    minmax(600px, 1.09fr);
  align-items: center;
  gap: 80px;
}

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

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(80, 221, 255, 0.18);
  border-radius: 999px;
  background: rgba(80, 221, 255, 0.07);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 14px var(--cyan-500);
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(56px, 5.7vw, 94px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-content h1 span {
  display: block;
  margin-top: 10px;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #77e7ff,
      #20d4fd 55%,
      #4d9cff
    );
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 29px;
  color: #c4d7e5;
  font-size: 14px;
  font-weight: 600;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--cyan-500);
  font-size: 12px;
  font-weight: 900;
}

.hero-statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 660px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-statistic {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-statistic + .hero-statistic {
  padding-left: 25px;
  border-left: 1px solid var(--border);
}

.hero-statistic strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

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

.hero-dashboard-wrapper {
  position: relative;
  min-width: 0;
}

.dashboard-glow {
  position: absolute;
  inset: 10% 5% 0;
  border-radius: 40%;
  background: rgba(33, 212, 253, 0.22);
  filter: blur(85px);
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 221, 248, 0.2);
  border-radius: 25px;
  background:
    linear-gradient(
      145deg,
      rgba(15, 51, 78, 0.96),
      rgba(5, 24, 43, 0.97)
    );
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  transform: perspective(1700px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 21px;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 15, 28, 0.34);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-brand-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-950);
  background:
    linear-gradient(
      135deg,
      var(--cyan-300),
      var(--cyan-500)
    );
  font-family: "Manrope", sans-serif;
  font-weight: 900;
}

.dashboard-brand div:last-child {
  display: flex;
  flex-direction: column;
}

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

.dashboard-brand span {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 10px;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(76, 255, 176, 0.19);
  border-radius: 999px;
  color: #75ffc3;
  background: rgba(48, 232, 153, 0.07);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.live-status span,
.connected-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4cffae;
  box-shadow: 0 0 12px #4cffae;
}

.dashboard-body {
  padding: 24px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-label {
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dashboard-heading h2 {
  margin: 5px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.date-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #d9e8f2;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 21px;
}

.metric-card,
.chart-card,
.activity-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
}

.metric-card {
  padding: 15px;
  border-radius: 13px;
}

.metric-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
}

.metric-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: var(--cyan-400);
  background: rgba(33, 212, 253, 0.1);
  font-weight: 800;
}

.metric-card > strong {
  display: block;
  margin-top: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.metric-growth {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 8px;
}

.metric-growth span {
  margin-right: 4px;
  color: #5cf6b1;
  font-weight: 700;
}

.dashboard-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(210px, 0.8fr);
  gap: 12px;
  margin-top: 12px;
}

.chart-card,
.activity-card {
  min-width: 0;
  padding: 16px;
  border-radius: 14px;
}

.card-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.card-heading-row h3 {
  margin: 3px 0 0;
  font-size: 12px;
}

.chart-period,
.connected-indicator {
  color: var(--text-secondary);
  font-size: 8px;
}

.connected-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.connected-indicator span {
  width: 5px;
  height: 5px;
}

.chart-area {
  position: relative;
  height: 190px;
  margin-top: 13px;
}

.chart-horizontal-lines {
  position: absolute;
  inset: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-horizontal-lines span {
  width: 100%;
  border-top: 1px dashed rgba(157, 213, 235, 0.1);
}

.revenue-chart {
  position: absolute;
  inset: 0 0 20px;
  width: 100%;
  height: calc(100% - 20px);
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: var(--cyan-500);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 9px rgba(33, 212, 253, 0.65));
}

.chart-fill {
  fill: url("#chartFill");
}

.chart-days {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #7690a4;
  font-size: 7px;
  text-transform: uppercase;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 17px;
}

.activity-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.activity-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--cyan-300);
  background: rgba(33, 212, 253, 0.1);
  font-size: 9px;
  font-weight: 800;
}

.activity-item > div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.activity-item strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-item span {
  overflow: hidden;
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 13px;
  border: 1px solid rgba(171, 226, 249, 0.21);
  border-radius: 14px;
  background: rgba(8, 33, 57, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.floating-card-one {
  top: -32px;
  right: 36px;
}

.floating-card-two {
  right: -30px;
  bottom: -26px;
}

.floating-card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--navy-950);
  background:
    linear-gradient(
      135deg,
      var(--cyan-300),
      var(--cyan-500)
    );
  font-weight: 900;
}

.floating-card > div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 10px;
}

.floating-card span:last-child {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 8px;
}

.industry-strip {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.industry-strip span {
  padding: 8px 13px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 999px;
  color: #9eb6c8;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 600;
}

.preview-section {
  min-height: 72vh;
  padding: 140px 0;
  color: var(--text-dark);
  background: #f5f9fc;
}

.section-introduction {
  max-width: 860px;
  text-align: center;
}

.section-introduction .section-eyebrow {
  margin-bottom: 16px;
  color: #0099c5;
}

.section-introduction h2 {
  margin: 0;
  color: #071a2d;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.7vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-introduction p {
  max-width: 700px;
  margin: 25px auto 0;
  color: #5d7282;
  font-size: 18px;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

@media (max-width: 1320px) {
  .hero-layout {
    grid-template-columns:
      minmax(0, 0.94fr)
      minmax(540px, 1.06fr);
    gap: 50px;
  }

  .hero-content h1 {
    font-size: clamp(54px, 5.6vw, 78px);
  }

  .floating-card-two {
    right: -10px;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .desktop-navigation,
  .desktop-login,
  .desktop-application {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-navigation {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: flex;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    flex-direction: column;
    gap: 5px;
    background: rgba(3, 16, 30, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(25px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-navigation a {
    padding: 13px 14px;
    border-radius: 10px;
    color: #dceaf4;
    font-weight: 700;
  }

  .mobile-navigation a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-navigation .mobile-cta {
    margin-top: 7px;
    color: var(--navy-950);
    text-align: center;
    background: var(--cyan-500);
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 100px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .hero-content {
    max-width: 800px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-content h1,
  .hero-description {
    margin-inline: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-trust-row {
    justify-content: center;
  }

  .hero-statistics {
    margin-inline: auto;
    text-align: left;
  }

  .hero-dashboard-wrapper {
    width: min(850px, 100%);
    margin-inline: auto;
  }

  .dashboard-window {
    transform: none;
  }

  .industry-strip {
    position: static;
    margin-top: 80px;
  }
}

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

  .brand {
    width: 145px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero-content h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .hero-description {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust-row {
    gap: 11px 16px;
  }

  .hero-statistics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-statistic + .hero-statistic {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .dashboard-body {
    padding: 15px;
  }

  .dashboard-heading h2 {
    font-size: 17px;
  }

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

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

  .activity-card {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .dashboard-window {
    border-radius: 18px;
  }

  .dashboard-topbar {
    padding: 14px;
  }

  .dashboard-brand strong {
    font-size: 11px;
  }

  .chart-area {
    height: 180px;
  }

  .industry-strip {
    margin-top: 55px;
  }

  .preview-section {
    padding: 100px 0;
  }

  .section-introduction p {
    font-size: 16px;
  }
}

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

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

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


/* =========================================================
   ABOTRIX PUBLIC V14 — PERFORMANCE AND LAYOUT IMPROVEMENTS
   ========================================================= */

:root {
  --header-height: 84px;
}

.site-header {
  height: var(--header-height);
  background: rgba(3, 16, 30, 0.92);
  border-bottom: 1px solid rgba(153, 208, 236, 0.14);
  backdrop-filter: none;
}

.site-header.scrolled {
  background: rgba(3, 16, 30, 0.97);
  backdrop-filter: none;
}

.hero-section {
  min-height: auto;
  padding:
    calc(var(--header-height) + 76px)
    0
    92px;
  align-items: flex-start;
}

.hero-layout {
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(560px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(54px, 5.2vw, 86px);
  line-height: 1;
}

.hero-description {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-statistics {
  margin-top: 38px;
}

.hero-dashboard-wrapper {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
}

.dashboard-window {
  transform: none;
  border-radius: 22px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}

.dashboard-glow {
  inset: 15% 10%;
  filter: blur(55px);
  opacity: 0.45;
}

.page-background {
  position: absolute;
}

.background-orb {
  filter: blur(65px);
  opacity: 0.2;
}

.floating-card {
  backdrop-filter: none;
  background: rgba(8, 33, 57, 0.97);
}

.floating-card-one {
  top: -26px;
  right: 24px;
}

.floating-card-two {
  right: -10px;
  bottom: -24px;
}

.industry-trust-section {
  position: relative;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(153, 208, 236, 0.12);
  border-bottom: 1px solid rgba(153, 208, 236, 0.12);
  background: #06192c;
}

.industry-trust-heading {
  margin-bottom: 20px;
  color: #8fa9bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.industry-strip {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.industry-strip span {
  padding: 9px 15px;
  border-color: rgba(154, 221, 248, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.preview-section {
  min-height: auto;
  padding: 115px 0;
}

.reveal {
  will-change: transform, opacity;
}

.reveal.revealed {
  will-change: auto;
}

@media (max-width: 1320px) {
  .hero-layout {
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(510px, 1.05fr);
    gap: 42px;
  }

  .hero-dashboard-wrapper {
    max-width: 760px;
  }

  .hero-content h1 {
    font-size: clamp(52px, 5vw, 76px);
  }
}

@media (max-width: 1120px) {
  .hero-section {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-dashboard-wrapper {
    max-width: 850px;
    margin-inline: auto;
  }

  .industry-trust-section {
    padding: 32px 0;
  }
}

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

  .hero-section {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 64px;
  }

  .hero-content h1 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .industry-trust-heading {
    padding-inline: 20px;
    line-height: 1.5;
  }

  .industry-strip {
    gap: 8px;
  }

  .industry-strip span {
    padding: 8px 11px;
    font-size: 10px;
  }
}

/* Firefox optimization */
@supports (-moz-appearance: none) {
  .button-secondary,
  .mobile-navigation,
  .floating-card {
    backdrop-filter: none;
  }

  .dashboard-window {
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.25);
  }

  .background-orb {
    display: none;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V14.1
   Alignment and dashboard notification correction
   ========================================================= */

/* Keep navigation buttons on the same line and same height */
.navigation-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.navigation-actions .button {
  min-height: 54px;
  padding: 0 27px;
  line-height: 1;
  white-space: nowrap;
}

.desktop-login,
.desktop-application {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Keep main hero buttons equal in height */
.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.hero-actions .button {
  min-height: 60px;
  padding: 0 30px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-actions .button-primary,
.hero-actions .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Dashboard and notification cards */
.hero-dashboard-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.dashboard-glow {
  grid-column: 1 / -1;
}

.dashboard-window {
  grid-column: 1 / -1;
  width: 100%;
}

/* Remove floating and overlapping behavior */
.floating-card {
  position: static;
  z-index: 2;
  width: 100%;
  min-width: 0;
  min-height: 74px;
  margin: 0;
  padding: 15px 17px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  transform: none;
  background: rgba(8, 33, 57, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.floating-card-one,
.floating-card-two {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.floating-card > div {
  min-width: 0;
}

.floating-card strong {
  display: block;
  overflow: hidden;
  color: #f5fbff;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-card span:last-child {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: #a9bfd0;
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

/* Prevent dashboard content from escaping its cards */
.dashboard-window,
.metric-card,
.chart-card,
.activity-card {
  min-width: 0;
}

.metric-card strong,
.metric-card span,
.activity-item strong,
.activity-item span {
  max-width: 100%;
}

/* Better alignment of KPI cards */
.metric-grid {
  align-items: stretch;
}

.metric-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
}

/* Align chart and recent activity panels */
.dashboard-main-grid {
  align-items: stretch;
}

.chart-card,
.activity-card {
  height: 100%;
}

/* Tablet */
@media (max-width: 1120px) {
  .hero-dashboard-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 720px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-dashboard-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dashboard-window,
  .dashboard-glow {
    grid-column: 1;
  }

  .floating-card {
    display: flex;
    min-height: 68px;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V15 — PLATFORM OVERVIEW
   ========================================================= */

.platform-section {
  position: relative;
  padding: 130px 0 110px;
  color: #071a2d;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(33, 212, 253, 0.09),
      transparent 28%
    ),
    #f5f9fc;
}

.platform-introduction {
  margin-inline: auto;
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 72px;
}

.platform-feature-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 30px;
  border: 1px solid #dbe8ef;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 44px rgba(33, 65, 87, 0.07);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.platform-feature-card:hover {
  border-color: rgba(0, 166, 216, 0.3);
  box-shadow:
    0 26px 60px rgba(33, 65, 87, 0.11);
  transform: translateY(-5px);
}

.platform-feature-large {
  grid-column: span 2;
  grid-row: span 2;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(33, 212, 253, 0.15),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #092944,
      #06192c
    );
  border-color: rgba(119, 210, 245, 0.18);
}

.feature-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  color: #007fa8;
  background: #e8f8fc;
  font-size: 12px;
  font-weight: 900;
}

.platform-feature-large .feature-icon {
  color: #03101e;
  background:
    linear-gradient(
      135deg,
      #81e8ff,
      #21d4fd
    );
}

.feature-label {
  color: #0098c2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.platform-feature-large .feature-label {
  color: #50ddff;
}

.feature-card-heading h3 {
  margin: 4px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.platform-feature-card > p {
  margin: 21px 0 0;
  color: #647989;
  font-size: 15px;
  line-height: 1.7;
}

.platform-feature-large > p {
  max-width: 720px;
  color: #a9bfd0;
}

.command-center-preview {
  overflow: hidden;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(149, 217, 244, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.command-center-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.command-center-toolbar > div {
  display: flex;
  flex-direction: column;
}

.command-center-toolbar span {
  color: #91aabe;
  font-size: 10px;
}

.command-center-toolbar strong {
  margin-top: 3px;
  font-size: 15px;
}

.command-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(68, 245, 174, 0.17);
  border-radius: 999px;
  color: #68f8b7 !important;
  background: rgba(68, 245, 174, 0.06);
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.command-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4cffae;
  box-shadow: 0 0 10px #4cffae;
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.command-metrics > div {
  display: flex;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(149, 217, 244, 0.13);
  border-radius: 13px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
}

.command-metrics span {
  color: #8fa8bb;
  font-size: 9px;
}

.command-metrics strong {
  margin-top: 6px;
  font-size: 20px;
}

.command-metrics small {
  margin-top: 5px;
  color: #63f5b5;
  font-size: 8px;
}

.command-chart {
  position: relative;
  height: 230px;
  margin-top: 18px;
}

.command-chart-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.command-chart-lines span {
  border-top: 1px dashed rgba(165, 217, 238, 0.09);
}

.command-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.platform-chart-line {
  fill: none;
  stroke: #21d4fd;
  stroke-width: 4;
  stroke-linecap: round;
}

.platform-chart-fill {
  fill: url("#platformChartFill");
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.module-list span {
  padding: 9px 12px;
  border: 1px solid #d9e9f0;
  border-radius: 999px;
  color: #285168;
  background: #f5fbfd;
  font-size: 11px;
  font-weight: 700;
}

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 23px;
}

.branch-list > div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid #e1ebf0;
  border-radius: 12px;
  background: #f8fbfd;
}

.branch-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.branch-indicator.online {
  background: #20ce86;
  box-shadow: 0 0 9px rgba(32, 206, 134, 0.5);
}

.branch-list strong {
  font-size: 11px;
}

.branch-list small {
  color: #6b8494;
  font-size: 9px;
}

.analytics-bars {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 25px;
}

.analytics-bars > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.analytics-bars span {
  color: #4f6878;
  font-size: 10px;
  font-weight: 700;
}

.analytics-bars i {
  position: relative;
  display: block;
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: #e5eef3;
}

.analytics-bars i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #21d4fd,
      #2888ff
    );
}

.automation-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 26px;
}

.automation-flow span {
  flex: 1;
  padding: 12px 8px;
  border: 1px solid #dbe8ef;
  border-radius: 11px;
  color: #24536c;
  background: #f5fbfd;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.automation-flow b {
  color: #0da9d3;
}

.deployment-options-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 25px;
}

.deployment-options-mini > div {
  display: flex;
  min-width: 0;
  padding: 14px 8px;
  border: 1px solid #dce9ef;
  border-radius: 12px;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  background: #f8fbfd;
  text-align: center;
}

.deployment-options-mini span {
  color: #00a6d7;
  font-size: 20px;
}

.deployment-options-mini strong {
  color: #315267;
  font-size: 9px;
}

.platform-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 30px;
  padding: 34px 38px;
  border-radius: 24px;
  color: #f5fbff;
  background:
    linear-gradient(
      135deg,
      #071e33,
      #0b3554
    );
  box-shadow:
    0 24px 55px rgba(17, 57, 82, 0.16);
}

.platform-summary > div {
  max-width: 760px;
}

.platform-summary-label {
  color: #50ddff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-summary h3 {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.platform-summary .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.industries-placeholder-section {
  padding: 125px 0;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(33, 212, 253, 0.13),
      transparent 28%
    ),
    #06192c;
}

.industries-placeholder-section .section-introduction {
  margin-inline: auto;
}

.industries-placeholder-section .section-introduction h2 {
  color: #f5fbff;
}

.industries-placeholder-section .section-introduction p {
  color: #a9bfd0;
}

@media (max-width: 1080px) {
  .platform-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-feature-large {
    grid-column: 1 / -1;
  }

  .platform-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .platform-section {
    padding: 90px 0 80px;
  }

  .platform-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .platform-feature-large {
    grid-column: auto;
    grid-row: auto;
  }

  .platform-feature-card {
    padding: 22px;
    border-radius: 19px;
  }

  .command-center-preview {
    padding: 14px;
  }

  .command-metrics {
    grid-template-columns: 1fr;
  }

  .command-chart {
    height: 170px;
  }

  .deployment-options-mini {
    grid-template-columns: 1fr;
  }

  .platform-summary {
    margin-top: 20px;
    padding: 27px 23px;
  }

  .platform-summary .button {
    width: 100%;
  }

  .industries-placeholder-section {
    padding: 90px 0;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V16 — INDUSTRY SOLUTIONS
   ========================================================= */

.industries-section {
  position: relative;
  padding: 130px 0 115px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(33, 212, 253, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 82%,
      rgba(40, 136, 255, 0.11),
      transparent 25%
    ),
    #06192c;
}

.industries-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.industries-introduction {
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.industries-introduction h2 {
  color: #f5fbff;
}

.industries-introduction p {
  margin-left: 0;
  color: #a9bfd0;
}

.industry-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 8px;
}

.industry-filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(154, 221, 248, 0.16);
  border-radius: 999px;
  color: #9fb7c8;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.industry-filter-button:hover,
.industry-filter-button.active {
  border-color: rgba(80, 221, 255, 0.5);
  color: #03101e;
  background: #50ddff;
}

.industry-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 70px;
}

.industry-solution-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 510px;
  padding: 28px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 23px;
  flex-direction: column;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    );
  transition:
    opacity 180ms ease,
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.industry-solution-card:hover {
  border-color: rgba(80, 221, 255, 0.4);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.industry-solution-card.filtered-out {
  display: none;
}

.industry-featured {
  grid-column: span 2;
  min-height: 610px;
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(33, 212, 253, 0.15),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(15, 58, 88, 0.96),
      rgba(6, 25, 44, 0.98)
    );
}

.industry-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.industry-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  color: #03101e;
  background:
    linear-gradient(
      135deg,
      #81e8ff,
      #21d4fd
    );
  font-size: 12px;
  font-weight: 900;
}

.industry-category {
  color: #7693a7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.industry-solution-card h3 {
  margin: 24px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.industry-solution-card > p {
  margin: 14px 0 0;
  color: #a9bfd0;
  font-size: 14px;
  line-height: 1.7;
}

.industry-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}

.industry-feature-list span {
  padding: 7px 10px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 999px;
  color: #b9cdda;
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
  font-weight: 700;
}

.industry-preview,
.industry-mini-status,
.travel-pipeline,
.retail-stock-preview,
.hr-attendance-preview,
.clinic-schedule-preview,
.sports-membership-preview,
.warehouse-preview,
.manufacturing-progress {
  margin-top: 25px;
}

.industry-preview {
  padding: 18px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 17px;
  background: rgba(2, 16, 29, 0.4);
}

.industry-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-preview-toolbar strong {
  font-size: 12px;
}

.industry-preview-toolbar span {
  color: #64f6b4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.restaurant-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.restaurant-preview-grid > div,
.industry-mini-status > div,
.travel-pipeline > div,
.retail-stock-preview > div,
.warehouse-preview > div {
  display: flex;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(154, 221, 248, 0.12);
  border-radius: 11px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
}

.restaurant-preview-grid span,
.industry-mini-status span,
.travel-pipeline span,
.retail-stock-preview span,
.warehouse-preview span {
  color: #809caf;
  font-size: 8px;
}

.restaurant-preview-grid strong,
.industry-mini-status strong,
.travel-pipeline strong,
.retail-stock-preview strong,
.warehouse-preview strong {
  margin-top: 5px;
  font-size: 15px;
}

.restaurant-order-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.restaurant-order-list > div {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.restaurant-order-list span,
.restaurant-order-list small {
  color: #89a5b8;
  font-size: 8px;
}

.restaurant-order-list strong {
  font-size: 9px;
}

.industry-mini-status,
.travel-pipeline,
.warehouse-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.retail-stock-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.hr-attendance-preview {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 20px;
  padding: 17px;
  border: 1px solid rgba(154, 221, 248, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
}

.attendance-ring {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 8px solid rgba(33, 212, 253, 0.18);
  border-top-color: #21d4fd;
  border-radius: 50%;
}

.attendance-ring strong {
  font-size: 20px;
}

.attendance-ring span {
  margin-top: -24px;
  color: #8fa9bb;
  font-size: 8px;
}

.hr-attendance-preview > div:last-child {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.hr-attendance-preview span {
  color: #8fa9bb;
  font-size: 9px;
}

.hr-attendance-preview strong {
  font-size: 11px;
}

.clinic-schedule-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clinic-schedule-preview > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(154, 221, 248, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.clinic-schedule-preview span {
  color: #50ddff;
  font-size: 9px;
  font-weight: 800;
}

.clinic-schedule-preview strong {
  font-size: 9px;
}

.sports-membership-preview,
.manufacturing-progress {
  padding: 17px;
  border: 1px solid rgba(154, 221, 248, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
}

.sports-membership-preview span,
.manufacturing-progress span {
  color: #8fa9bb;
  font-size: 9px;
}

.sports-membership-preview strong {
  display: block;
  margin-top: 6px;
  font-size: 27px;
}

.sports-membership-preview i,
.manufacturing-progress i {
  position: relative;
  display: block;
  overflow: hidden;
  height: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.sports-membership-preview i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 82%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #21d4fd, #2888ff);
}

.manufacturing-progress > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.manufacturing-progress strong {
  color: #50ddff;
}

.manufacturing-progress i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 72%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #21d4fd, #2888ff);
}

.industry-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  color: #50ddff;
  font-size: 12px;
  font-weight: 800;
}

.industry-card-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.industry-card-link:hover span {
  transform: translateX(4px);
}

.industry-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 30px;
  padding: 36px 40px;
  border: 1px solid rgba(154, 221, 248, 0.17);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(33, 212, 253, 0.1),
      rgba(40, 136, 255, 0.06)
    );
}

.industry-cta > div {
  max-width: 760px;
}

.industry-cta > div > span {
  color: #50ddff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-cta h3 {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 2.5vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.industry-cta .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.deployment-placeholder-section {
  padding: 125px 0;
  color: #071a2d;
  background: #f5f9fc;
}

.deployment-placeholder-section .section-introduction {
  margin-inline: auto;
}

@media (max-width: 1120px) {
  .industries-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-filter {
    justify-content: flex-start;
  }

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

  .industry-featured {
    grid-column: 1 / -1;
  }

  .industry-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .industries-section {
    padding: 90px 0 80px;
  }

  .industry-filter {
    width: 100%;
  }

  .industry-filter-button {
    flex: 1 1 calc(50% - 8px);
  }

  .industry-solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .industry-featured {
    grid-column: auto;
  }

  .industry-solution-card {
    min-height: auto;
    padding: 22px;
  }

  .restaurant-preview-grid,
  .industry-mini-status,
  .travel-pipeline,
  .warehouse-preview {
    grid-template-columns: 1fr;
  }

  .restaurant-order-list > div {
    grid-template-columns: 45px 1fr;
  }

  .restaurant-order-list small {
    grid-column: 2;
  }

  .hr-attendance-preview {
    grid-template-columns: 1fr;
  }

  .industry-cta {
    padding: 27px 23px;
  }

  .industry-cta .button {
    width: 100%;
  }

  .deployment-placeholder-section {
    padding: 90px 0;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V17
   Premium centered Industry Solutions layout
   ========================================================= */

/* Center the section heading and remove the uneven right-side layout */
.industries-header {
  display: flex;
  max-width: 1080px;
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  text-align: center;
}

.industries-introduction {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.industries-introduction .section-eyebrow {
  justify-content: center;
}

.industries-introduction h2 {
  max-width: 950px;
  margin-inline: auto;
}

.industries-introduction p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

/* Four aligned filter buttons */
.industry-filter {
  display: grid;
  width: max-content;
  max-width: 100%;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 999px;
  background: rgba(2, 16, 29, 0.32);
}

.industry-filter-button {
  display: inline-flex;
  min-width: 132px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #9fb7c8;
  background: transparent;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.industry-filter-button:hover {
  border-color: rgba(80, 221, 255, 0.3);
  color: #eaf9ff;
  background: rgba(80, 221, 255, 0.07);
  transform: translateY(-1px);
}

.industry-filter-button.active {
  border-color: rgba(129, 232, 255, 0.4);
  color: #03101e;
  background:
    linear-gradient(
      135deg,
      #81e8ff,
      #21d4fd
    );
  box-shadow:
    0 10px 28px rgba(33, 212, 253, 0.2);
}

.filter-button-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 12px;
}

/* Better separation between filters and cards */
.industry-solutions-grid {
  margin-top: 58px;
}

/* More consistent card structure */
.industry-solution-card {
  min-height: 530px;
  padding: 30px;
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(33, 212, 253, 0.055),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    );
}

.industry-featured {
  min-height: 625px;
}

/* More visual card headers */
.industry-card-top {
  min-height: 52px;
}

.industry-icon {
  position: relative;
  overflow: hidden;
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border: 1px solid rgba(153, 232, 255, 0.38);
  border-radius: 16px;
  box-shadow:
    0 11px 27px rgba(33, 212, 253, 0.18);
  font-size: 13px;
}

.industry-icon::after {
  position: absolute;
  top: -18px;
  right: -13px;
  width: 38px;
  height: 38px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(10px);
}

.industry-category {
  padding: 7px 10px;
  border: 1px solid rgba(154, 221, 248, 0.1);
  border-radius: 999px;
  color: #8fa9bc;
  background: rgba(255, 255, 255, 0.025);
}

.industry-solution-card h3 {
  margin-top: 26px;
  font-size: 30px;
}

.industry-solution-card > p {
  min-height: 72px;
  font-size: 14px;
}

/* Keep feature chips aligned consistently */
.industry-feature-list {
  min-height: 60px;
  align-content: flex-start;
}

.industry-feature-list span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
}

/* Give mini previews equal visual weight */
.industry-mini-status,
.travel-pipeline,
.retail-stock-preview,
.hr-attendance-preview,
.clinic-schedule-preview,
.sports-membership-preview,
.warehouse-preview,
.manufacturing-progress {
  border-color: rgba(154, 221, 248, 0.14);
}

/* Cleaner link placement */
.industry-card-link {
  min-height: 52px;
  margin-top: auto;
  border-top: 1px solid rgba(154, 221, 248, 0.1);
}

.industry-card-link:hover {
  color: #81e8ff;
}

/* Filtering animation */
.industry-solution-card {
  animation: industryCardEnter 280ms ease both;
}

@keyframes industryCardEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Avoid animation conflict with card hover */
.industry-solution-card:hover {
  transform: translateY(-5px);
}

/* Tablet */
@media (max-width: 980px) {
  .industry-filter {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
  }

  .industry-filter-button {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .industries-header {
    gap: 27px;
  }

  .industry-filter {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px;
    border-radius: 20px;
  }

  .industry-filter-button {
    min-height: 47px;
  }

  .industry-solutions-grid {
    margin-top: 42px;
  }

  .industry-solution-card,
  .industry-featured {
    min-height: auto;
  }

  .industry-solution-card > p,
  .industry-feature-list {
    min-height: 0;
  }

  .industry-card-top {
    align-items: flex-start;
  }

  .industry-category {
    max-width: 55%;
    line-height: 1.4;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V18 — DEPLOYMENT OPTIONS
   ========================================================= */

.deployment-section {
  position: relative;
  padding: 130px 0 115px;
  color: #071a2d;
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(33, 212, 253, 0.1),
      transparent 26%
    ),
    #f5f9fc;
}

.deployment-introduction {
  max-width: 940px;
  margin-inline: auto;
}

.deployment-selector {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin: 48px auto 0;
  padding: 7px;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 8px;
  border: 1px solid #d8e8ef;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(33, 65, 87, 0.08);
}

.deployment-selector-button {
  display: inline-flex;
  min-height: 55px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5b7282;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.deployment-selector-button span {
  color: #009ec9;
  font-size: 19px;
}

.deployment-selector-button:hover {
  border-color: #cce7f0;
  color: #092944;
  background: #f4fbfd;
}

.deployment-selector-button.active {
  color: #03101e;
  background:
    linear-gradient(
      135deg,
      #81e8ff,
      #21d4fd
    );
  box-shadow: 0 10px 28px rgba(33, 212, 253, 0.2);
}

.deployment-selector-button.active span {
  color: #03101e;
}

.deployment-panels {
  margin-top: 42px;
}

.deployment-panel {
  display: none;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(480px, 1.05fr);
  gap: 55px;
  padding: 42px;
  border: 1px solid #d9e7ee;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 25px 65px rgba(31, 67, 89, 0.09);
}

.deployment-panel.active {
  display: grid;
  animation: deploymentPanelEnter 260ms ease both;
}

@keyframes deploymentPanelEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.deployment-panel-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.deployment-badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #cfeaf3;
  border-radius: 999px;
  color: #008fb7;
  background: #eefafd;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.deployment-panel-content h3 {
  margin: 22px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 3.7vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.deployment-panel-content > p {
  margin: 19px 0 0;
  color: #607686;
  font-size: 16px;
  line-height: 1.75;
}

.deployment-benefit-grid {
  display: grid;
  width: 100%;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.deployment-benefit-grid > div {
  display: grid;
  min-width: 0;
  padding: 15px;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  border: 1px solid #e0ebf0;
  border-radius: 14px;
  background: #f8fbfd;
}

.deployment-benefit-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #067c9d;
  background: #dff7fc;
  font-size: 12px;
  font-weight: 900;
}

.deployment-benefit-grid strong {
  display: block;
  color: #17384c;
  font-size: 11px;
}

.deployment-benefit-grid small {
  display: block;
  margin-top: 4px;
  color: #708594;
  font-size: 9px;
  line-height: 1.5;
}

.deployment-panel-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 32px;
}

.deployment-text-link {
  color: #087fa2;
  font-size: 12px;
  font-weight: 800;
}

.deployment-text-link:hover {
  text-decoration: underline;
}

.deployment-visual {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(151, 218, 244, 0.18);
  border-radius: 23px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(33, 212, 253, 0.16),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #0a304d,
      #06192c
    );
}

.deployment-visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.deployment-visual-topbar > div {
  display: flex;
  flex-direction: column;
}

.deployment-visual-topbar span {
  color: #8da7ba;
  font-size: 9px;
}

.deployment-visual-topbar strong {
  margin-top: 4px;
  font-size: 14px;
}

.deployment-live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(76, 255, 174, 0.17);
  border-radius: 999px;
  color: #67f6b5 !important;
  background: rgba(76, 255, 174, 0.06);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deployment-live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4cffae;
  box-shadow: 0 0 10px #4cffae;
}

.cloud-region-grid {
  display: grid;
  margin-top: 23px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.cloud-region-grid > div {
  display: flex;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 14px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
}

.cloud-region-grid span {
  color: #839fb2;
  font-size: 9px;
}

.cloud-region-grid strong {
  margin-top: 7px;
  font-size: 16px;
}

.cloud-region-grid small {
  margin-top: 5px;
  color: #9db3c3;
  font-size: 8px;
}

.cloud-activity-chart {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.cloud-chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cloud-chart-heading span {
  color: #8ca6b8;
  font-size: 9px;
}

.cloud-chart-heading strong {
  color: #63f5b5;
  font-size: 13px;
}

.cloud-chart-bars {
  display: flex;
  height: 145px;
  margin-top: 18px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.cloud-chart-bars i {
  display: block;
  width: 100%;
  height: var(--bar-height);
  border-radius: 7px 7px 3px 3px;
  background:
    linear-gradient(
      to top,
      #167fac,
      #21d4fd
    );
  box-shadow: 0 0 12px rgba(33, 212, 253, 0.15);
}

.server-rack {
  display: flex;
  padding: 20px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 18px;
  flex-direction: column;
  gap: 12px;
  background: rgba(2, 15, 28, 0.35);
}

.server-unit {
  position: relative;
  display: grid;
  min-height: 84px;
  padding: 16px 18px;
  grid-template-columns: 80px 1fr;
  align-items: center;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
}

.server-lights {
  display: flex;
  gap: 7px;
}

.server-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cffae;
  box-shadow: 0 0 9px rgba(76, 255, 174, 0.7);
}

.server-lights i:nth-child(2) {
  background: #21d4fd;
  box-shadow: 0 0 9px rgba(33, 212, 253, 0.7);
}

.server-lights i:nth-child(3) {
  background: #f9d15c;
  box-shadow: 0 0 9px rgba(249, 209, 92, 0.6);
}

.server-unit strong,
.server-unit small {
  grid-column: 2;
}

.server-unit strong {
  font-size: 12px;
}

.server-unit small {
  margin-top: -22px;
  color: #8fa8ba;
  font-size: 8px;
}

.server-security-row {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.server-security-row > div {
  display: flex;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 13px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.server-security-row span {
  color: #50ddff;
  font-size: 18px;
}

.server-security-row strong {
  font-size: 10px;
}

.hybrid-deployment-visual {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hybrid-cloud-node {
  display: flex;
  min-width: 240px;
  padding: 21px;
  border: 1px solid rgba(154, 221, 248, 0.17);
  border-radius: 18px;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.hybrid-cloud-node > span {
  color: #50ddff;
  font-size: 40px;
}

.hybrid-cloud-node strong {
  margin-top: 7px;
  font-size: 14px;
}

.hybrid-cloud-node small {
  margin-top: 5px;
  color: #8fa8ba;
  font-size: 8px;
}

.hybrid-connection-lines {
  display: grid;
  width: 70%;
  height: 82px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.hybrid-connection-lines i {
  position: relative;
  border-bottom: 1px solid rgba(80, 221, 255, 0.4);
}

.hybrid-connection-lines i::before {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(80, 221, 255, 0.4);
}

.hybrid-branch-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hybrid-branch-grid > div {
  display: flex;
  min-width: 0;
  padding: 16px 10px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 14px;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.hybrid-branch-grid span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 10px;
  color: #03101e;
  background: #50ddff;
  font-size: 9px;
  font-weight: 900;
}

.hybrid-branch-grid strong {
  margin-top: 9px;
  font-size: 10px;
}

.hybrid-branch-grid small {
  margin-top: 4px;
  color: #63f5b5;
  font-size: 8px;
}

.deployment-comparison {
  margin-top: 28px;
  padding: 38px;
  border: 1px solid #d9e7ee;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(31, 67, 89, 0.07);
}

.deployment-comparison-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.deployment-comparison-heading > div {
  max-width: 640px;
}

.deployment-comparison-label {
  color: #0098c2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deployment-comparison-heading h3 {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.8vw, 40px);
  letter-spacing: -0.035em;
}

.deployment-comparison-heading p {
  max-width: 410px;
  margin: 0;
  color: #657a89;
  font-size: 13px;
  line-height: 1.7;
}

.deployment-comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 29px;
}

.deployment-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.deployment-comparison-table th,
.deployment-comparison-table td {
  padding: 17px 16px;
  border-bottom: 1px solid #e3edf1;
  text-align: center;
}

.deployment-comparison-table th:first-child,
.deployment-comparison-table td:first-child {
  text-align: left;
}

.deployment-comparison-table th {
  color: #315369;
  background: #f4fafc;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.deployment-comparison-table td {
  color: #5d7382;
  font-size: 11px;
}

.comparison-yes {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #037a53;
  background: #ddf8ec;
  font-weight: 900;
}

.comparison-partial {
  color: #80701f;
  font-size: 9px;
  font-weight: 800;
}

.comparison-no {
  color: #8b9ba6;
  font-size: 9px;
}

.deployment-guidance {
  display: grid;
  margin-top: 28px;
  padding: 32px 36px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-radius: 24px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(33, 212, 253, 0.15),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #071e33,
      #0b3554
    );
}

.deployment-guidance-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  color: #03101e;
  background:
    linear-gradient(
      135deg,
      #81e8ff,
      #21d4fd
    );
  font-size: 20px;
  font-weight: 900;
}

.deployment-guidance > div:nth-child(2) > span {
  color: #50ddff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deployment-guidance h3 {
  margin: 7px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.2vw, 31px);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.deployment-guidance .button {
  white-space: nowrap;
}

.pricing-placeholder-section {
  padding: 125px 0;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(40, 136, 255, 0.14),
      transparent 28%
    ),
    #06192c;
}

.pricing-placeholder-section .section-introduction {
  margin-inline: auto;
}

.pricing-placeholder-section .section-introduction h2 {
  color: #f5fbff;
}

.pricing-placeholder-section .section-introduction p {
  color: #a9bfd0;
}

@media (max-width: 1100px) {
  .deployment-panel {
    grid-template-columns: 1fr;
  }

  .deployment-visual {
    min-height: 480px;
  }

  .deployment-comparison-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .deployment-guidance {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .deployment-guidance .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .deployment-section {
    padding: 90px 0 80px;
  }

  .deployment-selector {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .deployment-panel {
    gap: 35px;
    padding: 23px;
    border-radius: 21px;
  }

  .deployment-benefit-grid {
    grid-template-columns: 1fr;
  }

  .deployment-panel-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .deployment-panel-actions .button {
    width: 100%;
  }

  .deployment-text-link {
    text-align: center;
  }

  .deployment-visual {
    min-height: auto;
    padding: 17px;
  }

  .cloud-region-grid,
  .server-security-row {
    grid-template-columns: 1fr;
  }

  .hybrid-branch-grid {
    grid-template-columns: 1fr;
  }

  .hybrid-connection-lines {
    display: none;
  }

  .hybrid-branch-grid {
    margin-top: 18px;
  }

  .deployment-comparison {
    padding: 23px;
  }

  .deployment-guidance {
    padding: 25px 22px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .deployment-guidance .button {
    grid-column: auto;
  }

  .pricing-placeholder-section {
    padding: 90px 0;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V18.1
   Clickable mini deployment cards
   ========================================================= */

.deployment-options-mini > div {
  display: none;
}

.deployment-mini-button {
  display: flex;
  min-width: 0;
  min-height: 122px;
  padding: 14px 8px;
  border: 1px solid #dce9ef;
  border-radius: 12px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: inherit;
  background: #f8fbfd;
  cursor: pointer;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.deployment-mini-button:hover {
  border-color: #8edff3;
  background: #eefafd;
  box-shadow: 0 12px 26px rgba(27, 118, 151, 0.1);
  transform: translateY(-3px);
}

.deployment-mini-button:focus-visible {
  outline: 3px solid rgba(33, 212, 253, 0.3);
  outline-offset: 3px;
}

.deployment-mini-button span {
  color: #00a6d7;
  font-size: 22px;
}

.deployment-mini-button strong {
  color: #315267;
  font-size: 10px;
}

.deployment-mini-button::after {
  content: "View option →";
  color: #008db6;
  font-size: 8px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.deployment-mini-button:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .deployment-mini-button {
    min-height: 95px;
  }

  .deployment-mini-button::after {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V19 — PRICING AND PACKAGES
   ========================================================= */

.pricing-section {
  position: relative;
  padding: 130px 0 115px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 16% 7%,
      rgba(40, 136, 255, 0.15),
      transparent 27%
    ),
    radial-gradient(
      circle at 87% 25%,
      rgba(33, 212, 253, 0.11),
      transparent 24%
    ),
    #06192c;
}

.pricing-introduction {
  max-width: 940px;
  margin-inline: auto;
}

.pricing-introduction h2 {
  color: #f5fbff;
}

.pricing-introduction p {
  color: #a9bfd0;
}

.pricing-toggle {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin: 45px auto 0;
  padding: 7px;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 7px;
  border: 1px solid rgba(154, 221, 248, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-toggle-button {
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #9fb7c8;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.pricing-toggle-button.active {
  color: #03101e;
  background: linear-gradient(135deg, #81e8ff, #21d4fd);
  box-shadow: 0 10px 28px rgba(33, 212, 253, 0.18);
}

.pricing-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.pricing-grid-hidden {
  display: none;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 680px;
  padding: 31px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 25px;
  flex-direction: column;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    );
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.pricing-card:hover {
  border-color: rgba(80, 221, 255, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(-5px);
}

.pricing-card-featured {
  border-color: rgba(80, 221, 255, 0.4);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(33, 212, 253, 0.17),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(14, 59, 89, 0.98),
      rgba(6, 25, 44, 0.98)
    );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.pricing-recommended-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #03101e;
  background: #50ddff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-package-label {
  color: #50ddff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-card-header h3 {
  margin: 13px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  letter-spacing: -0.04em;
}

.pricing-card-header p {
  min-height: 84px;
  margin: 15px 0 0;
  color: #a9bfd0;
  font-size: 13px;
  line-height: 1.7;
}

.pricing-value {
  min-height: 95px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-value strong {
  display: block;
  font-size: 20px;
}

.pricing-value span {
  display: block;
  margin-top: 6px;
  color: #8fa8ba;
  font-size: 9px;
  line-height: 1.5;
}

.pricing-button {
  width: 100%;
  margin-top: 20px;
}

.pricing-feature-heading {
  margin-top: 27px;
  color: #dcecf7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-feature-list {
  display: flex;
  margin: 18px 0 0;
  padding: 0;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 25px;
  color: #b4c8d6;
  font-size: 11px;
  line-height: 1.5;
}

.pricing-feature-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: #03101e;
  background: #50ddff;
  font-size: 9px;
  font-weight: 900;
}

.pricing-comparison {
  margin-top: 30px;
  padding: 38px;
  border: 1px solid rgba(154, 221, 248, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-comparison-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.pricing-comparison-header > div {
  max-width: 650px;
}

.pricing-comparison-header span {
  color: #50ddff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-comparison-header h3 {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.035em;
}

.pricing-comparison-header p {
  max-width: 430px;
  margin: 0;
  color: #9db4c4;
  font-size: 12px;
  line-height: 1.7;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 28px;
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 17px 16px;
  border-bottom: 1px solid rgba(154, 221, 248, 0.11);
  text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table th {
  color: #bdd2df;
  background: rgba(255, 255, 255, 0.04);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-table td {
  color: #a9bfd0;
  font-size: 10px;
}

.pricing-check {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #03101e;
  background: #50ddff;
  font-weight: 900;
}

.pricing-limited {
  color: #f4d674;
  font-size: 9px;
  font-weight: 800;
}

.pricing-muted {
  color: #7891a3;
  font-size: 9px;
}

.pricing-note {
  display: grid;
  margin-top: 28px;
  padding: 31px 35px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(154, 221, 248, 0.15);
  border-radius: 23px;
  background:
    linear-gradient(
      135deg,
      rgba(33, 212, 253, 0.1),
      rgba(40, 136, 255, 0.06)
    );
}

.pricing-note-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #03101e;
  background: #50ddff;
  font-weight: 900;
}

.pricing-note strong {
  font-size: 13px;
}

.pricing-note p {
  margin: 5px 0 0;
  color: #a9bfd0;
  font-size: 10px;
  line-height: 1.6;
}

.pricing-note .button {
  white-space: nowrap;
}

.application-placeholder-section {
  padding: 125px 0;
  color: #071a2d;
  background: #f5f9fc;
}

.application-placeholder-section .section-introduction {
  margin-inline: auto;
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-card-featured {
    min-height: auto;
  }

  .pricing-card-header p {
    min-height: 0;
  }

  .pricing-comparison-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-note {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .pricing-note .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .pricing-section {
    padding: 90px 0 80px;
  }

  .pricing-toggle {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 23px;
    border-radius: 20px;
  }

  .pricing-recommended-badge {
    position: static;
    width: max-content;
    margin-bottom: 18px;
  }

  .pricing-comparison {
    padding: 23px;
  }

  .pricing-note {
    padding: 24px 22px;
    grid-template-columns: 1fr;
  }

  .pricing-note .button {
    grid-column: auto;
  }

  .application-placeholder-section {
    padding: 90px 0;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V20 — APPLICATION FORM
   ========================================================= */

.application-section {
  position: relative;
  padding: 130px 0 115px;
  color: #071a2d;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(33, 212, 253, 0.09),
      transparent 26%
    ),
    #f5f9fc;
}

.application-introduction {
  max-width: 940px;
  margin-inline: auto;
}

.application-layout {
  display: grid;
  margin-top: 65px;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: 27px;
}

.application-form {
  min-width: 0;
  padding: 35px;
  border: 1px solid #d9e7ee;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(31, 67, 89, 0.09);
}

.application-progress {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto minmax(30px, 1fr) auto;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2ecf1;
}

.application-progress > i {
  height: 2px;
  margin-inline: 12px;
  background: #dbe8ee;
}

.application-progress-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8195a3;
}

.application-progress-item > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #d6e4eb;
  border-radius: 50%;
  background: #f4f9fb;
  font-size: 11px;
  font-weight: 900;
}

.application-progress-item strong {
  font-size: 10px;
  text-transform: uppercase;
}

.application-progress-item.active {
  color: #087fa2;
}

.application-progress-item.active > span {
  border-color: #50ddff;
  color: #03101e;
  background: #50ddff;
  box-shadow: 0 7px 20px rgba(33, 212, 253, 0.2);
}

.application-progress-item.completed > span {
  border-color: #b9efdc;
  color: #047451;
  background: #dcf8ed;
}

.application-form-step {
  display: none;
  padding-top: 32px;
}

.application-form-step.active {
  display: block;
  animation: applicationStepEnter 240ms ease both;
}

@keyframes applicationStepEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.application-step-heading > span {
  color: #0098c2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.application-step-heading h3 {
  margin: 8px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.application-step-heading p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #687d8c;
  font-size: 13px;
  line-height: 1.7;
}

.application-field-grid {
  display: grid;
  margin-top: 29px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.application-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.application-field-wide {
  grid-column: 1 / -1;
}

.application-field > span {
  margin-bottom: 8px;
  color: #314f62;
  font-size: 10px;
  font-weight: 800;
}

.application-field > span b {
  color: #d74e5d;
}

.application-field input,
.application-field select,
.application-field textarea {
  width: 100%;
  border: 1px solid #d6e4eb;
  border-radius: 12px;
  outline: none;
  color: #17384c;
  background: #f9fcfd;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    background-color 170ms ease;
}

.application-field input,
.application-field select {
  min-height: 51px;
  padding: 0 14px;
}

.application-field textarea {
  min-height: 145px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.application-field input:focus,
.application-field select:focus,
.application-field textarea:focus {
  border-color: #3bcbe8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(33, 212, 253, 0.11);
}

.application-field.invalid input,
.application-field.invalid select,
.application-field.invalid textarea {
  border-color: #e36a76;
  box-shadow: 0 0 0 3px rgba(227, 106, 118, 0.1);
}

.field-error,
.application-consent-error {
  min-height: 16px;
  margin-top: 5px;
  color: #c94454;
  font-size: 9px;
}

.application-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 29px;
  padding-top: 24px;
  border-top: 1px solid #e3edf1;
}

.application-form-actions-end {
  justify-content: flex-end;
}

.application-choice-section {
  margin: 27px 0 0;
  padding: 0;
  border: 0;
}

.application-choice-section legend {
  margin-bottom: 12px;
  color: #314f62;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.application-choice-grid {
  display: grid;
  gap: 11px;
}

.application-choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-choice-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 126px;
  padding: 17px;
  border: 1px solid #dce8ee;
  border-radius: 15px;
  flex-direction: column;
  cursor: pointer;
  background: #f8fbfd;
  transition:
    border-color 170ms ease,
    background-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.application-choice-card:hover {
  border-color: #99deed;
  transform: translateY(-2px);
}

.application-choice-card:has(input:checked) {
  border-color: #37cce9;
  background: #eefafd;
  box-shadow: 0 10px 24px rgba(25, 137, 170, 0.09);
}

.application-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card-marker {
  width: 18px;
  height: 18px;
  margin-bottom: 14px;
  border: 2px solid #c2d7e1;
  border-radius: 50%;
  background: #ffffff;
}

.application-choice-card:has(input:checked) .choice-card-marker {
  border: 5px solid #22bedf;
}

.application-choice-card strong {
  color: #18394c;
  font-size: 12px;
}

.application-choice-card small {
  margin-top: 6px;
  color: #758a98;
  font-size: 9px;
  line-height: 1.5;
}

.application-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.application-module-option {
  display: flex;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #dce8ee;
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #f8fbfd;
}

.application-module-option:has(input:checked) {
  border-color: #57d2e9;
  color: #087fa2;
  background: #eefafd;
}

.application-module-option input {
  width: 16px;
  height: 16px;
  accent-color: #12b8d9;
}

.application-module-option span {
  font-size: 10px;
  font-weight: 700;
}

.application-requirements-field {
  margin-top: 27px;
}

.textarea-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.textarea-footer > span {
  margin-top: 5px;
  color: #8799a5;
  font-size: 8px;
}

.application-consent {
  display: grid;
  margin-top: 21px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.application-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #14b9d9;
}

.application-consent span {
  color: #607686;
  font-size: 10px;
  line-height: 1.6;
}

.application-success {
  padding: 55px 24px 25px;
  text-align: center;
}

.application-success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-inline: auto;
  place-items: center;
  border-radius: 50%;
  color: #067a54;
  background: #dcf8ed;
  font-size: 28px;
  font-weight: 900;
}

.application-success > span {
  display: block;
  margin-top: 22px;
  color: #0098c2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.application-success h3 {
  margin: 9px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
}

.application-success p {
  max-width: 570px;
  margin: 13px auto 0;
  color: #687d8c;
  font-size: 12px;
  line-height: 1.7;
}

.application-success-reference {
  display: flex;
  max-width: 330px;
  margin: 27px auto;
  padding: 15px;
  border: 1px solid #d8e8ef;
  border-radius: 13px;
  flex-direction: column;
  background: #f6fafc;
}

.application-success-reference span {
  color: #8799a5;
  font-size: 8px;
  text-transform: uppercase;
}

.application-success-reference strong {
  margin-top: 5px;
  color: #087fa2;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.application-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.application-summary-card,
.application-help-card,
.application-security-card {
  border: 1px solid #d9e7ee;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(31, 67, 89, 0.07);
}

.application-summary-card {
  overflow: hidden;
}

.application-summary-header {
  display: flex;
  padding: 22px;
  flex-direction: column;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(33, 212, 253, 0.18),
      transparent 32%
    ),
    #082b47;
}

.application-summary-header span {
  color: #50ddff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.application-summary-header strong {
  margin-top: 6px;
  font-size: 17px;
}

.application-summary-list {
  padding: 10px 21px;
}

.application-summary-list > div {
  display: flex;
  padding: 13px 0;
  border-bottom: 1px solid #e6eef2;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.application-summary-list span {
  color: #7a8e9b;
  font-size: 9px;
}

.application-summary-list strong {
  overflow: hidden;
  max-width: 58%;
  color: #294b60;
  font-size: 10px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.application-summary-modules {
  padding: 16px 21px 22px;
}

.application-summary-modules > span {
  color: #7a8e9b;
  font-size: 9px;
}

.application-summary-modules > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.application-summary-modules small,
.application-summary-modules b {
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 8px;
}

.application-summary-modules small {
  color: #8799a5;
  background: #f0f5f7;
}

.application-summary-modules b {
  color: #087fa2;
  background: #e8f8fc;
}

.application-help-card {
  display: grid;
  padding: 22px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
}

.application-help-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #03101e;
  background: #50ddff;
  font-weight: 900;
}

.application-help-card span {
  color: #0098c2;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.application-help-card h3 {
  margin: 5px 0 0;
  font-size: 15px;
}

.application-help-card p {
  margin: 8px 0 0;
  color: #718694;
  font-size: 9px;
  line-height: 1.6;
}

.application-help-card a {
  display: inline-block;
  margin-top: 10px;
  color: #087fa2;
  font-size: 9px;
  font-weight: 800;
}

.application-security-card {
  display: grid;
  padding: 19px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
}

.application-security-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #047451;
  background: #ddf8ed;
}

.application-security-card strong {
  color: #294b60;
  font-size: 10px;
}

.application-security-card p {
  margin: 5px 0 0;
  color: #718694;
  font-size: 8px;
  line-height: 1.6;
}

.trust-placeholder-section {
  padding: 125px 0;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(40, 136, 255, 0.14),
      transparent 28%
    ),
    #06192c;
}

.trust-placeholder-section .section-introduction {
  margin-inline: auto;
}

.trust-placeholder-section .section-introduction h2 {
  color: #f5fbff;
}

.trust-placeholder-section .section-introduction p {
  color: #a9bfd0;
}

@media (max-width: 1050px) {
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-summary-card {
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  .application-section {
    padding: 90px 0 80px;
  }

  .application-form {
    padding: 22px;
    border-radius: 21px;
  }

  .application-progress-item strong {
    display: none;
  }

  .application-progress > i {
    margin-inline: 6px;
  }

  .application-field-grid,
  .application-choice-grid-three,
  .application-module-grid {
    grid-template-columns: 1fr;
  }

  .application-form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .application-form-actions .button {
    width: 100%;
  }

  .application-form-actions-end {
    flex-direction: column;
  }

  .application-sidebar {
    grid-template-columns: 1fr;
  }

  .application-summary-card {
    grid-row: auto;
  }

  .trust-placeholder-section {
    padding: 90px 0;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V21
   Security, Integrations, FAQ and Footer
   ========================================================= */

.security-section {
  padding: 130px 0 115px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(33, 212, 253, 0.14),
      transparent 28%
    ),
    #06192c;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 70px;
}

.security-content h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.security-content > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #a9bfd0;
  font-size: 17px;
  line-height: 1.75;
}

.security-feature-grid {
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.security-feature-grid article {
  display: grid;
  min-width: 0;
  padding: 17px;
  grid-template-columns: 39px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.security-feature-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  color: #03101e;
  background: #50ddff;
  font-weight: 900;
}

.security-feature-grid h3 {
  margin: 0;
  font-size: 12px;
}

.security-feature-grid p {
  margin: 6px 0 0;
  color: #8fa8ba;
  font-size: 9px;
  line-height: 1.6;
}

.security-dashboard {
  padding: 25px;
  border: 1px solid rgba(154, 221, 248, 0.17);
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(33, 212, 253, 0.15),
      transparent 30%
    ),
    linear-gradient(145deg, #0a304d, #06192c);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.25);
}

.security-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.security-dashboard-header > div {
  display: flex;
  flex-direction: column;
}

.security-dashboard-header span {
  color: #8fa8ba;
  font-size: 9px;
}

.security-dashboard-header strong {
  margin-top: 4px;
  font-size: 15px;
}

.security-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(76, 255, 174, 0.18);
  border-radius: 999px;
  color: #63f5b5 !important;
  background: rgba(76, 255, 174, 0.06);
  font-weight: 800;
  text-transform: uppercase;
}

.security-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4cffae;
  box-shadow: 0 0 10px #4cffae;
}

.security-score-card {
  display: grid;
  margin-top: 24px;
  padding: 21px;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.security-score-ring {
  display: grid;
  width: 135px;
  height: 135px;
  place-items: center;
  border: 10px solid rgba(33, 212, 253, 0.15);
  border-top-color: #21d4fd;
  border-right-color: #21d4fd;
  border-radius: 50%;
}

.security-score-ring strong {
  font-size: 38px;
}

.security-score-ring span {
  margin-top: -40px;
  color: #8fa8ba;
  font-size: 8px;
}

.security-score-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.security-score-details > div {
  display: flex;
  padding: 10px 12px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.security-score-details span {
  color: #8fa8ba;
  font-size: 9px;
}

.security-score-details strong {
  color: #63f5b5;
  font-size: 9px;
}

.security-activity-list {
  display: flex;
  margin-top: 16px;
  flex-direction: column;
  gap: 9px;
}

.security-activity-list > div {
  display: grid;
  padding: 12px;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(154, 221, 248, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.security-activity-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: #047451;
  background: #ddf8ed;
  font-size: 10px;
  font-weight: 900;
}

.security-activity-list strong {
  display: block;
  font-size: 9px;
}

.security-activity-list small {
  display: block;
  margin-top: 3px;
  color: #829dae;
  font-size: 8px;
}

.integrations-section {
  padding: 125px 0 110px;
  color: #071a2d;
  background: #f5f9fc;
}

.integrations-introduction {
  margin-inline: auto;
}

.integration-grid {
  display: grid;
  margin-top: 65px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.integration-card {
  padding: 28px;
  border: 1px solid #dbe8ef;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 17px 42px rgba(33, 65, 87, 0.06);
  transition:
    transform 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease;
}

.integration-card:hover {
  border-color: #9ddfeb;
  box-shadow: 0 25px 55px rgba(33, 65, 87, 0.1);
  transform: translateY(-4px);
}

.integration-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 15px;
  color: #007fa8;
  background: #e8f8fc;
  font-size: 14px;
  font-weight: 900;
}

.integration-card h3 {
  margin: 21px 0 0;
  font-size: 20px;
}

.integration-card p {
  min-height: 72px;
  margin: 11px 0 0;
  color: #687d8c;
  font-size: 12px;
  line-height: 1.7;
}

.integration-card > span {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #087fa2;
  background: #eefafd;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-cta {
  display: flex;
  margin-top: 28px;
  padding: 34px 38px;
  border-radius: 23px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #f5fbff;
  background: linear-gradient(135deg, #071e33, #0b3554);
}

.integration-cta span {
  color: #50ddff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-cta h3 {
  margin: 8px 0 0;
  font-size: clamp(23px, 2.5vw, 36px);
}

.faq-section {
  padding: 125px 0 110px;
  color: #f5fbff;
  background: #06192c;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 75px;
}

.faq-introduction {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-introduction h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 4.7vw, 65px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.faq-introduction p {
  margin: 20px 0 0;
  color: #a9bfd0;
  font-size: 15px;
  line-height: 1.7;
}

.faq-introduction a {
  display: inline-block;
  margin-top: 24px;
  color: #50ddff;
  font-size: 11px;
  font-weight: 800;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(154, 221, 248, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 76px;
  padding: 0 22px;
  border: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #f5fbff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 13px;
  font-weight: 800;
}

.faq-question i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 9px;
  color: #03101e;
  background: #50ddff;
  font-style: normal;
  font-size: 18px;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: #9fb7c8;
  font-size: 11px;
  line-height: 1.75;
}

.faq-item.open .faq-answer p {
  padding-bottom: 22px;
}

.final-cta-section {
  padding: 95px 0;
  color: #f5fbff;
  background: #041321;
}

.final-cta-card {
  display: flex;
  padding: 58px;
  border: 1px solid rgba(154, 221, 248, 0.16);
  border-radius: 29px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(33, 212, 253, 0.2),
      transparent 29%
    ),
    linear-gradient(135deg, #082b47, #06192c);
}

.final-cta-content {
  max-width: 810px;
}

.final-cta-content > span {
  color: #50ddff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta-content h2 {
  margin: 12px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4.7vw, 65px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.final-cta-content p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #a9bfd0;
  font-size: 14px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  padding: 80px 0 30px;
  color: #f5fbff;
  background: #020c15;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) repeat(4, minmax(120px, 1fr));
  gap: 50px;
}

.footer-brand-column {
  max-width: 340px;
}

.footer-brand {
  display: inline-flex;
  width: 175px;
}

.footer-brand img {
  width: 100%;
  object-fit: contain;
}

.footer-brand-column p {
  margin: 21px 0 0;
  color: #8199aa;
  font-size: 11px;
  line-height: 1.7;
}

.footer-email {
  display: inline-block;
  margin-top: 18px;
  color: #50ddff;
  font-size: 11px;
  font-weight: 800;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link-column h3 {
  margin: 0 0 8px;
  color: #ddecf5;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-link-column a {
  color: #8199aa;
  font-size: 10px;
  transition: color 160ms ease;
}

.footer-link-column a:hover {
  color: #50ddff;
}

.footer-bottom {
  display: flex;
  margin-top: 65px;
  padding-top: 25px;
  border-top: 1px solid rgba(154, 221, 248, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #667f91;
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  gap: 5px;
}

.footer-bottom strong {
  color: #50ddff;
}

@media (max-width: 1080px) {
  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-dashboard {
    max-width: 800px;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-introduction {
    position: static;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: row;
  }

  .final-cta-actions .button {
    flex: 1;
  }

  .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .security-section,
  .integrations-section,
  .faq-section {
    padding: 90px 0 80px;
  }

  .security-feature-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .security-score-card {
    grid-template-columns: 1fr;
  }

  .security-score-ring {
    margin-inline: auto;
  }

  .integration-card p {
    min-height: 0;
  }

  .integration-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .integration-cta .button {
    width: 100%;
  }

  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-card {
    padding: 30px 23px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-column {
    grid-column: auto;
  }
}


/* =========================================================
   ABOTRIX PUBLIC V22 — LIVE APPLICATION SUBMISSION
   ========================================================= */

.application-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.application-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.application-submission-error {
  display: block;
  margin-top: 12px;
  color: #c94454;
  font-size: 10px;
  line-height: 1.5;
}


/* ============================================================
   ABOTRIX_PUBLIC_HERO_LAYOUT_FIX_V22_1
   Final scoped override for public desktop and responsive hero
   ============================================================ */

.hero-section {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 760px !important;
    padding: 150px 0 90px !important;
    overflow: hidden !important;
}

.hero-section .hero-layout {
    position: relative !important;
    display: grid !important;
    grid-template-columns:
        minmax(430px, 0.92fr)
        minmax(560px, 1.08fr) !important;
    align-items: center !important;
    gap: clamp(48px, 6vw, 110px) !important;
    width: min(1500px, calc(100% - 96px)) !important;
    max-width: 1500px !important;
    min-height: 600px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.hero-section .hero-content {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 690px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    writing-mode: horizontal-tb !important;
}

.hero-section .hero-content h1 {
    display: block !important;
    width: 100% !important;
    max-width: 690px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    font-size: clamp(58px, 5.8vw, 94px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    transform: none !important;
}

.hero-section .hero-content h1 span {
    display: inline !important;
    white-space: normal !important;
}

.hero-section .hero-description {
    display: block !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 0 32px !important;
    padding: 0 !important;
    font-size: clamp(18px, 1.45vw, 24px) !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    writing-mode: horizontal-tb !important;
}

.hero-section .hero-actions {
    display: flex !important;
    flex-flow: row wrap !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 0 28px !important;
}

.hero-section .hero-trust-row,
.hero-section .hero-statistics {
    width: 100% !important;
    max-width: 650px !important;
}

.hero-section .hero-dashboard-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 780px !important;
    min-height: 540px !important;
    margin: 0 !important;
    padding: 0 !important;
    inset: auto !important;
    transform: none !important;
}

.hero-section .hero-dashboard-wrapper > * {
    max-width: 100% !important;
}

.hero-section img {
    max-width: 100% !important;
}

/* Prevent a fixed navigation bar from clipping the hero heading. */
.site-header,
.public-header,
header.site-header {
    z-index: 1000 !important;
}

@media (max-width: 1250px) {
    .hero-section {
        min-height: auto !important;
        padding: 140px 0 80px !important;
    }

    .hero-section .hero-layout {
        grid-template-columns:
            minmax(380px, 0.9fr)
            minmax(470px, 1.1fr) !important;
        width: min(1180px, calc(100% - 64px)) !important;
        gap: 48px !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(52px, 6vw, 76px) !important;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 125px 0 70px !important;
    }

    .hero-section .hero-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        width: min(820px, calc(100% - 48px)) !important;
        gap: 54px !important;
        text-align: center !important;
    }

    .hero-section .hero-content {
        max-width: 760px !important;
        margin: 0 auto !important;
    }

    .hero-section .hero-content h1,
    .hero-section .hero-description,
    .hero-section .hero-trust-row,
    .hero-section .hero-statistics {
        max-width: 760px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-section .hero-actions {
        justify-content: center !important;
    }

    .hero-section .hero-dashboard-wrapper {
        max-width: 760px !important;
        min-height: auto !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 105px 0 54px !important;
    }

    .hero-section .hero-layout {
        width: min(100% - 32px, 620px) !important;
        gap: 38px !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(42px, 13vw, 62px) !important;
        line-height: 1 !important;
        letter-spacing: -0.045em !important;
    }

    .hero-section .hero-description {
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    .hero-section .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .hero-section .hero-actions .button {
        width: 100% !important;
        justify-content: center !important;
    }
}


/* ============================================================
   ABOTRIX_PUBLIC_COMMAND_CENTER_FIX_V22_3
   Stable commercial dashboard preview and responsive hero
   ============================================================ */

.hero-section {
    min-height: 900px !important;
    padding-top: 170px !important;
    padding-bottom: 100px !important;
    overflow: hidden !important;
}

.hero-section .hero-layout {
    display: grid !important;
    grid-template-columns:
        minmax(520px, 0.92fr)
        minmax(720px, 1.08fr) !important;
    align-items: center !important;
    gap: clamp(50px, 5vw, 90px) !important;
    width: min(1580px, calc(100% - 80px)) !important;
    max-width: 1580px !important;
    margin: 0 auto !important;
}

.hero-section .hero-content {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    max-width: 680px !important;
    min-width: 0 !important;
}

.hero-section .hero-content h1 {
    max-width: 680px !important;
    font-size: clamp(62px, 5.7vw, 96px) !important;
    line-height: 0.98 !important;
}

.hero-section .hero-description {
    max-width: 650px !important;
}

/* Dashboard positioning */

.hero-section .hero-dashboard-wrapper {
    position: relative !important;
    z-index: 4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 720px !important;
    max-width: none !important;
    min-height: 650px !important;
    margin: 0 !important;
    padding: 45px 30px !important;
    overflow: visible !important;
    transform: none !important;
    box-sizing: border-box !important;
}

/* Prevent the dashboard from collapsing */

.hero-section .dashboard-window {
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    width: 760px !important;
    min-width: 760px !important;
    max-width: 760px !important;
    height: auto !important;
    min-height: 570px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    transform: none !important;
    transform-origin: center center !important;
    box-sizing: border-box !important;
}

.hero-section .dashboard-topbar,
.hero-section .dashboard-body {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.hero-section .dashboard-topbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.hero-section .dashboard-heading {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
    width: 100% !important;
}

.hero-section .dashboard-heading > div {
    min-width: 0 !important;
}

.hero-section .dashboard-heading h2 {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* Three proper KPI cards */

.hero-section .metric-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 22px 0 !important;
}

.hero-section .metric-card {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 125px !important;
    padding: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.hero-section .metric-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
}

.hero-section .metric-card strong {
    display: block !important;
    margin-top: 12px !important;
    font-size: 25px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
}

.hero-section .metric-growth {
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
}

/* Chart and recent activity */

.hero-section .dashboard-main-grid {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(235px, 0.65fr) !important;
    align-items: stretch !important;
    gap: 15px !important;
    width: 100% !important;
}

.hero-section .chart-card,
.hero-section .activity-card,
.hero-section .recent-activity-card,
.hero-section .live-operations-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.hero-section .chart-area {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.hero-section .revenue-chart {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Keep all dashboard text horizontal */

.hero-section .dashboard-window,
.hero-section .dashboard-window * {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    word-break: normal !important;
}

.hero-section .dashboard-window p,
.hero-section .dashboard-window span,
.hero-section .dashboard-window strong,
.hero-section .dashboard-window h2,
.hero-section .dashboard-window h3 {
    max-width: 100% !important;
}

/* Floating notification cards */

.hero-section .dashboard-glow {
    position: absolute !important;
    inset: 8% 5% !important;
    pointer-events: none !important;
}

.hero-section .floating-card,
.hero-section .dashboard-floating-card,
.hero-section .floating-notification {
    z-index: 6 !important;
    max-width: 270px !important;
}

/* Large laptop screens */

@media (max-width: 1500px) and (min-width: 1201px) {
    .hero-section .hero-layout {
        grid-template-columns:
            minmax(480px, 0.9fr)
            minmax(650px, 1.1fr) !important;
        width: min(1380px, calc(100% - 60px)) !important;
        gap: 42px !important;
    }

    .hero-section .hero-dashboard-wrapper {
        min-width: 650px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-section .dashboard-window {
        transform: scale(0.88) !important;
        transform-origin: center center !important;
        margin: -35px -45px !important;
    }
}

/* Tablet */

@media (max-width: 1200px) {
    .hero-section {
        min-height: auto !important;
        padding-top: 145px !important;
    }

    .hero-section .hero-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        width: min(900px, calc(100% - 48px)) !important;
        gap: 55px !important;
    }

    .hero-section .hero-content {
        max-width: 760px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .hero-section .hero-content h1,
    .hero-section .hero-description {
        max-width: 760px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-section .hero-actions,
    .hero-section .hero-trust-row {
        justify-content: center !important;
    }

    .hero-section .hero-dashboard-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 820px !important;
        min-height: 570px !important;
        margin: 0 auto !important;
        padding: 20px 0 !important;
    }

    .hero-section .dashboard-window {
        transform: scale(0.93) !important;
        transform-origin: center center !important;
    }
}

/* Small tablet and mobile */

@media (max-width: 820px) {
    .hero-section .hero-dashboard-wrapper {
        min-height: 480px !important;
        overflow: hidden !important;
    }

    .hero-section .dashboard-window {
        transform: scale(0.74) !important;
        transform-origin: top center !important;
        margin-bottom: -145px !important;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 120px !important;
        padding-bottom: 55px !important;
    }

    .hero-section .hero-layout {
        width: min(100% - 30px, 620px) !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(44px, 14vw, 64px) !important;
    }

    .hero-section .hero-dashboard-wrapper {
        min-height: 390px !important;
    }

    .hero-section .dashboard-window {
        transform: scale(0.58) !important;
        transform-origin: top center !important;
        margin-bottom: -235px !important;
    }
}

@media (max-width: 430px) {
    .hero-section .hero-dashboard-wrapper {
        min-height: 335px !important;
    }

    .hero-section .dashboard-window {
        transform: scale(0.48) !important;
        margin-bottom: -295px !important;
    }
}

/* Correct anchor scrolling below the fixed navigation */

#platform,
#industries,
#deployment,
#pricing,
#application {
    scroll-margin-top: 120px !important;
}


/* ============================================================
   ABOTRIX_PUBLIC_VIEWPORT_FIT_V22_4
   Final desktop viewport sizing and overflow correction
   ============================================================ */

html,
body {
    overflow-x: hidden !important;
}

/* Keep navigation above the hero without covering its content. */
.site-header {
    height: 112px !important;
    min-height: 112px !important;
}

/* Fit the complete hero inside a normal desktop viewport. */
.hero-section {
    min-height: calc(100vh - 112px) !important;
    height: auto !important;
    padding: 42px 0 58px !important;
    margin: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.hero-section .hero-layout {
    display: grid !important;
    grid-template-columns:
        minmax(470px, 0.88fr)
        minmax(0, 1.12fr) !important;
    align-items: center !important;
    gap: clamp(36px, 3.5vw, 68px) !important;
    width: min(1540px, calc(100% - 80px)) !important;
    max-width: 1540px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Left-side content sizing. */
.hero-section .hero-content {
    width: 100% !important;
    max-width: 590px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.hero-section .eyebrow {
    margin: 0 0 22px !important;
}

.hero-section .hero-content h1 {
    max-width: 590px !important;
    margin: 0 0 26px !important;
    font-size: clamp(58px, 4.9vw, 82px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.052em !important;
}

.hero-section .hero-description {
    max-width: 590px !important;
    margin-bottom: 28px !important;
    font-size: clamp(18px, 1.25vw, 22px) !important;
    line-height: 1.55 !important;
}

.hero-section .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 590px !important;
    margin: 0 0 24px !important;
}

.hero-section .hero-actions .button {
    min-height: 64px !important;
    width: 100% !important;
    padding: 16px 20px !important;
    white-space: nowrap !important;
    justify-content: center !important;
}

.hero-section .hero-trust-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px 22px !important;
    width: 100% !important;
    max-width: 590px !important;
    margin-bottom: 20px !important;
}

.hero-section .hero-statistics {
    max-width: 590px !important;
    margin-top: 0 !important;
}

/* Right-side preview sizing. */
.hero-section .hero-dashboard-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 860px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 20px 0 !important;
    overflow: visible !important;
    transform: none !important;
    box-sizing: border-box !important;
}

.hero-section .dashboard-window {
    position: relative !important;
    width: 820px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    transform-origin: center center !important;
    box-sizing: border-box !important;
}

/* Slightly compact the internal dashboard so it fits vertically. */
.hero-section .dashboard-topbar {
    padding: 18px 24px !important;
}

.hero-section .dashboard-body {
    padding: 22px 24px 24px !important;
}

.hero-section .dashboard-heading {
    margin-bottom: 16px !important;
}

.hero-section .dashboard-heading h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
}

.hero-section .metric-grid {
    gap: 12px !important;
    margin: 16px 0 !important;
}

.hero-section .metric-card {
    min-height: 112px !important;
    padding: 16px !important;
}

.hero-section .metric-card strong {
    font-size: 26px !important;
}

.hero-section .dashboard-main-grid {
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(215px, .65fr) !important;
    gap: 12px !important;
}

.hero-section .chart-card,
.hero-section .activity-card,
.hero-section .recent-activity-card,
.hero-section .live-operations-card {
    padding: 16px !important;
}

/* Disable decorative cards that extend outside the viewport. */
.hero-section .floating-card,
.hero-section .dashboard-floating-card,
.hero-section .floating-notification,
.hero-section .floating-alert,
.hero-section .notification-card {
    display: none !important;
}

/* Hide any overflowing direct decorative children except dashboard. */
.hero-dashboard-wrapper > .dashboard-glow {
    inset: 5% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Standard laptop viewport. */
@media (max-width: 1500px) and (min-width: 1101px) {
    .hero-section {
        padding-top: 34px !important;
        padding-bottom: 46px !important;
    }

    .hero-section .hero-layout {
        grid-template-columns:
            minmax(430px, .86fr)
            minmax(0, 1.14fr) !important;
        width: min(1360px, calc(100% - 56px)) !important;
        gap: 34px !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(54px, 4.8vw, 72px) !important;
    }

    .hero-section .dashboard-window {
        width: 760px !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 !important;
    }
}

/* Tablet layout. */
@media (max-width: 1100px) {
    .site-header {
        height: auto !important;
        min-height: 88px !important;
    }

    .hero-section {
        min-height: auto !important;
        padding: 60px 0 72px !important;
    }

    .hero-section .hero-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        width: min(850px, calc(100% - 42px)) !important;
        gap: 48px !important;
    }

    .hero-section .hero-content {
        max-width: 720px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .hero-section .hero-content h1,
    .hero-section .hero-description,
    .hero-section .hero-actions,
    .hero-section .hero-trust-row,
    .hero-section .hero-statistics {
        max-width: 720px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-section .hero-trust-row {
        justify-content: center !important;
    }

    .hero-section .hero-dashboard-wrapper {
        justify-content: center !important;
        max-width: 820px !important;
        margin: 0 auto !important;
    }

    .hero-section .dashboard-window {
        width: 760px !important;
    }
}

/* Mobile layout. */
@media (max-width: 700px) {
    .hero-section {
        padding: 42px 0 56px !important;
    }

    .hero-section .hero-layout {
        width: min(100% - 28px, 620px) !important;
        gap: 36px !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(44px, 13vw, 62px) !important;
    }

    .hero-section .hero-actions {
        grid-template-columns: 1fr !important;
    }

    .hero-section .hero-dashboard-wrapper {
        display: block !important;
        width: 100% !important;
        max-height: 430px !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .hero-section .dashboard-window {
        width: 760px !important;
        max-width: none !important;
        transform: scale(.68) !important;
        transform-origin: top left !important;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-dashboard-wrapper {
        max-height: 340px !important;
    }

    .hero-section .dashboard-window {
        transform: scale(.53) !important;
    }
}


/* ============================================================
   ABOTRIX_PUBLIC_FINAL_SPACING_V22_5
   Header clearance and complete dashboard visibility
   ============================================================ */

:root {
    --abotrix-public-header-height: 150px;
}

/* Give the fixed navigation enough room above the hero. */
.hero-section {
    min-height: auto !important;
    padding-top: 88px !important;
    padding-bottom: 90px !important;
    overflow: hidden !important;
}

.hero-section .hero-layout {
    align-items: start !important;
    padding-top: 10px !important;
}

/* Move both hero columns safely below the navigation. */
.hero-section .hero-content,
.hero-section .hero-dashboard-wrapper {
    margin-top: 22px !important;
}

/* Keep the eyebrow completely visible. */
.hero-section .eyebrow {
    position: relative !important;
    z-index: 5 !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

/* Slightly reduce the heading so lower content remains visible. */
.hero-section .hero-content h1 {
    font-size: clamp(54px, 4.6vw, 76px) !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
}

.hero-section .hero-description {
    margin-bottom: 26px !important;
}

.hero-section .hero-actions {
    margin-bottom: 24px !important;
}

.hero-section .hero-trust-row {
    margin-bottom: 20px !important;
}

/* Compact the dashboard without making it unreadable. */
.hero-section .hero-dashboard-wrapper {
    align-items: flex-start !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-section .dashboard-window {
    width: 790px !important;
    max-width: 100% !important;
    transform: scale(.92) !important;
    transform-origin: top left !important;
    margin-bottom: -48px !important;
}

/* Reduce excessive vertical space inside the preview. */
.hero-section .dashboard-topbar {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.hero-section .dashboard-body {
    padding-top: 18px !important;
    padding-bottom: 20px !important;
}

.hero-section .dashboard-heading {
    margin-bottom: 12px !important;
}

.hero-section .metric-grid {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

.hero-section .metric-card {
    min-height: 102px !important;
    padding: 14px 16px !important;
}

.hero-section .dashboard-main-grid {
    gap: 12px !important;
}

/* Ensure the bottom controls/buttons remain visible. */
.hero-section .chart-card,
.hero-section .activity-card,
.hero-section .recent-activity-card,
.hero-section .live-operations-card {
    min-height: 0 !important;
    overflow: visible !important;
}

.hero-section .chart-card {
    padding-bottom: 18px !important;
}

.hero-section .chart-actions,
.hero-section .dashboard-card-actions,
.hero-section .chart-footer,
.hero-section .dashboard-footer-actions {
    position: relative !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 14px !important;
    padding-bottom: 2px !important;
    overflow: visible !important;
}

.hero-section .chart-actions button,
.hero-section .dashboard-card-actions button,
.hero-section .chart-footer button,
.hero-section .dashboard-footer-actions button {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Avoid cutting the dashboard at the bottom of the hero. */
.hero-section,
.hero-section .hero-layout,
.hero-section .hero-dashboard-wrapper {
    max-height: none !important;
}

/* Standard desktop and laptop screens. */
@media (max-width: 1500px) and (min-width: 1101px) {
    .hero-section {
        padding-top: 76px !important;
        padding-bottom: 82px !important;
    }

    .hero-section .hero-layout {
        grid-template-columns:
            minmax(430px, .88fr)
            minmax(0, 1.12fr) !important;
        align-items: start !important;
    }

    .hero-section .hero-content,
    .hero-section .hero-dashboard-wrapper {
        margin-top: 18px !important;
    }

    .hero-section .dashboard-window {
        width: 760px !important;
        transform: scale(.9) !important;
        margin-bottom: -58px !important;
    }
}

/* Short laptop screens. */
@media (max-height: 850px) and (min-width: 1101px) {
    .hero-section {
        padding-top: 68px !important;
        padding-bottom: 70px !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(50px, 4.2vw, 68px) !important;
    }

    .hero-section .hero-description {
        font-size: 18px !important;
        line-height: 1.48 !important;
    }

    .hero-section .dashboard-window {
        transform: scale(.84) !important;
        margin-bottom: -92px !important;
    }
}

/* Tablet and mobile should return to a normal stacked layout. */
@media (max-width: 1100px) {
    .hero-section {
        padding-top: 56px !important;
        padding-bottom: 70px !important;
    }

    .hero-section .hero-content,
    .hero-section .hero-dashboard-wrapper {
        margin-top: 0 !important;
    }

    .hero-section .dashboard-window {
        transform: none !important;
        margin-bottom: 0 !important;
        transform-origin: center top !important;
    }
}

@media (max-width: 700px) {
    .hero-section .dashboard-window {
        width: 760px !important;
        max-width: none !important;
        transform: scale(.66) !important;
        transform-origin: top left !important;
        margin-bottom: -210px !important;
    }
}

/* ABOTRIX_SAFE_COMPACT_HEADER_V23_1_START */

/*
 * Compact header correction.
 * Important: do not set display:flex on every nav element.
 * The original website controls desktop and mobile visibility.
 */

.site-header {
    height: 74px;
    min-height: 74px;
    padding-top: 0;
    padding-bottom: 0;
}

.site-header > .container,
.site-header .header-inner,
.site-header .nav-container {
    height: 74px;
    min-height: 74px;
    align-items: center;
}

/* Logo size only */
.site-header .logo img,
.site-header .brand img,
.site-header .site-logo img,
.site-header .header-logo {
    width: auto;
    max-height: 47px;
    object-fit: contain;
}

/* Adjust links without changing menu visibility */
.site-header nav a {
    font-size: 15px;
    line-height: 1.2;
}

/* Adjust action buttons without exposing hidden navigation */
.site-header .button,
.site-header .nav-button,
.site-header .button-primary,
.site-header .button-secondary,
.site-header .login-link {
    min-height: 44px;
    height: 44px;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    justify-content: center;
}

/* Keep the hero comfortably below the fixed navigation */
.hero-section {
    padding-top: clamp(46px, 5vw, 68px);
}

@media (max-width: 768px) {
    .site-header {
        height: 66px;
        min-height: 66px;
    }

    .site-header > .container,
    .site-header .header-inner,
    .site-header .nav-container {
        height: 66px;
        min-height: 66px;
    }

    .site-header .logo img,
    .site-header .brand img,
    .site-header .site-logo img,
    .site-header .header-logo {
        max-height: 41px;
    }

    .hero-section {
        padding-top: 38px;
    }
}

/* ABOTRIX_SAFE_COMPACT_HEADER_V23_1_END */
