:root {
  --navy: #081120;
  --deep-blue: #0A2A7A;
  --tech-blue: #1976FF;
  --sky-blue: #37B6FF;
  --white: #FFFFFF;
  --soft: #F5F8FC;
  --text: #1E293B;
  --muted: #64748B;
  --line: rgba(148, 163, 184, .2);
  --glass: rgba(255, 255, 255, .08);
  --shadow: 0 24px 70px rgba(8, 17, 32, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

::selection {
  color: var(--white);
  background: var(--tech-blue);
}

.navbar {
  padding: 18px 0;
  background: rgba(8, 17, 32, .64);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.navbar.header-scrolled {
  padding: 10px 0;
  background: rgba(8, 17, 32, .92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: .52rem .78rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(229, 243, 255, .88));
  box-shadow: 0 16px 36px rgba(0, 0, 0, .2), 0 0 30px rgba(55, 182, 255, .14);
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}

.navbar.header-scrolled .navbar-brand {
  padding: .38rem .68rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 248, 255, .92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.navbar-brand img,
.footer-logo {
  object-fit: contain;
  filter: saturate(1.12) contrast(1.08) drop-shadow(0 0 14px rgba(25, 118, 255, .22));
}

.navbar-brand img {
  width: clamp(190px, 18vw, 250px);
  height: auto;
}

.nav-link {
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  font-size: .94rem;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--tech-blue), var(--sky-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  --bs-btn-bg: #1976FF;
  --bs-btn-border-color: #1976FF;
  --bs-btn-hover-bg: #0A63E9;
  --bs-btn-hover-border-color: #0A63E9;
  --bs-btn-active-bg: #0A2A7A;
  --bs-btn-active-border-color: #0A2A7A;
}

.btn-glow {
  box-shadow: 0 14px 36px rgba(25, 118, 255, .32);
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .6s ease;
}

.btn-glow:hover::before {
  transform: translateX(130%);
}

.hero-section {
  min-height: 100vh;
  background: radial-gradient(circle at 72% 20%, rgba(25, 118, 255, .35), transparent 32%),
    radial-gradient(circle at 16% 24%, rgba(55, 182, 255, .18), transparent 26%),
    linear-gradient(135deg, #081120 0%, #09225A 52%, #081120 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section .row {
  padding-top: 7.5rem !important;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 86%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .55;
  animation: floaty 9s ease-in-out infinite;
}

.orb-one {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 110px;
  background: radial-gradient(circle, rgba(55, 182, 255, .45), transparent 70%);
}

.orb-two {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(25, 118, 255, .34), transparent 70%);
  animation-delay: -3s;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--sky-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.hero-section h1 {
  font-size: clamp(2.6rem, 6vw, 5.35rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
}

.hero-copy {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  max-width: 640px;
  line-height: 1.75;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-trust div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.hero-trust strong {
  display: block;
  font-size: 1.35rem;
}

.hero-trust span {
  color: rgba(255, 255, 255, .66);
  font-size: .86rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.dashboard-card,
.floating-panel,
.modules-dashboard {
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.main-dashboard {
  width: min(100%, 560px);
  border-radius: 8px;
  padding: 1.35rem;
  transform: perspective(1200px) rotateY(-8deg) rotateX(5deg);
  animation: dashboardPulse 6s ease-in-out infinite;
}

.dashboard-top,
.metric-row,
.module-strip,
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
}

.muted-label {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  font-weight: 700;
}

.dashboard-top h2 {
  font-size: 1.45rem;
  margin: .15rem 0 0;
}

.live-pill {
  color: #BDEBFF;
  background: rgba(55, 182, 255, .13);
  border: 1px solid rgba(55, 182, 255, .35);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
}

.metric-row {
  margin: 1.25rem 0;
}

.metric {
  flex: 1;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(8, 17, 32, .46);
  border: 1px solid rgba(255, 255, 255, .08);
}

.metric span,
.metric small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
}

.metric strong {
  display: block;
  margin: .35rem 0;
  font-size: 1.15rem;
}

.metric small {
  color: #8EE3FF;
}

.chart-area {
  height: 170px;
  display: flex;
  align-items: end;
  gap: .8rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 42, 122, .42), rgba(8, 17, 32, .62));
  border: 1px solid rgba(255, 255, 255, .08);
}

.chart-area span {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--sky-blue), var(--tech-blue));
  box-shadow: 0 0 22px rgba(55, 182, 255, .28);
  animation: barGrow 1.6s ease both;
}

.module-strip {
  flex-wrap: wrap;
  margin-top: 1rem;
}

.module-strip span {
  padding: .58rem .72rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
}

.floating-panel {
  position: absolute;
  max-width: 230px;
  padding: 1rem;
  border-radius: var(--radius);
  color: var(--white);
  animation: floaty 7s ease-in-out infinite;
}

.floating-panel i {
  color: var(--sky-blue);
  font-size: 1.6rem;
}

.floating-panel strong,
.floating-panel span {
  display: block;
}

.floating-panel span {
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
}

.panel-left {
  left: 0;
  bottom: 78px;
}

.panel-right {
  right: 6px;
  top: 76px;
  animation-delay: -2s;
}

.section-padding {
  padding: 110px 0;
}

.bg-light-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
}

.section-title {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.solution-card,
.product-card,
.advantage,
.testimonial-card {
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 42, 122, .08);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(15, 23, 42, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover,
.product-card:hover,
.advantage:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 118, 255, .24);
  box-shadow: var(--shadow);
}

.solution-card {
  padding: 2rem;
}

.solution-card i,
.advantage i {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-blue), var(--tech-blue), var(--sky-blue));
  box-shadow: 0 16px 30px rgba(25, 118, 255, .26);
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
}

