@font-face {
  font-family: "Technique BRK";
  src: url("../fonts/technique/techniqu.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Technique BRK";
  src: url("../fonts/technique/techniqo.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #060009;
  --panel: rgba(13, 9, 22, 0.72);
  --panel-strong: rgba(21, 13, 34, 0.88);
  --line: rgba(0, 229, 255, 0.38);
  --soft-line: rgba(125, 237, 255, 0.18);
  --blue: #00d9ff;
  --blue-bright: #80f7ff;
  --pink: #ff2fd6;
  --violet: #7c3cff;
  --lime: #eaff28;
  --amber: #ffc433;
  --text: #f7fbff;
  --text-soft: rgba(235, 242, 255, 0.78);
  --font-display: "Technique BRK", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --font-heading: "Segoe UI", "Inter", Arial, Helvetica, sans-serif;
  --font-ui: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --detail-shell-inline: clamp(34px, 5vw, 60px);

  /* Layout sizing knobs:
     sX = tinggi screen/viewport
     hX = tinggi header menu
     gx = gap header ke section
     sbx = gap section di bawah, edit ini untuk naik/turunin tinggi section
     section height = vh - hX - gx - bottom-gap - adjust
  */
  --vh: 100dvh;
  --sX: var(--vh);
  --hX: 110px;
  --gx: 15px;

  /* 🔥 kontrol utama (ini yang kamu adjust) */
  --bottom-gap: 24px;
  --sbx: var(--bottom-gap);
  --adjust: 0px;

  /* ❌ hapus pendekatan lama (82dvh) */
  /* sekarang full dynamic */

  --section-height: calc(var(--vh) - var(--hX) - var(--gx) - var(--bottom-gap) - var(--adjust));

  --detail-section-gap: var(--gx);

  /* ⚠️ ini penting (jangan terlalu besar) */
  --detail-bottom-reserve: 24px;

  --detail-section-height: var(--section-height);

  --detail-scroll-offset: calc(var(--hX) + var(--gx));
  --topbar-offset: var(--hX);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 217, 255, 0.16), transparent 22%),
    radial-gradient(circle at 86% 8%, rgba(255, 47, 214, 0.18), transparent 24%),
    radial-gradient(circle at 72% 76%, rgba(124, 60, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #040306 0%, #100017 45%, #040008 100%);
  color: var(--text);
  font-family: var(--font-ui);
  scroll-behavior: smooth;
}

body {
  position: relative;
  padding: 18px 14px var(--detail-bottom-reserve);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
}

body::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  box-shadow: inset 0 0 140px rgba(255, 47, 214, 0.18);
  opacity: 0.72;
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 8% 28%, rgba(0, 217, 255, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 58%, rgba(128, 247, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 14%, rgba(0, 217, 255, 0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 67% 24%, rgba(255, 47, 214, 0.86) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 66%, rgba(234, 255, 40, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 96% 42%, rgba(0, 217, 255, 0.88) 0 2px, transparent 3px);
  opacity: 0.62;
}

.topbar,
main,
.software-footer,
.assistant-box {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: var(--detail-section-gap);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(6, 5, 11, 0.92), rgba(25, 4, 36, 0.82)),
    rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 47, 214, 0.10),
    0 0 26px rgba(0, 217, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-default,
.brand-image-shell {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-default.is-hidden,
.brand-image-shell.is-hidden {
  display: none;
}

.brand-image {
  width: min(360px, 40vw);
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand img {
  width: 50px;
  height: auto;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: lowercase;
  text-shadow: 0 0 16px rgba(0, 217, 255, 0.34);
}

.brand-light {
  color: var(--text);
}

.brand-blue {
  color: #58A7DA;
  text-shadow:
    0 0 10px rgba(88, 167, 218, 0.56),
    0 0 22px rgba(0, 217, 255, 0.22);
}

.brand-tag {
  font-family: var(--font-ui);
  color: var(--blue);
  background: linear-gradient(100deg, #00d9ff 0%, #80f7ff 36%, #b68cff 66%, #ff2fd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  text-shadow: 0 0 14px rgba(0, 217, 255, 0.34);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 217, 255, 0.26);
  border-radius: 10px;
  background: rgba(0, 217, 255, 0.06);
  cursor: pointer;
}

.topnav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.topnav a,
.btn-primary,
.btn-ghost {
  font-family: var(--font-ui);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 500;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.topnav a {
  color: var(--text-soft);
  border: 1px solid rgba(0, 217, 255, 0.16);
  background:
    linear-gradient(100deg, rgba(0, 217, 255, 0.08), rgba(255, 47, 214, 0.05)),
    rgba(10, 5, 18, 0.52);
}

.topnav a:nth-child(4n + 1) {
  color: #bff9ff;
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.32);
}

.topnav a:nth-child(4n + 2) {
  color: #e6d9ff;
  text-shadow: 0 0 12px rgba(182, 140, 255, 0.32);
}

.topnav a:nth-child(4n + 3) {
  color: #fff1a8;
  text-shadow: 0 0 12px rgba(234, 255, 40, 0.22);
}

.topnav a:nth-child(4n) {
  color: #ffd4f5;
  text-shadow: 0 0 12px rgba(255, 47, 214, 0.30);
}

.topnav a:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(255, 47, 214, 0.46);
  background:
    linear-gradient(100deg, rgba(0, 217, 255, 0.14), rgba(255, 47, 214, 0.12)),
    rgba(10, 5, 18, 0.62);
  box-shadow:
    0 0 18px rgba(0, 217, 255, 0.10),
    0 0 22px rgba(255, 47, 214, 0.14);
}

.hero-block,
.product-shell {
  border: 1px solid var(--line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 47, 214, 0.08),
    0 0 32px rgba(0, 217, 255, 0.08);
}

.hero-block {
  position: relative;
  overflow: hidden;
  height: var(--detail-section-height);
  min-height: 420px;
  margin-bottom: var(--detail-section-gap);
  padding: clamp(18px, 2vw, 26px) var(--detail-shell-inline) clamp(34px, 4vw, 42px);
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 47, 214, 0.20), transparent 22%),
    radial-gradient(circle at 18% 76%, rgba(0, 217, 255, 0.18), transparent 24%),
    linear-gradient(rgba(0, 217, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.10) 1px, transparent 1px),
    linear-gradient(135deg, rgba(12, 4, 20, 0.76), rgba(31, 2, 44, 0.62));
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 100%;
}

.eyebrow {
  font-family: var(--font-ui);
  margin: 0 0 14px;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 500;
  text-shadow: 0 0 14px rgba(0, 217, 255, 0.58);
}

.hero-copy h1,
.product-head h2 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 3.7vw, 3.85rem);
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.62),
    0 0 22px rgba(0, 217, 255, 0.72),
    0 0 46px rgba(255, 47, 214, 0.34);
}

.hero-text,
.product-text {
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.9;
}

.hero-text {
  max-width: 64ch;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-primary {
  color: #07020d;
  background: linear-gradient(100deg, var(--blue) 0%, #6a7dff 48%, var(--pink) 100%);
  border: 1px solid rgba(128, 247, 255, 0.48);
  box-shadow:
    0 0 18px rgba(0, 217, 255, 0.32),
    0 0 28px rgba(255, 47, 214, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(100deg, var(--blue-bright) 0%, #8b81ff 48%, #ff64de 100%);
}

.btn-ghost {
  color: var(--blue-bright);
  border: 1px solid rgba(0, 217, 255, 0.42);
  background: rgba(8, 1, 14, 0.48);
  box-shadow: inset 0 0 18px rgba(0, 217, 255, 0.06);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-copy-balance {
  order: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: clamp(10px, 1.8vw, 22px) clamp(18px, 3vw, 44px) clamp(10px, 1.4vw, 18px) clamp(10px, 1.6vw, 20px);
}

.hero-copy-balance .hero-text {
  text-align: right;
}

.hero-copy-balance .hero-actions {
  width: 100%;
  justify-content: center;
}

.hero-panel-balance {
  order: 1;
  justify-content: flex-start;
}

.hero-panel-shell {
  width: 100%;
  min-height: 440px;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 217, 255, 0.28), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(255, 47, 214, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(8, 10, 22, 0.78), rgba(45, 12, 42, 0.46));
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.hero-panel-visual {
  background-image:
    linear-gradient(180deg, rgba(0, 217, 255, 0.04), rgba(255, 47, 214, 0.10)),
    url("../image/software-hero-it-tude.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.hero-panel-title,
.product-label {
  font-family: var(--font-ui);
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 217, 255, 0.28);
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.product-section {
  margin-bottom: var(--detail-section-gap);
  scroll-margin-top: var(--detail-scroll-offset);
}

.product-shell {
  height: var(--detail-section-height);
  min-height: 420px;
  padding: clamp(24px, 2.6vw, 34px) var(--detail-shell-inline) clamp(30px, 4vw, 40px);
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 217, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 47, 214, 0.11), transparent 22%),
    linear-gradient(rgba(0, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(14, 4, 22, 0.72), rgba(7, 1, 12, 0.82));
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-section-alt .product-shell {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 47, 214, 0.14), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(234, 255, 40, 0.08), transparent 22%),
    linear-gradient(rgba(0, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 2, 32, 0.76), rgba(6, 1, 11, 0.86));
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.product-head {
  width: min(520px, 100%);
  margin: 0 0 18px auto;
  text-align: right;
}

.product-head h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.46),
    0 0 24px rgba(255, 47, 214, 0.62),
    0 0 48px rgba(0, 217, 255, 0.25);
}

.product-section:nth-of-type(3n) .product-head h2 {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.44),
    0 0 24px rgba(234, 255, 40, 0.58),
    0 0 48px rgba(0, 217, 255, 0.20);
}

.product-section:nth-of-type(3n + 1) .product-head h2 {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.44),
    0 0 24px rgba(0, 80, 255, 0.72),
    0 0 48px rgba(0, 217, 255, 0.28);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: center;
}

.product-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.product-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--soft-line);
  background:
    linear-gradient(145deg, rgba(14, 10, 24, 0.88), rgba(7, 3, 12, 0.72));
  box-shadow:
    inset 0 0 0 1px rgba(255, 47, 214, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.product-card-main {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 47, 214, 0.17), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(0, 217, 255, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(16, 10, 28, 0.92), rgba(9, 3, 15, 0.76));
}

.product-card-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.product-icon-wrap {
  width: 100%;
  min-height: 170px;
  border: 1px solid rgba(0, 217, 255, 0.30);
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 217, 255, 0.22), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(255, 47, 214, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(12, 8, 22, 0.76), rgba(5, 3, 10, 0.88));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-icon {
  width: min(170px, 72%);
  height: auto;
  color: var(--blue-bright);
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 7px rgba(0, 217, 255, 0.72)) drop-shadow(0 0 24px rgba(255, 47, 214, 0.28));
}

.product-card-wordmark {
  justify-content: center;
  border-color: transparent;
  background:
    radial-gradient(circle at 44% 40%, rgba(0, 217, 255, 0.08), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(255, 47, 214, 0.11), transparent 36%),
    linear-gradient(145deg, rgba(14, 10, 24, 0.48), rgba(7, 3, 12, 0.44));
  /* box-shadow: none; */
}

.product-wordmark-wrap {
  width: 100%;
  min-height: 170px;
  /* border: 0;
  background:
    radial-gradient(circle at 42% 42%, rgba(0, 217, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(255, 47, 214, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(12, 8, 22, 0.76), rgba(5, 3, 10, 0.88)); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-wordmark {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.46),
    0 0 24px rgba(234, 255, 40, 0.46),
    0 0 46px rgba(255, 47, 214, 0.28);
}

.product-wordmark-blue {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.58),
    0 0 22px rgba(0, 217, 255, 0.74),
    0 0 48px rgba(0, 80, 255, 0.38);
}

.product-wordmark-spaced {
  letter-spacing: 0.06em;
}

.product-text {
  margin: 0;
  font-size: 1rem;
}

.it-section {
  height: var(--detail-section-height);
  min-height: 420px;
  margin-bottom: var(--detail-section-gap);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 47, 214, 0.08),
    0 0 32px rgba(0, 217, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-section-inner {
  width: 100%;
  height: 100%;
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.it-section-head {
  margin-bottom: 20px;
  text-align: right;
}

.it-section-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.40),
    0 0 24px rgba(255, 47, 214, 0.60),
    0 0 48px rgba(0, 217, 255, 0.20);
}

.it-section-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 100%;
}

.it-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.software-footer {
  margin-top: 18px;
  border: 1px solid var(--line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 47, 214, 0.08),
    0 0 28px rgba(0, 217, 255, 0.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 47, 214, 0.14), transparent 22%),
    radial-gradient(circle at 12% 86%, rgba(0, 217, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 3, 20, 0.78), rgba(5, 1, 9, 0.88));
}

.software-footer__shell {
  padding: 30px 24px 20px;
}

.software-footer__brand {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--soft-line);
}

.software-footer__brand img {
  width: 58px;
  height: auto;
  display: block;
}

.software-footer__title {
  font-family: var(--font-ui);
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.software-footer__text {
  font-family: var(--font-ui);
  font-weight: 400;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.software-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0;
}

.software-footer__section {
  padding: 18px;
  border: 1px solid var(--soft-line);
  background: rgba(10, 5, 18, 0.62);
}

.software-footer__section h3 {
  font-family: var(--font-ui);
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(234, 255, 40, 0.36);
}

.software-footer__section a,
.software-footer__section p {
  font-family: var(--font-ui);
  display: block;
  margin: 0 0 10px;
  color: var(--text-soft);
  line-height: 1.8;
  text-decoration: none;
}

.software-footer__section a:hover {
  color: var(--pink);
}

.software-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
  color: rgba(242, 243, 244, 0.58);
  font-size: 0.88rem;
}

@media (max-width: 980px) {

  .hero-grid,
  .product-grid,
  .it-section-body {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-copy-balance,
  .hero-copy-balance .hero-text {
    text-align: left;
    align-items: flex-start;
  }

  .hero-copy-balance {
    order: 1;
  }

  .hero-panel-balance {
    order: 2;
    justify-content: flex-start;
  }

  .product-head,
  .it-section-head {
    margin: 0 0 18px;
    text-align: left;
  }

  .product-shell {
    min-height: auto;
  }

  .hero-panel-shell {
    min-height: 360px;
  }

  .software-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding: 10px 8px 18px;
    padding-top: calc(var(--topbar-offset) + 10px);
    padding-bottom: var(--detail-bottom-reserve);
  }

  .topbar {
    position: fixed;
    top: 10px;
    left: 8px;
    right: 8px;
    align-items: center;
    padding: 12px 14px;
  }

  .topnav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .brand img {
    width: 38px;
  }

  .brand-image {
    width: min(240px, 68vw);
  }

  .brand-name {
    font-size: 1.72rem;
  }

  .topnav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid var(--line);
    background:
      linear-gradient(135deg, rgba(6, 5, 11, 0.96), rgba(25, 4, 36, 0.92)),
      rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      inset 0 0 0 1px rgba(255, 47, 214, 0.10),
      0 0 26px rgba(0, 217, 255, 0.12),
      0 14px 34px rgba(0, 0, 0, 0.38);
  }

  body.topnav-open .topnav {
    display: flex;
  }

  .topnav a {
    width: 100%;
    justify-content: flex-start;
    padding: 0 16px;
  }

  body.topnav-open .topnav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.topnav-open .topnav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.topnav-open .topnav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .topnav a,
  .btn-primary,
  .btn-ghost {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .hero-block {
    min-height: auto;
    padding: 28px 18px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-panel-balance {
    order: 1;
  }

  .hero-copy-balance {
    order: 2;
  }

  .hero-text {
    margin-top: 18px;
  }

  .product-shell {
    min-height: auto;
    padding: 24px 18px;
  }

  .product-card {
    padding: 20px;
  }

  .hero-panel-shell {
    min-height: 220px;
    padding: 0;
  }

  .hero-panel-visual {
    min-height: 220px;
    background-image:
      linear-gradient(180deg, rgba(0, 217, 255, 0.04), rgba(255, 47, 214, 0.10)),
      url("../image/software-hero-it-tude_mobile.png");
    background-size: contain;
    background-position: center center;
  }

  .product-icon-wrap {
    min-height: 136px;
  }

  .software-footer__shell {
    padding: 22px 16px 18px;
  }

  .software-footer__brand {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .software-footer__brand img {
    width: 42px;
  }

  @media (max-width: 700px) {

    .product-card-main .product-text:nth-of-type(n + 2),
    .product-card-visual .product-text {
      display: none;
    }

    .product-shell {
      height: var(--detail-section-height);
      min-height: 0;
      overflow: hidden;
      justify-content: center;
    }

    .product-grid {
      gap: 14px;
    }

    .product-card {
      padding: 18px;
    }

    .product-text {
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .product-head h2 {
      font-size: clamp(2.1rem, 12vw, 3rem);
    }
  }
}