:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --accent: #2563eb;
  --accent-2: #0ea5e9;
  --text: #1f2937;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #16a34a;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.section-title {
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
  line-height: 1.15;
  margin: 14px 0 14px;
  color: var(--primary);
}
.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}
.text-center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; color: var(--primary); }
.card p:last-child { margin-bottom: 0; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--primary);
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 700;
  color: var(--secondary);
}
.nav-links a.active,
.nav-links a:hover { color: var(--accent); }
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hero {
  background:
    radial-gradient(circle at top left, rgba(14,165,233,.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(37,99,235,.12), transparent 28%),
    linear-gradient(135deg, #07111f, #10223f 55%, #0b1730);
  color: var(--white);
  padding: 88px 0 70px;
}
.hero .container,
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 640px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.35);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.metric {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.metric strong { display: block; font-size: 1.4rem; }
.metric span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.info-list { list-style: none; padding: 0; margin: 18px 0 0; }
.info-list li { margin: 10px 0; padding-left: 22px; position: relative; }
.info-list li::before {
  content: "•";
  color: var(--accent-2);
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  line-height: 1;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -34px;
}
.stats-strip .card { text-align: center; padding: 22px; }
.stats-strip h3 { margin-bottom: 8px; font-size: 2rem; }
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(37,99,235,0.1);
  margin-bottom: 18px;
}
.alt-bg { background: var(--light); }
.solution-card {
  border-top: 4px solid var(--accent);
}
.cta {
  background: linear-gradient(135deg, #0f172a, #0b1730 55%, #1e3a8a);
  color: var(--white);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.cta p { color: rgba(255,255,255,0.82); }
.page-hero {
  padding: 76px 0 46px;
  background: linear-gradient(180deg, rgba(37,99,235,0.08), transparent);
}
.breadcrumb {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.timeline {
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding: 0 0 24px 24px; }
.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: -1px;
  top: 7px;
  background: var(--accent);
}
.blog-card img {
  border-radius: 16px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}
.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.contact-card strong { color: var(--primary); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 10px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding: 18px 0;
  font-size: 0.92rem;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.32);
  z-index: 998;
}
.small { font-size: 0.95rem; color: var(--muted); }

@media (max-width: 980px) {
  .hero .container,
  .split,
  .grid-4,
  .footer-grid,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 18px 20px 24px;
    display: none;
  }
  .nav-links.show { display: flex; }
  .hero .container,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-strip,
  .footer-grid,
  .form-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .cta { padding: 28px; }
  .hero { padding-top: 70px; }
}


.logo{display:flex;align-items:center;gap:12px;font-size:0;}
.logo img{height:56px;width:auto;display:block;}
.footer-logo img{height:54px;max-width:100%;display:block;}
.topbar .container{gap:16px;flex-wrap:wrap;}
.contact-inline a{color:inherit;text-decoration:none;}
.contact-inline a:hover{text-decoration:underline;}
@media (max-width:768px){
  .logo img{height:44px;}
  .footer-logo img{height:46px;}
}


/* Slider */
.site-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #eaf1f8;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 280px;
  max-height: 620px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.18);
  backdrop-filter: blur(4px);
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.55);
}
.slider-dot.active { background: #ffffff; transform: scale(1.15); }

/* Footer and logo visibility improvements */
header .navbar { padding: 10px 0; }
.logo img { height: 82px; }
.footer-logo img { height: 88px; }
footer {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
  color: #334155;
  border-top: 1px solid #dbe5f0;
}
footer h3,
footer a,
footer strong { color: #0f172a; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
}
.footer-grid p { color: #475569; }

@media (max-width: 768px) {
  .logo img { height: 60px; }
  .footer-logo img { height: 64px; }
  .slider-track {
    aspect-ratio: 16 / 9;
    min-height: 190px;
  }
  .slider-dots { bottom: 10px; gap: 6px; }
  .slider-dot { width: 8px; height: 8px; }
}



/* ===== 2026 design update: tabs, slider fit, larger logos, animated WhatsApp ===== */
header .navbar { padding: 12px 0; }
.logo img { height: 74px; width: auto; display: block; }
.footer-logo img { height: 76px; width: auto; display: block; }

.nav-links {
  gap: 12px;
  flex-wrap: wrap;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff 0%, #e7eef8 100%);
  border: 1px solid rgba(37,99,235,0.14);
  color: #17315c;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: all .24s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(37,99,235,0.26);
  transform: translateY(-1px);
}

.site-slider {
  background:
    linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}
.slider-track {
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 280px;
  max-height: 600px;
  background: linear-gradient(180deg, #eef4fb 0%, #dfe9f6 100%);
}
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}
.slider-dots {
  bottom: 16px;
  background: rgba(15,23,42,0.28);
}
.slider-dot {
  width: 10px;
  height: 10px;
}

footer {
  background: linear-gradient(180deg, #edf4fb 0%, #dce8f6 100%);
  color: #22324c;
}
footer h3 { color: #0f172a; }
.footer-links a:hover { color: #1d4ed8; }
.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}
footer .small,
footer p,
footer li,
footer a {
  color: inherit;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  top: 110px;
  right: auto;
  bottom: auto;
  width: min(320px, calc(100vw - 36px));
  height: auto;
  border-radius: 999px;
  display: block;
  background: transparent;
  box-shadow:
    0 0 0 rgba(34, 197, 94, 0.0),
    0 10px 28px rgba(34,197,94,0.24);
  z-index: 998;
  animation: whatsappGlow 2.1s ease-in-out infinite;
}
.floating-whatsapp img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 999px;
}
.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
}
@keyframes whatsappGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(34,197,94,0.15)) drop-shadow(0 0 6px rgba(34,197,94,0.18));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(34,197,94,0.55)) drop-shadow(0 0 16px rgba(34,197,94,0.45));
  }
}

@media (max-width: 980px) {
  .logo img { height: 64px; }
  .footer-logo img { height: 68px; }
  .floating-whatsapp {
    width: min(260px, calc(100vw - 28px));
    top: 98px;
    left: 14px;
  }
}

@media (max-width: 760px) {
  header .navbar {
    align-items: flex-start;
  }
  .menu-toggle {
    margin-top: 10px;
    color: #17315c;
  }
  .nav-links {
    gap: 10px;
    padding-top: 16px;
  }
  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }
  .logo img { height: 56px; }
  .footer-logo img { height: 58px; }
  .slider-track {
    aspect-ratio: 16 / 9;
    min-height: 190px;
    max-height: 360px;
  }
  .floating-whatsapp {
    width: min(220px, calc(100vw - 20px));
    top: 90px;
    left: 10px;
  }
}


/* ===== 2026 design update: tabs, slider fit, larger logos, animated WhatsApp ===== */
header .navbar { padding: 12px 0; }
.logo img { height: 74px !important; width: auto; display: block; }
.footer-logo img { height: 76px !important; width: auto; display: block; }

.nav-links {
  gap: 12px;
  flex-wrap: wrap;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff 0%, #e7eef8 100%);
  border: 1px solid rgba(37,99,235,0.14);
  color: #17315c;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: all .24s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(37,99,235,0.26);
  transform: translateY(-1px);
}

