/* ======================================================
   GLOBAL RESET & VARIABLES
====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #f7f7f7;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  background: #000000;
}

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

button {
  font: inherit;
  color: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

:root {
  --black: #020304;
  --black-soft: #080a0c;
  --black-card: rgba(14, 16, 18, 0.88);
  --panel: #0d0f11;
  --panel-light: #131517;
  --white: #ffffff;
  --grey: #b7b8bb;
  --grey-dark: #777b80;
  --gold: #f3b600;
  --gold-light: #ffd763;
  --gold-dark: #b77c00;
  --gold2: #f0c234;
  --border: rgba(255, 255, 255, 0.14);
  --gold-border: rgba(243, 182, 0, 0.45);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.48);
  --bg: #050608;
  --bg2: #0b0d11;
  --muted: #c7c7c7;
  --line: rgba(255, 200, 60, 0.18);
  --text-soft: rgba(255, 255, 255, 0.72);
  --card: #0c0f14;
  --card-hover: #15181b;
  --card-border: rgba(255, 255, 255, 0.12);
  --featured-border: rgba(240, 197, 58, 0.9);
}

.container {
  width: min(1400px, 92%);
  margin: 0 auto;
}

/* ======================================================
   HEADER (HOME NAVBAR)
====================================================== */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 20px;
  left: 0;
  right: 0;
  padding: 0 32px;
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
  width: 100%;
  max-width: 1580px;
  min-height: 92px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(1, 2, 3, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(243, 182, 0, 0.25));
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

.main-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-navigation a {
  position: relative;
  padding: 12px 0;
  color: #ececee;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--gold);
}

.main-navigation a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 32px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: var(--gold);
  box-shadow: 0 0 15px rgba(243, 182, 0, 0.65);
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-contact,
.button-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 35px rgba(243, 182, 0, 0.22);
}

.button-contact {
  min-width: 160px;
  flex-shrink: 0;
}

.button-primary:hover,
.button-contact:hover {
  box-shadow: 0 17px 40px rgba(243, 182, 0, 0.34);
}

.button-secondary {
  color: var(--white);
  border: 1px solid var(--gold-border);
  background: rgba(0, 0, 0, 0.42);
}

.play-button {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 10px;
}

.menu-toggle {
  display: none;
}

/* ======================================================
   HOME SECTION
====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(90deg, #020304 0%, rgba(2, 3, 4, 0.98) 36%, rgba(2, 3, 4, 0.65) 57%, rgba(2, 3, 4, 0.12) 100%), radial-gradient(circle at 73% 45%, rgba(243, 182, 0, 0.17), transparent 28%), linear-gradient(180deg, #030608 0%, #07111d 57%, #020304 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 68%, rgba(0, 0, 0, 0.94) 100%);
}

.background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(243, 182, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 182, 0, 0.03) 1px, transparent 1px);
  background-size: 75px 75px;
}

.background-glow {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(243, 182, 0, 0.18), transparent 62%);
  filter: blur(30px);
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1580px;
  min-height: 830px;
  margin: 0 auto;
  padding: 165px 52px 135px;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 10;
  padding-top: 12px;
  font-family: "Manrope", Arial, sans-serif;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #e6e6e7;
  background: rgba(10, 12, 14, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.hero-title {
  max-width: 800px;
  margin: 0;
  font-size: clamp(58px, 5.25vw, 88px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero-title span {
  color: var(--gold);
  text-shadow: 0 0 28px rgba(243, 182, 0, 0.1);
}

.hero-description {
  max-width: 625px;
  margin: 28px 0 25px;
  color: #c6c7ca;
  font-size: 17px;
  line-height: 1.7;
}

.benefit-list {
  margin: 17px 0 28px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  gap: 28px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #c9c9cb;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.benefit-icon {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 0 17px rgba(243, 182, 0, 0.35);
}

.hero-buttons {
  margin-bottom: 30px;
  display: flex;
  gap: 14px;
}

.statistics-card {
  width: min(100%, 820px);
  padding: 18px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 22, 25, 0.9), rgba(8, 9, 11, 0.94));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.statistic {
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.statistic:last-child {
  border-right: none;
}

.statistic-icon {
  color: var(--gold);
  font-size: 29px;
}

.statistic-label {
  display: block;
  margin-bottom: 4px;
  color: #c4c5c8;
  font-size: 11px;
  line-height: 1.25;
}

.statistic-value {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
}

.hero-visual {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: -2%;
  width: 61%;
  height: 720px;
  overflow: hidden;
  pointer-events: none;
}

.giant-x {
  position: absolute;
  z-index: 5;
  top: 45px;
  right: 7%;
  color: transparent;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(290px, 28vw, 475px);
  font-weight: 300;
  line-height: 0.75;
  transform: scaleX(0.83) rotate(-1deg);
  -webkit-text-stroke: 8px rgba(255, 199, 55, 0.98);
  text-shadow: 0 0 15px rgba(255, 180, 0, 1), 0 0 42px rgba(255, 180, 0, 0.72), 0 0 100px rgba(255, 180, 0, 0.38);
}

.city {
  position: absolute;
  z-index: 2;
  left: 7%;
  right: 0;
  bottom: 25%;
  height: 330px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 11px;
}

.building {
  position: relative;
  width: 54px;
  background: repeating-linear-gradient(180deg, rgba(255, 190, 45, 0.72) 0 3px, transparent 3px 16px), repeating-linear-gradient(90deg, rgba(255, 190, 45, 0.42) 0 2px, transparent 2px 13px), linear-gradient(180deg, #142132, #04090f);
  border: 1px solid rgba(255, 183, 0, 0.13);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.building::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -25px;
  width: 2px;
  height: 25px;
  transform: translateX(-50%);
  background: rgba(255, 190, 40, 0.75);
}

.building-01 {
  height: 145px;
}

.building-02 {
  height: 235px;
  width: 67px;
}

.building-03 {
  height: 190px;
}

.building-04 {
  height: 285px;
  width: 74px;
}

.building-05 {
  height: 215px;
}

.building-06 {
  height: 325px;
  width: 68px;
}

.building-07 {
  height: 205px;
}

.building-08 {
  height: 270px;
  width: 71px;
}

.building-09 {
  height: 175px;
}

.building-10 {
  height: 245px;
}

.digital-globe {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: -44%;
  width: 88%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(55, 135, 225, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 45% 27%, rgba(17, 63, 116, 0.55), transparent 25%), radial-gradient(circle at 50% 45%, #0b1e34, #030b14 68%, #000 100%);
  box-shadow: inset 0 30px 70px rgba(57, 150, 255, 0.2), 0 -12px 50px rgba(60, 147, 240, 0.25), 0 0 110px rgba(243, 182, 0, 0.17);
}

.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.83;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 43px, rgba(243, 182, 0, 0.11) 44px 46px), repeating-linear-gradient(14deg, transparent 0 52px, rgba(243, 182, 0, 0.16) 53px 54px), repeating-linear-gradient(103deg, transparent 0 60px, rgba(243, 182, 0, 0.11) 61px 62px);
}

.network-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 17px var(--gold);
}

.dot-01 {
  left: 24%;
  top: 33%;
}

.dot-02 {
  left: 38%;
  top: 24%;
}

.dot-03 {
  left: 52%;
  top: 36%;
}

.dot-04 {
  left: 65%;
  top: 25%;
}

.dot-05 {
  left: 73%;
  top: 44%;
}

.dot-06 {
  left: 48%;
  top: 52%;
}

.dot-07 {
  left: 31%;
  top: 58%;
}

.dot-08 {
  left: 81%;
  top: 60%;
}

.orbit {
  position: absolute;
  z-index: 7;
  border: 1px solid rgba(243, 182, 0, 0.48);
  border-radius: 50%;
  transform: rotate(-11deg);
  box-shadow: 0 0 17px rgba(243, 182, 0, 0.16);
}

.orbit i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 19px var(--gold);
}

.orbit-one {
  width: 78%;
  height: 28%;
  left: 4%;
  top: 47%;
}

.orbit-one i:first-child {
  left: 18%;
  top: 4%;
}

.orbit-one i:last-child {
  right: 8%;
  bottom: 10%;
}

.orbit-two {
  width: 92%;
  height: 38%;
  left: 0;
  top: 53%;
}

.orbit-two i:first-child {
  left: 36%;
  bottom: 0;
}

.orbit-two i:last-child {
  right: 24%;
  top: 8%;
}

.orbit-three {
  width: 69%;
  height: 23%;
  left: 20%;
  top: 59%;
}

.orbit-three i:first-child {
  left: 5%;
  top: 22%;
}

.orbit-three i:last-child {
  right: 16%;
  bottom: 0;
}

.partners-section {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 14px;
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 44px;
}

.partners-title {
  margin: 0 0 12px;
  color: #b9b9bc;
  text-align: center;
  font-size: 13px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.partner-card {
  min-height: 68px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #f1f1f2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(19, 21, 23, 0.88), rgba(7, 8, 9, 0.91));
  backdrop-filter: blur(10px);
}

.partner-card small {
  display: block;
  margin-top: 3px;
  color: #c5c5c7;
  font-size: 9px;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .main-navigation {
    gap: 19px;
  }

  .main-navigation a {
    font-size: 12px;
  }

  .benefit-list {
    gap: 18px;
  }

  .hero-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1050px) {
  .main-navigation {
    display: none;
  }

  .button-contact {
    margin-left: auto;
  }

  .hero {
    min-height: 1160px;
  }

  .hero-container {
    min-height: auto;
    padding: 145px 30px 320px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    top: 400px;
    right: -28%;
    width: 115%;
    height: 690px;
    opacity: 0.52;
  }

  .benefit-list {
    grid-template-columns: repeat(2, max-content);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 650px) {
  .site-header {
    top: 12px;
    padding: 0 12px;
  }

  .navbar {
    min-height: 70px;
    padding: 8px 14px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 24px;
  }

  .hero {
    min-height: 1370px;
  }

  .hero-container {
    padding: 115px 18px 390px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(46px, 13vw, 68px);
  }

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

  .benefit-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .benefit {
    white-space: normal;
  }

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

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

  .statistic {
    padding: 14px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .statistic:last-child {
    border-bottom: none;
  }

  .hero-visual {
    top: 590px;
    right: -70%;
    width: 180%;
  }

  .partners-section {
    padding: 0 14px;
  }

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

  .partner-card {
    min-height: 57px;
    font-size: 10px;
  }
}

/* ======================================================
   PLATFORM OVERVIEW
====================================================== */
.platform-section {
  min-height: 100vh;
  background: radial-gradient(circle at 70% 45%, rgba(255, 191, 0, 0.12), transparent 22%), radial-gradient(circle at 70% 45%, rgba(255, 191, 0, 0.08), transparent 35%), linear-gradient(rgba(255, 208, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 208, 0, 0.03) 1px, transparent 1px), linear-gradient(135deg, #030405 0%, #050608 35%, #06080b 100%);
  background-size: auto, auto, 40px 40px, 40px 40px, cover;
  overflow: hidden;
  position: relative;
}

.platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(255, 191, 0, 0.12), transparent 15%), radial-gradient(circle at 75% 50%, rgba(255, 191, 0, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-content {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 120px 0 60px;
}

.hero-left {
  max-width: 620px;
}

.hero-left h1 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 28px;
}

.hero-left .white {
  color: #fff;
}

.hero-left .gold {
  color: var(--gold);
}

.hero-left p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 34px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 38px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
  color: #fff;
}

