:root {
  --bg: #0a111f;
  --surface: #101b2f;
  --surface-alt: #0e1628;
  --text: #f2f5fb;
  --muted: #b4c0d8;
  --primary: #2fd3a4;
  --primary-dark: #1aa87f;
  --accent: #68a6ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #11254f 0%, var(--bg) 40%),
    linear-gradient(120deg, #091223 0%, #050910 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(24px);
}

body::before {
  left: -130px;
  top: 20%;
  background: radial-gradient(circle, rgba(95, 152, 255, 0.28), transparent 64%);
  animation: floatAura 12s ease-in-out infinite;
}

body::after {
  right: -160px;
  top: 55%;
  background: radial-gradient(circle, rgba(47, 211, 164, 0.22), transparent 62%);
  animation: floatAura 15s ease-in-out infinite reverse;
}

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

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 19, 0.64);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 30;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(136, 204, 255, 0.62), transparent);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0.35rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.09);
  user-select: none;
}

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 16, 28, 0.8);
}

.logo-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.logo-name {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #f8fbff;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffab18;
  box-shadow: 0 0 12px rgba(255, 171, 24, 0.55);
}

.logo:hover .logo-icon-wrap {
  box-shadow: 0 0 0 1px rgba(255, 171, 24, 0.45), 0 8px 18px rgba(255, 166, 0, 0.25);
}

@media (max-width: 700px) {
  .logo-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .logo-name {
    font-size: 0.84rem;
  }
}

.top-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.top-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  font-weight: 600;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.top-nav a:hover {
  color: #dff2ff;
  border-color: rgba(136, 204, 255, 0.42);
  background: rgba(15, 29, 50, 0.7);
}

.nav-products {
  position: relative;
}

.nav-products > a::after {
  content: " \25BE";
  font-size: 0.7rem;
  opacity: 0.8;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 205px;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(136, 204, 255, 0.26);
  background: rgba(8, 14, 26, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-dropdown a {
  display: block;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  margin: 0.1rem 0;
  font-size: 0.88rem;
}

.nav-products:hover .nav-dropdown,
.nav-products:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.2rem;
}

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

.hero-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero h1,
.product-page h1 {
  background: linear-gradient(120deg, #f8fdff 10%, #a9d8ff 52%, #77f0d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  max-width: 690px;
  font-size: 1.06rem;
}

.hero-glow {
  position: absolute;
  right: -180px;
  top: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(47, 211, 164, 0.35), transparent 64%);
  filter: blur(8px);
}

.hero-glow-alt {
  right: auto;
  left: -160px;
  top: auto;
  bottom: -230px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(104, 166, 255, 0.36), transparent 64%);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 16, 31, 0.65);
  color: #dbe9ff;
  font-size: 0.79rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background:
    radial-gradient(circle at 80% 8%, rgba(47, 211, 164, 0.22), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(104, 166, 255, 0.2), transparent 44%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-panel p {
  color: var(--muted);
}

.hero-panel h3 {
  font-size: 1.42rem;
}

.hero-panel-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-panel-metrics div {
  border-radius: 12px;
  padding: 0.65rem 0.55rem;
  background: rgba(9, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: #8ae9ff;
  line-height: 1.2;
}

.hero-panel-metrics span {
  font-size: 0.73rem;
  color: #d4deef;
}

.hero-panel-pulse {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -90px;
  border-radius: 999px;
  border: 1px solid rgba(104, 166, 255, 0.22);
  box-shadow: 0 0 0 36px rgba(104, 166, 255, 0.08), 0 0 0 72px rgba(104, 166, 255, 0.04);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  color: #08131f;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -130%;
  width: 45%;
  transform: rotate(15deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.45s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--border);
}

.card-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #8dd8ff;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  color: #b6eaff;
}

.section {
  padding: 4.8rem 0;
}

.section-about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-trust {
  padding-top: 1.6rem;
}

.trust-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.trust-main p {
  color: var(--muted);
}

.trust-story-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-story-grid article {
  border: 1px solid rgba(146, 218, 255, 0.2);
  border-radius: 12px;
  background: rgba(10, 23, 40, 0.56);
  padding: 0.62rem;
}

.trust-story-grid h4 {
  margin: 0 0 0.3rem;
  color: #dff1ff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.trust-story-grid p {
  margin: 0;
  color: #bfd5ef;
  font-size: 0.75rem;
  line-height: 1.45;
}

.trust-points {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trust-points span {
  border: 1px solid rgba(146, 218, 255, 0.3);
  border-radius: 999px;
  background: rgba(14, 33, 57, 0.55);
  color: #dff4ff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.62rem;
}

.trust-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.trust-metrics div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 18, 34, 0.62);
  padding: 0.7rem;
}