.site-slider {
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}
.slider-track {
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 280px;
  max-height: 600px;
  background: linear-gradient(180deg, #eef4fb 0%, #dfe9f6 100%);
}
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}
.slider-dots {
  bottom: 16px;
  background: rgba(15,23,42,0.28);
}
.slider-dot {
  width: 10px;
  height: 10px;
}

footer {
  background: linear-gradient(180deg, #edf4fb 0%, #dce8f6 100%) !important;
  color: #22324c !important;
}
footer h3 { color: #0f172a; }
.footer-links a:hover { color: #1d4ed8; }
.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}
footer .small,
footer p,
footer li,
footer a {
  color: inherit;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  top: 110px;
  right: auto;
  bottom: auto;
  width: min(320px, calc(100vw - 36px));
  height: auto;
  border-radius: 999px;
  display: block;
  background: transparent;
  box-shadow: 0 10px 28px rgba(34,197,94,0.24);
  z-index: 998;
  animation: whatsappGlow 2.1s ease-in-out infinite;
}
.floating-whatsapp img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 999px;
}
.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
}
@keyframes whatsappGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(34,197,94,0.15)) drop-shadow(0 0 6px rgba(34,197,94,0.18));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(34,197,94,0.55)) drop-shadow(0 0 16px rgba(34,197,94,0.45));
  }
}

@media (max-width: 980px) {
  .logo img { height: 64px !important; }
  .footer-logo img { height: 68px !important; }
  .floating-whatsapp {
    width: min(260px, calc(100vw - 28px));
    top: 98px;
    left: 14px;
  }
}

@media (max-width: 760px) {
  header .navbar {
    align-items: flex-start;
  }
  .menu-toggle {
    margin-top: 10px;
    color: #17315c;
  }
  .nav-links {
    gap: 10px;
    padding-top: 16px;
  }
  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }
  .logo img { height: 56px !important; }
  .footer-logo img { height: 58px !important; }
  .slider-track {
    aspect-ratio: 16 / 9;
    min-height: 190px;
    max-height: 360px;
  }
  .floating-whatsapp {
    width: min(220px, calc(100vw - 20px));
    top: 90px;
    left: 10px;
  }
}


/* ===== 2026 round 2 updates: full width text banners, smaller bottom-right WhatsApp, mobile friendly ===== */
.site-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #071627;
}
.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 320px;
  max-height: 700px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: block;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 24, 0.18) 0%, rgba(3, 10, 24, 0.35) 35%, rgba(3, 10, 24, 0.50) 100%);
  z-index: 1;
}
.slide-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 1180px);
  text-align: center;
  z-index: 2;
  padding: 20px;
}
.slide-caption h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3.8vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.28);
  backdrop-filter: blur(4px);
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.55);
}
.slider-dot.active {
  background: #ffffff;
  transform: scale(1.15);
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  top: auto;
  width: min(220px, calc(100vw - 32px));
  height: auto;
  border-radius: 999px;
  display: block;
  background: transparent;
  box-shadow: 0 8px 22px rgba(34,197,94,0.22);
  z-index: 999;
  animation: whatsappGlow 2.1s ease-in-out infinite;
}
.floating-whatsapp img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 999px;
}
.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
}

.logo img { height: 78px !important; }
.footer-logo img { height: 82px !important; }

@media (max-width: 1024px) {
  .slider-track {
    aspect-ratio: 16 / 7;
    min-height: 280px;
    max-height: 560px;
  }
  .logo img { height: 66px !important; }
  .footer-logo img { height: 70px !important; }
}

@media (max-width: 760px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .navbar {
    gap: 12px;
    padding: 10px 0;
  }
  .menu-toggle {
    font-size: 1.8rem;
    margin-top: 4px;
  }
  .nav-links {
    width: 100%;
    padding: 14px 14px 18px;
  }
  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.98rem;
  }
  .site-slider {
    margin-top: 0;
  }
  .slider-track {
    aspect-ratio: 16 / 9;
    min-height: 220px;
    max-height: 360px;
  }
  .slide img {
    object-fit: cover;
  }
  .slide-caption {
    width: 94%;
    padding: 14px;
  }
  .slide-caption h2 {
    font-size: clamp(1.15rem, 5vw, 2rem);
    line-height: 1.15;
  }
  .slider-dots {
    bottom: 10px;
    gap: 6px;
    padding: 5px 8px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .logo img { height: 56px !important; }
  .footer-logo img { height: 58px !important; }
  .floating-whatsapp {
    width: min(176px, calc(100vw - 20px));
    right: 10px;
    bottom: 10px;
  }
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .slider-track {
    min-height: 200px;
    max-height: 280px;
  }
  .slide-caption h2 {
    font-size: clamp(1rem, 5.2vw, 1.5rem);
  }
  .floating-whatsapp {
    width: 156px;
  }
}


/* Blog system */
.blog-hero {
  background: linear-gradient(135deg, #07111f, #10223f 55%, #0b1730);
  color: var(--white);
  padding: 86px 0 78px;
}
.blog-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.blog-hero p { color: rgba(255,255,255,0.82); }
.blog-hero .badge { background: rgba(255,255,255,0.12); color: #fff; }
.blog-hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
}
.blog-grid-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
}
.blog-grid-featured .featured-main { grid-row: span 2; }
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card h3 { margin: 0 0 10px; }
.post-card .meta { margin-bottom: 14px; }
.category-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.category-pills a {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  color: var(--secondary);
}
.category-pills a:hover { color: var(--accent); border-color: rgba(37,99,235,0.35); }
.blog-card .btn { margin-top: 8px; }
.blog-card h3 { margin-bottom: 10px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.article-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.article-content h2 { margin-top: 32px; color: var(--primary); }
.article-content h3 { margin-top: 22px; color: var(--secondary); }
.article-content p, .article-content li { color: #334155; }
.article-content ul, .article-content ol { padding-left: 20px; }
.article-cover {
  border-radius: 22px;
  overflow: hidden;
  margin: 18px 0 28px;
  border: 1px solid var(--border);
}
.article-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-sidebar { position: sticky; top: 98px; }
.article-sidebar .card { margin-bottom: 20px; }
.toc { list-style: none; padding: 0; margin: 0; }
.toc li { margin: 10px 0; }
.toc a { color: var(--secondary); font-weight: 700; }
.toc a:hover { color: var(--accent); }
.cta-inline {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(14,165,233,0.08));
  border: 1px solid rgba(37,99,235,0.16);
}
.home-insights .post-card { height: 100%; }
@media (max-width: 980px) {
  .blog-hero .container, .blog-grid-featured, .article-layout { grid-template-columns: 1fr; }
  .blog-grid-featured .featured-main { grid-row: auto; }
  .article-sidebar { position: static; }
}


/* Category pages and category cards */
.category-grid { display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:24px; margin-top:32px; }
.category-card {
  overflow:hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(15,23,42,0.14); }
.category-card img { width:100%; aspect-ratio: 4/3; object-fit: cover; }
.category-card .content { padding: 22px; }
.category-card h3 { margin: 0 0 10px; color: var(--primary); }
.category-card p { margin: 0 0 16px; color: var(--muted); }
.link-arrow { display:inline-flex; align-items:center; gap:8px; font-weight:700; color: var(--accent); }
.link-arrow::after { content: '→'; }
.category-overview-card img { width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:16px; margin-bottom:16px; }
.category-overview-card h3 { margin-bottom: 10px; }
.category-overview-card ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.category-page-hero {
  position: relative;
  min-height: 420px;
  display:flex;
  align-items:flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.category-page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(7,17,31,0.18) 0%, rgba(7,17,31,0.78) 72%, rgba(7,17,31,0.92) 100%);
}
.category-page-hero .container { position:relative; z-index:1; padding: 72px 0 54px; }
.category-page-hero .breadcrumb { color: rgba(255,255,255,0.82); }
.category-page-hero .section-title { color: var(--white); max-width: 760px; }
.category-page-hero .section-subtitle { color: rgba(255,255,255,0.86); margin: 0; max-width: 760px; }
.feature-chip-row { display:flex; flex-wrap:wrap; gap:12px; margin-top: 20px; }
.feature-chip {
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:999px;
  background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.16);
  color:#fff; font-weight:700; font-size:0.95rem;
}
.media-gallery { display:grid; grid-template-columns: 1.2fr 0.8fr; gap:20px; }
.media-gallery img { width:100%; height:100%; object-fit:cover; border-radius: 22px; box-shadow: var(--shadow); }
.media-gallery .stack { display:grid; gap:20px; }
.product-list { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:20px; }
.product-pill {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #dbe7f5; border-radius: 18px; padding: 18px 20px; font-weight:700; color:#17315c;
}
.faq-list details { border:1px solid var(--border); border-radius:18px; padding: 18px 20px; background:#fff; box-shadow: var(--shadow); }
.faq-list details + details { margin-top: 14px; }
.faq-list summary { cursor:pointer; font-weight:700; color: var(--primary); }
.faq-list p { color: var(--muted); margin: 14px 0 0; }
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .media-gallery, .product-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .category-grid, .media-gallery, .product-list { grid-template-columns: 1fr; }
  .category-page-hero { min-height: 360px; }
  .category-page-hero .container { padding: 56px 0 42px; }
}