.feature-list li span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  box-shadow: 0 0 16px rgba(242, 194, 48, 0.18);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 64px;
  padding: 0 32px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0be2e 0%, #c9920a 100%);
  color: #111;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(215, 166, 26, 0.25), 0 0 18px rgba(242, 194, 48, 0.28);
  transition: 0.3s ease;
}

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

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-wrapper {
  width: 760px;
  height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(242, 194, 48, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 25px rgba(242, 194, 48, 0.03);
}

.orbit-1 {
  width: 260px;
  height: 260px;
}

.orbit-2 {
  width: 370px;
  height: 370px;
}

.orbit-3 {
  width: 500px;
  height: 500px;
}

.orbit-4 {
  width: 620px;
  height: 620px;
}

.center-core {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  background: radial-gradient(circle at 50% 40%, rgba(255, 212, 70, 0.18), transparent 40%), linear-gradient(145deg, #050505, #101010);
  border: 2px solid var(--gold2);
  box-shadow: 0 0 25px rgba(242, 194, 48, 0.25), 0 0 55px rgba(242, 194, 48, 0.15), inset 0 0 30px rgba(242, 194, 48, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-core::before,
.center-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 194, 48, 0.25);
}

.center-core::before {
  width: 300px;
  height: 300px;
}

.center-core::after {
  width: 350px;
  height: 350px;
}

.center-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(242, 194, 48, 0.18));
}

.node::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(242, 194, 48, 0.85), rgba(242, 194, 48, 0.2));
  z-index: -1;
}

.node-left::before,
.node-right::before {
  top: 50%;
  width: 120px;
  height: 1px;
}

.node-left::before {
  right: -120px;
}

.node-right::before {
  left: -120px;
}

.node-top-left::before,
.node-top-right::before,
.node-bottom-left::before,
.node-bottom-right::before {
  width: 120px;
  height: 1px;
}

.node-top-left::before {
  right: -78px;
  top: 94%;
  transform: rotate(50deg);
  transform-origin: left center;
}

.node-top-right::before {
  left: -78px;
  top: 94%;
  transform: rotate(-50deg);
  transform-origin: right center;
}

.node-bottom-left::before {
  right: -78px;
  bottom: 94%;
  transform: rotate(-59deg);
  transform-origin: left center;
}

.node-bottom-right::before {
  left: -78px;
  bottom: 94%;
  transform: rotate(59deg);
  transform-origin: right center;
}

.node {
  position: absolute;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 1.5px solid var(--gold2);
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.9));
  box-shadow: 0 0 18px rgba(242, 194, 48, 0.14), inset 0 0 22px rgba(242, 194, 48, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.node .icon {
  color: #fff;
  font-size: 34px;
  margin-bottom: 14px;
}

.node h4 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #fff;
}

.node-top-left {
  top: 54px;
  left: 150px;
}

.node-left {
  left: 10px;
  top: 300px;
}

.node-bottom-left {
  left: 146px;
  bottom: 32px;
}

.node-top-right {
  top: 54px;
  right: 150px;
}

.node-right {
  right: 10px;
  top: 300px;
}

