.software-page {
  background: #f5f5f7;
  color: #111111;
  overflow: hidden;
  letter-spacing: 0;
}

.software-page * {
  letter-spacing: 0;
}

.software-page .brand img {
  filter: invert(1);
}

.software-page .menu-toggle span {
  background: #111111;
}

.software-page.menu-open .brand img {
  filter: none;
}

.software-page.menu-open .menu-toggle span {
  background: #ffffff;
}

.software-page.contact-active .brand img,
.software-page.contact-active.menu-open .brand img {
  filter: none;
}

.software-page.contact-active .menu-toggle span {
  background: #ffffff;
}

.software-scroll {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #f5f5f7;
}

.software-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
  color: rgba(17, 17, 17, 0.58);
  text-transform: uppercase;
}

.software-hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 32px 112px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.98), transparent 36%),
    radial-gradient(circle at 18% 86%, rgba(214, 226, 255, 0.22), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(201, 226, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 64%, #f1f2f5 100%);
}

.software-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: 1;
}

.hero-shape-left {
  width: clamp(160px, 16vw, 240px);
  height: clamp(120px, 12vw, 190px);
  left: -9vw;
  bottom: -7vw;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(235, 240, 255, 0.42), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(17, 24, 39, 0.03);
  box-shadow: 0 24px 70px rgba(120, 145, 180, 0.08);
  transform: rotate(-14deg);
}

.hero-shape-right {
  width: clamp(220px, 22vw, 360px);
  height: clamp(150px, 14vw, 230px);
  right: -9vw;
  bottom: -5vw;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(218, 235, 255, 0.42), rgba(185, 215, 255, 0.2));
  border: 1px solid rgba(17, 24, 39, 0.03);
  box-shadow: 0 24px 70px rgba(120, 145, 180, 0.1);
  transform: rotate(-7deg);
}

.software-hero-content {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.software-hero-panels {
  position: relative;
  min-height: 230px;
}

.software-hero-panel {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
  position: absolute;
  inset: 0 auto auto 0;
}

.software-hero-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.software-hero h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 650;
  color: #111827;
}

.software-hero p:not(.software-eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.48;
  font-weight: 430;
  color: rgba(17, 24, 39, 0.72);
}

.software-hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.software-primary-button,
.software-secondary-button,
.software-button {
  width: 156px;
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 7px;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 650;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.software-primary-button {
  background: #071923;
  color: #ffffff;
  border: 1.5px solid #071923;
}

.software-secondary-button {
  background: transparent;
  color: #071923;
  border: 1.5px solid #071923;
}

.software-button {
  background: #071923;
  color: #ffffff;
  border: 1.5px solid #071923;
}

.software-primary-button:hover,
.software-button:hover {
  transform: translateY(-2px);
  background: #102734;
  border-color: #102734;
}

.software-secondary-button:hover {
  transform: translateY(-2px);
  background: #071923;
  color: #ffffff;
}

.software-product-tabs {
  width: min(calc(100% - 64px), 940px);
  min-height: 82px;
  padding: 8px;
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(17, 24, 39, 0.06);
}

.software-product-tab {
  appearance: none;
  border: 0;
  min-height: 66px;
  padding: 0 34px;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 650;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.software-product-tab:hover {
  transform: translateY(-1px);
}

.software-product-tab.is-active {
  background: #071923;
  color: #ffffff;
}

.software-product-tab span:last-child {
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
}

.software-products-section {
  width: 100%;
  padding: 76px 30px 54px;
  background: #ffffff;
}

.software-section-heading {
  width: min(100%, 1520px);
  margin: 0 auto 26px;
}

.software-section-heading .software-eyebrow {
  margin-bottom: 12px;
  color: rgba(17, 17, 17, 0.56);
}

.software-section-heading h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  font-weight: 560;
  color: #111827;
}

.software-product-card {
  width: min(100%, 1520px);
  min-height: 360px;
  margin: 0 auto;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 22px;
  box-shadow:
    0 10px 24px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(17, 24, 39, 0.08);
}

.software-product-card.is-active {
  display: grid;
}

.software-product-card-copy {
  padding: 42px 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.software-card-label {
  margin: 0 0 78px;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  color: rgba(19, 46, 75, 0.86);
}

.software-product-card h3 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.14;
  font-weight: 580;
  color: #111827;
}

.software-product-card p:not(.software-card-label) {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.48;
  font-weight: 430;
  color: rgba(17, 24, 39, 0.74);
}

.software-product-card .software-button {
  margin-top: 48px;
}

.software-product-card-visual {
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.software-product-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
}

.software-product-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.software-product-card-visual img {
  max-width: min(54%, 300px);
  max-height: 120px;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.deflow-visual::before {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.88), transparent 26%),
    radial-gradient(circle at 78% 74%, rgba(185, 213, 255, 0.58), transparent 42%),
    linear-gradient(135deg, #f7fbff 0%, #dceaff 48%, #8fb9ff 100%);
}

.decrypt-visual::before {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.9), transparent 26%),
    radial-gradient(circle at 78% 74%, rgba(194, 200, 208, 0.42), transparent 42%),
    linear-gradient(135deg, #fbfbfc 0%, #eceef2 48%, #b8bec8 100%);
}