/* ===== Product category pack ===== */
.brand-row { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:16px; }
.brand-tile { background:#fff; border:1px solid var(--border); border-radius:18px; box-shadow: var(--shadow); min-height:88px; display:flex; align-items:center; justify-content:center; text-align:center; padding:16px; font-weight:800; color:var(--primary); }
.quick-facts { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:18px; }
.quick-facts .card { text-align:center; }
.quick-facts strong { display:block; font-size:1.8rem; color:var(--primary); margin-bottom:8px; }
.subtle-note { font-size:0.95rem; color:var(--muted); margin-top:14px; }
.hub-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:24px; }
.hub-grid .category-card img { aspect-ratio: 16/10; }
.inline-links { display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.inline-links a { display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:10px 16px; border-radius:999px; background:#fff; border:1px solid var(--border); color:var(--primary); font-weight:700; box-shadow: var(--shadow); }
.inline-links a:hover { color:#fff; background:linear-gradient(135deg, #1d4ed8, #0ea5e9); border-color:transparent; }
@media (max-width: 1100px) { .hub-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .brand-row, .quick-facts { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 760px) { .hub-grid, .brand-row, .quick-facts { grid-template-columns: 1fr; } }


/* Final polished product pages */
.spec-note{margin-top:14px;font-size:.92rem;color:var(--muted)}
.brand-row.compact{grid-template-columns:repeat(3,minmax(0,1fr));}
.section-kicker{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.section-kicker .badge{margin:0}
.product-summary{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:start}
.product-summary .card{height:100%}
.info-card p:last-child{margin-bottom:0}
.spec-table-wrap{margin-top:28px;overflow:auto;background:#fff;border:1px solid var(--border);border-radius:20px;box-shadow:var(--shadow)}
.spec-table{width:100%;border-collapse:collapse;min-width:760px}
.spec-table th,.spec-table td{padding:15px 16px;border-bottom:1px solid #e5edf6;text-align:left;vertical-align:top}
.spec-table th{background:#eff6ff;color:var(--primary);font-size:.94rem;font-weight:800;position:sticky;top:0}
.spec-table td{color:#334155;font-size:.95rem}
.spec-table tr:last-child td{border-bottom:none}
.spec-table td strong{color:var(--primary)}
.table-caption{display:flex;justify-content:space-between;gap:12px;align-items:center;flex-wrap:wrap;padding:18px 20px 0}
.table-caption h3{margin:0;color:var(--primary)}
.mini-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:24px}
.mini-grid .card h3{font-size:1.05rem;margin-bottom:8px}
.callout-band{background:linear-gradient(135deg,#0f172a,#1d4ed8);color:#fff;border-radius:24px;padding:26px 28px;box-shadow:var(--shadow)}
.callout-band h3{color:#fff;margin:0 0 10px}
.callout-band p{margin:0;color:rgba(255,255,255,.86)}
.feature-list-plain{list-style:none;padding:0;margin:0}
.feature-list-plain li{padding:10px 0;border-bottom:1px dashed #dbe5f0;color:#475569}
.feature-list-plain li:last-child{border-bottom:none}
.solution-matrix{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:28px}
.solution-matrix .card{padding:24px}
.icon-title{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.icon-bubble{width:44px;height:44px;border-radius:12px;background:#e0f2fe;display:grid;place-items:center;font-size:1.2rem}
.subtle-box{background:#f8fbff;border:1px solid #dbe7f3;border-radius:18px;padding:18px 20px}
.note-strip{display:flex;gap:10px;align-items:flex-start;background:#fff7ed;border:1px solid #fed7aa;color:#9a3412;padding:14px 16px;border-radius:16px;margin-top:20px}
.inline-checks{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:18px}
.inline-checks div{background:#f8fafc;border:1px solid var(--border);padding:12px 14px;border-radius:14px;color:#334155;font-weight:600}
.category-page-hero .hero-actions{margin-top:22px}
@media (max-width:980px){.product-summary,.solution-matrix,.mini-grid{grid-template-columns:1fr 1fr}}
@media (max-width:760px){.product-summary,.solution-matrix,.mini-grid,.inline-checks,.brand-row.compact{grid-template-columns:1fr}.table-caption{padding:16px 16px 0}.spec-table{min-width:680px}}


/* Legal-safe brand badge section */
.brand-logo-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:32px;}
.brand-logo-card{background:#fff;border:1px solid var(--border);border-radius:18px;box-shadow:var(--shadow);padding:18px;display:flex;align-items:center;justify-content:center;min-height:112px;}
.brand-logo-card img{max-width:100%;max-height:46px;width:auto;height:auto;filter:grayscale(100%);opacity:.88;transition:all .25s ease;}
.brand-logo-card:hover img{filter:grayscale(0%);opacity:1;transform:scale(1.03);}
.brand-legal-disclaimer{margin-top:18px;font-size:13px;line-height:1.6;color:var(--muted);max-width:980px;margin-left:auto;margin-right:auto;}
.brand-note{margin-top:12px;color:var(--muted);font-size:15px;}
@media (max-width:1100px){.brand-logo-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width:760px){.brand-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.brand-logo-card{min-height:96px;padding:14px;}.brand-logo-card img{max-height:34px;}}

/* Ultra Premium Solution Icons Section - Nexova Systems */
.ultra-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}
.ultra-solution-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 32px 26px 28px;
  border-radius: 26px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37,99,235,.75), rgba(14,165,233,.35), rgba(251,191,36,.78)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.ultra-solution-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 22% 10%, rgba(14,165,233,.18), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(251,191,36,.18), transparent 32%),
    linear-gradient(180deg, rgba(248,250,252,.25), rgba(255,255,255,0));
  z-index: -2;
}
.ultra-solution-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -72px;
  bottom: -72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.13), rgba(251,191,36,.12));
  transition: transform .35s ease, opacity .35s ease;
  opacity: .8;
  z-index: -1;
}
.ultra-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18), 0 0 28px rgba(37, 99, 235, 0.10);
}
.ultra-solution-card:hover::after { transform: scale(1.18); opacity: 1; }
.ultra-icon-orb {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(239,246,255,.95)) padding-box,
    linear-gradient(145deg, rgba(14,165,233,.58), rgba(251,191,36,.62)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 30px rgba(37, 99, 235, .14), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .35s ease, box-shadow .35s ease;
}
.ultra-icon-orb img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(15, 23, 42, .10));
  transition: transform .35s ease;
}
.ultra-solution-card:hover .ultra-icon-orb {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 22px 42px rgba(37, 99, 235, .20), 0 0 22px rgba(251,191,36,.20);
}
.ultra-solution-card:hover .ultra-icon-orb img { transform: scale(1.08); }
.ultra-solution-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 1.14rem;
  line-height: 1.28;
}
.ultra-solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}
@media (max-width: 980px) {
  .ultra-solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .ultra-solutions-grid { grid-template-columns: 1fr; gap: 22px; }
  .ultra-solution-card { min-height: auto; padding: 28px 22px 26px; }
}


/* ===== Nexova May 2026 Final Premium Upgrade ===== */
body, button, input, select, textarea {
  font-family: 'Gill Sans Nova', 'Gill Sans', Calibri, Arial, sans-serif;
}

/* Slightly larger Nexova logo across website */
header .logo img { height: 88px !important; width: auto; }
.footer-logo img { height: 94px !important; width: auto; }

.solution-theme-showcase {
  margin: 42px auto 0;
  max-width: 1180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: #07111f;
}
.solution-theme-showcase img {
  width: 100%;
  display: block;
}

.premium-contact-list {
  display: grid;
  gap: 16px;
  margin: 18px 0 18px;
}
.premium-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(37,99,235,0.06));
  border: 1px solid rgba(37,99,235,0.12);
}
.premium-contact-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(14, 165, 233, .22));
}
.premium-contact-item span {
  display: grid;
  gap: 2px;
  color: var(--secondary);
}
.premium-contact-item strong {
  color: var(--primary);
}
.premium-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 18px 0 24px;
}
.premium-social-icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(14, 165, 233, .24));
  transition: transform .25s ease, filter .25s ease;
}
.premium-social-icons img:hover {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 12px 18px rgba(14, 165, 233, .34));
}