.node-bottom-right {
  right: 146px;
  bottom: 32px;
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 14px rgba(242, 194, 48, 0.9);
  z-index: 10;
}

/* dot-1: along node-top-left connector (diagonal, upper-left toward center) */
.dot-1 {
  animation: dotPlatform1 2s linear infinite;
  animation-delay: 0s;
}

@keyframes dotPlatform1 {
  0%   { left: 268px; top: 206px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 354px; top: 306px; opacity: 0; }
}

/* dot-2: along node-left connector (horizontal, left toward center) */
.dot-2 {
  top: 378px;
  animation: dotPlatform2 2s linear infinite;
  animation-delay: 0.33s;
}

@keyframes dotPlatform2 {
  0%   { left: 170px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 290px; opacity: 0; }
}

/* dot-3: along node-bottom-left connector (diagonal, lower-left toward center) */
.dot-3 {
  animation: dotPlatform3 2s linear infinite;
  animation-delay: 0.66s;
}

@keyframes dotPlatform3 {
  0%   { left: 260px; bottom: 176px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 340px; bottom: 310px; opacity: 0; }
}

/* dot-4: along node-top-right connector (diagonal, upper-right toward center) */
.dot-4 {
  animation: dotPlatform4 2s linear infinite;
  animation-delay: 0.16s;
}

@keyframes dotPlatform4 {
  0%   { right: 268px; top: 206px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { right: 344px; top: 294px; opacity: 0; }
}

/* dot-5: along node-right connector (horizontal, right toward center) */
.dot-5 {
  top: 378px;
  animation: dotPlatform5 2s linear infinite;
  animation-delay: 0.5s;
}

@keyframes dotPlatform5 {
  0%   { right: 170px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { right: 290px; opacity: 0; }
}

/* dot-6: along node-bottom-right connector (diagonal, lower-right toward center) */
.dot-6 {
  animation: dotPlatform6 2s linear infinite;
  animation-delay: 0.83s;
}

@keyframes dotPlatform6 {
  0%   { right: 260px; bottom: 180px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { right: 340px; bottom: 310px; opacity: 0; }
}

/* ======================================================
   SOLUTION SECTION
====================================================== */
.solutions-page {
  /* min-height: 100vh; */
  padding: 64px 28px;
  background: radial-gradient(circle at 92% 10%, rgba(244, 191, 0, 0.13), transparent 22%), linear-gradient(180deg, #050607, #010202);
  font-family: "Manrope", Arial, sans-serif;
}

.main-content {
  width: min(1580px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-heading h1 {
  font-size: clamp(42px, 4vw, 70px);
}

.section-heading h2 {
  font-size: clamp(34px, 3vw, 56px);
}

.section-heading h1 span,
.section-heading h2 span {
  color: var(--gold);
}

.section-heading p {
  max-width: 540px;
  margin: 22px 0 30px;
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading strong {
  color: var(--gold);
  font-weight: 600;
}

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

.industry-card {
  min-height: 80px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(145deg, #121416, #090b0d);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 191, 0, 0.55);
  box-shadow: 0 18px 42px rgba(244, 191, 0, 0.08);
}

.industry-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.industry-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  border-radius: 10px;
  background: radial-gradient(circle, rgba(244, 191, 0, 0.2), rgba(244, 191, 0, 0.04));
  font-size: 26px;
  filter: saturate(0.1) sepia(1) brightness(1.25);
}

.industry-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
}

.learn-more .arrow {
  font-size: 24px;
}

.learn-more span:last-child {
  font-size: 12px;
  font-weight: 600;
}

.products-section-inline {
  position: relative;
  min-height: 598px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(145deg, #090b0d, #050607 62%, #090701);
  background-size: 34px 34px, 34px 34px, auto;
}

.product-background-glow {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 52%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 191, 0, 0.34), transparent 67%);
  filter: blur(20px);
}

.product-heading {
  position: relative;
  z-index: 4;
}

.product-heading p {
  font-size: 15px;
}

.product-content {
  position: relative;
  min-height: 410px;
}

.product-tabs {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  width: 128px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-tab {
  min-height: 48px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #121416;
  text-align: left;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}

.product-tab:hover {
  border-color: rgba(244, 191, 0, 0.48);
}

.product-tab.active {
  color: #111111;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 700;
}

.product-card {
  position: absolute;
  z-index: 8;
  top: 12px;
  left: 148px;
  width: 295px;
  min-height: 348px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(15, 17, 19, 0.98), rgba(7, 8, 10, 0.98));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.product-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  color: #fff;
}

.product-card h3 span {
  color: var(--gold);
}

.product-card p {
  margin: 0 0 18px;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.7;
}

.product-card strong {
  color: var(--gold);
}

.product-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
  color: #d7d7d8;
  font-size: 13px;
}

.product-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

.product-actions a {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.button-primary {
  color: #111111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-secondary {
  border: 1px solid var(--border);
  background: #111315;
  color: #fff;
}

.device-area {
  position: absolute;
  z-index: 5;
  top: -72px;
  right: -8px;
  width: 55%;
  height: 430px;
}

.desktop-device,
.tablet-device,
.phone-device {
  position: absolute;
  background: #111111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.desktop-device {
  top: 0;
  right: 28px;
  width: 370px;
  height: 245px;
  border: 8px solid #111111;
  border-radius: 15px;
}

.tablet-device {
  top: 160px;
  right: -18px;
  width: 260px;
  height: 180px;
  border: 7px solid #111111;
  border-radius: 14px;
}

.phone-device {
  left: 64px;
  bottom: 2px;
  width: 78px;
  height: 190px;
  border: 7px solid #111111;
  border-radius: 18px;
}

.device-screen {
  position: absolute;
  inset: 7px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #e7eaed);
}

.screen-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12%;
  background: #1b2027;
}

.screen-sidebar {
  position: absolute;
  top: 12%;
  bottom: 0;
  left: 0;
  width: 22%;
  background: #e2e7ed;
}

.screen-content {
  position: absolute;
  top: 12%;
  right: 0;
  bottom: 0;
  left: 22%;
  padding: 12px;
}

.data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

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

.data-cards span {
  height: 42px;
  border: 1px solid #dfe3e6;
  border-radius: 5px;
  background: linear-gradient(145deg, #ffffff, #e5e8ea);
  display: block;
}

.dashboard-chart {
  height: 76px;
  margin: 10px 0;
  border-radius: 6px;
  background: linear-gradient(180deg, transparent 64%, #e9ecef 65%), linear-gradient(135deg, transparent 46%, #f4bf00 47% 49%, transparent 50%);
}

.data-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.data-list span {
  height: 28px;
  border-radius: 4px;
  background: #e2e6ea;
  display: block;
}

.phone-screen {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f5f6;
}

.phone-header {
  height: 18px;
  background: #1b2027;
}

.phone-icons {
  padding: 8px 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.phone-icons span {
  height: 22px;
  border-radius: 5px;
  background: var(--gold);
  display: block;
}

.phone-list {
  height: 35px;
  margin: 6px;
  border-radius: 5px;
  background: #e4e8ec;
}

@media (max-width: 1250px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .products-section-inline {
    min-height: 650px;
  }
}

@media (max-width: 850px) {
  .solutions-page {
    padding: 38px 16px;
  }

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

  .products-section-inline {
    min-height: 980px;
    padding: 28px 20px;
  }

  .product-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .product-tabs,
  .product-card,
  .device-area {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
  }

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

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

  .device-area {
    height: 410px;
  }

  .desktop-device {
    left: 50%;
    right: auto;
    max-width: 90%;
    transform: translateX(-50%);
  }

  .tablet-device {
    top: 180px;
    right: 4%;
  }

  .phone-device {
    left: 10%;
    bottom: 0;
  }
}

/* ======================================================
   PRODUCT SECTION
====================================================== */
.products-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 86% 20%, rgba(230, 166, 19, 0.24), transparent 20%), linear-gradient(rgba(255, 194, 52, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 194, 52, 0.045) 1px, transparent 1px), linear-gradient(135deg, #020304 0%, #040506 35%, #06090d 100%);
  background-size: auto, 34px 34px, 34px 34px, cover;
  padding-bottom: 60px;
}

.products-page::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 194, 52, 0.15), transparent 60%);
  pointer-events: none;
  filter: blur(10px);
}

.products-page::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 120px;
  width: 320px;
  height: 220px;
  background-image: linear-gradient(135deg, transparent 0 42%, rgba(255, 202, 61, 0.15) 42% 43%, transparent 43%), linear-gradient(45deg, transparent 0 42%, rgba(255, 202, 61, 0.15) 42% 43%, transparent 43%);
  opacity: 0.5;
  pointer-events: none;
}

.main-grid {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 50px 0 40px;
  position: relative;
  z-index: 2;
}

.left-side h1 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.06;
  margin-bottom: 26px;
  font-weight: 800;
}

.left-side h1.white {
  color: #fff;
}

.left-side h1.gold {
  color: var(--gold2);
}

.subtitle {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 40px;
}

.left-bottom-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: start;
}