.trust-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: #8fe5ff;
}

.trust-metrics span {
  font-size: 0.8rem;
  color: #d3dff3;
}

.trust-links {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trust-links a {
  text-decoration: none;
  color: #d7efff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.77rem;
  font-weight: 700;
  background: rgba(13, 30, 52, 0.62);
}

.trust-links a:hover {
  border-color: rgba(146, 218, 255, 0.72);
  background: rgba(21, 49, 82, 0.68);
}

.trust-side {
  display: grid;
  gap: 0.9rem;
}

.trust-card {
  padding: 1rem;
}

.partner-note {
  margin: 0.1rem 0 0.75rem;
  color: #bcd3ee;
  font-size: 0.78rem;
  line-height: 1.45;
}

.partner-list,
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.partner-logo-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr 1fr;
}

.partner-logo-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 255, 0.88));
  padding: 0.55rem 0.55rem 0.45rem;
  display: grid;
  gap: 0.35rem;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo-item img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  display: block;
}

.partner-logo-item span {
  text-align: center;
  font-size: 0.74rem;
  color: #1b2a42;
  font-weight: 700;
}

.partner-logo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(146, 218, 255, 0.56);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.partner-groups {
  display: grid;
  gap: 0.8rem;
}

.partner-group {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(8, 18, 34, 0.52);
  padding: 0.7rem;
}

.partner-group h4 {
  margin: 0;
  font-size: 0.86rem;
  color: #cfe8ff;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.03em;
}

.partner-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.partner-group-head span {
  font-size: 0.68rem;
  color: #9fd0ff;
  border: 1px solid rgba(146, 218, 255, 0.32);
  background: rgba(20, 40, 68, 0.62);
  border-radius: 999px;
  padding: 0.16rem 0.46rem;
  font-weight: 700;
}

.partner-badge-grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr 1fr;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.32rem 0.56rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e8f5ff;
  background: rgba(15, 29, 50, 0.6);
}

