/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: .45rem 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  margin-right: 1.5rem;
  transition: color .2s;
}

.topbar a:hover {
  color: #fff;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 42, 92, .07);
  box-shadow: 0 2px 24px rgba(14, 42, 92, .06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue2));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(26, 79, 191, .3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.logo-text span:last-child {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .2rem;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--mid);
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s;
  position: relative;
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: var(--blue3);
}

.nav-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--mid);
  border-radius: 2px;
  transition: all .3s;
}

/* ── TRUST BAR ── */
.trust {
  background: linear-gradient(135deg, var(--navy), #1a3a70);
  padding: .6rem 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.trust-track:hover {
  animation-play-state: paused;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6EE7B7;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(130deg, #050F2E 0%, #0E2A5C 40%, #0D5C42 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, .15);
  top: -100px;
  right: -150px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(5, 150, 105, .12);
  bottom: -100px;
  left: 100px;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, .1);
  top: 50%;
  left: 40%;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 231, 183, .1);
  border: 1px solid rgba(110, 231, 183, .25);
  color: #6EE7B7;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6EE7B7;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #6EE7B7, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .72);
  line-height: 2;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hstat {
  text-align: center;
}

.hstat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}

.hstat-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
}

.hstat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  height: 48px;
  align-self: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: heroFloat 6s ease-in-out infinite;
}

.hcard {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}

.hcard:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateX(-5px);
}

.hcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hi-blue {
  background: rgba(37, 99, 235, .25);
}

.hi-green {
  background: rgba(5, 150, 105, .25);
}

.hi-amber {
  background: rgba(217, 119, 6, .25);
}

.hcard-text p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 4px;
}

.hcard-text strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

/* ── STATS ── */
.stats-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.stat-item:first-child {
  border-left: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 100%;
  height: 3px;
  background: linear-gradient(to left, var(--blue2), var(--green2));
  transition: left .5s ease;
}

.stat-item:hover::before {
  left: 0;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.stat-suf {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green2);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 500;
}

/* ── SECTION ── */
.sec {
  padding: 5rem 0;
}

.sec-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue3);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.sec-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .7rem;
}

.sec-header p {
  font-size: 14.5px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to left, var(--blue2), var(--green2));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── PRODUCTS ── */
.products-bg {
  background: var(--light);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.pcard {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pimg-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.pimg-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pimg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform .6s var(--transition);
}

.pcard:hover .pimg-wrap img {
  transform: scale(1.08);
}

.pimg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .45) 0%, transparent 55%);
  z-index: 2;
}

.ptag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  padding: 5px 13px;
  border-radius: 20px;
  font-weight: 700;
  z-index: 3;
  backdrop-filter: blur(8px);
}

.ptag-blue {
  background: rgba(219, 234, 254, .9);
  color: #1E40AF;
}

.ptag-green {
  background: rgba(209, 250, 229, .9);
  color: #064E3B;
}

.ptag-red {
  background: rgba(254, 226, 226, .9);
  color: #991B1B;
}

.ptag-amber {
  background: rgba(254, 243, 199, .9);
  color: #92400E;
}

.pcard-body {
  padding: 1.4rem;
}

.pcard-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pcard-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
  min-height: 52px;
}

.pcard-footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pbtn {
  flex: 1;
  border: none;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pbtn-info {
  background: #EFF6FF;
  color: var(--blue);
}

.pbtn-info:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.pbtn-quote {
  background: #ECFDF5;
  color: var(--green);
}

.pbtn-quote:hover {
  background: var(--green2);
  color: #fff;
  transform: translateY(-1px);
}

/* ── LOGO CAROUSEL ── */
.logos-section {
  background: #fff;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 1.8rem;
  letter-spacing: .3px;
}

.logos-outer {
  overflow: hidden;
  position: relative;
}

.logos-outer::before, .logos-outer::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.logos-outer::before {
  right: 0;
  background: linear-gradient(to left, #fff 40%, transparent);
}

.logos-outer::after {
  left: 0;
  background: linear-gradient(to right, #fff 40%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

.litem {
  flex-shrink: 0;
  width: 170px;
  height: 80px;
  margin: 0 10px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFBFF;
  transition: all .25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.litem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .5));
  opacity: 0;
  transition: opacity .3s;
}

.litem:hover {
  border-color: var(--blue2);
  box-shadow: 0 6px 24px rgba(37, 99, 235, .12);
  transform: translateY(-3px);
}

.litem:hover::before {
  opacity: 1;
}

.lname {
  font-size: 19px;
  font-weight: 900;
}

/* ── FEATURES ── */
.feat-bg {
  background: linear-gradient(135deg, #EFF6FF 0%, #ECFDF5 100%);
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  display: flex;
  gap: 18px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.fcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ficon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fi-blue {
  background: #DBEAFE;
}

.fi-green {
  background: #D1FAE5;
}

.ftext h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}

.ftext p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.85;
}

/* ── NEWS ── */
.news-bg {
  background: var(--light);
}

.ngrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.ncard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.ncard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.nimg {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.nimg-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.nimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform .5s;
}

.ncard:hover .nimg img {
  transform: scale(1.06);
}

.ncategory {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
}

.nbody {
  padding: 1.3rem;
}

.nbody h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.6;
}

.nbody p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.8;
}

.nbody-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.ndate {
  font-size: 12px;
  color: var(--gray);
}

.nmore {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}

.nmore:hover {
  color: var(--navy);
}

/* ── CERTS ── */
.certs-bg {
  background: #fff;
}

.cgrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.cert-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  text-align: center;
  min-width: 150px;
  transition: all var(--transition);
  cursor: default;
}

.cert-card:hover {
  border-color: var(--blue2);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cert-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.cert-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.cert-desc {
  font-size: 11.5px;
  color: var(--gray);
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(130deg, #050F2E, #0E2A5C 55%, #0D5C42);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, .07);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(5, 150, 105, .07);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2.2rem;
  line-height: 1.9;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  padding: 4rem 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

.flogo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.flogo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flogo-name {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.fdesc {
  font-size: 13px;
  line-height: 1.9;
  max-width: 240px;
}

.flinks h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.2rem;
}

.flinks ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.flinks ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flinks ul li a:hover {
  color: rgba(255, 255, 255, .9);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s;
}

.social-btn:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: 12.5px;
}