.product-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-item {
  height: 74px;
  border-radius: 12px;
  background: rgba(8, 10, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  text-align: left;
  padding: 0 26px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}

.menu-item.active {
  background: linear-gradient(180deg, #efc23a 0%, #d4a116 100%);
  color: #111;
  font-weight: 500;
  border: none;
  box-shadow: 0 8px 24px rgba(240, 194, 52, 0.18);
}

.menu-item.active::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 32px;
  background: linear-gradient(180deg, #efc23a 0%, #d4a116 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.feature-card {
  background: linear-gradient(180deg, rgba(11, 14, 19, 0.96), rgba(7, 10, 15, 0.96));
  border: 1px solid rgba(216, 169, 26, 0.45);
  border-radius: 16px;
  padding: 34px 34px 28px;
  min-height: 520px;
  box-shadow: 0 0 18px rgba(216, 169, 26, 0.06), inset 0 0 20px rgba(216, 169, 26, 0.03);
}

.feature-card h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #fff;
}

.feature-card h2 span {
  color: var(--gold2);
}

.feature-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 420px;
  margin-bottom: 26px;
}

.card-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dark {
  background: rgba(10, 13, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  min-width: 154px;
  height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

.right-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-group {
  width: 100%;
  max-width: 900px;
  height: auto;
  position: relative;
}

.device {
  position: absolute;
  background: #0f131a;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.laptop {
  width: 640px;
  height: 430px;
  top: 20px;
  right: 20px;
  border-radius: 28px;
  background: #0c1117;
  z-index: 1;
}

.laptop::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: -20px;
  width: calc(100% + 40px);
  height: 18px;
  background: linear-gradient(180deg, #8b8f96, #4f5359);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.device-topbar {
  height: 38px;
  border-radius: 28px 28px 0 0;
  background: #141920;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

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

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background: #f2c230;
}

.dots span:nth-child(2) {
  background: #95d26d;
}

.dots span:nth-child(3) {
  background: #dd6a57;
}

.app-title {
  font-size: 11px;
  color: #cfd8e5;
  white-space: nowrap;
}

.search-mini {
  margin-left: auto;
  font-size: 10px;
  color: #8993a4;
  background: #202632;
  padding: 6px 10px;
  border-radius: 999px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 90px 1fr;
  height: calc(100% - 38px);
  background: #f6f8fb;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.sidebar {
  background: #f2f5f9;
  padding: 16px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.side-item {
  font-size: 9px;
  color: #5f6875;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.side-item.active {
  background: #dbe9ff;
  color: #4283ff;
  font-weight: 600;
}

.content-area {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-card {
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 10px;
}

.stat-card span {
  display: block;
  font-size: 9px;
  color: #768092;
  margin-bottom: 6px;
}

.stat-card strong {
  display: block;
  font-size: 11px;
  color: #202736;
  margin-bottom: 4px;
}

.stat-card small {
  font-size: 8px;
  color: #7ab667;
}

.chart-and-list {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
}

.bottom-panels {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
}

.panel {
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 10px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.panel-head h4 {
  font-size: 10px;
  color: #202736;
}

.panel-head span {
  font-size: 8px;
  color: #8090a7;
}

.chart-box {
  height: 120px;
  position: relative;
  overflow: hidden;
}

.line-chart {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(#edf2f8 1px, transparent 1px), linear-gradient(90deg, #edf2f8 1px, transparent 1px);
  background-size: 100% 25%, 16.66% 100%;
  border-radius: 10px;
}

.line-chart .line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 16px;
  bottom: 16px;
  background: none;
}

.line-chart .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 130, 255, 0.18), transparent 85%);
  clip-path: polygon(0% 72%, 10% 68%, 20% 54%, 30% 60%, 40% 44%, 50% 51%, 60% 40%, 70% 48%, 80% 31%, 90% 36%, 100% 18%, 100% 100%, 0% 100%);
}

.line-chart .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #4d8cff;
  height: 2px;
  top: auto;
  bottom: auto;
  clip-path: polygon(0% 72%, 10% 68%, 20% 54%, 30% 60%, 40% 44%, 50% 51%, 60% 40%, 70% 48%, 80% 31%, 90% 36%, 100% 18%);
}

.mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 8px;
  color: #4d5666;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf1f6;
}

.mini-list li b {
  color: #222c3e;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.donut {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: conic-gradient(#57a6ff 0 45%, #56c09f 45% 75%, #f0be3d 75% 90%, #d2dce8 90% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  background: #fff;
  border-radius: 50%;
}

.legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legend span {
  font-size: 8px;
  color: #586173;
}

.legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.l1 {
  background: #57a6ff;
}

.l2 {
  background: #56c09f;
}

.l3 {
  background: #f0be3d;
}

.l4 {
  background: #d2dce8;
}

.table-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.table-mini .row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 8px;
  font-size: 8px;
  color: #536071;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf1f6;
}

.tablet {
  width: 430px;
  height: 300px;
  left: 140px;
  bottom: 40px;
  border-radius: 22px;
  z-index: 3;
  background: #0f141c;
}

.tablet-top {
  justify-content: space-between;
}

.right-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: #7f8ca1;
}

.add-btn {
  background: #4d8cff;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
}

.tablet-body {
  height: calc(100% - 38px);
  background: #fff;
  border-radius: 0 0 22px 22px;
  padding: 12px;
  overflow: hidden;
}

.tablet-header {
  margin-bottom: 10px;
}

.tablet-header h4 {
  font-size: 14px;
  color: #243047;
  margin-bottom: 6px;
}