.partner-badge b {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.partner-badge.global b {
  background: rgba(146, 218, 255, 0.25);
  color: #a9e5ff;
}

.partner-badge.local b {
  background: rgba(117, 244, 196, 0.24);
  color: #a4ffdc;
}

.partner-brand-grid {
  display: grid;
  gap: 0.58rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-brand-grid a {
  display: grid;
  gap: 0.34rem;
  text-decoration: none;
  align-items: center;
  justify-items: center;
  min-height: 94px;
  padding: 0.56rem 0.48rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(249, 252, 255, 0.98), rgba(237, 244, 252, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.partner-brand-grid img {
  width: 100%;
  max-width: 124px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: grayscale(0.35) saturate(0.9) contrast(1.03) brightness(0.96);
  opacity: 0.95;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.partner-brand-grid span {
  color: #2d4260;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.partner-brand-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(146, 218, 255, 0.58);
  background: linear-gradient(165deg, rgba(252, 254, 255, 0.99), rgba(237, 246, 255, 0.96));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.partner-brand-grid a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

.partner-brand-grid a.partner-favicon img {
  width: 42px;
  height: 42px;
  max-width: 42px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(24, 46, 71, 0.08);
  padding: 7px;
  filter: none;
  opacity: 1;
}

.partner-brand-grid a.partner-favicon:hover img {
  transform: scale(1.06);
}

.partner-chip,
.client-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(146, 218, 255, 0.34);
  background: rgba(18, 38, 62, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  color: #dff4ff;
}

.client-list span {
  border-color: rgba(71, 241, 190, 0.28);
  background: rgba(13, 42, 45, 0.58);
  color: #d7fff4;
}

.lead.compact {
  max-width: 100%;
  font-size: 0.96rem;
}

.demo-live-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.demo-metrics {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(9, 18, 35, 0.62);
  padding: 0.65rem;
}

.demo-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: #8fe5ff;
}

.demo-metrics span {
  font-size: 0.78rem;
  color: #d6e1f5;
}

.demo-monitor {
  padding: 1rem;
}

.status-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.status-list li {
  font-size: 0.89rem;
  color: #dbe7fa;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(11, 20, 36, 0.56);
  padding: 0.52rem 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.42rem;
}

.dot.ok {
  background: #43e3a7;
  box-shadow: 0 0 8px rgba(67, 227, 167, 0.55);
}

.dot.warn {
  background: #ffc65a;
  box-shadow: 0 0 8px rgba(255, 198, 90, 0.55);
}

.section-architecture {
  padding-top: 1.2rem;
}

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem;
}

.arch-node {
  border-radius: 12px;
  border: 1px solid rgba(141, 216, 255, 0.34);
  background: rgba(8, 18, 34, 0.66);
  padding: 0.55rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.arch-link {
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #7dd6ff, #47f1be);
}

.section-impact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

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

.impact-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #dce7fa;
}

.impact-card li {
  margin-bottom: 0.35rem;
}

.impact-card.before h3 {
  color: #ff9d9d;
}

.impact-card.after h3 {
  color: #8ff3c5;
}

.impact-metrics p {
  margin: 0 0 0.55rem;
}

.impact-metrics strong {
  color: #8fe5ff;
}

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

.compliance-box {
  padding: 1.2rem;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.compliance-badges span {
  border: 1px solid rgba(146, 218, 255, 0.34);
  border-radius: 999px;
  background: rgba(13, 31, 52, 0.62);
  color: #ddf4ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.36rem 0.72rem;
}

.comparison-table-wrap {
  padding: 0.7rem;
  overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  padding: 0.65rem 0.62rem;
  font-size: 0.86rem;
}

.comparison-table th {
  color: #9bd4ff;
  font-family: "Sora", sans-serif;
}

.request-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.92fr 1.08fr;
}

.request-form {
  display: grid;
  gap: 0.6rem;
}

.request-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: #d7e4f8;
  font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(8, 16, 30, 0.7);
  color: #edf4ff;
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(141, 216, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(141, 216, 255, 0.15);
}

.form-note {
  margin: 0;
  font-size: 0.75rem;
  color: #bcd0ea;
}

.form-status {
  margin: 0;
  font-size: 0.78rem;
  min-height: 1.1rem;
}

.form-status.success {
  color: #89f2c8;
}

.form-status.error {
  color: #ffb7b7;
}

.admin-leads-layout {
  display: grid;
  gap: 1rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.admin-stats div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 33, 0.58);
  padding: 0.6rem;
}

.admin-stats strong {
  display: block;
  font-size: 1.12rem;
  color: #8fe5ff;
  font-family: "Sora", sans-serif;
}

.admin-stats span {
  font-size: 0.74rem;
  color: #d7e4f9;
}

.table-shell {
  padding: 1rem;
}

.table-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-actions input,
.admin-actions select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(8, 16, 30, 0.7);
  color: #edf4ff;
  padding: 0.45rem 0.55rem;
  font: inherit;
  min-width: 180px;
}

.admin-actions input:focus,
.admin-actions select:focus {
  outline: none;
  border-color: rgba(141, 216, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(141, 216, 255, 0.15);
}

.admin-logout-btn {
  cursor: pointer;
}

.admin-login-layout {
  display: grid;
  place-items: center;
  min-height: 62vh;
}

.admin-login-form {
  width: min(460px, 100%);
  display: grid;
  gap: 0.55rem;
}

.admin-login-form label {
  display: grid;
  gap: 0.26rem;
  font-size: 0.84rem;
  color: #d7e4f8;
  font-weight: 600;
}

.admin-login-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(8, 16, 30, 0.7);
  color: #edf4ff;
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.admin-login-form input:focus {
  outline: none;
  border-color: rgba(141, 216, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(141, 216, 255, 0.15);
}

.pager-row {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.pager-row #page-info {
  font-size: 0.82rem;
  color: #d4e2f8;
}

.modern-client-list span {
  padding: 0.38rem 0.72rem;
}

.modern-client-list span b {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-right: 0.35rem;
  background: rgba(117, 244, 196, 0.22);
  color: #98ffd8;
  font-size: 0.73rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.stat-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card,
.feature-card,
.contact-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.stat-card,
.feature-card {
  padding: 1.1rem;
}

.feature-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(160, 215, 255, 0.08), transparent 45%, rgba(71, 241, 190, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 166, 255, 0.65);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.product-card {
  overflow: hidden;
  padding: 0;
}

.product-media {
  position: relative;
  padding: 1rem 1rem 0.5rem;
  min-height: 220px;
  background:
    radial-gradient(circle at 15% 20%, rgba(104, 166, 255, 0.2), transparent 45%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 26, 0.75));
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03) translateY(-2px);
}

.product-content {
  padding: 1rem 1.1rem 1.25rem;
}

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

.tag {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.section-solution {
  background: linear-gradient(180deg, transparent, rgba(104, 166, 255, 0.08));
}

.section-cloud {
  padding-top: 1.4rem;
}

.product-page {
  min-height: calc(100vh - 130px);
  position: relative;
}

.product-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 74%);
}

.product-hero {
  padding-top: 5.4rem;
  padding-bottom: 2.4rem;
}

.product-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.product-detail-media img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  animation: mediaFloat 6.8s ease-in-out infinite;
}

.product-detail-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 72%);
  filter: blur(3px);
}