@media (max-width: 980px) {
  header .logo img { height: 72px !important; }
  .footer-logo img { height: 76px !important; }
}
@media (max-width: 620px) {
  header .logo img { height: 62px !important; }
  .footer-logo img { height: 66px !important; }
  .solution-theme-showcase { border-radius: 18px; margin-top: 28px; }
  .premium-contact-item { align-items: flex-start; }
  .premium-contact-item img { width: 40px; height: 40px; }
}

/* ===== May 2026 Refinement: solution banner cards, popup, contact icons & typography alignment ===== */
body, button, input, select, textarea {
  font-family: 'Gill Sans Nova', 'Gill Sans', Calibri, Arial, sans-serif !important;
  letter-spacing: 0.01em;
  text-rendering: geometricPrecision;
}
h1, h2, h3, .nav-links a, .btn, .badge {
  letter-spacing: 0.015em;
}
p, li, .section-subtitle {
  line-height: 1.72;
}
.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.topbar-contact img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(14,165,233,.55));
}
.solution-banner-grid {
  align-items: stretch;
}
.solution-banner-card {
  cursor: pointer;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: 0 0 24px !important;
  background: #fff !important;
  min-height: 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 44px rgba(15,23,42,.11) !important;
  border: 1px solid rgba(37,99,235,.16) !important;
}
.solution-banner-card::before,
.solution-banner-card::after { display: none !important; }
.solution-banner-card:hover,
.solution-banner-card:focus-visible {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 70px rgba(15,23,42,.18), 0 0 28px rgba(14,165,233,.20) !important;
  outline: none;
}
.solution-banner-thumb {
  width: 100%;
  aspect-ratio: 512 / 225;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid rgba(14,165,233,.16);
  background: #07111f;
}
.solution-banner-card h3 {
  padding: 22px 24px 0;
  margin: 0 0 10px !important;
  text-align: left;
  font-size: 1.18rem !important;
}
.solution-banner-card p {
  padding: 0 24px;
  text-align: left;
  font-size: .98rem !important;
}
.image-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 24px;
}
.image-popup.is-open { display: flex; }
.image-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.76);
  backdrop-filter: blur(8px);
}
.image-popup-panel {
  position: relative;
  width: min(94vw, 1040px);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  border: 1px solid rgba(14,165,233,.25);
  animation: popupZoom .22s ease both;
}
.image-popup-panel h3 {
  margin: 0 44px 14px 4px;
  color: #0f172a;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}
.image-popup-panel img {
  width: 100%;
  border-radius: 18px;
  background: #07111f;
}
.image-popup-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37,99,235,.30);
}
@keyframes popupZoom { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.footer-contact-list {
  display: grid;
  gap: 10px;
  color: #475569;
  line-height: 1.55;
}
.footer-contact-list span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact-list img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(14,165,233,.45));
}
.premium-contact-item img {
  width: 52px !important;
  height: 52px !important;
  filter: drop-shadow(0 0 10px rgba(14,165,233,.42));
}
@media (max-width: 760px) {
  .topbar-contact { justify-content: flex-start; gap: 10px; }
  .topbar-contact span { white-space: normal; }
  .solution-banner-card h3 { padding-left: 18px; padding-right: 18px; }
  .solution-banner-card p { padding-left: 18px; padding-right: 18px; }
  .image-popup { padding: 12px; }
  .image-popup-panel { padding: 12px; border-radius: 20px; }
}