.tabs {
  display: flex;
  gap: 12px;
  font-size: 9px;
  color: #7e8798;
}

.tabs .active {
  color: #4d8cff;
  font-weight: 600;
}

.product-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-head,
.t-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 0.7fr 1fr 0.8fr;
  gap: 8px;
  align-items: center;
}

.t-head {
  font-size: 8px;
  color: #8491a6;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf1f6;
}

.t-row {
  font-size: 8px;
  color: #425065;
  padding: 6px 0;
  border-bottom: 1px solid #f0f3f7;
}

.status.on {
  color: #1b9d57;
  background: #e7f7ee;
  padding: 4px 6px;
  border-radius: 999px;
  text-align: center;
}

.phone {
  width: 130px;
  height: 280px;
  right: 18px;
  bottom: 34px;
  border-radius: 34px;
  padding: 10px;
  background: #11161d;
  z-index: 4;
}

.phone::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: #050608;
  z-index: 5;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #202736;
  margin-bottom: 10px;
}

.phone-card {
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
  color: #233148;
  background: #fff;
  border: 1px solid #eef2f7;
}

.phone-card small {
  display: block;
  font-size: 7px;
  margin-bottom: 4px;
  color: #657085;
}

.phone-card strong {
  display: block;
  font-size: 9px;
  margin-bottom: 3px;
}

.phone-card span {
  font-size: 7px;
  color: #6ba85c;
}

.phone-card.green {
  border-left: 4px solid #4fb463;
}

.phone-card.mint {
  border-left: 4px solid #57c9a7;
}

.phone-card.orange {
  border-left: 4px solid #f0b548;
}

.phone-panel {
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
}

.mini-head {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.mini-head span {
  font-size: 8px;
  color: #202736;
}

.mini-head small {
  font-size: 7px;
  color: #7c8799;
}

.mini-chart {
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(#edf2f8 1px, transparent 1px), linear-gradient(90deg, #edf2f8 1px, transparent 1px);
  background-size: 100% 33.33%, 25% 100%;
  position: relative;
}

.mini-chart::after {
  content: "";
  position: absolute;
  inset: 9px 8px 10px 8px;
  background: #4d8cff;
  height: 2px;
  clip-path: polygon(0% 78%, 12% 68%, 24% 73%, 36% 55%, 48% 62%, 60% 47%, 72% 51%, 84% 30%, 100% 18%);
}

.phone-list-item {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 7px;
  color: #4f5b6b;
}

/* ======================================================
   FEATURE SECTION
====================================================== */
.features-page {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 76% 25%, rgba(242, 189, 0, 0.055), transparent 23%), linear-gradient(180deg, #030405, #000000);
}

.features-section {
  width: min(1500px, 100%);
  min-height: 900px;
  padding: 74px 46px;
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 48px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px), radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.018), transparent 35%), linear-gradient(145deg, #050607, #010202);
  background-size: 40px 40px, 40px 40px, auto, auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.features-intro {
  display: flex;
  flex-direction: column;
}

.feature-categories {
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
}

.category-item {
  width: 100%;
  min-height: 86px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  border-bottom: none;
  color: #f2f2f3;
  background: linear-gradient(145deg, #101214, #090b0d);
  font-size: 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.category-item:first-child {
  border-radius: 10px 10px 0 0;
}

.category-item:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
}

.category-item:hover {
  position: relative;
  z-index: 2;
  transform: translateX(5px);
  border-color: rgba(242, 189, 0, 0.52);
  background: linear-gradient(145deg, #15181b, #0b0d0f);
}

.category-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 0 18px rgba(242, 189, 0, 0.11);
}

.category-item.active .category-icon {
  color: #080808;
  border-color: transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(242, 189, 0, 0.16);
}

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

.feature-grid {
  width: 100%;
  display: grid;
  /* grid-template-columns: repeat(4, minmax(150px, 1fr)); */
  grid-template-columns: repeat(4, 0.24fr);
  gap: 20px;
}

.feature-card-item {
  min-height: 195px;
  padding: 26px 16px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: radial-gradient(circle at 50% 40%, rgba(242, 189, 0, 0.055), transparent 30%), linear-gradient(145deg, #101214, #090b0d);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.19);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 189, 0, 0.54);
  background: radial-gradient(circle at 50% 40%, rgba(242, 189, 0, 0.09), transparent 31%), linear-gradient(145deg, #14171a, #0b0d0f);
  box-shadow: 0 24px 55px rgba(242, 189, 0, 0.07);
}

.feature-card-item h2 {
  min-height: 48px;
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3f3f2;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.feature-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(242, 189, 0, 0.35));
}

.icon-symbol {
  font-size: 57px;
  font-weight: 400;
  line-height: 1;
}

.barcode-symbol {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 7px;
}

.barcode-line {
  width: 4px;
  border-radius: 4px;
  background: var(--gold);
}

.barcode-line:nth-child(1) {
  height: 41px;
}

.barcode-line:nth-child(2) {
  height: 54px;
}

.barcode-line:nth-child(3) {
  height: 36px;
}

.barcode-line:nth-child(4) {
  height: 51px;
}

.barcode-line:nth-child(5) {
  height: 31px;
}

.search-circle {
  position: absolute;
  right: -2px;
  bottom: 6px;
  width: 25px;
  height: 25px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: #101214;
}

.search-circle::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -7px;
  width: 16px;
  height: 4px;
  border-radius: 4px;
  transform: rotate(45deg);
  background: var(--gold);
}

.view-all-button {
  min-width: 285px;
  min-height: 66px;
  margin-top: 40px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #080808;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 42px rgba(242, 189, 0, 0.15);
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.view-all-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(242, 189, 0, 0.25);
}

.view-all-button span {
  font-size: 25px;
}

/* ======================================================
   ERP SECTION
====================================================== */
.erp-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 194, 52, 0.10), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(240, 194, 52, 0.06), transparent 30%),
    linear-gradient(rgba(255, 194, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 52, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #020304 0%, #040506 35%, #06090d 100%);
  background-size: auto, auto, 34px 34px, 34px 34px, cover;
}

.erp-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.erp-glow-left {
  top: -100px;
  left: -150px;
  background: rgba(240, 194, 52, 0.08);
}

.erp-glow-right {
  bottom: -100px;
  right: -100px;
  background: rgba(240, 194, 52, 0.06);
}

.erp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ERP Content (Left Side) */
.erp-content .eyebrow {
  margin-bottom: 24px;
}

.erp-content h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.erp-content h1 .white {
  color: #fff;
}

.erp-content h1 .gold {
  color: var(--gold2);
}

.erp-description {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ERP Feature Items */
.erp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.erp-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  background: rgba(12, 15, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.35s ease;
}

.erp-feature-item:hover {
  background: rgba(18, 22, 28, 0.85);
  border-color: rgba(240, 194, 52, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.erp-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(240, 194, 52, 0.15), rgba(240, 194, 52, 0.05));
  color: var(--gold2);
  font-size: 18px;
}

.erp-feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.erp-feature-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0;
}

/* ERP Actions */
.erp-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ERP Visual (Right Side) */
.erp-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ERP Screenshot Tabs */
.erp-screenshot-tabs {
  display: flex;
  gap: 8px;
}

.erp-tab {
  padding: 12px 24px;
  border-radius: 10px 10px 0 0;
  background: rgba(12, 15, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  color: var(--grey);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.erp-tab:hover {
  color: #fff;
  background: rgba(18, 22, 28, 0.9);
}

.erp-tab.active {
  background: linear-gradient(180deg, rgba(240, 194, 52, 0.15), rgba(12, 15, 20, 0.95));
  color: var(--gold2);
  border-color: rgba(240, 194, 52, 0.3);
}

.erp-tab i {
  font-size: 13px;
}

/* ERP Screenshot Frame */
.erp-screenshot-wrapper {
  position: relative;
}

.erp-screenshot-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #0c1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 194, 52, 0.08),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.erp-frame-topbar {
  height: 40px;
  background: #141920;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 14px;
}

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

.erp-frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.erp-frame-dots span:nth-child(1) {
  background: #ff5f57;
}

.erp-frame-dots span:nth-child(2) {
  background: #ffbd2e;
}

.erp-frame-dots span:nth-child(3) {
  background: #28c840;
}

.erp-frame-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: 0.04em;
}

.erp-frame-url {
  margin-left: auto;
  font-size: 11px;
  color: var(--grey-dark);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 14px;
  border-radius: 6px;
}

.erp-screen-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.erp-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.erp-screen.active {
  opacity: 1;
}

/* ERP Floating Badges */
.erp-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(12, 15, 20, 0.92);
  border: 1px solid rgba(240, 194, 52, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  z-index: 5;
  animation: erp-float 4s ease-in-out infinite;
}

.erp-floating-badge i {
  color: var(--gold2);
  font-size: 16px;
}

.erp-floating-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.erp-badge-1 {
  bottom: 80px;
  left: -30px;
  animation-delay: 0s;
}

.erp-badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes erp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ERP Stats Row */
.erp-stats-row {
  display: flex;
  gap: 16px;
}

.erp-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-radius: 14px;
  background: rgba(12, 15, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.3s ease;
}

.erp-stat:hover {
  border-color: rgba(240, 194, 52, 0.3);
}

.erp-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 4px;
}