.product-detail-media-text {
  background:
    radial-gradient(circle at 80% 8%, rgba(47, 211, 164, 0.22), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(104, 166, 255, 0.2), transparent 44%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.cloud-hero-panel p {
  color: #d9e8fb;
}

.cloud-hero-specs {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.28rem;
}

.cloud-hero-specs li {
  color: #d3e3f7;
  font-size: 0.82rem;
}

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

.product-hero[class*="product-theme-"] {
  position: relative;
  overflow: hidden;
}

.product-hero[class*="product-theme-"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(5, 10, 18, 0), rgba(5, 10, 18, 0.5));
  pointer-events: none;
}

.product-theme-volumetrics {
  background: radial-gradient(circle at 82% 14%, rgba(255, 190, 40, 0.18), transparent 42%);
}

.product-theme-silo {
  background: radial-gradient(circle at 86% 16%, rgba(120, 160, 255, 0.18), transparent 44%);
}

.product-theme-iot {
  background: radial-gradient(circle at 80% 14%, rgba(72, 240, 190, 0.16), transparent 44%);
}

.product-theme-cloud {
  background: radial-gradient(circle at 84% 16%, rgba(126, 197, 255, 0.2), transparent 44%);
}

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

.kpi-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  color: #8fe5ff;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.kpi-card span {
  font-size: 0.8rem;
  color: #d5def3;
  letter-spacing: 0.02em;
}

.kpi-card {
  overflow: hidden;
}

.kpi-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #7dd6ff, #47f1be);
}

.product-story-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.story-panel p {
  color: var(--muted);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.story-split article {
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 18, 33, 0.56);
}

.story-split h4 {
  margin: 0 0 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.story-flow {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  position: relative;
}

.story-flow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(125, 214, 255, 0.55), rgba(125, 214, 255, 0.05));
}

.flow-step {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 18, 33, 0.56);
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  z-index: 1;
}

.flow-step:hover {
  transform: translateX(2px);
  border-color: rgba(125, 214, 255, 0.5);
}

.flow-step .step-no {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #08131f;
  background: #7dd6ff;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(125, 214, 255, 0.15);
}

.flow-step strong {
  display: block;
  font-size: 0.9rem;
}

.flow-step p {
  margin: 0.12rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

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

.cloud-stack-grid .feature-card {
  position: relative;
  overflow: hidden;
}

.cloud-stack-grid .feature-card::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 214, 255, 0.7), rgba(71, 241, 190, 0.55));
}

.cloud-offer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.cloud-offer-card {
  padding: 1rem;
}

.cloud-offer-card p {
  color: var(--muted);
}

.cloud-offer-list {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.34rem;
}

.cloud-offer-list li {
  color: #d6e5fa;
}

