﻿:root {
  --cyan: #12bceb;
  --cyan-dark: #0398c8;
  --charcoal: #17212b;
  --ink: #243241;
  --muted: #607182;
  --cloud: #f5f8fa;
  --line: #dce6ea;
  --green: #078b45;
  --fresh: #6fbe44;
  --gold: #f5b400;
  --orange: #f58220;
  --coral: #ff5a5f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight:700;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 230, 234, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo img {
  width: 322px;
  height: auto;
  padding: 8px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  color: #222;
}

.nav-links a {
  padding: 18px 24px;
}

.nav-links a:hover {
  color: var(--cyan-dark);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  color: #344354;
  font: inherit;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: default;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: -18px;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

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

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 700;
}

.nav-menu a span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.nav-menu a:hover {
  background: var(--cloud);
  color: var(--cyan-dark);
}

.mega-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--charcoal);
  background: var(--cyan);
  box-shadow: 0 10px 24px rgba(18, 188, 235, 0.25);
}

.btn-secondary {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--line);
}

.btn-dark {
  color: var(--white);
  background: var(--charcoal);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--cloud);
  padding:10px 0;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 70px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 0;
  padding-left: 54px;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 50%, var(--cyan) 0 5px, transparent 5.5px),
    radial-gradient(circle at 19px 50%, var(--green) 0 5px, transparent 5.5px),
    radial-gradient(circle at 33px 50%, var(--gold) 0 5px, transparent 5.5px);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-row span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--white);
  color: #425466;
  font-size: 13px;
  font-weight: 700;
}

.product-stage {
  position: relative;
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(18, 188, 235, 0.2), rgba(7, 139, 69, 0.08)),
    #eef8fb;
  box-shadow: var(--shadow);
}

.screen-frame {
  position: relative;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.16);
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.image-frame {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 43, 0.1);
  background: var(--cloud);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 43, 0.02), rgba(23, 33, 43, 0.18));
  pointer-events: none;
}

.insight-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.insight-pill {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
#bgg{
    position: relative;

    background:
    radial-gradient(circle at top right,
    rgba(0,212,255,0.07),
    transparent 25%),

    linear-gradient(
    135deg,
    #f8fcff 0%,
    #edf6fb 50%,
    #f2fbf7 100%
    );

    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
div#flc {
    display: flex;
	justify-content: center;
    gap: 20px;
    margin: 40px 0;
}
div#flc .col-md-6 {
    border: 1px solid rgba(22, 51, 77, 0.34);
    background: #fff;
    overflow: hidden;
}
div#flc .col-md-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.float-card {
  position: absolute;
  LEFT: 0;
  bottom: -98px;
  width: min(360px, 52%);
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 16px;
  box-shadow: var(--shadow);
}

.float-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 14px;
}

.float-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.accent {
  width: 38px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--cyan);
}

.accent.green {
  background: var(--green);
}

.accent.gold {
  background: var(--gold);
}

.accent.coral {
  background: var(--coral);
}

.agent-card {
  display: flex;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  flex-direction: column;
  min-height: 260px;
}
.agent-card:hover{
	background:linear-gradient(135deg, #f4fbf7 0%, #e7f7ee 35%, #dbf8ff80 70%, #f8fffb 100%);
    border: 1px solid rgba(0,102,51,0.08);
    border-radius: 28px;
    position: relative;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
}
.agent-card .tag {
  width: fit-content;
  margin-bottom: 18px;
}

.agent-card a {
  margin-top: auto;
  color: var(--cyan-dark);
  font-weight: 800;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  object-fit: cover;
}

.video-thumb {
  position: relative;
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 32, 43, 0.08), rgba(17, 32, 43, 0.46));
}

.play-mark {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 169, 214, 0.36);
}

.video-card-body {
  padding: 22px;
}

.video-card-body h3 {
  margin: 12px 0 10px;
}

.video-card-body p {
  margin: 0;
  color: var(--muted);
}