.erp-stat span {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
}

/* ======================================================
   INTEGRATION SECTION
====================================================== */
.integration-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 72% 48%, rgba(240, 197, 58, 0.12), transparent 18%), radial-gradient(circle at 72% 48%, rgba(240, 197, 58, 0.08), transparent 32%), linear-gradient(rgba(255, 210, 70, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 210, 70, 0.03) 1px, transparent 1px), linear-gradient(135deg, #020304 0%, #040608 38%, #05080c 100%);
  background-size: auto, auto, 32px 32px, 32px 32px, cover;
  padding-bottom: 60px;
}

.integration-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 75% 50%, rgba(240, 197, 58, 0.06), transparent 20%);
}

.hero-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 24px;
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.hero-grid h1 {
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 30px;
}

.hero-grid .white {
  color: #fff;
}

.hero-grid .gold {
  color: var(--gold);
}

.hero-grid p {
  max-width: 560px;
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 38px;
}

.integration-diagram {
  width: 760px;
  height: 760px;
  position: relative;
}

.ring {
  position: absolute;
  border: 1px solid rgba(240, 197, 58, 0.12);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 250px;
  height: 250px;
}

.ring-2 {
  width: 340px;
  height: 340px;
}

.ring-3 {
  width: 460px;
  height: 460px;
}

.ring-4 {
  width: 590px;
  height: 590px;
}

.center-core-integ {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 255px;
  height: 255px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 219, 97, 0.14), transparent 35%), linear-gradient(145deg, #050607, #0c0f14);
  border: 2px solid var(--gold-light);
  box-shadow: 0 0 30px rgba(240, 197, 58, 0.28), 0 0 70px rgba(240, 197, 58, 0.12), inset 0 0 24px rgba(240, 197, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-core-integ::before,
.center-core-integ::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 197, 58, 0.18);
}

.center-core-integ::before {
  width: 310px;
  height: 310px;
}

.center-core-integ::after {
  width: 370px;
  height: 370px;
}

.center-core-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.center-core-inner img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(240, 197, 58, 0.18));
}

.center-core-inner span {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}

.node-integ {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.95), rgba(5, 7, 10, 0.95));
  border: 1.4px solid rgba(240, 197, 58, 0.65);
  box-shadow: 0 0 18px rgba(240, 197, 58, 0.07), inset 0 0 18px rgba(240, 197, 58, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.node-integ .node-icon {
  color: var(--gold-light);
  font-size: 34px;
  margin-bottom: 12px;
}

.node-integ h4 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #fff;
}

.node-integ-top {
  left: 40%;
  top: 20px;
  /* transform: translateX(-50%); */
}

.node-integ-top-left {
  left: 74px;
  top: 90px;
}

.node-integ-left {
  left: 25px;
  top: 300px;
}

.node-integ-bottom-left {
  left: 74px;
  bottom: 80px;
}

.node-integ-bottom {
  left: 40%;
  bottom: 5px;
  /* transform: translateX(-50%); */
}

.node-integ-bottom-right {
  right: 70px;
  bottom: 85px;
}

.node-integ-right {
  right: 25px;
  top: 300px;
}

.node-integ-top-right {
  right: 74px;
  top: 90px;
}

.connector {
  position: absolute;
  background: linear-gradient(90deg, rgba(240, 197, 58, 0.95), rgba(240, 197, 58, 0.15));
  transform-origin: left center;
  height: 2px;
  box-shadow: 0 0 10px rgba(240, 197, 58, 0.35);
}

.connector-top {
  width: 2px;
  height: 110px;
  left: 50%;
  top: 165px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(240, 197, 58, 0.95), rgba(240, 197, 58, 0.15));
}

.connector-bottom {
  width: 2px;
  height: 110px;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(240, 197, 58, 0.15), rgba(240, 197, 58, 0.95));
}

.connector-left {
  width: 120px;
  left: 165px;
  top: 50%;
  transform: translateY(-50%);
}

.connector-right {
  width: 120px;
  right: 165px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(240, 197, 58, 0.15), rgba(240, 197, 58, 0.95));
}

.connector-top-left {
  width: 120px;
  left: 214px;
  top: 228px;
  transform: rotate(35deg);
}

.connector-top-right {
  width: 120px;
  right: 196px;
  top: 300px;
  transform: rotate(-35deg);
  background: linear-gradient(90deg, rgba(240, 197, 58, 0.15), rgba(240, 197, 58, 0.95));
}

.connector-bottom-left {
  width: 120px;
  left: 210px;
  bottom: 226px;
  transform: rotate(-35deg);
}

.connector-bottom-right {
  width: 120px;
  right: 192px;
  bottom: 296px;
  transform: rotate(35deg);
  background: linear-gradient(90deg, rgba(240, 197, 58, 0.15), rgba(240, 197, 58, 0.95));
}

.dot-integ {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(240, 197, 58, 0.95);
  z-index: 10;
}

/* --- Dot Top: from node down toward center --- */
.dot-top {
  left: 50%;
  transform: translateX(-50%);
  animation: dotMoveTop 2s linear infinite;
  animation-delay: 0s;
}

@keyframes dotMoveTop {
  0%   { top: 170px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 268px; opacity: 0; }
}

/* --- Dot Bottom: from node up toward center --- */
.dot-bottom {
  left: 50%;
  transform: translateX(-50%);
  animation: dotMoveBottom 2s linear infinite;
  animation-delay: 0.25s;
}