/* ===== Apple-Level Homepage Upgrade | Nexova Systems | 1 May 2026 ===== */
:root {
  --nx-blue: #0ea5e9;
  --nx-deep: #020817;
  --nx-ink: #0b1220;
  --nx-surface: rgba(255,255,255,.78);
}
body {
  background:
    radial-gradient(circle at 18% -10%, rgba(14,165,233,.08), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(37,99,235,.08), transparent 24%),
    #ffffff;
}
header {
  background: rgba(255,255,255,.82) !important;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 12px 34px rgba(2, 8, 23, .05);
}
.navbar { padding: 10px 0 !important; }
.logo img { height: 92px !important; filter: drop-shadow(0 8px 18px rgba(14,165,233,.12)); }
.nav-links a {
  background: rgba(255,255,255,.58) !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: none !important;
  color: #172554 !important;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff !important;
  background: linear-gradient(135deg, #0f172a, #2563eb 62%, #0ea5e9) !important;
  box-shadow: 0 14px 32px rgba(37,99,235,.24) !important;
}
.topbar {
  background: linear-gradient(90deg, #020817, #0f172a, #082f49) !important;
}
.apple-hero-slider {
  background: #020817 !important;
  border-bottom: 0 !important;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.apple-hero-slider .slider-track {
  aspect-ratio: 16/7.15 !important;
  min-height: 520px !important;
  max-height: 820px !important;
  background: #020817 !important;
}
.apple-hero-slider .slide img {
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.015);
  transition: transform 6s ease;
}
.apple-hero-slider .slide.active img { animation: nxHeroDrift 8s ease-in-out forwards; }
@keyframes nxHeroDrift { from { transform: scale(1.015); } to { transform: scale(1.06); } }
.apple-hero-slider .slide-overlay {
  background:
    radial-gradient(circle at 75% 20%, rgba(14,165,233,.16), transparent 24%),
    linear-gradient(90deg, rgba(2,8,23,.58) 0%, rgba(2,8,23,.18) 42%, rgba(2,8,23,.38) 100%),
    linear-gradient(180deg, rgba(2,8,23,.18), rgba(2,8,23,.58)) !important;
}
.apple-hero-slider .slide-caption {
  left: 50% !important;
  top: 56% !important;
  text-align: left !important;
  display: grid;
  gap: 12px;
}
.apple-hero-slider .slide-caption span {
  width: fit-content;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: #e0f2fe;
  border: 1px solid rgba(125,211,252,.26);
  background: rgba(2,8,23,.42);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.apple-hero-slider .slide-caption h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 5.25rem) !important;
  line-height: .96 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff 10%, #dbeafe 60%, #7dd3fc 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: none !important;
}
.apple-hero-slider .slide-caption p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  text-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.slider-dots {
  bottom: 22px !important;
  padding: 7px 12px !important;
  background: rgba(2,8,23,.42) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,.16);
}
.slider-dot {
  width: 30px !important;
  height: 5px !important;
  border-radius: 99px !important;
  transition: all .25s ease;
}
.slider-dot.active {
  background: linear-gradient(90deg, #38bdf8, #2563eb) !important;
  transform: scale(1) !important;
}
.apple-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(56,189,248,.18), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(37,99,235,.20), transparent 32%),
    linear-gradient(135deg, #020817 0%, #071327 48%, #0b1730 100%) !important;
  padding: 96px 0 78px !important;
}
.apple-intro::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(14,165,233,.12) 45%, transparent 52% 100%);
  animation: nxLightSweep 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes nxLightSweep { 0%,100%{ transform: translateX(-10%); opacity:.45;} 50%{ transform: translateX(10%); opacity:.9;} }