.insights-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(18, 188, 235, 0.22), rgba(111, 190, 68, 0.12)),
    var(--white);
  box-shadow: var(--shadow);
}

.insights-hero-card img {
  width: calc(100% - 34px);
  margin: 34px auto 0;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(23, 33, 43, 0.18);
}

.insights-hero-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(23, 33, 43, 0.12);
}

.insights-hero-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-hero-copy strong {
  display: block;
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.2;
}

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

.insight-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.insight-card .tag,
.insight-card h3,
.insight-card p,
.insight-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.insight-card .tag {
  margin-top: 22px;
}

.insight-card a {
  margin-bottom: 24px;
}

.topic-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.topic-cloud span {
  display: grid;
  min-height: 78px;
  place-items: center;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 8px;
  padding: 14px;
  color: var(--charcoal);
  background: var(--white);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 22px rgba(23, 33, 43, 0.06);
}

.topic-cloud span:nth-child(4n+1) {
  background: rgba(18, 188, 235, 0.13);
}

.topic-cloud span:nth-child(4n+2) {
  background: rgba(111, 190, 68, 0.14);
}

.topic-cloud span:nth-child(4n+3) {
  background: rgba(245, 180, 0, 0.16);
}

.topic-cloud span:nth-child(4n+4) {
  background: rgba(255, 90, 95, 0.12);
}

.insight-mini {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}

.insight-mini::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
}

.insight-mini.cyan::before {
  background: var(--cyan);
}

.insight-mini.green::before {
  background: var(--fresh);
}

.insight-mini.gold::before {
  background: var(--gold);
}

.insight-mini.coral::before {
  background: var(--coral);
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.contact-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--cloud);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.success-band {
  color: var(--white);
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.10),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(0,255,170,0.10),
    transparent 30%),

    linear-gradient(
    135deg,
    #021b2f 0%,
    #033b5c 25%,
    #005b7f 55%,
    #007ea7 100%
    );
  overflow: hidden;
}
.success-band::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    120deg,
    rgba(255,255,255,0.04),
    transparent 40%
    );

    pointer-events:none;
}
.success-band h2,
.success-band .eyebrow {
  color: var(--white);
}

.success-band .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.success-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 470px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0 18px;
  scroll-snap-type: x mandatory;
}

.success-track::-webkit-scrollbar {
  height: 10px;
}

.success-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.success-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.success-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  border-radius: 12px;
  padding: 34px 30px 28px;
  color: var(--charcoal);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.18);
  scroll-snap-align: start;
}

.success-card::before {
  content: "\"";
  position: absolute;
  top: 8px;
  left: 20px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
}

.success-card p {
  position: relative;
  margin-top: 38px;
  color: var(--charcoal);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
}

.success-card footer {
  margin-top: 24px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: var(--charcoal);
  font-weight: 900;
  font-size: 13px;
}

.step strong {
  display: block;
  color: var(--charcoal);
}

.step span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery .screen-frame:nth-child(1) {
  grid-column: span 2;
}