.orbia-visual::before {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.9), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(184, 222, 255, 0.46), transparent 42%),
    linear-gradient(135deg, #fbfdff 0%, #e7f0ff 48%, #b8d4ff 100%);
}

.software-contact-section {
  min-height: 50vh;
  padding: 76px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
}

.software-contact-inner {
  width: min(100%, 680px);
  margin: 0 auto;
  text-align: center;
}

.software-contact-section .software-eyebrow {
  color: rgba(255, 255, 255, 0.46);
}

.software-contact-section h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.04;
  font-weight: 620;
  color: #ffffff;
}

.software-contact-section p:not(.software-eyebrow) {
  max-width: 520px;
  margin: 18px auto 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.62);
}

.software-contact-section .software-button {
  margin-top: 26px;
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.software-contact-section .software-button:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1180px) {
  .software-product-tabs {
    width: min(calc(100% - 44px), 820px);
  }

  .software-product-tab {
    padding: 0 24px;
    font-size: 15px;
  }

  .software-product-card {
    grid-template-columns: 1fr;
    width: min(100%, 860px);
  }

  .software-product-card-visual {
    min-height: 260px;
    order: -1;
  }

  .software-card-label {
    margin-bottom: 48px;
  }
}

@media (max-width: 760px) {
  .software-hero {
    min-height: 100svh;
    padding: 88px 18px 138px;
  }

  .software-hero-content {
    width: min(100%, 520px);
  }

  .software-hero-panels {
    min-height: 260px;
  }

  .software-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .software-hero p:not(.software-eyebrow) {
    font-size: 14px;
  }

  .software-hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  .software-primary-button,
  .software-secondary-button,
  .software-button {
    width: 210px;
    min-height: 42px;
    font-size: 13px;
  }

  .software-primary-button,
  .software-secondary-button {
    max-width: 260px;
  }

  .hero-shape-left {
    width: 160px;
    height: 110px;
    left: -92px;
    bottom: -44px;
  }

  .hero-shape-right {
    width: 230px;
    height: 140px;
    right: -142px;
    bottom: -34px;
  }

  .software-product-tabs {
    width: calc(100% - 22px);
    min-height: auto;
    bottom: 18px;
    padding: 7px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .software-product-tab {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    justify-content: space-between;
    font-size: 14px;
  }

  .software-product-tab span:last-child {
    font-size: 22px;
  }

  .software-products-section {
    padding: 58px 14px 42px;
  }

  .software-section-heading {
    margin-bottom: 20px;
  }

  .software-section-heading h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .software-product-card {
    min-height: auto;
    border-radius: 18px;
  }

  .software-product-card-copy {
    padding: 30px 22px 26px;
  }

  .software-card-label {
    margin-bottom: 48px;
    font-size: 12px;
  }

  .software-product-card h3 {
    font-size: clamp(26px, 8vw, 38px);
  }

  .software-product-card p:not(.software-card-label) {
    font-size: 14px;
  }

  .software-product-card .software-button {
    width: 100%;
    margin-top: 36px;
  }

  .software-product-card-visual {
    min-height: 210px;
  }

  .software-product-card-visual img {
    max-width: 54%;
    max-height: 82px;
  }

  .software-contact-section {
    min-height: 52svh;
    padding: 68px 18px;
  }

  .software-contact-section h2 {
    font-size: clamp(30px, 10vw, 46px);
  }
}

@media (max-width: 360px) {
  .software-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .software-products-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .software-product-card-copy {
    padding-left: 18px;
    padding-right: 18px;
  }
}