@keyframes dotMoveBottom {
  0%   { bottom: 155px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { bottom: 258px; opacity: 0; }
}

/* --- Dot Left: from node right toward center --- */
.dot-left {
  top: 50%;
  transform: translateY(-50%);
  animation: dotMoveLeft 2s linear infinite;
  animation-delay: 0.5s;
}

@keyframes dotMoveLeft {
  0%   { left: 170px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 278px; opacity: 0; }
}

/* --- Dot Right: from node left toward center --- */
.dot-right {
  top: 50%;
  transform: translateY(-50%);
  animation: dotMoveRight 2s linear infinite;
  animation-delay: 0.75s;
}

@keyframes dotMoveRight {
  0%   { right: 170px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { right: 278px; opacity: 0; }
}

/* --- Dot Top-Left: from node diagonally toward center --- */
.dot-top-left {
  animation: dotMoveTopLeft 2s linear infinite;
  animation-delay: 0.12s;
}

@keyframes dotMoveTopLeft {
  0%   { left: 220px; top: 230px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 300px; top: 288px; opacity: 0; }
}

/* --- Dot Top-Right: from node diagonally toward center --- */
.dot-top-right {
  animation: dotMoveTopRight 2s linear infinite;
  animation-delay: 0.37s;
}

@keyframes dotMoveTopRight {
  0%   { right: 220px; top: 230px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { right: 300px; top: 290px; opacity: 0; }
}

/* --- Dot Bottom-Left: from node diagonally toward center --- */
.dot-bottom-left {
  animation: dotMoveBottomLeft 2s linear infinite;
  animation-delay: 0.62s;
}

@keyframes dotMoveBottomLeft {
  0%   { left: 215px; bottom: 230px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 305px; bottom: 290px; opacity: 0; }
}

/* --- Dot Bottom-Right: from node diagonally toward center --- */
.dot-bottom-right {
  animation: dotMoveBottomRight 2s linear infinite;
  animation-delay: 0.87s;
}

@keyframes dotMoveBottomRight {
  0%   { right: 218px; bottom: 230px; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { right: 302px; bottom: 288px; opacity: 0; }
}

/* ======================================================
   PRICING SECTION
====================================================== */
.pricing-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 88% 22%, rgba(240, 197, 58, 0.18), transparent 18%), linear-gradient(rgba(240, 197, 58, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 197, 58, 0.03) 1px, transparent 1px), linear-gradient(135deg, #020304 0%, #05070a 40%, #070a0f 100%);
  background-size: auto, 32px 32px, 32px 32px, cover;
  padding-bottom: 60px;
}

.pricing-page::before {
  content: "";
  position: absolute;
  top: 130px;
  right: 60px;
  width: 360px;
  height: 360px;
  background: linear-gradient(45deg, transparent 48%, rgba(240, 197, 58, 0.15) 49%, transparent 50%), linear-gradient(-45deg, transparent 48%, rgba(240, 197, 58, 0.15) 49%, transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.pricing-page::after {
  content: "";
  position: absolute;
  top: 90px;
  right: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 197, 58, 0.14), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.pricing-content {
  padding: 80px 0 40px;
  min-height: 100vh;
}

.pricing-header {
  margin-bottom: 28px;
  max-width: 620px;
}

.pricing-header h1 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 22px;
}

.pricing-header .white {
  color: #fff;
}

.pricing-header .gold {
  color: var(--gold);
}

.pricing-header p {
  font-size: 24px;
  line-height: 1.55;
  color: var(--text-soft);
}

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

.price-card {
  min-height: 570px;
  padding: 34px 34px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.96), rgba(5, 7, 10, 0.98));
  border: 1px solid var(--card-border);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.015), 0 10px 25px rgba(0, 0, 0, 0.20);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card h3 {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}

.price-card .price {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
}

.price-card .period {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin-bottom: 32px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 34px;
  flex: 1;
}

.price-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.45;
}

.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(240, 197, 58, 0.5);
}

.price-card.featured {
  border: 2px solid var(--featured-border);
  box-shadow: 0 0 24px rgba(240, 197, 58, 0.10), inset 0 0 18px rgba(240, 197, 58, 0.04);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--gold-light);
}

.price-card .price-gold {
  color: var(--gold-light);
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f2c73c 0%, #d6a31a 100%);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(240, 197, 58, 0.18);
}