.solution-card h3,
.product-card h3,
.advantage h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.solution-card p,
.product-card p,
.advantage p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.products-section {
  background: linear-gradient(180deg, #FFFFFF, #F7FAFF);
}

.product-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(55, 182, 255, .12), transparent 36%);
  pointer-events: none;
}

.product-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--sky-blue);
  background: #081120;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 18px 34px rgba(8, 17, 32, .18);
}

.product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.product-card li {
  color: #334155;
  background: #EEF6FF;
  border: 1px solid #DCEEFF;
  padding: .42rem .58rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.link-more {
  color: var(--tech-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.link-more i {
  transition: transform .2s ease;
}

.link-more:hover i {
  transform: translateX(4px);
}

.why-section,
.modules-section,
.testimonials-section {
  background: #FFFFFF;
}

.advantage {
  padding: 1.45rem;
}

.stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #081120, #0A2A7A 62%, #081120);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 15%, rgba(55, 182, 255, .22), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(25, 118, 255, .28), transparent 28%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.stat {
  padding: 2rem;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
}

.stat span,
.stat em {
  display: block;
  color: rgba(255, 255, 255, .64);
  font-style: normal;
}

.stat strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 800;
  line-height: 1;
  margin: .5rem 0;
}

.modules-dashboard {
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(145deg, #081120, #0D2B66);
}

.dashboard-header {
  justify-content: flex-start;
  padding: .8rem 1rem 1.1rem;
  color: rgba(255, 255, 255, .78);
}

.dashboard-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sky-blue);
  opacity: .8;
}

.dashboard-header span:nth-child(2) {
  background: var(--tech-blue);
}

.dashboard-header span:nth-child(3) {
  background: #FFFFFF;
}

.dashboard-header strong {
  margin-left: .5rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}

.module-grid div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .65rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .075);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.module-grid div:hover {
  transform: translateY(-5px);
  background: rgba(55, 182, 255, .16);
}

.module-grid i {
  color: var(--sky-blue);
  font-size: 1.55rem;
}

.tech-section {
  background: var(--soft);
}

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

.tech-grid div {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: .45rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(10, 42, 122, .08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
  transition: transform .2s ease, color .2s ease;
}

.tech-grid div:hover {
  transform: translateY(-6px);
  color: var(--tech-blue);
}

.tech-grid i {
  font-size: 2rem;
  color: var(--tech-blue);
}

.tech-grid span {
  font-weight: 800;
}

.process-section {
  background: linear-gradient(180deg, #FFFFFF, #F5F8FC);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--deep-blue), var(--sky-blue));
}

.timeline-item {
  position: relative;
  padding: 0 1rem;
  text-align: center;
}

.timeline-item span {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-blue), var(--tech-blue));
  border: 8px solid #EEF6FF;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(25, 118, 255, .22);
  margin-bottom: 1.15rem;
}

.timeline-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.timeline-item p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.3rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .14);
}

.testimonial-card p {
  color: #334155;
  line-height: 1.75;
  min-height: 112px;
}

.testimonial-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}

.testimonial-card span {
  color: var(--muted);
  font-size: .9rem;
}

.cta-section {
  padding: 95px 0;
  background: #081120;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  color: var(--white);
  background: radial-gradient(circle at 80% 10%, rgba(55, 182, 255, .34), transparent 28%),
    linear-gradient(135deg, rgba(10, 42, 122, .92), rgba(25, 118, 255, .72));
  box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
  overflow: hidden;
  position: relative;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .35;
}

.cta-panel > * {
  position: relative;
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: .85rem;
}

.cta-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
  margin: 0;
  line-height: 1.75;
}

.footer {
  padding: 80px 0 28px;
  color: rgba(255, 255, 255, .72);
  background: #050B15;
}

.footer-logo {
  display: block;
  width: min(100%, 240px);
  padding: .55rem .75rem;
  margin-bottom: 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(229, 243, 255, .88));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.footer h3 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer p {
  line-height: 1.75;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, .68);
  margin-bottom: .65rem;
}

.footer a:hover {
  color: var(--sky-blue);
}

.social-links {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

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

@keyframes dashboardPulse {
  0%, 100% { transform: perspective(1200px) rotateY(-8deg) rotateX(5deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateY(-10px); }
}

@keyframes barGrow {
  from { transform: scaleY(.25); opacity: .35; transform-origin: bottom; }
  to { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
}

@media (max-width: 1199.98px) {
  .module-grid,
  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(8, 17, 32, .96);
  }

  .hero-section h1 {
    margin-top: 1rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .main-dashboard {
    transform: none;
    animation: none;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    left: 38px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    text-align: left;
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 1rem;
    padding: 0;
  }

  .timeline-item span {
    grid-row: span 2;
    margin: 0;
  }

  .timeline-item p {
    margin-bottom: 0;
  }

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

@media (max-width: 767.98px) {
  .section-padding {
    padding: 78px 0;
  }

  .hero-section .row {
    padding-top: 7rem !important;
  }

  .hero-trust,
  .stats-grid,
  .module-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 2rem 0 1rem;
  }

  .metric-row {
    flex-direction: column;
  }

  .floating-panel {
    position: static;
    max-width: none;
    margin-top: .85rem;
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