.apple-intro .container { position: relative; z-index: 1; }
.apple-intro h1 {
  font-size: clamp(2.65rem, 6vw, 6rem) !important;
  letter-spacing: -.06em;
  line-height: .95 !important;
  max-width: 900px;
  background: linear-gradient(180deg, #fff, #dbeafe 70%, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.apple-intro p { font-size: 1.08rem; color: rgba(255,255,255,.82) !important; }
.apple-intro .badge {
  background: rgba(255,255,255,.10) !important;
  color: #e0f2fe !important;
  border: 1px solid rgba(125,211,252,.20);
  backdrop-filter: blur(12px);
}
.apple-intro .hero-card,
.apple-intro .metric {
  background: rgba(255,255,255,.075) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.apple-intro .hero-card {
  border-radius: 32px !important;
  box-shadow: 0 28px 80px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.btn {
  transform: translateZ(0);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, #ffffff, #bfdbfe) !important;
  color: #082f49 !important;
  box-shadow: 0 18px 48px rgba(14,165,233,.24) !important;
}
.btn-outline {
  background: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(12px);
}
.stats-strip {
  margin-top: -50px !important;
  position: relative;
  z-index: 5;
}
.stats-strip .card,
.card,
.category-card,
.post-card {
  border-color: rgba(15,23,42,.08) !important;
  box-shadow: 0 18px 48px rgba(15,23,42,.08) !important;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.stats-strip .card:hover,
.card:hover,
.category-card:hover,
.post-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 78px rgba(15,23,42,.13) !important;
  border-color: rgba(14,165,233,.22) !important;
}
.section {
  position: relative;
}
.section-title {
  letter-spacing: -.035em;
  font-weight: 800;
}
.section-subtitle {
  font-size: 1.05rem;
}
.solution-banner-grid {
  gap: 30px !important;
}
.solution-banner-card {
  border-radius: 30px !important;
  background: rgba(255,255,255,.82) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(14,165,233,.16) !important;
  box-shadow: 0 22px 60px rgba(2,8,23,.10) !important;
  overflow: hidden;
}
.solution-banner-thumb {
  aspect-ratio: 16/9 !important;
  object-fit: cover !important;
  transition: transform .55s ease, filter .55s ease;
}
.solution-banner-card:hover .solution-banner-thumb {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.solution-banner-card h3 {
  font-size: 1.22rem !important;
  letter-spacing: -.02em;
}
.solution-banner-card::after {
  display: block !important;
  content: "Click to preview";
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2,8,23,.72);
  color: #e0f2fe;
  font-size: .76rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .28s ease;
  pointer-events: none;
}
.solution-banner-card:hover::after { opacity: 1; transform: translateY(0); }
.alt-bg {
  background:
    radial-gradient(circle at 8% 0%, rgba(14,165,233,.08), transparent 30%),
    linear-gradient(180deg, #f8fbff, #eef6ff) !important;
}
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px !important;
  background: linear-gradient(135deg, #020817, #0f172a 42%, #0b4a6f 100%) !important;
  box-shadow: 0 28px 90px rgba(2,8,23,.24) !important;
}
.cta::after {
  content:"";
  position:absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56,189,248,.28), transparent 68%);
}
.reveal-on-scroll,
.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-on-scroll.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal-on-scroll, .reveal-item { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 1024px) {
  .apple-hero-slider .slider-track { min-height: 430px !important; aspect-ratio: 16/8 !important; }
  .apple-hero-slider .slide-caption { top: 55% !important; }
  .logo img { height: 76px !important; }
}
@media (max-width: 760px) {
  .apple-hero-slider .slider-track { min-height: 360px !important; aspect-ratio: 4/5 !important; }
  .apple-hero-slider .slide img { object-position: center; }
  .apple-hero-slider .slide-caption { top: 58% !important; text-align: left !important; }
  .apple-hero-slider .slide-caption p { display: none; }
  .apple-hero-slider .slide-caption h2 { font-size: clamp(2rem, 12vw, 3.4rem) !important; max-width: 90%; }
  .slider-dot { width: 20px !important; }
  .apple-intro { padding: 74px 0 58px !important; }
  .apple-intro h1 { font-size: clamp(2.45rem, 12vw, 4rem) !important; }
  .stats-strip { margin-top: -24px !important; }
  .solution-banner-card::after { display: none !important; }
}


/* Support & Business Enquiries Page */
.support-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(14,165,233,.30), transparent 28%),
    linear-gradient(135deg, #020817 0%, #071a33 48%, #0b4a6f 100%);
}
.support-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 42%, transparent 68%);
  opacity: .55;
  pointer-events: none;
}
.support-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 42px;
  align-items: center;
}
.support-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.06em;
  margin: 18px 0 20px;
  max-width: 980px;
}
.support-hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 760px; }
.support-hero-card {
  border-radius: 32px;
  padding: 30px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(2,8,23,.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.support-hero-card h3 { color: #fff; margin-top: 0; }
.support-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.support-mini-list a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(14,165,233,.18);
  border: 1px solid rgba(56,189,248,.28);
  color: #e0f2fe;
  font-weight: 700;
  font-size: .86rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.support-mini-list a:hover,
.support-mini-list a:focus {
  transform: translateY(-2px);
  background: rgba(14,165,233,.34);
  border-color: rgba(125,211,252,.62);
  box-shadow: 0 10px 28px rgba(14,165,233,.28);
  outline: none;
}
.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  text-align: left;
}

.support-card-grid-tight { margin-top: 0; }
.support-route-card:target {
  border-color: rgba(14,165,233,.62);
  box-shadow: 0 34px 86px rgba(14,165,233,.20);
  transform: translateY(-6px);
}
.support-route-card:target::before {
  content: "Selected route";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.support-route-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(14,165,233,.16);
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}
.support-route-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14,165,233,.18), transparent 68%);
}
.support-route-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 30px 78px rgba(15,23,42,.14);
  border-color: rgba(14,165,233,.32);
}
.support-route-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(14,165,233,.16), 0 12px 28px rgba(14,165,233,.16);
  font-size: 1.8rem;
}
.support-route-card h3 { margin: 0 0 10px; letter-spacing: -.025em; }
.support-route-card p { color: #475569; min-height: 92px; }
.support-route-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  color: #0284c7;
  text-decoration: none;
}
.support-route-card a:hover { color: #0369a1; }
.support-contact-stack { margin-top: 28px; }
.support-form-card { box-shadow: 0 24px 70px rgba(2,8,23,.12) !important; }
.support-form-card textarea { min-height: 130px; }
@media (max-width: 980px) {
  .support-hero-inner { grid-template-columns: 1fr; }
  .support-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .support-hero { padding: 72px 0; }
  .support-card-grid { grid-template-columns: 1fr; }
  .support-route-card p { min-height: auto; }
}

/* ===== May 2026 spacing cleanup + Apple-level refinement across all pages ===== */
:root {
  --shadow: 0 14px 42px rgba(15, 23, 42, 0.075);
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.section { padding: 52px 0 !important; }
.section-sm { padding: 34px 0 !important; }
.page-hero { padding: 54px 0 34px !important; }
.category-page-hero { min-height: 340px !important; }
.category-page-hero .container { padding: 50px 0 40px !important; }
.blog-hero, .support-hero { padding: 62px 0 !important; }
.hero:not(.apple-intro) { padding: 62px 0 52px !important; }
.apple-intro { padding: 72px 0 56px !important; }
.stats-strip { margin-top: -34px !important; }
.section-title { margin: 10px 0 10px !important; letter-spacing: -0.04em; }
.section-subtitle { margin-bottom: 0 !important; }
.grid, .category-grid, .hub-grid, .solution-matrix, .product-list, .mini-grid, .brand-logo-grid { gap: 20px !important; }
.card, .post-card, .category-card, .brand-logo-card, .faq-list details, .article-content {
  border-radius: 24px !important;
  border: 1px solid rgba(15, 23, 42, .075) !important;
  background: rgba(255,255,255,.86) !important;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.card { padding: 22px !important; }
.card h3, .post-card h3, .category-card h3 { letter-spacing: -0.025em; }
.card p, .category-card p, .post-card p, .article-content p, .article-content li { line-height: 1.62 !important; }
.btn { min-height: 46px; padding: 12px 20px !important; box-shadow: 0 12px 28px rgba(15,23,42,.10); }
.btn:hover, .inline-links a:hover { transform: translateY(-3px) scale(1.01); }
.nav-links a { min-height: 40px !important; padding: 9px 15px !important; }
.logo img { height: 82px !important; }
.footer-logo img { height: 84px !important; }
.site-slider .slider-track, .apple-hero-slider .slider-track { min-height: 440px !important; max-height: 620px !important; }
.apple-hero-slider .slide-caption h2 { font-size: clamp(2rem, 4.2vw, 4.5rem) !important; }
.solution-banner-grid { margin-top: 28px !important; gap: 22px !important; }
.solution-banner-card { border-radius: 26px !important; padding-bottom: 20px !important; }
.solution-banner-thumb { aspect-ratio: 16/9 !important; object-fit: cover !important; }
.solution-banner-card h3 { padding: 18px 20px 0 !important; margin-bottom: 8px !important; }
.solution-banner-card p { padding: 0 20px !important; line-height: 1.55 !important; }
.category-card .content, .post-card-body { padding: 20px !important; }
.cta { padding: 34px !important; }
footer { padding-top: 40px !important; }
.footer-grid { gap: 22px !important; }
.footer-bottom { margin-top: 24px !important; padding: 14px 0 !important; }
.article-content { padding: 28px !important; }
.article-content h2 { margin-top: 24px !important; }
.media-gallery { gap: 16px !important; }
.feature-chip-row, .inline-links, .category-pills { gap: 10px !important; margin-top: 16px !important; }

/* Premium motion across all pages without changing content */
main, section, .card, .category-card, .post-card, .brand-logo-card, .product-pill, .faq-list details, .cta {
  animation: nxSoftRise .7s ease both;
}
section:nth-of-type(2) { animation-delay: .05s; }
section:nth-of-type(3) { animation-delay: .10s; }
section:nth-of-type(4) { animation-delay: .15s; }
@keyframes nxSoftRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.category-page-hero, .page-hero, .blog-hero, .support-hero {
  background-blend-mode: overlay;
  box-shadow: inset 0 -1px 0 rgba(15,23,42,.06);
}
.category-card img, .post-card img, .media-gallery img, .article-cover img {
  transition: transform .55s ease, filter .55s ease;
}
.category-card:hover img, .post-card:hover img, .media-gallery img:hover, .article-cover img:hover {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

@media (max-width: 980px) {
  .section { padding: 44px 0 !important; }
  .section-sm { padding: 28px 0 !important; }
  .page-hero { padding: 46px 0 30px !important; }
  .site-slider .slider-track, .apple-hero-slider .slider-track { min-height: 360px !important; }
  .logo img { height: 68px !important; }
  .footer-logo img { height: 70px !important; }
}
@media (max-width: 760px) {
  .section { padding: 36px 0 !important; }
  .section-sm { padding: 24px 0 !important; }
  .page-hero { padding: 38px 0 26px !important; }
  .blog-hero, .support-hero { padding: 44px 0 !important; }
  .apple-intro { padding: 54px 0 42px !important; }
  .site-slider .slider-track, .apple-hero-slider .slider-track { min-height: 300px !important; aspect-ratio: 16/10 !important; }
  .card, .article-content { padding: 18px !important; }
  .cta { padding: 24px !important; border-radius: 24px !important; }
  .logo img { height: 58px !important; }
  .footer-logo img { height: 60px !important; }
}
@media (prefers-reduced-motion: reduce) {
  main, section, .card, .category-card, .post-card, .brand-logo-card, .product-pill, .faq-list details, .cta { animation: none !important; }
}


/* Support page spacing refinement - remove unnecessary blank space between hero and requirement form */
body.support-page .support-hero {
  padding-top: 58px !important;
  padding-bottom: 44px !important;
}
body.support-page .support-routes-section {
  padding-top: 28px !important;
  padding-bottom: 24px !important;
  margin: 0 !important;
}
body.support-page .support-card-grid {
  gap: 18px !important;
  margin-top: 0 !important;
}
body.support-page .support-route-card {
  padding: 22px !important;
  border-radius: 24px !important;
}
body.support-page .support-route-icon {
  width: 50px !important;
  height: 50px !important;
  margin-bottom: 12px !important;
  font-size: 1.45rem !important;
}
body.support-page .support-route-card p {
  min-height: 70px !important;
  margin-bottom: 6px !important;
}
body.support-page #requirement-form {
  padding-top: 34px !important;
}
body.support-page #requirement-form .split {
  align-items: start;
}
@media (max-width: 640px) {
  body.support-page .support-hero {
    padding-top: 42px !important;
    padding-bottom: 34px !important;
  }
  body.support-page .support-routes-section {
    padding-top: 20px !important;
    padding-bottom: 18px !important;
  }
  body.support-page #requirement-form {
    padding-top: 26px !important;
  }
}


/* Nexova social media links */
.premium-social-icons a,
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
}
.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.footer-social-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(14, 165, 233, .28));
  transition: transform .25s ease, filter .25s ease;
}
.footer-social-icons a:hover img,
.premium-social-icons a:hover img {
  transform: translateY(-3px) scale(1.07);
  filter: drop-shadow(0 12px 18px rgba(14, 165, 233, .42));
}