.cloud-offer-card-highlight {
  border-color: rgba(141, 216, 255, 0.42);
  background:
    radial-gradient(circle at 86% 10%, rgba(125, 214, 255, 0.22), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.product-cta-strip {
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(125, 214, 255, 0.2), transparent 38%),
    radial-gradient(circle at 90% 86%, rgba(71, 241, 190, 0.18), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.product-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: translateX(-100%);
  animation: sweep 7s linear infinite;
  pointer-events: none;
}

.product-cta-strip > * {
  position: relative;
  z-index: 1;
}

.product-cta-strip p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-mini-nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.product-mini-nav a {
  text-decoration: none;
  color: #cce6ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
}

.product-mini-nav a:hover {
  border-color: rgba(141, 216, 255, 0.7);
  color: #e8f5ff;
  background: rgba(16, 34, 59, 0.72);
}

.company-contact-section {
  padding-top: 1rem;
}

.company-contact-wrap {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 14% 20%, rgba(126, 197, 255, 0.2), transparent 42%),
    radial-gradient(circle at 95% 95%, rgba(71, 241, 190, 0.14), transparent 40%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.company-contact-wrap h3 {
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-align: left;
}

.company-contact-wrap h3::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, #7dd6ff, #47f1be);
  border-radius: 999px;
}

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

.company-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 0.95rem;
  background: rgba(8, 16, 30, 0.62);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.company-contact-card::before {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0c1424;
  background: linear-gradient(145deg, #7dd6ff, #52b8ff);
}

.company-contact-card:nth-child(1)::before {
  content: "O";
}

.company-contact-card:nth-child(2)::before {
  content: "W";
}

.company-contact-card:nth-child(3)::before {
  content: "M";
}

.company-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 216, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.company-contact-card p {
  margin: 0;
  color: #d8e4f7;
  line-height: 1.55;
}

.company-contact-card a {
  color: #dff4ff;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(146, 218, 255, 0.35);
  background: rgba(19, 43, 71, 0.65);
}

.company-contact-card a:hover {
  color: #ffffff;
  border-color: rgba(146, 218, 255, 0.75);
  background: rgba(33, 68, 107, 0.72);
}

.cloud-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.cloud-copy p {
  color: var(--muted);
}

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

.cloud-point {
  min-height: 136px;
}

.cloud-point h3 {
  font-size: 1rem;
}

.cloud-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 211, 164, 0.18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(104, 166, 255, 0.22), transparent 45%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.cloud-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.3;
}

.cloud-links {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cloud-links path {
  stroke: rgba(143, 205, 255, 0.52);
  stroke-width: 0.6;
  fill: none;
  stroke-dasharray: 1.6 1.6;
  animation: flowLine 4.6s linear infinite;
}

.cloud-core {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: radial-gradient(circle at 30% 20%, #70ddff, #2154bb);
  box-shadow: 0 0 0 8px rgba(104, 166, 255, 0.15), 0 14px 34px rgba(14, 35, 79, 0.65);
  z-index: 2;
}

.cloud-node {
  position: absolute;
  z-index: 2;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(13, 21, 38, 0.85);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.node-a { top: 16%; left: 46%; }
.node-b { top: 28%; right: 9%; }
.node-c { bottom: 21%; right: 14%; }
.node-d { bottom: 18%; left: 12%; }
.node-e { top: 29%; left: 10%; }

.cloud-pulse {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #8ce6ff;
  box-shadow: 0 0 0 0 rgba(140, 230, 255, 0.6);
  z-index: 2;
  animation: nodePulse 2.6s infinite;
}

.pulse-a { top: 20.5%; left: 50%; }
.pulse-b { top: 33%; right: 20%; animation-delay: 0.3s; }
.pulse-c { bottom: 28%; right: 26%; animation-delay: 0.6s; }
.pulse-d { bottom: 27%; left: 26%; animation-delay: 0.9s; }
.pulse-e { top: 33%; left: 21%; animation-delay: 1.2s; }

.cloud-metric {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(9, 16, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  z-index: 2;
}

.cloud-metric strong {
  display: block;
  font-size: 1.35rem;
  color: #8be4ff;
  line-height: 1;
}

.cloud-metric span {
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-section {
  padding-top: 3.6rem;
}

.contact-box {
  text-align: center;
  padding: 2.2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@keyframes nodePulse {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(140, 230, 255, 0.45);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 16px rgba(140, 230, 255, 0);
  }
  100% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(140, 230, 255, 0);
  }
}

@keyframes flowLine {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -8;
  }
}

@keyframes floatAura {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

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

@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }
  45%, 100% {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .split,
  .trust-layout,
  .demo-live-layout,
  .impact-grid,
  .industry-grid,
  .case-grid,
  .request-layout,
  .three-col,
  .cloud-layout,
  .product-hero-layout,
  .product-detail-grid,
  .product-kpi-row,
  .product-story-layout,
  .cloud-offer-grid,
  .value-grid,
  .company-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel {
    min-height: 300px;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .arch-link {
    width: 2px;
    height: 14px;
    margin: 0 auto;
  }


  .top-nav {
    display: none;
  }

  .admin-actions input,
  .admin-actions select {
    min-width: 150px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 5.3rem;
  }

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

  .partner-logo-item img {
    height: 42px;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-badge-grid {
    grid-template-columns: 1fr;
  }

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

  .partner-brand-grid a {
    min-height: 84px;
    padding: 0.5rem 0.42rem;
  }

  .partner-brand-grid img {
    height: 28px;
  }

  .partner-brand-grid span {
    font-size: 0.6rem;
  }

  .cloud-points {
    grid-template-columns: 1fr;
  }

  .cloud-visual {
    min-height: 340px;
  }

  .cloud-core {
    width: 112px;
    height: 112px;
  }

  .story-split {
    grid-template-columns: 1fr;
  }

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

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

  .trust-links,
  .trust-points {
    flex-direction: column;
  }

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

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

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    width: 100%;
  }

  .admin-actions input,
  .admin-actions select,
  .admin-actions .btn {
    width: 100%;
  }

  .pager-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pager-row .btn {
    width: 100%;
  }

  .product-media {
    min-height: 180px;
  }

  .product-media img {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