@media (max-width: 1350px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ======================================================
   FOOTER SECTION
====================================================== */
.xsyst-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.005)), linear-gradient(135deg, #030507 0%, #05080d 45%, #03060a 100%);
  border-radius: 26px;
  padding: 42px 54px 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.xsyst-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(240, 196, 59, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 196, 59, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(10px);
}

.footer-glow-left {
  left: -100px;
  bottom: -80px;
  width: 420px;
  height: 220px;
  background: radial-gradient(circle, rgba(243, 196, 59, 0.18), transparent 60%);
}

.footer-glow-right {
  right: -80px;
  top: 20px;
  width: 420px;
  height: 260px;
  background: radial-gradient(circle, rgba(243, 196, 59, 0.08), transparent 65%);
}

.footer-map {
  position: absolute;
  right: 0;
  top: 56px;
  width: 380px;
  height: 300px;
  opacity: 0.22;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(243, 196, 59, 0.9) 1.1px, transparent 1.2px);
  background-size: 10px 10px;
  clip-path: polygon(63% 5%, 73% 3%, 83% 6%, 92% 14%, 97% 24%, 95% 33%, 89% 39%, 84% 46%, 86% 57%, 91% 64%, 92% 75%, 85% 79%, 82% 88%, 75% 97%, 66% 94%, 61% 84%, 57% 72%, 50% 67%, 44% 57%, 39% 48%, 34% 40%, 25% 37%, 18% 31%, 13% 24%, 18% 16%, 27% 13%, 35% 16%, 44% 17%, 50% 13%, 55% 9%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 30px;
}

.footer-brand {
  padding-right: 24px;
}

.brand-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.brand-top img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.brand-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(215, 170, 34, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
}

.socials a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col {
  padding: 0 22px 0 28px;
  border-left: 1px solid var(--line);
  min-height: 260px;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 26px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 18px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.35;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(215, 170, 34, 0.55);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.footer-bottom-left {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom-right {
  text-align: right;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom-right strong {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

/* ======================================================
   RESPONSIVE LAYOUT OVERRIDES (TABLET & MOBILE)
====================================================== */

/* Viewport <= 1400px */
@media (max-width: 1400px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-right: 0;
  }

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

  .footer-col:nth-child(4) {
    border-left: 1px solid var(--line);
  }
}

/* Viewport <= 1200px */
@media (max-width: 1200px) {

  /* Platform Overview Section */
  .platform-section .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 100px 16px 40px !important;
    min-height: auto !important;
  }

  .platform-section .hero-left {
    margin: 0 auto;
  }

  /* .platform-section .feature-list {
    align-items: center;
  } */

  .platform-section .orbit-wrapper {
    transform: scale(0.8);
    transform-origin: center center;
    margin: -60px auto;
  }

  /* Integration Section */
  .integration-page .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 80px 16px 40px !important;
    min-height: auto !important;
  }

  .integration-page .hero-left {
    margin: 0 auto;
  }

  .integration-page .integration-diagram {
    transform: scale(0.8);
    transform-origin: center center;
    margin: -60px auto;
  }

  /* Solutions Industry Grid */
  .industry-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Viewport <= 1050px */
@media (max-width: 1050px) {

  /* Navbar and Hamburger Menu */
  .navbar {
    position: relative;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    order: 3;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--gold);
  }

  .button-contact {
    margin-left: auto;
    margin-right: 12px;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .main-navigation {
    display: none;
    /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(8, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
    animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-navigation a:last-child {
    border-bottom: none;
  }

  .main-navigation a.active::after {
    bottom: 0;
    width: 40px;
  }

  /* Hero Section */
  .hero {
    min-height: 1160px;
  }

  .hero-container {
    min-height: auto;
    padding: 145px 30px 320px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    top: 400px;
    right: -28%;
    width: 115%;
    height: 690px;
    opacity: 0.52;
  }

  .benefit-list {
    grid-template-columns: repeat(2, max-content);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .statistics-card {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100%;
    gap: 12px;
    padding: 24px 16px !important;
  }

  .statistic {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .statistic:nth-child(even) {
    border-right: none !important;
  }

  .statistic:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .statistic:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
}

/* Viewport <= 1024px */
@media (max-width: 1024px) {

  /* ERP Section */
  .erp-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
  }

  .erp-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .erp-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .erp-features {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .erp-actions {
    justify-content: center;
  }

  .erp-screenshot-tabs {
    justify-content: center;
  }

  .erp-floating-badge {
    display: none;
  }

  .erp-stats-row {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Solutions Section Inline Products */
  .products-section-inline {
    min-height: auto !important;
    padding: 32px 20px !important;
  }

  .products-section-inline .product-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    min-height: auto !important;
  }

  .products-section-inline .product-tabs,
  .products-section-inline .product-card,
  .products-section-inline .device-area {
    position: static !important;
    width: 100% !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
  }

  .products-section-inline .product-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .products-section-inline .device-area {
    height: 410px !important;
    margin-top: 20px;
  }

  .products-section-inline .desktop-device {
    left: 50% !important;
    right: auto !important;
    max-width: 90% !important;
    transform: translateX(-50%) !important;
  }

  .products-section-inline .tablet-device {
    top: 180px !important;
    right: 4% !important;
  }

  .products-section-inline .phone-device {
    left: 10% !important;
    bottom: 0 !important;
  }

  /* Product Section (Commented devices in desktop) */
  .products-page .main-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 60px 16px 40px !important;
  }

  .products-page .left-side {
    max-width: 800px;
    margin: 0 auto;
  }

  .products-page .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .products-page .left-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .products-page .product-menu {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .products-page .menu-item {
    width: auto !important;
    height: auto !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .products-page .menu-item.active::after {
    display: none !important;
  }

  .products-page .feature-card {
    min-height: auto !important;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
  }

  .products-page .feature-list {
    align-items: flex-start;
  }

  /* Features Section */
  .features-section {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 40px 24px !important;
    min-height: auto !important;
  }

  .features-intro {
    text-align: center;
    align-items: center;
  }

  .feature-categories {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .category-item {
    width: auto !important;
    min-height: auto !important;
    padding: 12px 18px !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
  }

  .category-item:first-child,
  .category-item:last-child {
    border-radius: 8px !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .category-item:hover {
    transform: none !important;
  }

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

  .features-content {
    align-items: center;
    width: 100%;
  }
}

/* Viewport <= 900px (Footer specific original rules + border-left fix) */
@media (max-width: 900px) {
  .xsyst-footer {
    padding: 32px 24px 24px;
  }

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

  .footer-col {
    min-height: auto;
    padding: 0 !important;
    border-left: none !important;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom-right {
    text-align: left;
  }
}

/* Viewport <= 850px (Platform & Integration layouts grid transformation) */
@media (max-width: 850px) {

  /* Platform Nodes Grid */
  .platform-section .orbit-wrapper {
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin: 40px auto 0 !important;
  }

  .platform-section .orbit,
  .platform-section .center-core,
  .platform-section .center-core::before,
  .platform-section .center-core::after,
  .platform-section .dot,
  .platform-section .node::before {
    display: none !important;
  }

  .platform-section .node {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 140px !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.03), rgba(12, 15, 20, 0.95)) !important;
  }

  /* Integration Nodes Grid */
  .integration-page .integration-diagram {
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin: 40px auto 0 !important;
  }

  .integration-page .ring,
  .integration-page .center-core-integ,
  .integration-page .center-core-integ::before,
  .integration-page .center-core-integ::after,
  .integration-page .connector,
  .integration-page .dot-integ {
    display: none !important;
  }

  .integration-page .node-integ {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 120px !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    background: linear-gradient(180deg, rgba(14, 18, 24, 0.95), rgba(7, 10, 14, 0.95)) !important;
  }

  /* Solutions Grid */
  .solutions-page {
    padding: 38px 16px;
  }

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

/* Viewport <= 720px (Pricing original rule) */
@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Viewport <= 650px (Hero section original rules + navbar logo/button scaling) */
@media (max-width: 650px) {
  /* ERP Section Mobile */
  .erp-section {
    padding: 60px 0 50px;
  }

  .erp-features {
    grid-template-columns: 1fr !important;
  }

  .erp-actions {
    flex-direction: column;
    align-items: center;
  }

  .erp-actions .btn-gold,
  .erp-actions .btn-dark {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }

  .erp-stats-row {
    /* flex-direction: column; */
    gap: 10px;
  }

  .erp-stat strong {
    font-size: 22px;
  }

  .erp-screenshot-tabs {
    flex-wrap: wrap;
  }

  .erp-tab {
    font-size: 12px;
    padding: 8px 14px;
  }

  .site-header {
    top: 12px;
    padding: 0 12px;
  }

  .navbar {
    min-height: 70px;
    padding: 8px 14px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 20px;
  }

  .button-contact {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
    min-width: auto;
    margin-right: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hero {
    min-height: 1370px;
  }

  .hero-container {
    padding: 115px 18px 390px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(46px, 13vw, 68px);
  }

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

  .benefit-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .benefit {
    white-space: normal;
  }

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

  .hero-visual {
    top: 590px;
    right: -70%;
    width: 180%;
  }

  .partners-section {
    padding: 0 14px;
  }

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

  .partner-card {
    min-height: 57px;
    font-size: 10px;
  }
}

/* Viewport <= 600px (Footer specific original rules + features categories layout) */
@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .socials a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .footer-map {
    width: 220px;
    height: 180px;
    opacity: 0.14;
  }

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

  .category-item {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}

/* Viewport <= 480px (Narrow Mobile tweaks) */
@media (max-width: 480px) {
  .platform-section .orbit-wrapper {
    grid-template-columns: 1fr !important;
  }

  .integration-page .integration-diagram {
    grid-template-columns: 1fr !important;
  }

  .industry-grid {
    grid-template-columns: 1fr !important;
  }

  .products-section-inline .device-area {
    transform: scale(0.75);
    transform-origin: center center;
    margin: -40px auto !important;
    height: 310px !important;
  }
}

/* Viewport <= 400px (Extreme narrow mobile tweaks) */
@media (max-width: 400px) {
  .feature-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-title {
    font-size: 40px !important;
  }
}

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

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