.demo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.demo-panel{
    position: relative;
    overflow: hidden;

    padding: 64px;
    border-radius: 32px;

    background:
    radial-gradient(circle at top right,
    rgba(0,255,200,0.16),
    transparent 28%),

    radial-gradient(circle at bottom left,
    rgba(0,174,255,0.12),
    transparent 30%),

    linear-gradient(
    135deg,
    #06111f 0%,
    #0a1f35 35%,
    #0b2e4f 65%,
    #12456f 100%
    );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);

    backdrop-filter: blur(12px);
}.demo-panel::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    120deg,
    rgba(255,255,255,0.06),
    transparent 35%
    );

    pointer-events:none;
}
.demo-panel::after{
    content:"";
    position:absolute;

    width:420px;
    height:420px;

    right:-120px;
    top:-120px;

    background:
    radial-gradient(
    circle,
    rgba(0,255,200,0.18),
    transparent 70%
    );

    pointer-events:none;
}
.demo-panel h2{
    font-size: clamp(42px,5vw,64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;

    color:#ffffff;

    max-width: 900px;

    margin-bottom: 18px;
}

.demo-panel h2,
.demo-panel h3 {
  color: var(--white);
}

.demo-panel p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 14px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-list span {
  display: block;
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.mini-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.pipeline-step {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.pipeline-step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg);
  background: var(--cloud);
}

.pipeline-step:last-child::after {
  display: none;
}

.pipeline-step strong {
  display: block;
  color: var(--charcoal);
  font-size: 16px;
}

.pipeline-step span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  border-radius: 18px;
  padding: 46px;
 background: radial-gradient(circle at top right, rgba(0, 102, 51, 0.12), transparent 30%), linear-gradient(123deg, #f7fffa 0%, #bbf1ffc9 45%, #dff4e7 100%); border: 1px solid rgba(0,102,51,0.08); border-radius: 28px; overflow: hidden; position: relative;
}

.site-footer {
  padding: 54px 0;
  background: linear-gradient(120deg, #122e4a 0%, #033948 40%, #004457 75%, #18201c 100%);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 1fr);
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: 174px;
  height: auto;
  filter: none;
}

.footer-certifications {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-certifications span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-badges img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: none !important;
  border-radius: 0;
  background: transparent;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--cyan);
}

.page-hero {
  padding: 92px 0 70px;
  background:
    linear-gradient(135deg, rgba(18, 188, 235, 0.12), rgba(255, 255, 255, 0) 45%),
    var(--white);
}

.page-hero .lead {
  max-width: 820px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .hero-grid,
  .split,
  .section-head,
  .demo-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-stage {
    margin-top: 12px;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .topic-cloud,
  .pipeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1220px);
    min-height: 66px;
  }

  .logo img {
    width: 142px;
  }

  .section {
    padding: 66px 0;
  }

  .container {
    width: min(100% - 28px, 1220px);
  }

  .hero-grid {
    gap: 28px;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .pipeline,
  .gallery,
  .topic-cloud {
    grid-template-columns: 1fr;
  }

  .insights-hero-card {
    min-height: 340px;
  }

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

  .footer-certifications {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-badges img {
    width: 104px;
    height: 104px;
  }

  .pipeline-step::after {
    display: none;
  }

  .gallery .screen-frame:nth-child(1) {
    grid-column: span 1;
  }

  .float-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .cta-band {
    padding: 28px;
  }
}




/* ===== Mobile Menu Fix ===== */
@media (max-width: 991px) {
  .navbar,
  .nav,
  .menu,
  .navigation,
  .header-menu {
    position: relative;
  }

  .navbar-collapse,
  .menu-items,
  .mobile-menu,
  .nav-menu,
  .navigation-menu {
    width: 100%;
    background: #fff;
    z-index: 9999;
  }

  .navbar-collapse.show,
  .menu.active,
  .mobile-menu.active,
  .nav-menu.active {
    display: block !important;
  }

  .navbar-toggler,
  .menu-toggle,
  .mobile-toggle,
  .hamburger {
    display: flex !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .navbar ul,
  .menu ul,
  .navigation ul,
  .nav-menu ul {
    flex-direction: column !important;
    width: 100%;
    padding: 10px 0;
  }

  .navbar ul li,
  .menu ul li,
  .navigation ul li,
  .nav-menu ul li {
    width: 100%;
    text-align: left;
    padding: 10px 15px;
  }

  body.menu-open {
    overflow: hidden;
  }
}


/* ===== Advanced Mobile Menu Fix ===== */
.mobile-menu-toggle{
display:none;
background:none;
border:none;
font-size:32px;
cursor:pointer;
color:#000;
line-height:1;
}

@media(max-width:991px){

.mobile-menu-toggle{
display:block !important;
}

.nav-links,
.mega-nav,
.nav-menu,
.menu{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
z-index:9999;
flex-direction:column !important;
gap:15px;
}

.nav-links.active,
.mega-nav.active,
.nav-menu.active,
.menu.active{
display:flex !important;
}

.site-header .nav-item.open > .nav-menu{
display:block !important;
}

@media(max-width:991px){
.site-header .nav-item{
width:100%;
}

.site-header .nav-trigger{
width:100%;
justify-content:space-between;
}

.site-header .mega-nav.active .nav-item > .nav-menu,
.site-header .nav-links.active .nav-item > .nav-menu{
display:none !important;
position:static;
width:100%;
min-width:0;
margin-top:8px;
padding:8px;
box-shadow:none;
opacity:1;
visibility:visible;
transform:none;
}

.site-header .mega-nav.active .nav-item.open > .nav-menu,
.site-header .nav-links.active .nav-item.open > .nav-menu{
display:block !important;
}
}

nav.nav{
padding:15px;
position:relative;
}

nav.nav .btn{
display:none !important;
}
}



/* ===== Dynamic Animation Effects ===== */
.fade-up{
opacity:0;
transform:translateY(40px);
transition:all 0.9s ease;
}

.fade-up.active{
opacity:1;
transform:translateY(0);
}

.fade-left{
opacity:0;
transform:translateX(-40px);
transition:all 1s ease;
}

.fade-left.active{
opacity:1;
transform:translateX(0);
}

.fade-right{
opacity:0;
transform:translateX(40px);
transition:all 1s ease;
}

.fade-right.active{
opacity:1;
transform:translateX(0);
}

.zoom-in{
opacity:0;
transform:scale(0.9);
transition:all 0.8s ease;
}

.zoom-in.active{
opacity:1;
transform:scale(1);
}
 
.problem-section{
    width:100%;
    background:#022d73;
    padding:90px 5%;
    overflow:hidden;
}

.problem-wrapper{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
}

/* LEFT CARD */

.problem-card{
    width:380px;
    min-width:380px;
    background:#f4f4f4;
    border-radius:24px;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
    overflow:hidden;
}

.problem-card img{
    width:100%;
    height:auto;
    border-radius:12px;
    display:block;
}

.problem-percent{
    font-size:48px;
    font-weight:800;
    color:#ff6a00;
    text-align:center;
    line-height:1.1;
    margin-top:28px;
    letter-spacing:-2px;
}

.problem-desc{
    font-size:20px;
    line-height:1.7;
    color:#111;
    text-align:center;
    margin-top:18px;
}

/* RIGHT CONTENT */

.problem-content{
    flex:1;
    max-width:850px;
    color:#fff;
}

.problem-top{
    color:#ff6a00;
    font-size:26px;
    font-weight:700;
    margin-bottom:4px;
}

.problem-heading{
    font-size:52px;
    font-weight:800;
    line-height:1.25;
    color:#ffffff;
    margin-bottom:5px;
    letter-spacing:-1px;
}

.problem-para{
    font-size:24px;
    line-height:1.6;
    color:#f2f2f2;
    margin-bottom:28px;
}

.problem-list{
    list-style:none;
    padding:0;
    margin:0;
}

.problem-list li{
    position:relative;
    padding-left:34px;
    margin-bottom:2px;
    font-size:23px;
    line-height:1.6;
    color:#fff;
}

.problem-list li::before{
    content:"•";
    position:absolute;
    left:0;
    top:-10px;
    color:#fff;
    font-size:34px;
}

/* LARGE LAPTOP */

@media(max-width:1400px){

.problem-heading{
    font-size:45px;
}

.problem-para,
.problem-list li{
    font-size:23px;
}

}

/* TABLET */

@media(max-width:1100px){

.problem-wrapper{
    gap:30px;
}

.problem-card{
    width:320px;
    min-width:320px;
}

.problem-heading{
    font-size:40px;
}

.problem-para{
    font-size:20px;
}

.problem-list li{
    font-size:20px;
}

.problem-percent{
    font-size:40px;
}

}

/* MOBILE */

@media(max-width:991px){

.problem-section{
    padding:60px 20px;
}

.problem-wrapper{
    flex-direction:column;
    gap:35px;
}

.problem-card{
    width:100%;
    min-width:100%;
    max-width:420px;
}

.problem-content{
    width:100%;
    max-width:100%;
    text-align:center;
}

.problem-top{
    font-size:5px;
}

.problem-heading{
    font-size:42px;
    line-height:1.2;
    letter-spacing:-1px;
}

.problem-para{
    font-size:18px;
    line-height:1.8;
}

.problem-list{
    text-align:left;
    margin-top:25px;
}

.problem-list li{
    font-size:17px;
    line-height:1.7;
    padding-left:28px;
}

.problem-percent{
    font-size:32px;
}

.problem-desc{
    font-size:16px;
}

}

/* SMALL MOBILE */
body{overflow-x:hidden;}
@media(max-width:576px){

.problem-section{
    padding:50px 16px;
}

.problem-heading{
    font-size:30px;
}

.problem-top{
    font-size:20px;
}

.problem-para{
    font-size:16px;
}

.problem-list li{
    font-size:15px;
}

.problem-percent{
    font-size:34px;
}

.problem-desc{
    font-size:15px;
}}

.numen-capabilities-section{
    width:100%;
    padding:90px 5%;
    background:#f8fbff;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

.container{
    max-width:1450px;
    margin:auto;
}

/* TOP */

.numen-top-content{
    margin-bottom:50px;
}

.numen-title{
    font-size:56px;
    font-weight:800;
    color:#173f8a;
    margin-bottom:18px;
    line-height:1.1;
}

.numen-subtitle{
    max-width:1200px;
    font-size:20px;
    line-height:1.7;
    color:#4b5563;
}

/* GRID */

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

/* CARD */

.numen-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:32px 08px;
    transition:0.4s ease;
    height:100%;
    box-shadow:0 8px 24px rgba(0,0,0,0.04);
}

.numen-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.numen-card-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:28px;
    padding-bottom:18px;
    border-bottom:1px solid #edf1f7;
}

.numen-card-header h3{
    font-size:18px;
    color:#173f8a;
    font-weight:700;
    line-height:1.3;
}

.numen-icon{
    width:54px;
    height:54px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    flex-shrink:0;
}

.blue{
    background:#e8f1ff;
    color:#1d4ed8;
}

.purple{
    background:#f2e8ff;
    color:#9333ea;
}

.orange{
    background:#fff1e6;
    color:#f97316;
}

.green{
    background:#e8fff2;
    color:#16a34a;
}

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

.numen-card ul li{
    position:relative;
    padding-left:26px;
    margin-bottom:8px;
    font-size:16px;
    line-height:1.7;
    color:#4b5563;
}

.numen-card ul li::before{
    content:"•";
    position:absolute;
    left:0;
    top:-1px;
    color:#2563eb;
    font-size:22px;
}

/* BOTTOM */

.numen-bottom{
    margin-top:40px;
    background: #ffffff;
    border-radius: 22px;
    padding: 5px 15px 15px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.numen-bottom h4{
    font-size:28px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:8px;
}

.numen-bottom-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.bottom-box{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.bottom-box span{
    font-size:34px;
}

.bottom-box h5{
    font-size:22px;
    color:#173f8a;
    margin-bottom:8px;
}

.bottom-box p{
    color:#64748b;
    font-size:17px;
    line-height:1.6;
}

/* LAPTOP */

@media(max-width:1300px){

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

}

/* TABLET */
.bottom-box div {
    margin-top: -37px;
}

@media(max-width:991px){

.numen-capabilities-section{
    padding:70px 20px;
}

.numen-title{
    font-size:42px;
}

.numen-subtitle{
    font-size:18px;
}

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

.numen-card-header h3{
    font-size:14px;
}

.numen-bottom-grid{
    grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:576px){

.numen-title{
    font-size:34px;
}

.numen-subtitle{
    font-size:16px;
    line-height:1.8;
}

.numen-card{
    padding:24px 20px;
}

.numen-card-header{
    align-items:flex-start;
}

.numen-card-header h3{
    font-size:14px;
}

.numen-card ul li{
    font-size:15px;
    line-height:1.7;
}

.numen-bottom{
    padding:24px 20px;
}

.numen-bottom h4{
    font-size:22px;
    line-height:1.5;
}

.bottom-box h5{
    font-size:18px;
}

.bottom-box p{
    font-size:14px;
}

}
section#wrks {
    margin: 0;
    padding: 0;
}

/* =====================================
TEAM SECTION
===================================== */

.team-section{
    padding:90px 5%;
    background:#f7fbff;
    font-family:'Poppins',sans-serif;
    overflow:hidden;
}

.container{
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:56px;
    color:#0a3a7d;
    font-weight:800;
    line-height:1.2;
}

/* =====================================
TEAM GRID
===================================== */

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* =====================================
TEAM CARD
===================================== */

.team-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px 22px 28px;
    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    transition:0.4s ease;

    cursor:pointer;

    position:relative;

    overflow:hidden;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.team-card img{
    width:180px;
    height:180px;

    border-radius:50%;

    object-fit:cover;

    display:block;

    margin:auto;

    border:6px solid #f3f7fb;
}

/* NAME */

.team-card h3{
    margin-top:28px;

    font-size:34px;
    font-weight:800;

    line-height:1.25;

    color:#07356f;
}

/* ROLE */

.team-card p{
    margin-top:10px;

    font-size:18px;
    font-weight:500;

    line-height:1.7;

    color:#4b5563;
 
}

/* BUTTON */

.team-btn{
    margin-top:24px;

    background:#0bb14b;
    color:#fff;

    border:none;

    padding:14px 32px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;
}

.team-btn:hover{
    background:#08913d;
    transform:translateY(-3px);
}

/* =====================================
LAPTOP
===================================== */

@media(max-width:1200px){

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

}

/* =====================================
TABLET
===================================== */

@media(max-width:991px){

.section-title h2{
    font-size:44px;
}

.team-card h3{
    font-size:30px;
}

.team-card p{
    font-size:16px;
}

}

/* =====================================
MOBILE
===================================== */

@media(max-width:768px){

.team-section{
    padding:70px 20px;
}

.team-grid{
    grid-template-columns:1fr;
    gap:28px;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:34px;
}

.team-card{
    padding:28px 18px 24px;
    border-radius:20px;
}

.team-card img{
    width:145px;
    height:145px;
}

.team-card h3{
    font-size:26px;
}

.team-card p{
    font-size:15px;
    line-height:1.6;
    min-height:auto;
}

.team-btn{
    padding:12px 26px;
    font-size:15px;
}

}

/* =====================================
SMALL MOBILE
===================================== */

@media(max-width:480px){

.team-card h3{
    font-size:24px;
}

.team-card p{
    font-size:14px;
}

.team-btn{
    width:100%;
}

}
/* =========================
POPUP WRAPPER
========================= */

.team-popup{
    position:fixed;
    inset:0;
    z-index:999999;

    display:none;

    background:rgba(0,0,0,0.72);

    overflow-y:auto;

    padding:40px 20px;
}

/* ACTIVE */

.team-popup.active{
    display:block;
}

/* =========================
POPUP BOX
========================= */

.popup-box{
    position:relative;

    width:100%;
    max-width:580px;

    background:#fff;

    border-radius:24px;

    margin:40px auto;

    overflow:hidden;

    box-shadow:0 25px 80px rgba(0,0,0,0.3);

    animation:popupShow .4s ease;
}

/* ANIMATION */

@keyframes popupShow{

    from{
        opacity:0;
        transform:translateY(40px);
    }

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

}

/* =========================
TOP AREA
========================= */

.popup-top{
    height:70px;
    background:linear-gradient(135deg,#12c2ff,#0b6dff);
}

/* =========================
CONTENT
========================= */

.popup-content{
    position:relative;

    padding:0 38px 40px;

    margin-top:12px;
	overflow-y:auto; scrollbar-width:thin;
}

/* IMAGE */
.popup-box{
    overflow:hidden;
}

.popup-content::-webkit-scrollbar{
    width:6px;
}

.popup-content::-webkit-scrollbar-thumb{
    background:#cbd5e1;
    border-radius:20px;
}
.popup-image{
    width:145px;
    height:145px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #fff;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* NAME */

.popup-name{
    margin-top:24px;

    font-size:42px;
    font-weight:800;

    color:#08a9ea;

    line-height:1.15;
}

/* ROLE */

.popup-role{
    margin-top:10px;

    font-size:22px;
    font-weight:600;

    line-height:1.5;

    color:#475569;
}

/* DESCRIPTION */

.popup-description{
    margin-top:24px;

    font-size:17px;

    line-height:1.9;

    color:#5b6472;
}

/* LINKEDIN */

.popup-linkedin{
    width:58px;
    height:58px;

    border-radius:50%;

    background:#0077b5;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:30px;
    font-weight:700;

    margin-top:30px;
}

/* CLOSE */

.popup-close{
    position:absolute;

    BOTTOM:16px;
    right:16px;

    width:44px;
    height:44px;

    border:none;

    border-radius:50%;

    background:#fff;

    font-size:26px;

    cursor:pointer;

    z-index:50;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){
div#flc {
    display: block !important;
    gap: 20px;
    margin: 20px 0;
	justify-content: center;
}
.popup-box{
    margin:420px auto;
    border-radius:20px;
}

.popup-top{
    height:20px;
}

.popup-content{
    padding:0 22px 30px;
    margin-top:-58px; 
	overflow-y:auto;
}

.popup-image{
    width:110px;
    height:110px;
}

.popup-name{
    font-size:30px;
}

.popup-role{
    font-size:18px;
}

.popup-description{
    font-size:15px;
    line-height:1.8;
}

.popup-linkedin{
    width:50px;
    height:50px;
    font-size:24px;
}

.popup-close{
    width:38px;
    height:38px;
    font-size:22px;
}

}
.nav-menua a:hover {
    background: #12bceb5c;
}
.nav-menua a {
    padding: 5px;
    border: 1px solid #9999994d;
    border-radius: 32px;
    margin: 5px 4px;
    line-height: 2.51;
    font-size: 14px;
}

/* =====================================
INSIGHTS SECTION
===================================== */

.insights-section{
    padding:90px 5%;
    background:#f7fbff;
    font-family:'Poppins',sans-serif;
}

.container{
    max-width:1400px;
    margin:auto;
}

/* =====================================
GRID
===================================== */

.insights-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* =====================================
CARD
===================================== */

.insight-card{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:0.35s ease;
    border:1px solid #ececec;
}

.insight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.14);
}

/* IMAGE */

.insight-image{
    width:100%;
    height:auto;
    overflow:hidden;
}

.insight-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.insight-card:hover img{
    transform:scale(1.05);
}

/* CONTENT */

.insight-content{
    padding:22px 20px 18px;
    text-align:center;
}

.insight-content h3{
    font-size:18px;
    line-height:1.45;
    color:#1a1a1a;
    font-weight:500;
    min-height:90px;
}

/* DATE */

.insight-date{
    display:block;
    border-top:1px solid #ededed;
    font-size:14px;
    color:#9ca3af;
}

/* =====================================
LAPTOP
===================================== */

@media(max-width:1200px){

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

}

/* =====================================
TABLET
===================================== */

@media(max-width:768px){

.insights-section{
    padding:70px 20px;
}

.insights-grid{
    grid-template-columns:1fr;
    gap:24px;
}

.insight-image{
    height:auto;
}

.insight-content{
    padding:20px 18px;
}

.insight-content h3{
    font-size:17px;
    min-height:auto;
}

}

/* =====================================
MOBILE
===================================== */

@media(max-width:480px){

.insight-image{
    height:200px;
}

.insight-content h3{
    font-size:16px;
}

.insight-date{
    font-size:13px;
}

}