/* Header social media integration */
.topbar-contact a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color .22s ease, opacity .22s ease;
}
.topbar-contact a:hover {
  color: #ffffff;
  opacity: .9;
}
.topbar-social-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 2px;
}
.topbar-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.topbar-social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(14,165,233,.45));
  transition: transform .22s ease, filter .22s ease;
}
.topbar-social-icons a:hover img {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 12px rgba(56,189,248,.75));
}
@media (max-width: 768px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-contact { justify-content: center; gap: 10px; }
  .topbar-contact span { justify-content: center; }
  .topbar-social-icons { width: 100%; justify-content: center; margin-top: 2px; }
  .topbar-separator { display: none; }
}

/* ===== B2B optimized enquiry form upgrade ===== */
body.support-page .high-conversion-enquiry {
  background:
    radial-gradient(circle at 12% 8%, rgba(56,189,248,.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%) !important;
}
.enquiry-conversion-layout {
  grid-template-columns: .88fr 1.12fr !important;
  gap: 34px !important;
  align-items: start !important;
}
.enquiry-trust-panel {
  position: sticky;
  top: 96px;
}
.conversion-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 24px 0 4px;
}
.conversion-promise-grid div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(14,165,233,.14);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.conversion-promise-grid strong {
  display: block;
  color: #0284c7;
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.conversion-promise-grid span {
  display: block;
  color: #334155;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.35;
}
.conversion-form-card {
  position: relative;
  overflow: hidden;
  padding: 28px !important;
  border: 1px solid rgba(14,165,233,.18) !important;
  box-shadow: 0 34px 90px rgba(2,8,23,.13) !important;
}
.conversion-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #0f172a);
}
.form-headline-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}
.form-headline-row h3 {
  margin: 4px 0 0;
  font-size: 1.45rem;
  letter-spacing: -.035em;
}
.micro-label {
  display: inline-flex;
  color: #0284c7;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.secure-chip {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0369a1;
  border: 1px solid rgba(14,165,233,.18);
  font-size: .78rem;
  font-weight: 900;
}
.conversion-form-card label {
  display: block;
  margin-bottom: 7px;
  color: #0f172a;
  font-size: .9rem;
  font-weight: 800;
}
.conversion-form-card label span { color: #0284c7; }
.conversion-form-card input,
.conversion-form-card select,
.conversion-form-card textarea {
  width: 100%;
  border-radius: 16px !important;
  border: 1px solid rgba(15,23,42,.12) !important;
  background: rgba(248,250,252,.92) !important;
  padding: 13px 14px !important;
  font: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.conversion-form-card input:focus,
.conversion-form-card select:focus,
.conversion-form-card textarea:focus {
  border-color: rgba(14,165,233,.72) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.13);
}
.compact-form-grid { margin-top: 16px; }
.form-full-row { margin-top: 16px; }
.conversion-submit-row {
  margin-top: 20px !important;
  align-items: center;
}
.conversion-submit-row .btn-primary {
  background: linear-gradient(135deg, #0369a1, #0ea5e9) !important;
  border-color: transparent !important;
}
.form-assurance {
  margin: 12px 0 0;
  color: #64748b;
  font-size: .88rem;
  line-height: 1.45;
}
body.support-page .support-mini-list a,
body.support-page .support-route-card a {
  scroll-margin-top: 120px;
}
body.support-page .support-route-card {
  scroll-margin-top: 120px;
}
@media (max-width: 980px) {
  .enquiry-conversion-layout { grid-template-columns: 1fr !important; }
  .enquiry-trust-panel { position: relative; top: auto; }
}
@media (max-width: 640px) {
  .conversion-promise-grid { grid-template-columns: 1fr; }
  .form-headline-row { flex-direction: column; }
  .conversion-submit-row { flex-direction: column; align-items: stretch; }
  .conversion-submit-row .btn { width: 100%; justify-content: center; }
}

/* ===== Support page conversion layout refinement ===== */
body.support-page .high-conversion-enquiry .enquiry-conversion-layout {
  display: block !important;
  max-width: 1120px;
  margin: 0 auto;
}
body.support-page .high-conversion-enquiry .enquiry-trust-panel {
  display: none !important;
}
body.support-page .high-conversion-enquiry .conversion-form-card {
  width: 100% !important;
  max-width: none !important;
}
body.support-page .high-conversion-enquiry .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  body.support-page .high-conversion-enquiry .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Premium welcome popup ===== */
.nexova-welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 8, 23, .62);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.nexova-welcome-popup.is-visible {
  opacity: 1;
  visibility: visible;
}
.nexova-welcome-box {
  position: relative;
  width: min(560px, 94vw);
  overflow: hidden;
  border-radius: 30px;
  padding: 42px 34px 34px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(56,189,248,.26), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(241,248,255,.96));
  border: 1px solid rgba(14,165,233,.22);
  box-shadow: 0 40px 120px rgba(2,8,23,.34);
  transform: translateY(24px) scale(.96);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.nexova-welcome-popup.is-visible .nexova-welcome-box {
  transform: translateY(0) scale(1);
}
.nexova-welcome-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0f172a, #0ea5e9, #38bdf8, #0f172a);
}
.nexova-welcome-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nexova-welcome-box h2 {
  margin: 16px 0 10px;
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -.055em;
  line-height: 1.02;
}
.nexova-welcome-box p {
  margin: 0 auto;
  max-width: 430px;
  color: #334155;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.65;
}
.nexova-welcome-box p strong {
  color: #0369a1;
}
.nexova-welcome-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.nexova-welcome-actions button,
.nexova-welcome-actions a {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.nexova-welcome-actions button {
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: #fff;
  box-shadow: 0 16px 34px rgba(14,165,233,.28);
}
.nexova-welcome-actions a {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,.12);
}
.nexova-welcome-actions button:hover,
.nexova-welcome-actions a:hover {
  transform: translateY(-2px);
}
.nexova-welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.1);
  background: rgba(255,255,255,.86);
  color: #0f172a;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 520px) {
  .nexova-welcome-box { padding: 36px 22px 26px; border-radius: 24px; }
  .nexova-welcome-actions { flex-direction: column; }
  .nexova-welcome-actions button, .nexova-welcome-actions a { width: 100%; }
}

/* ===== Ultra Premium Contact Page Upgrade ===== */
.contact-ultra-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 66px;
  background:
    radial-gradient(circle at 12% 18%, rgba(14,165,233,.22), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(37,99,235,.18), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #10223f 52%, #0b1730 100%);
  color: #fff;
}
.contact-ultra-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(14,165,233,.18), transparent 68%);
  pointer-events: none;
}
.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center;
}
.contact-hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4.45rem);
  line-height: 1.04;
  margin: 16px 0 18px;
  letter-spacing: -1.3px;
}
.contact-hero-copy p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
}
.contact-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-outline-blue {
  color: #eaf6ff;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.contact-hero-panel { display: flex; justify-content: flex-end; }
.hero-glass-card {
  width: min(100%, 390px);
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 75px rgba(2,8,23,.36);
  backdrop-filter: blur(18px);
}
.glass-kicker, .form-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(14,165,233,.12);
  color: #0ea5e9;
}
.hero-glass-card h3 { color: #fff; margin: 14px 0; font-size: 1.35rem; }
.hero-glass-card ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.84); }
.hero-glass-card li { margin: 8px 0; }
.contact-quick-section { margin-top: -36px; position: relative; z-index: 4; }
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-quick-card {
  min-height: 130px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(226,232,240,.92);
  box-shadow: 0 24px 65px rgba(15,23,42,.11);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 8px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.contact-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 85px rgba(37,99,235,.16);
  border-color: rgba(37,99,235,.26);
}
.contact-quick-card img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(14,165,233,.18)); }
.contact-quick-card span { color: #64748b; font-weight: 700; }
.contact-quick-card strong { color: #0f172a; line-height: 1.25; overflow-wrap: anywhere; }
.contact-main-section { padding: 58px 0 42px; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.contact-main-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}
.contact-info-premium,
.contact-form-premium,
.contact-map-card {
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 26px 80px rgba(15,23,42,.09);
}
.contact-info-premium { padding: 34px; }
.contact-info-premium h2,
.contact-form-premium h2,
.contact-map-card h2 { color: #0f172a; margin: 14px 0 10px; letter-spacing: -.4px; }
.contact-info-premium p { color: #64748b; }
.contact-premium-list { margin: 24px 0; }
.contact-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}
.contact-trust-strip div {
  padding: 14px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  border: 1px solid rgba(37,99,235,.1);
  text-align: center;
}
.contact-trust-strip strong { display: block; color: #1d4ed8; font-size: 1.15rem; }
.contact-trust-strip span { color: #64748b; font-size: .86rem; font-weight: 700; }
.contact-social { margin-top: 12px; }
.contact-form-premium { padding: 34px; position: relative; overflow: hidden; }
.contact-form-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.17), transparent 68%);
  pointer-events: none;
}
.contact-form-premium form { position: relative; z-index: 1; }
.contact-form-premium input,
.contact-form-premium textarea,
.contact-form-premium select {
  background: #f8fbff;
  border: 1px solid #dbe7f3;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form-premium input:focus,
.contact-form-premium textarea:focus,
.contact-form-premium select:focus {
  outline: none;
  background: #fff;
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.form-grid-single { grid-template-columns: 1fr; margin-top: 16px; }
.contact-submit-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.contact-map-section { padding: 28px 0 72px; background: #f8fbff; }
.contact-map-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 26px;
  align-items: center;
  overflow: hidden;
}
.map-placeholder {
  min-height: 250px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 28%, rgba(14,165,233,.36), transparent 30%),
    linear-gradient(135deg, #07111f, #10223f 56%, #1d4ed8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.map-placeholder img { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(14,165,233,.35)); }
.map-placeholder strong { font-size: 1.25rem; }
.map-placeholder span { color: rgba(255,255,255,.8); }
@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-main-grid,
  .contact-map-card { grid-template-columns: 1fr; }
  .contact-hero-panel { justify-content: flex-start; }
  .contact-quick-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .contact-ultra-hero { padding: 56px 0 52px; }
  .contact-hero-copy h1 { font-size: 2.25rem; }
  .contact-info-premium, .contact-form-premium, .contact-map-card { padding: 24px; border-radius: 24px; }
  .contact-trust-strip { grid-template-columns: 1fr; }
}

/* ===== Premium + legally safe brand ecosystem section ===== */
.brand-logo-grid {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  gap: 18px !important;
  margin-top: 34px !important;
}
.brand-logo-card {
  position: relative;
  min-height: 116px !important;
  padding: 22px 20px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.88)) padding-box,
    linear-gradient(135deg, rgba(19,89,181,.32), rgba(56,189,248,.24), rgba(255,255,255,.92)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 18px 45px rgba(2, 8, 23, .08), inset 0 1px 0 rgba(255,255,255,.8) !important;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}
.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: -80% -30% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(56,189,248,.18), transparent 65%);
  pointer-events: none;
}
.brand-logo-card::after {
  content: "Verified category reference";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .38);
  opacity: 0;
  transform: translateY(5px);
  transition: all .28s ease;
}
.brand-logo-card:hover {
  transform: translateY(-7px) scale(1.015) !important;
  box-shadow: 0 24px 65px rgba(19, 89, 181, .18), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
.brand-logo-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.brand-logo-card img {
  max-height: 48px !important;
  max-width: 138px !important;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05) !important;
  opacity: .78 !important;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease !important;
}
.brand-logo-card:hover img {
  filter: grayscale(0%) contrast(1) !important;
  opacity: 1 !important;
  transform: translateY(-5px) scale(1.05) !important;
}
.brand-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px !important;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(2,132,199,.08);
  color: #075985 !important;
  font-size: 14px !important;
  font-weight: 700;
}
.brand-note::before {
  content: "ⓘ";
  font-weight: 900;
}
.brand-legal-disclaimer {
  max-width: 1020px !important;
  margin: 16px auto 0 !important;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(148,163,184,.24);
  color: #64748b !important;
  font-size: 12.5px !important;
  line-height: 1.65 !important;
}
@media (max-width: 760px) {
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .brand-logo-card { min-height: 104px !important; padding: 18px 14px 24px !important; border-radius: 22px !important; }
  .brand-logo-card img { max-height: 36px !important; max-width: 112px !important; }
  .brand-logo-card::after { font-size: 8.5px; bottom: 8px; }
}
