@charset "UTF-8";
:root {
  /* Core Palette */
  --bg-dark: #030610;
  --bg-feature: #080c16;
  /* Brand Accents */
  --accent-cyan: #7dd3fc;
  --accent-purple: #a78bfa;
  --accent-violet: #c084fc;
  /* Brand Gradients */
  --grad-primary: linear-gradient(90deg, #7dd3fc, #a78bfa, #c084fc);
  --grad-icon: linear-gradient(145deg, var(--accent-cyan), var(--accent-purple));
  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #d6defc;
  --text-body: #e4ebff;
  /* Glassmorphism System */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-blur: blur(14px);
}

:root {
  /* Colors*/
  --clr-bg-dark: var(--bg-dark);
  --clr-bg-card: var(--glass-bg);
  --clr-text-main: var(--text-main);
  --clr-text-muted: var(--text-muted);
  --clr-border-soft: rgba(255, 255, 255, 0.08);
  /* Typography */
  --font-main: "Plus Jakarta Sans", sans-serif;
  /* Radius */
  --radius-lg: 18px;
  --radius-xl: 26px;
  /* Shadows */
  --shadow-glow: 0 0 120px rgba(125, 211, 252, 0.15);
}

.text-gradient-flow, .architect-wrap .architect-card .architect-info .title-tag, .metric-box .metric-value,
.letter-gradient,
.animated-gradient-text,
.section-header .section-title .text-gradient-flow,
.container.py-10 .company-full-image .image-overlay-text span .text-gradient-flow,
.container.py-10 .company-full-image .image-overlay-text span .architect-wrap .architect-card .architect-info .title-tag,
.architect-wrap .architect-card .architect-info .container.py-10 .company-full-image .image-overlay-text span .title-tag,
.container.py-10 .company-full-image .image-overlay-text span .metric-box .metric-value,
.metric-box .container.py-10 .company-full-image .image-overlay-text span .metric-value,
.showcase-pro .section-header .section-title .text-gradient-flow,
.faq-pro-advanced .section-header .section-title .text-gradient-flow,
.pricing-pro .section-header .section-title .gradient-text-flow,
.testimonials-pro .section-head h2 .gradient-text,
.integrations-marquee .integrations-header .features-title .gradient-word,
.features-polished .section-head .features-title .text-gradient-flow {
  background: var(--grad-primary);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShiftGlobal 6s linear infinite;
  display: inline-block;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === BASE STYLES === */
/* ===============================
   GLOBAL TYPOGRAPHY
================================ */
.section-title, .about-page .section-title, .showcase-pro .section-header .section-title, .journey-pro .section-header .section-title, .faq-pro-advanced .section-header .section-title, .pricing-pro .section-header .section-title, .testimonials-pro .section-head h2, .integrations-marquee .integrations-header .features-title, .features-polished .section-head .features-title {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-main);
}

/* ===============================
   GLOBAL ANIMATIONS
================================ */
@keyframes gradientShiftGlobal {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}
@keyframes p-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.95);
  }
}
@keyframes marqueeContinuous {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==== LAYOUT ===== */
/* abstracts/_backgrounds.scss */
.mesh-section {
  position: relative;
  background-color: var(--bg-dark);
  z-index: 1;
  overflow: hidden;
}
.mesh-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at 0% 0%, black 0%, transparent 40%), radial-gradient(circle at 100% 0%, black 0%, transparent 40%), radial-gradient(circle at 0% 100%, black 0%, transparent 40%), radial-gradient(circle at 100% 100%, black 0%, transparent 40%);
  mask-image: radial-gradient(circle at 0% 0%, black 0%, transparent 40%), radial-gradient(circle at 100% 0%, black 0%, transparent 40%), radial-gradient(circle at 0% 100%, black 0%, transparent 40%), radial-gradient(circle at 100% 100%, black 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.mesh-dotted {
  position: relative;
  background-color: var(--bg-dark);
  z-index: 1;
  overflow: hidden;
}
.mesh-dotted::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 2px, transparent 0);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 0% 0%, black 0%, transparent 45%), radial-gradient(circle at 100% 0%, black 0%, transparent 45%), radial-gradient(circle at 0% 100%, black 0%, transparent 45%), radial-gradient(circle at 100% 100%, black 0%, transparent 45%);
  mask-image: radial-gradient(circle at 0% 0%, black 0%, transparent 45%), radial-gradient(circle at 100% 0%, black 0%, transparent 45%), radial-gradient(circle at 0% 100%, black 0%, transparent 45%), radial-gradient(circle at 100% 100%, black 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.abstract-curves {
  position: relative;
}
.abstract-curves::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath d='M-50,600 C150,400 350,800 600,500 C800,300 950,500 1050,400' stroke='%23a78bfa' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.12'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath d='M-50,650 C200,450 400,850 650,550 C850,350 1000,550 1100,450' stroke='%237dd3fc' stroke-width='2' fill='none' stroke-dasharray='15 15' stroke-linecap='round' opacity='0.12'/%3E%3C/svg%3E"), radial-gradient(circle at 30% 40%, rgba(125, 211, 252, 0.12) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(167, 139, 250, 0.12) 0%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 140% 100%, 140% 100%, 100% 100%, 100% 100%;
  background-position: center;
  animation: smoothFloat 25s infinite alternate ease-in-out;
}

.mesh-section > *, .mesh-dotted > *, .abstract-curves > * {
  position: relative;
  z-index: 10;
}

@keyframes smoothFloat {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.05) translate(1%, -1%);
  }
}
/* === BASE STYLES === */
.glass-card, .btn-group-custom .btn-glass-simple, .faq-item-pro, .faq-support-pro, .architect-wrap .architect-card, .capability-grid .cap-card, .roadmap-pipeline .roadmap-item .roadmap-content, .metric-box, .cta-velocity-master .cta-glass-card, .journey-node, .pricing-pro .pricing-card, .testimonials-pro .testimonial-card-3d .card-inner, .integrations-marquee .integration-pill, .features-polished .feature-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ui-badge, .about-page .ui-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
}

.header-ultra {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 10, 18, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

/* ✅ SCROLL CLASS */
.header-ultra.scrolled {
  background: rgba(6, 10, 18, 0.98);
  padding: 5px 0;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ✅ HEADER INNER HEIGHT */
.header-ultra-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.35s ease;
}

/* ✅ LOGO WRAPPER */
.ultra-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  height: 100%;
  min-width: 120px;
  z-index: 10;
  position: relative;
}

.ultra-logo .logo-image {
  height: 60px;
  width: auto;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: height 0.35s ease, transform 0.25s ease;
}

.ultra-logo:hover .logo-image {
  transform: scale(1.05);
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .ultra-logo .logo-image {
    height: 54px;
    max-width: 160px;
  }
}
/* ✅ Mobile */
@media (max-width: 576px) {
  .ultra-logo {
    min-width: auto;
  }
  .ultra-logo .logo-image {
    height: 48px;
    max-width: 140px;
  }
}
/* --- DESKTOP NAVIGATION --- */
.ultra-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1024px) {
  .ultra-nav {
    display: none;
  }
}
.ultra-nav .nav-link {
  position: relative;
  padding: 10px 18px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.ultra-nav .nav-link span {
  position: relative;
}
.ultra-nav .nav-link span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width 0.3s ease;
}
.ultra-nav .nav-link .arrow-icon {
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ultra-nav .nav-link:hover {
  color: #fff;
}
.ultra-nav .nav-link:hover span::after {
  width: 100%;
}
.ultra-nav .nav-link.active {
  color: #fff;
}
.ultra-nav .nav-link.active span::after {
  width: 100%;
}
.ultra-nav .nav-link.active .arrow-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

/* --- MEGA MENU--- */
.has-mega .mega-menu-panel {
  position: fixed;
  top: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(1100px, 95vw);
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
}
.has-mega.active .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-mega .mega-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 50px;
}
.has-mega .mega-title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 800;
}
.has-mega .mega-links li {
  margin-bottom: 25px;
  list-style: none;
}
.has-mega .mega-links li a {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: 0.3s;
}
.has-mega .mega-links li a .m-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  transition: 0.3s ease;
}
.has-mega .mega-links li a .m-text strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.has-mega .mega-links li a .m-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  transition: 0.3s;
}
.has-mega .mega-links li a:hover {
  transform: translateX(8px);
}
.has-mega .mega-links li a:hover .m-icon {
  background: var(--grad-primary);
  color: #000;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 242, 254, 0.2);
}
.has-mega .mega-links li a:hover .m-text strong {
  color: var(--accent-cyan);
}
.has-mega .mega-links li a:hover .m-text p {
  color: #fff;
}

/* ==== SPOTLIGHT CARD ====*/
.spotlight-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-card .s-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-primary);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  border-radius: 99px;
  margin-bottom: 15px;
  width: -moz-fit-content;
  width: fit-content;
}
.spotlight-card h5 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}
.spotlight-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.spotlight-card .s-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ultra-cta {
  position: relative;
  padding: 12px 30px;
  border-radius: 12px;
  background: #fff;
  color: #000 !important;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.ultra-cta .cta-text {
  position: relative;
  z-index: 5;
}
.ultra-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  transition: left 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 1;
}
.ultra-cta:hover {
  transform: translateY(-2px);
}
.ultra-cta:hover::before {
  left: 0;
}

/* --- HAMBURGER --- */
.ultra-hamburger {
  display: none;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .ultra-hamburger {
    display: flex;
  }
}
.ultra-hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ultra-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.ultra-hamburger:hover span {
  background: var(--accent-cyan);
}
.ultra-hamburger:hover span:nth-child(1) {
  width: 14px;
  transform: translateX(-4px);
}
.ultra-hamburger:hover span:nth-child(2) {
  width: 22px;
}
.ultra-hamburger:hover span:nth-child(3) {
  width: 14px;
  transform: translateX(4px);
}

/* --- MOBILE MENU --- */
.ultra-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  transition: 0.5s;
}
.ultra-menu.active {
  visibility: visible;
}
.ultra-menu.active .ultra-menu-overlay {
  opacity: 1;
}
.ultra-menu.active .ultra-menu-panel {
  transform: translateX(0);
}

.ultra-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.98);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  opacity: 0;
  transition: 0.5s;
}

.ultra-menu-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ultra-menu-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 100px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.ultra-menu-links {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ultra-menu-links .m-link,
.ultra-menu-links .m-dropdown-btn {
  font-size: clamp(24px, 4.5vh, 40px);
  font-weight: 900;
  color: #fff;
  padding: 15px 0;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}
.ultra-menu-links .m-link i,
.ultra-menu-links .m-dropdown-btn i {
  font-size: 20px;
  color: var(--accent-cyan);
  transition: transform 0.3s;
}
.ultra-menu-links .m-link:hover,
.ultra-menu-links .m-dropdown-btn:hover {
  color: var(--accent-cyan);
  letter-spacing: 1px;
}

.m-dropdown-content {
  /* Layout & Animation */
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-dark);
  border-radius: 12px;
  /* --- THEME SCROLLBAR (Using Brand Gradients) --- */
  /* Firefox Support */
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) transparent;
  /* --- SUB-HEADINGS (Visible & Large) --- */
  /* --- THE LINKS --- */
  /* --- OPEN STATE --- */
}
.m-dropdown-content::-webkit-scrollbar {
  width: 4px;
}
.m-dropdown-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.m-dropdown-content::-webkit-scrollbar-thumb {
  /* Using your Brand Gradient variable */
  background: var(--grad-primary);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.3);
}
.m-dropdown-content .m-sub-heading {
  width: 100%;
  text-align: center;
  padding: 24px 10px 12px 10px;
  /* Using Brand Cyan & Large font */
  color: var(--accent-cyan);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  pointer-events: none;
  /* Subtle divider using glass-border style */
  border-bottom: 1px solid rgba(125, 211, 252, 0.2);
  margin-bottom: 8px;
}
.m-dropdown-content .m-sub-heading:first-of-type {
  padding-top: 15px;
}
.m-dropdown-content a {
  padding: 12px;
  color: var(--text-muted); /* Muted so heading stands out */
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.m-dropdown-content a:hover {
  color: var(--text-main);
  background: rgba(125, 211, 252, 0.05);
  /* Soft glow on hover */
  text-shadow: 0 0 8px rgba(125, 211, 252, 0.4);
}
.m-dropdown-content.open {
  max-height: 480px; /* Increased for the 19 features */
  overflow-y: auto;
  padding: 15px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ultra-menu-footer {
  margin-top: 50px;
}
.ultra-menu-footer .footer-para {
  color: #a0aec0;
  font-size: 1.05rem;
  margin-bottom: 25px;
  max-width: 280px;
  line-height: 1.6;
  margin-inline: auto;
}

.ultra-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}
.ultra-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
  color: var(--accent-cyan);
}

.site-footer {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0 60px;
  overflow: hidden;
  font-family: var(--font-main);
  /* Main Structure */
}
.site-footer .footer-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--grad-primary);
  filter: blur(160px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.site-footer .footer-glow-orb.orb-left {
  top: -200px;
  left: -150px;
}
.site-footer .footer-glow-orb.orb-right {
  bottom: -100px;
  right: -150px;
  opacity: 0.08;
}
.site-footer .footer-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer .footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .site-footer .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .site-footer .footer-top-grid .connectivity-section {
    grid-column: span 3;
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .site-footer .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer .footer-top-grid .brand-info,
  .site-footer .footer-top-grid .connectivity-section {
    grid-column: span 2;
  }
}
@media (max-width: 576px) {
  .site-footer .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .site-footer .footer-top-grid .brand-info,
  .site-footer .footer-top-grid .connectivity-section {
    grid-column: span 1;
  }
}
.site-footer .brand-info {
  /* ✅ Mobile responsiveness */
}
.site-footer .brand-info .footer-logo {
  margin-bottom: 18px;
}
.site-footer .brand-info .footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}
.site-footer .brand-info .footer-logo-img {
  height: 80px;
  /* ✅ footer logo size */
  width: auto;
  max-width: 200px;
  /* ✅ prevents overflow */
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}
.site-footer .brand-info .footer-logo-link:hover .footer-logo-img {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .site-footer .brand-info .footer-logo-img {
    height: 60px;
    max-width: 180px;
  }
}
.site-footer .brand-info .footer-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 35px;
  max-width: 400px;
}
.site-footer .brand-info .social-connectivity {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 350px;
}
.site-footer .brand-info .social-connectivity .social-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.site-footer .brand-info .social-connectivity .social-pill i {
  font-size: 18px;
  color: var(--accent-cyan);
}
.site-footer .brand-info .social-connectivity .social-pill:hover {
  color: var(--text-main);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.site-footer .footer-heading {
  color: var(--text-main);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 35px;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 18px;
}
.site-footer .footer-links li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}
.site-footer .footer-links li a:hover {
  color: var(--accent-cyan);
  padding-left: 6px;
}
.site-footer .connectivity-section .stay-connected-card {
  padding: 35px;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-hint {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
  opacity: 0.8;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form .input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form .input-wrapper i {
  position: absolute;
  left: 18px;
  color: var(--accent-cyan);
  opacity: 0.6;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form .input-wrapper .newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border-soft);
  border-radius: 14px;
  padding: 14px 14px 14px 48px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form .input-wrapper .newsletter-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.07);
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form .newsletter-submit {
  width: 52px;
  height: 52px;
  padding: 0;
  justify-content: center;
  cursor: pointer;
}
.site-footer .connectivity-section .stay-connected-card .newsletter-form .newsletter-submit:hover {
  background: var(--grad-primary);
  color: var(--bg-dark);
  transform: scale(1.08) rotate(15deg);
}
.site-footer .connectivity-section .stay-connected-card .community-avatars {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-footer .connectivity-section .stay-connected-card .community-avatars .avatar-stack {
  display: flex;
}
.site-footer .connectivity-section .stay-connected-card .community-avatars .avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -12px;
}
.site-footer .connectivity-section .stay-connected-card .community-avatars .avatar-stack img:first-child {
  margin-left: 0;
}
.site-footer .connectivity-section .stay-connected-card .community-avatars .avatar-stack .avatar-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--clr-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: -12px;
  color: var(--accent-cyan);
}
.site-footer .connectivity-section .stay-connected-card .community-avatars .community-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer .footer-bottom-centered {
  padding-top: 50px;
  border-top: 1px solid var(--clr-border-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.site-footer .footer-bottom-centered .footer-copyright {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
}
.site-footer .footer-bottom-centered .footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-footer .footer-bottom-centered .footer-legal-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom-centered .footer-legal-nav a:hover {
  color: var(--text-main);
}
.site-footer .footer-bottom-centered .footer-legal-nav .separator {
  width: 4px;
  height: 4px;
  background: var(--clr-border-soft);
  border-radius: 50%;
}

/* ==== HOME PAGE ===== */
/* --- CURSOR EFFECTS --- */
.cursor-spotlight {
  position: fixed;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
}
.cursor-spotlight::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #7dd3fc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px #7dd3fc;
}

/* --- HERO WRAPPER --- */
.hero-pro {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  padding: 50px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-glow-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(125, 211, 252, 0.15), transparent 45%), radial-gradient(circle at 85% 85%, rgba(192, 132, 252, 0.15), transparent 45%);
}

.hero-heading.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.section-para {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* --- BUTTONS --- */
.btn-liquid {
  position: relative;
  background: var(--text-main);
  color: var(--bg-dark);
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  z-index: 1;
}
.btn-liquid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: all 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  z-index: -1;
}
.btn-liquid:hover {
  color: #fff;
  transform: translateY(-5px);
}
.btn-liquid:hover::before {
  left: 0;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* --- MARQUEE--- */
.marquee-trust-section .marquee-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 800;
  opacity: 0.9;
}
.marquee-trust-section .marquee-container {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}
.marquee-trust-section .marquee-track {
  display: flex;
  gap: 60px;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeContinuous 40s linear infinite;
}
.marquee-trust-section .marquee-track i {
  font-size: 32px;
  color: #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.marquee-trust-section .marquee-track i:hover {
  opacity: 1;
  color: var(--accent-cyan);
  transform: scale(1.1);
}

/* --- MOCKUP & TILT --- */
.tilt-viewport {
  perspective: 2000px;
}

.mockup-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 15px;
  border-radius: 32px;
  box-shadow: 0 100px 180px rgba(0, 0, 0, 0.8);
  position: relative;
}

.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}
.image-wrapper img {
  width: 100%;
  filter: saturate(1.2);
}

/* --- FLOATING ELEMENTS --- */
.float-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #000;
  box-shadow: 0 20px 50px rgba(125, 211, 252, 0.3);
  z-index: 10;
}
.float-node.n-1 {
  top: -25px;
  right: -25px;
  animation: floatAnim 6s infinite ease-in-out;
}
.float-node.n-2 {
  bottom: 40px;
  left: -35px;
  animation: floatAnim 8s infinite ease-in-out;
}

/* --- ANIMATIONS --- */
@keyframes marqueeContinuous {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes floatAnim {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
}
/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .hero-pro {
    text-align: center;
    padding: 120px 0 60px;
  }
  .section-para {
    margin-inline: auto;
  }
  .float-node,
  .cursor-spotlight {
    display: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.features-polished {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  overflow: hidden;
  /* --- SECTION HEADER --- */
  /* ---FEATURE CARD--- */
}
.features-polished .features-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(125, 211, 252, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.features-polished .section-head {
  max-width: 800px;
  margin: 0 auto 60px;
}
.features-polished .section-head .features-title {
  margin-bottom: 20px;
}
.features-polished .section-head .features-title .text-gradient-flow {
  font-weight: 900;
}
.features-polished .section-head .features-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}
.features-polished .feature-box {
  position: relative;
  padding: 45px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* ---GLASS SHINING EFFECT--- */
}
.features-polished .feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.1) 0%, transparent 75%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.features-polished .feature-box:hover {
  transform: translateY(-12px);
  border-color: var(--accent-cyan);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.features-polished .feature-box:hover::before {
  opacity: 1;
}
.features-polished .feature-box:hover .icon-wrap {
  transform: scale(1.1) rotate(8deg);
  filter: brightness(1.2) drop-shadow(0 0 15px currentColor);
  border-color: currentColor;
}
.features-polished .feature-box:hover h4 {
  color: var(--accent-cyan);
}
.features-polished .feature-box:hover .feature-link {
  background-position: 100% center;
}
.features-polished .feature-box:hover .feature-link i {
  transform: translateX(8px);
  color: var(--accent-cyan);
  -webkit-text-fill-color: var(--accent-cyan);
}
.features-polished .feature-box:hover .hover-sheen {
  left: 160%;
}
.features-polished .feature-box .icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  font-size: 30px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
}
.features-polished .feature-box .icon-wrap.cyan {
  color: var(--accent-cyan);
  background: rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.3);
}
.features-polished .feature-box .icon-wrap.purple {
  color: var(--accent-purple);
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.3);
}
.features-polished .feature-box .icon-wrap.violet {
  color: var(--accent-violet);
  background: rgba(192, 132, 252, 0.08);
  border-color: rgba(192, 132, 252, 0.3);
}
.features-polished .feature-box .icon-wrap.blue {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
}
.features-polished .feature-box .icon-wrap.pink {
  color: #f472b6;
  background: rgba(244, 114, 182, 0.08);
  border-color: rgba(244, 114, 182, 0.3);
}
.features-polished .feature-box .icon-wrap.orange {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.08);
  border-color: rgba(251, 146, 60, 0.3);
}
.features-polished .feature-box .icon-wrap.teal {
  color: #2dd4bf;
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.3);
}
.features-polished .feature-box h4 {
  color: var(--text-main);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}
.features-polished .feature-box p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}
.features-polished .feature-box .feature-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #fff, var(--accent-cyan), var(--accent-purple));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}
.features-polished .feature-box .feature-link i {
  font-size: 1.2rem;
  -webkit-text-fill-color: var(--text-main);
  transition: 0.3s;
  margin-left: 8px;
}
.features-polished .feature-box .hover-sheen {
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.logic-pipeline-section {
  padding: 120px 0;
  position: relative;
}
.logic-pipeline-section .pipeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.logic-pipeline-section .pipeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  z-index: 1;
}
.logic-pipeline-section .pipeline-spine .spine-base {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
}
.logic-pipeline-section .pipeline-spine .spine-active-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-purple));
  box-shadow: 0 0 20px var(--accent-cyan);
}
.logic-pipeline-section .pipeline-spine .spine-active-glow::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--accent-cyan);
}
.logic-pipeline-section .pipeline-step {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
  opacity: 0.1;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.logic-pipeline-section .pipeline-step.active-node {
  opacity: 1;
  transform: translateY(0);
}
.logic-pipeline-section .pipeline-step.active-node .pipeline-dot {
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.6);
  transform: scale(1.02);
  /* very tiny (optional) */
}
.logic-pipeline-section .pipeline-step.active-node .step-card {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.logic-pipeline-section .pipeline-step.active-node .step-card .step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--accent-cyan);
}
.logic-pipeline-section .pipeline-step .pipeline-dot {
  opacity: 1;
  /* stays visible always */
}
.logic-pipeline-section .pipeline-step .step-card {
  width: 44%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  transition: all 0.4s ease;
}
.logic-pipeline-section .pipeline-step .step-card .step-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: 0.4s ease;
}
.logic-pipeline-section .pipeline-step .step-card .step-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.logic-pipeline-section .pipeline-step .step-card h4 {
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 15px;
}
.logic-pipeline-section .pipeline-step .step-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.logic-pipeline-section .pipeline-step.step-left {
  justify-content: flex-start;
}
.logic-pipeline-section .pipeline-step.step-left .step-card {
  text-align: right;
}
.logic-pipeline-section .pipeline-step.step-left .step-card .step-icon {
  margin-left: auto;
}
.logic-pipeline-section .pipeline-step.step-right {
  justify-content: flex-end;
}
.logic-pipeline-section .pipeline-step.step-right .step-card {
  text-align: left;
}

#spineGlow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  height: 100%;
  width: 4px;
  /* change thickness if needed */
  border-radius: 20px;
  will-change: transform;
  z-index: 2;
}

@media (max-width: 991px) {
  .logic-pipeline-section .pipeline-spine {
    left: 20px;
    transform: none;
  }
  .logic-pipeline-section .pipeline-step {
    justify-content: flex-start !important;
  }
  .logic-pipeline-section .pipeline-step .step-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    text-align: left !important;
  }
  .logic-pipeline-section .pipeline-step .step-card .step-icon {
    margin-left: 0;
  }
}
.integrations-marquee {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  overflow: hidden;
  /* --- SECTION HEADER --- */
  /* --- RUNNING TRACK --- */
}
.integrations-marquee .integrations-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(125, 211, 252, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.integrations-marquee .integrations-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.integrations-marquee .integrations-header .features-title {
  margin-bottom: 20px;
  color: var(--text-main);
}
.integrations-marquee .integrations-header .features-title .gradient-word {
  font-weight: 900;
}
.integrations-marquee .integrations-header .features-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}
.integrations-marquee .integrations-track {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
.integrations-marquee .integrations-track::before, .integrations-marquee .integrations-track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.integrations-marquee .integrations-track::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.integrations-marquee .integrations-track::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}
.integrations-marquee .integrations-row {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.integrations-marquee .integrations-row.reverse {
  animation-direction: reverse;
}
.integrations-marquee .integrations-row:hover {
  animation-play-state: paused;
}
.integrations-marquee .integration-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.integrations-marquee .integration-pill i {
  font-size: 26px;
  color: #ffffff;
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.integrations-marquee .integration-pill span {
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.05rem;
}
.integrations-marquee .integration-pill:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.integrations-marquee .integration-pill:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #ffffff;
}
.integrations-marquee .integration-pill.gradient-hover:hover {
  border-color: var(--accent-cyan);
}
.integrations-marquee .integration-pill.gradient-hover-alt:hover {
  border-color: var(--accent-purple);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonials-pro {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  overflow: hidden;
  /* --- SECTION HEADER --- */
  /* --- SWIPER & 3D LAYOUT --- */
}
.testimonials-pro .section-head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.testimonials-pro .section-head h2 {
  margin-bottom: 20px;
  color: var(--text-main);
}
.testimonials-pro .section-head h2 .gradient-text {
  font-weight: 900;
}
.testimonials-pro .section-head p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.testimonials-pro .swiper-container-3d {
  padding: 40px 0;
  overflow: visible !important;
}
.testimonials-pro .swiper-slide {
  width: 420px;
  height: auto;
}
.testimonials-pro .testimonial-card-3d {
  height: 350px;
  perspective: 1500px;
}
.testimonials-pro .testimonial-card-3d .card-inner {
  position: relative;
  height: 100%;
  padding: 40px;
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, border-color 0.4s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.testimonials-pro .testimonial-card-3d .card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(125, 211, 252, 0.15), transparent 80%);
  pointer-events: none;
}
.testimonials-pro .testimonial-card-3d .card-inner:hover {
  border-color: var(--accent-cyan);
}
.testimonials-pro .quote-wrapper {
  transform: translateZ(50px);
}
.testimonials-pro .quote-wrapper i {
  font-size: 3rem;
  color: var(--accent-cyan);
  opacity: 0.6;
}
.testimonials-pro .testimonial-content {
  transform: translateZ(30px);
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
.testimonials-pro .author-box {
  transform: translateZ(60px);
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-pro .author-box img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-pro .author-box h6 {
  color: var(--text-main);
  margin: 0;
  font-size: 1.1rem;
}
.testimonials-pro .author-box small {
  color: var(--accent-purple);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@keyframes p-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.pricing-pro {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  /* --- BILLING TOGGLE --- */
  /* --- PRICING CARDS --- */
}
.pricing-pro .section-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.pricing-pro .section-header .section-title {
  margin-bottom: 20px;
  color: var(--text-main);
}
.pricing-pro .section-header .section-title .gradient-text-flow {
  font-weight: 900;
}
.pricing-pro .section-header .section-para {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}
.pricing-pro .billing-toggle-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 50px;
}
.pricing-pro .billing-toggle-wrapper .toggle-glass-pill {
  background: var(--glass-bg);
  border: var(--glass-border);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 100px;
  display: flex;
  width: 280px;
  position: relative;
}
.pricing-pro .billing-toggle-wrapper .toggle-glass-pill .tgl-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.4s ease;
  color: var(--text-muted);
  z-index: 2;
}
.pricing-pro .billing-toggle-wrapper .toggle-glass-pill .tgl-btn.active {
  color: #000;
}
.pricing-pro .billing-toggle-wrapper .toggle-glass-pill .tgl-slider {
  position: absolute;
  width: 134px;
  height: calc(100% - 12px);
  background: var(--grad-primary);
  border-radius: 100px;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  left: 6px;
}
.pricing-pro .billing-toggle-wrapper .discount-tag {
  position: absolute;
  top: -38px;
  right: 0;
  background: var(--grad-primary);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(125, 211, 252, 0.3);
  animation: p-pulse 2s infinite;
}
.pricing-pro .billing-toggle-wrapper .discount-tag::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--accent-cyan);
}
.pricing-pro .pricingSwiper {
  padding: 60px 20px 80px !important;
  overflow: visible !important;
}
@media (min-width: 1200px) {
  .pricing-pro .pricingSwiper {
    padding: 60px 50px 80px !important;
  }
}
.pricing-pro .pricing-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
}
.pricing-pro .pricing-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--accent-cyan);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.pricing-pro .pricing-card.featured {
  border: 1px solid var(--accent-purple);
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.1) 0%, rgb(8, 12, 22) 100%);
}
.pricing-pro .pricing-card.featured .pop-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #000;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
}
.pricing-pro .pricing-card .card-plan-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--accent-cyan) !important;
}
.pricing-pro .pricing-card .text-cyan,
.pricing-pro .pricing-card .text-purple,
.pricing-pro .pricing-card .text-secondary {
  color: var(--accent-cyan) !important;
}
.pricing-pro .pricing-card .price-wrap {
  margin-bottom: 35px;
}
.pricing-pro .pricing-card .price-wrap h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
}
.pricing-pro .pricing-card .price-wrap span {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 8px;
}
.pricing-pro .pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1;
}
.pricing-pro .pricing-card .feature-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.pricing-pro .pricing-card .feature-list li i {
  color: var(--accent-cyan);
  font-size: 18px;
}
.pricing-pro .pricing-card .feature-list li.disabled {
  opacity: 0.3;
}
.pricing-pro .btn-nexa-action {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--text-main);
  border: var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
}
.pricing-pro .btn-nexa-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.pricing-pro .btn-nexa-action:hover {
  color: #000;
  border-color: transparent;
}
.pricing-pro .btn-nexa-action:hover::before {
  left: 0;
}

@keyframes p-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
/* =====================================================
   FAQ PRO ADVANCED – UNIFIED GRID ENGINE
   Fixes: Reload Lag, Alignment, and Smooth Transitions
===================================================== */
.faq-pro-advanced {
  padding: clamp(50px, 8vw, 120px) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  /* --- SECTION HEADER --- */
  /* --- THE ACCORDION CORE --- */
  /* --- TOGGLE & BUTTONS --- */
  /* --- GRID WRAPPER (The Animation Engine) --- */
  /* --- SUPPORT SIDEBAR CARD --- */
  /* --- CTA BUTTON --- */
  /* --- RESPONSIVE FIXES --- */
}
.faq-pro-advanced .faq-bg-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(125, 211, 252, 0.1), transparent 70%);
  pointer-events: none;
}
.faq-pro-advanced .section-header {
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 50px);
  text-align: center;
}
.faq-pro-advanced .section-header .section-title {
  margin-bottom: 15px;
  color: var(--text-main);
}
.faq-pro-advanced .section-header .section-title .text-gradient-flow {
  font-weight: 900;
}
.faq-pro-advanced .section-header .section-para {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.faq-pro-advanced .faq-accordion-pro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-pro-advanced .faq-item-pro {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}
.faq-pro-advanced .faq-item-pro:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}
.faq-pro-advanced .faq-item-pro.active {
  background: rgba(125, 211, 252, 0.05);
  border-color: var(--accent-cyan);
}
.faq-pro-advanced .faq-item-pro.active .faq-grid-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 30px;
}
.faq-pro-advanced .faq-item-pro.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}
.faq-pro-advanced .faq-item-pro.active .faq-icon {
  background: rgba(125, 211, 252, 0.1);
  border-color: var(--accent-cyan);
}
.faq-pro-advanced .faq-toggle-pro {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}
.faq-pro-advanced .faq-toggle-pro .faq-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.faq-pro-advanced .faq-toggle-pro .faq-icon i {
  font-size: 20px;
  color: var(--accent-cyan);
}
.faq-pro-advanced .faq-toggle-pro span {
  flex: 1;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.1rem;
}
.faq-pro-advanced .faq-toggle-pro .faq-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-pro-advanced .faq-grid-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  overflow: hidden;
  will-change: grid-template-rows;
}
.faq-pro-advanced .faq-content-pro {
  height: 0;
  /* ALIGNMENT: 25px(pad) + 44px(icon) + 15px(gap) = 84px */
  padding: 0 25px 0 84px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  will-change: height;
  overflow: hidden;
}
.faq-pro-advanced .faq-support-pro {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 35px;
  text-align: center;
  border-radius: 24px;
  position: sticky;
  top: 100px;
}
.faq-pro-advanced .faq-support-pro .support-icon {
  width: 65px;
  height: 65px;
  background: rgba(125, 211, 252, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--accent-cyan);
}
.faq-pro-advanced .faq-support-pro h4 {
  color: var(--text-main);
  font-weight: 800;
  margin-bottom: 10px;
}
.faq-pro-advanced .faq-support-pro p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.faq-pro-advanced .btn-faq-cta-slide {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s ease;
  text-decoration: none;
}
.faq-pro-advanced .btn-faq-cta-slide:hover {
  background: var(--accent-cyan);
  color: #000;
  transform: translateY(-3px);
}
@media (max-width: 991px) {
  .faq-pro-advanced .faq-support-pro {
    position: static;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .faq-pro-advanced .faq-toggle-pro {
    padding: 15px 20px;
  }
  .faq-pro-advanced .faq-toggle-pro .faq-icon {
    width: 38px;
    height: 38px;
  }
  .faq-pro-advanced .faq-toggle-pro span {
    font-size: 1rem;
  }
  .faq-pro-advanced .faq-content-pro {
    /* Adjusted for smaller mobile icons: 20+38+15 = 73px */
    padding: 0 20px 0 73px;
  }
}

/* =============================================================
   UNIQUE JOURNEY SECTION
   (Non-typical curved process flow)
   ============================================================= */
.journey-pro {
  padding: 115px 0 120px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.journey-pro .section-header {
  text-align: center;
  margin-bottom: 60px;
}
/* Ambient Aura - Synced with Hero/Features Glows */
.journey-bg-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(125, 211, 252, 0.35), transparent 45%), radial-gradient(circle at 82% 82%, rgba(192, 132, 252, 0.35), transparent 48%), linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 35%);
  opacity: 0.9;
  z-index: -1;
}

/* ====== CURVED FLOW SYSTEM ====== */
.journey-flow-wrapper {
  position: relative;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Glowing Curved Path Background */
.journey-curve-path {
  position: absolute;
  inset: -20px 0 0 0;
  height: 220px;
  border-radius: 120px;
  background: var(--grad-primary);
  filter: blur(60px);
  opacity: 0.22;
  z-index: -1;
}

/* ===== JOURNEY NODES (GLASS DNA) ===== */
.journey-node {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 22px;
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  /* Halo Aura - Inside the node */
  /* Icon Capsule - Synced with global accent colors */
  /* Typography */
  /* Hover Cinematic Lift */
}
.journey-node .node-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(55px);
  background: var(--accent-cyan);
  opacity: 0.35;
  top: -40px;
  left: -35px;
  pointer-events: none;
}
.journey-node .node-glow.purple {
  background: var(--accent-purple);
}
.journey-node .node-glow.green {
  background: #4ade80;
}
.journey-node .node-glow.blue {
  background: #60a5fa;
}
.journey-node .node-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--bg-dark);
  background: var(--grad-primary);
  box-shadow: 0 18px 55px rgba(167, 139, 250, 0.45);
  margin-bottom: 10px;
}
.journey-node .node-icon.purple {
  background: linear-gradient(145deg, var(--accent-purple), var(--accent-violet));
}
.journey-node .node-icon.green {
  background: linear-gradient(145deg, #4ade80, var(--accent-cyan));
}
.journey-node .node-icon.blue {
  background: linear-gradient(145deg, #60a5fa, var(--accent-cyan));
}
.journey-node h4 {
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
}
.journey-node p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.journey-node:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
}
.journey-node:hover .node-icon {
  transform: rotate(-5deg) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .journey-flow-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .journey-curve-path {
    display: none;
  }
}
@media (max-width: 575px) {
  .journey-flow-wrapper {
    grid-template-columns: 1fr;
  }
  .journey-node {
    padding: 30px;
  }
}
.showcase-pro {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: var(--bg-dark);
  overflow: hidden;
  /* --- SECTION HEADER --- */
  /* --- 2) SHOWCASE CARD --- */
  /* Card*/
}
.showcase-pro .features-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(125, 211, 252, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.showcase-pro .section-header {
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 50px);
  text-align: center;
}
.showcase-pro .section-header .section-title {
  margin-bottom: 15px;
  color: var(--text-main);
}
.showcase-pro .section-header .section-title .text-gradient-flow {
  font-weight: 900;
}
.showcase-pro .section-header .section-para {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.showcase-pro .showcaseSwiper {
  padding: 40px 15px 100px !important;
  overflow: visible !important;
}
.showcase-pro .showcase-card {
  perspective: 2000px;
}
.showcase-pro .showcase-card .card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
.showcase-pro .showcase-card .card-inner:hover {
  transform: translateY(-15px) rotateX(4deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.showcase-pro .showcase-card .card-inner:hover .hover-sheen {
  left: 160%;
}
.showcase-pro .showcase-card .card-inner:hover .showcase-browser {
  transform: translateZ(50px);
}
.showcase-pro .showcase-card .card-inner:hover h4 {
  color: var(--accent-cyan);
}
.showcase-pro .showcase-card .card-inner:hover .feature-link {
  background-position: 100% center;
}
.showcase-pro .showcase-card .card-inner:hover .feature-link i {
  transform: translateX(8px);
  color: var(--accent-cyan);
  -webkit-text-fill-color: var(--accent-cyan);
}
.showcase-pro .showcase-browser {
  background: #0d1117;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: 0.6s ease;
  position: relative;
  z-index: 2;
}
.showcase-pro .showcase-browser .browser-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.showcase-pro .showcase-browser .browser-header .dots {
  display: flex;
  gap: 6px;
}
.showcase-pro .showcase-browser .browser-header .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.showcase-pro .showcase-browser .browser-header .dots .red {
  background: #ff5f57;
}
.showcase-pro .showcase-browser .browser-header .dots .yellow {
  background: #febc2e;
}
.showcase-pro .showcase-browser .browser-header .dots .green {
  background: #28c840;
}
.showcase-pro .showcase-browser .browser-header .url-bar {
  background: rgba(0, 0, 0, 0.3);
  flex-grow: 1;
  border-radius: 6px;
  height: 20px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-family: monospace;
}
.showcase-pro .showcase-browser .browser-body img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.showcase-pro .card-meta {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}
.showcase-pro .card-meta h4 {
  color: var(--text-main);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}
.showcase-pro .card-meta h4 .badge-mini {
  font-size: 0.65rem;
  padding: 4px 10px;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 6px;
  color: var(--accent-cyan);
}
.showcase-pro .card-meta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 12px 0 20px;
}
.showcase-pro .card-meta .feature-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #fff, var(--accent-cyan), var(--accent-purple));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s;
  font-size: 0.95rem;
}
.showcase-pro .card-meta .feature-link i {
  -webkit-text-fill-color: var(--text-main);
  margin-left: 8px;
  transition: 0.3s;
  font-size: 1.2rem;
}
.showcase-pro .hover-sheen {
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 5;
  pointer-events: none;
}
.showcase-pro .screen-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(125, 211, 252, 0.1), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: 0.6s ease;
  z-index: 0;
}
.showcase-pro .screen-glow.purple {
  background: radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.1), transparent 60%);
}
.showcase-pro .screen-glow.blue {
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 60%);
}
.showcase-pro .card-inner:hover .screen-glow {
  opacity: 1;
}
.showcase-pro .swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.2;
  transition: 0.3s;
}
.showcase-pro .swiper-pagination-bullet-active {
  background: var(--accent-cyan) !important;
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

.cta-velocity-master {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  /* --- BACKGROUND --- */
  /* --- GLASS PANEL --- */
  /* --- BUTTONS --- */
  /* ---DOTS --- */
}
.cta-velocity-master .cta-bg-engine {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Vertical Velocity Lines */
}
.cta-velocity-master .cta-bg-engine .nebula-cloud {
  position: absolute;
  width: 60vw;
  height: 60vw;
  filter: blur(130px);
  opacity: 0.3;
  border-radius: 50%;
  animation: drift 20s infinite alternate ease-in-out;
}
.cta-velocity-master .cta-bg-engine .nebula-cloud.c1 {
  background: var(--accent-cyan);
  top: -20%;
  left: -10%;
}
.cta-velocity-master .cta-bg-engine .nebula-cloud.c2 {
  background: var(--accent-purple);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}
.cta-velocity-master .cta-bg-engine .velocity-line {
  position: absolute;
  width: 1px;
  height: 250px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
  opacity: 0.4;
  animation: lineRun 2s infinite linear;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-1 {
  left: 15%;
  animation-duration: 1.5s;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-2 {
  left: 45%;
  animation-duration: 2.5s;
  animation-delay: 0.4s;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-3 {
  left: 75%;
  animation-duration: 1.8s;
  animation-delay: 1s;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-4 {
  left: 90%;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}
.cta-velocity-master .cta-glass-card {
  position: relative;
  z-index: 10;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) clamp(20px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(35px) saturate(160%);
          backdrop-filter: blur(35px) saturate(160%);
  border-radius: clamp(24px, 4vw, 40px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}
.cta-velocity-master .cta-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin: 25px 0;
  letter-spacing: -1.5px;
}
.cta-velocity-master .cta-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 650px;
  margin: 0 auto 45px;
  line-height: 1.7;
}
.cta-velocity-master .cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-velocity-master .btn-primary-launch {
  position: relative;
  padding: 18px 45px;
  background: #fff;
  color: #000;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}
.cta-velocity-master .btn-primary-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  background-size: 200% auto;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}
.cta-velocity-master .btn-primary-launch:hover {
  transform: translateY(-8px);
  color: #fff;
  box-shadow: 0 20px 40px rgba(125, 211, 252, 0.4);
}
.cta-velocity-master .btn-primary-launch:hover::before {
  opacity: 1;
  animation: gradFlow 1.5s infinite linear;
}
.cta-velocity-master .btn-primary-launch:hover i {
  transform: translate(5px, -5px) rotate(10deg);
}
.cta-velocity-master .btn-secondary-frosted {
  padding: 18px 35px;
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}
.cta-velocity-master .btn-secondary-frosted:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}
.cta-velocity-master .btn-secondary-frosted:hover i {
  color: var(--accent-cyan);
}
.cta-velocity-master .micro-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.4;
}
.cta-velocity-master .micro-dot.md-1 {
  top: 20%;
  left: 10%;
  animation: float 4s infinite;
}
.cta-velocity-master .micro-dot.md-2 {
  bottom: 20%;
  right: 10%;
  animation: float 4s infinite reverse;
}

/* --- ANIMATIONS --- */
@keyframes lineRun {
  0% {
    transform: translateY(-300px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(10%, 10%) scale(1.15);
  }
}
@keyframes rotateGear {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* --- RESPONSIVE--- */
@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .btn-primary-launch,
  .btn-secondary-frosted {
    width: 100%;
    justify-content: center;
  }
}
/* ==== INNER PAGES ==== */
.about-page {
  background: var(--bg-dark);
  position: relative;
  overflow-x: hidden;
  padding: clamp(28px, 4vw, 60px) 0;
}
.about-page .container {
  padding-left: clamp(14px, 4vw, 48px) !important;
  padding-right: clamp(14px, 4vw, 48px) !important;
}
.about-page .content-overlay {
  position: relative;
  z-index: 5;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6 {
  max-width: 100%;
  word-break: break-word;
}
.about-page p,
.about-page .text-muted,
.about-page .text-white-50 {
  color: var(--text-main) !important;
  opacity: 0.9;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  letter-spacing: 0.25px;
  max-width: 100%;
  word-break: break-word;
}
.about-page .section-title {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  margin-bottom: clamp(12px, 2vw, 20px);
}
.about-page .ui-badge {
  margin-bottom: clamp(12px, 2vw, 24px);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  padding: clamp(8px, 1vw, 12px) clamp(12px, 2vw, 18px);
  border-radius: 999px;
}
.about-page .section-gap {
  margin-top: clamp(18px, 4vw, 40px);
}
.about-page section.container {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4vw, 55px) 0;
}
.about-page section.container .text-center {
  padding-left: clamp(0px, 0vw, 0px);
  padding-right: clamp(0px, 0vw, 0px);
}
.about-page section.container .lead,
.about-page section.container .section-desc,
.about-page section.container .subtitle,
.about-page section.container .desc {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.architect-wrap {
  padding: 120px 0;
}
.architect-wrap .architect-card {
  padding: 35px;
  border-radius: 40px;
  text-align: center;
  height: 100%;
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid var(--glass-border-color);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.architect-wrap .architect-card .img-shield {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  filter: grayscale(100%);
  transition: 0.6s ease;
  border: 2px solid rgba(255, 255, 255, 0.05);
}
.architect-wrap .architect-card .img-shield img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.architect-wrap .architect-card .architect-info h4 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.architect-wrap .architect-card .architect-info .title-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}
.architect-wrap .architect-card .architect-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted) !important;
}
.architect-wrap .architect-card:hover {
  transform: translateY(-20px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.architect-wrap .architect-card:hover .img-shield {
  filter: grayscale(0%);
  border-color: var(--accent-cyan);
  transform: scale(1.05);
}

/* ===========================================
 ✅ OUR FOUNDATION SECTION (FINAL FIX)
 - Colorful image (NO gray / no dark filter)
 - Overlay text always visible (theme based)
 - Capabilities-like hover effects
 =========================================== */
.container.py-10 {
  padding-top: clamp(50px, 6vw, 90px) !important;
  padding-bottom: clamp(50px, 6vw, 90px) !important;
  /* ✅ SECTION HEADER */
  /* ✅ FULL IMAGE CARD */
  /* ✅ VALUE CARDS */
  /* ✅ Mobile Fix */
}
.container.py-10 .section-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto clamp(22px, 4vw, 45px);
}
.container.py-10 .section-header.mb-5 {
  margin-bottom: clamp(22px, 4vw, 45px) !important;
}
.container.py-10 .section-header .section-title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: clamp(12px, 2vw, 18px);
}
.container.py-10 .section-header .section-para {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.8;
  opacity: 0.92;
  color: var(--text-muted);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(6px, 2vw, 0px);
}
.container.py-10 .company-full-image {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 3vw, 30px);
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.6);
  margin-bottom: clamp(20px, 4vw, 45px);
  /* ✅ LIGHT overlay only for text visibility (NOT dark) */
  /* ✅ Overlay text ALWAYS visible now */
  /* ✅ Hover effects like Capabilities section */
}
.container.py-10 .company-full-image img {
  width: 100%;
  height: clamp(230px, 40vw, 420px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  /* ✅ Colorful image (no gray / no dark overlay) */
  filter: none;
  transform: scale(1.02);
  transition: 0.8s ease;
}
.container.py-10 .company-full-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 1;
}
.container.py-10 .company-full-image .image-overlay-text {
  position: absolute;
  left: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 10;
  pointer-events: none;
}
.container.py-10 .company-full-image .image-overlay-text span {
  /* ✅ theme based readable pill */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: clamp(8px, 1vw, 11px) clamp(14px, 2vw, 20px);
  border-radius: 999px;
  /* ✅ very visible theme colors */
  border: 1px solid rgba(125, 211, 252, 0.55);
  color: var(--accent-cyan);
  /* ✅ animation smoothness */
  background-size: 200% 200%;
  will-change: background-position;
}
.container.py-10 .company-full-image .image-overlay-text span .text-gradient-flow, .container.py-10 .company-full-image .image-overlay-text span .metric-box .metric-value, .metric-box .container.py-10 .company-full-image .image-overlay-text span .metric-value, .container.py-10 .company-full-image .image-overlay-text span .architect-wrap .architect-card .architect-info .title-tag, .architect-wrap .architect-card .architect-info .container.py-10 .company-full-image .image-overlay-text span .title-tag {
  font-size: 900;
}
.container.py-10 .company-full-image:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
}
.container.py-10 .company-full-image:hover img {
  transform: scale(1.08);
}
.container.py-10 .row.g-4 {
  row-gap: clamp(16px, 2.5vw, 28px);
}
.container.py-10 .value-card {
  height: 100%;
  width: 100%;
  padding: clamp(18px, 2.8vw, 28px);
  border-radius: clamp(18px, 3vw, 28px);
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.6);
  text-align: left;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  /* ✅ hover same like capabilities */
}
.container.py-10 .value-card i {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  display: inline-block;
  margin-bottom: clamp(12px, 2vw, 18px);
  background: var(--accent-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container.py-10 .value-card h5 {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: clamp(10px, 1.5vw, 14px);
  line-height: 1.3;
}
.container.py-10 .value-card p {
  margin: 0;
  font-size: clamp(0.88rem, 1.05vw, 0.95rem);
  line-height: 1.75;
  color: var(--text-muted);
  opacity: 0.95;
}
.container.py-10 .value-card p.small {
  font-size: clamp(0.85rem, 1vw, 0.92rem);
}
.container.py-10 .value-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 575px) {
  .container.py-10 .company-full-image {
    border-radius: 18px;
  }
  .container.py-10 .company-full-image img {
    height: 250px;
  }
  .container.py-10 .company-full-image .image-overlay-text {
    left: 14px;
    bottom: 14px;
  }
  .container.py-10 .value-card {
    text-align: center;
  }
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 42vw, 320px), 1fr));
  gap: clamp(14px, 2.2vw, 25px);
  padding: clamp(28px, 4vw, 60px) 0;
}
.capability-grid .cap-card {
  padding: clamp(18px, 3vw, 45px);
  text-align: left;
  transition: 0.5s ease;
  border-radius: clamp(18px, 2.8vw, 30px);
  min-height: clamp(170px, 22vw, 250px);
  max-width: 100%;
}
.capability-grid .cap-card i {
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(12px, 2vw, 20px);
  display: block;
}
.capability-grid .cap-card h5 {
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: clamp(10px, 1.6vw, 15px);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}
.capability-grid .cap-card p {
  font-size: clamp(0.88rem, 1.08vw, 0.96rem);
  margin: 0;
}
.capability-grid .cap-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}

.roadmap-pipeline {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: clamp(45px, 6vw, 80px) auto;
  padding: 0;
}
.roadmap-pipeline::before {
  content: "";
  position: absolute;
  left: clamp(70px, 14vw, 140px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan), var(--accent-purple), transparent);
  opacity: 0.3;
}
.roadmap-pipeline .roadmap-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: clamp(50px, 7vw, 100px);
}
.roadmap-pipeline .roadmap-item .roadmap-year {
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: var(--accent-cyan);
  width: clamp(55px, 14vw, 120px);
  flex-shrink: 0;
  text-align: right;
  padding-right: clamp(14px, 4vw, 40px);
  text-shadow: 0 0 15px rgba(125, 211, 252, 0.3);
}
.roadmap-pipeline .roadmap-item .roadmap-dot {
  position: absolute;
  left: clamp(70px, 14vw, 140px);
  top: clamp(6px, 1.2vw, 10px);
  width: clamp(18px, 2.6vw, 22px);
  height: clamp(18px, 2.6vw, 22px);
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--accent-cyan);
}
.roadmap-pipeline .roadmap-item.completed .roadmap-dot {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #000;
  font-size: 12px;
}
.roadmap-pipeline .roadmap-item.active .roadmap-dot {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  box-shadow: 0 0 20px var(--accent-cyan);
}
.roadmap-pipeline .roadmap-item.active .roadmap-dot::after {
  content: "";
  position: absolute;
  width: clamp(30px, 5vw, 40px);
  height: clamp(30px, 5vw, 40px);
  border-radius: 50%;
  border: 1px solid var(--accent-cyan);
  animation: pulse-ring 2s infinite;
}
.roadmap-pipeline .roadmap-item .roadmap-content {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(18px, 3vw, 35px);
  border-radius: clamp(18px, 3vw, 25px);
  margin-left: clamp(32px, 6vw, 50px);
  width: 100%;
  max-width: 100%;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.roadmap-pipeline .roadmap-item .roadmap-content .phase-tag {
  font-size: clamp(0.68rem, 1vw, 0.75rem);
  font-weight: 800;
  letter-spacing: clamp(1.2px, 0.3vw, 2px);
  display: block;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  color: var(--accent-cyan);
  text-transform: uppercase;
}
.roadmap-pipeline .roadmap-item .roadmap-content h4 {
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.roadmap-pipeline .roadmap-item .roadmap-content p {
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
}
.roadmap-pipeline .roadmap-item .roadmap-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--accent-cyan);
  transform: translateX(clamp(6px, 2vw, 15px));
}

.metric-box {
  padding: clamp(22px, 4.5vw, 50px) clamp(16px, 3vw, 20px);
  text-align: center;
  transition: 0.4s ease;
  border-radius: clamp(18px, 3vw, 28px);
  max-width: 100%;
}
.metric-box .metric-value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-main);
}
.metric-box .metric-unit {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
}
.metric-box .metric-label {
  font-size: clamp(0.68rem, 1vw, 0.75rem);
  letter-spacing: clamp(2px, 0.6vw, 3px);
  text-transform: uppercase;
  color: var(--text-main) !important;
  opacity: 0.9;
  margin-top: clamp(10px, 2vw, 15px);
  font-weight: 600;
}
.metric-box:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 20px 40px rgba(192, 132, 252, 0.2);
}

/* --- ANIMATIONS --- */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
  section.container {
    padding: 35px 0;
  }
  .about-page .roadmap-pipeline {
    padding-left: 5px;
    padding-right: 5px;
  }
  .about-page .roadmap-pipeline::before {
    left: 22px;
  }
  .about-page .roadmap-pipeline .roadmap-item {
    flex-direction: column;
    padding-left: 0;
  }
  .about-page .roadmap-pipeline .roadmap-item .roadmap-year {
    text-align: left;
    margin-bottom: 12px;
    padding-left: 52px;
    padding-right: 0;
    width: 100%;
  }
  .about-page .roadmap-pipeline .roadmap-item .roadmap-dot {
    left: 22px;
    top: 44px;
  }
  .about-page .roadmap-pipeline .roadmap-item .roadmap-content {
    margin-left: 52px;
    width: calc(100% - 52px);
  }
}
@media (max-width: 575px) {
  .about-page .metric-box .metric-value {
    font-size: 2.4rem;
  }
  .about-page section.container .capability-grid {
    gap: 14px;
    padding: 30px 0;
  }
  .about-page section.container .architect-wrap .architect-card {
    padding: 20px;
  }
  .about-page section.container .roadmap-pipeline {
    margin: 45px auto;
  }
  .about-page section.container .roadmap-pipeline .roadmap-item {
    margin-bottom: 55px;
  }
  .about-page section.container .roadmap-pipeline .roadmap-item .roadmap-year {
    padding-left: 48px;
  }
  .about-page section.container .roadmap-pipeline .roadmap-item .roadmap-dot {
    left: 20px;
    top: 42px;
  }
  .about-page section.container .roadmap-pipeline .roadmap-item::before {
    left: 20px;
  }
  .about-page section.container .roadmap-pipeline .roadmap-item .roadmap-content {
    margin-left: 48px;
    width: calc(100% - 48px);
    padding: 18px;
  }
}
/* ==============================================================
   CONTACT HUB – FINAL FIXED MASTER SCSS
   ============================================================== */
.contact-page-body {
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

.contact-hub {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* --- FIX: Increased bottom padding so dropdown has room to open DOWN --- */
  padding-top: clamp(50px, 8vw, 120px);
  padding-bottom: clamp(100px, 15vw, 200px);
  z-index: 1;
  overflow: hidden;
  /* --- TOP-LEFT CYAN MESH (ARCHITECTURAL FRAME) --- */
  /* --- BOTTOM-RIGHT PURPLE MESH (BALANCED FRAME) --- */
}

/* --- BACKGROUND ABSTRACTS --- */
/* --- SECTION HEADER TYPOGRAPHY --- */
.section-header {
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 50px);
  text-align: center;
}
.section-header .ui-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.9rem;
}
.section-header .section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-main);
}
.section-header .section-title .text-gradient-flow {
  font-weight: 900;
}
.section-header .section-para {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* --- FORM & INPUT OPTIMIZATIONS --- */
.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 35px;
  padding: clamp(25px, 5vw, 50px);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  /* --- DROPDOWN FIX --- */
  /* --- AUTO-SIZABLE COMMENT BOX --- */
}
.contact-form-card .form-label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.contact-form-card .form-control-wrap {
  position: relative;
}
.contact-form-card .form-control-wrap .field-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  z-index: 5;
  font-size: 1.2rem;
}
.contact-form-card .form-control-wrap textarea + .field-icon {
  top: 25px;
  transform: none;
}
.contact-form-card .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px 20px 15px 55px;
  color: #fff !important;
  width: 100%;
  /* --- LIGHT PLACEHOLDER --- */
  /* --- DROPDOWN VISIBILITY FIX --- */
}
.contact-form-card .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form-card .form-control:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.2);
  outline: none;
}
.contact-form-card .form-control option {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 12px;
}
.contact-form-card select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
}
.contact-form-card textarea.form-control {
  min-height: 120px;
  field-sizing: content;
  resize: none;
  line-height: 1.5;
}

/* --- SIDEBAR & INFO CARDS --- */
.contact-sidebar .info-card {
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact-sidebar .info-card:hover {
  transform: translateX(10px);
  border-color: var(--accent-cyan);
}
.contact-sidebar .info-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
}
.contact-sidebar .info-card .icon-wrap.purple {
  color: var(--accent-purple);
}
.contact-sidebar .info-card .node-content h4 {
  margin: 0 0 4px;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}
.contact-sidebar .info-card .node-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- LOCATION MAP CARD --- */
.map-container-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 25px;
}
.map-container-card h4 {
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.map-container-card h4 i {
  color: var(--accent-cyan);
  font-size: 1.4rem;
}
.map-container-card .glass-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-container-card .glass-map-wrapper iframe {
  filter: grayscale(1) invert(0.92) contrast(1.1);
  display: block;
}

/* --- CTA BUTTON --- */
.btn-cta-slide {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
}
.btn-cta-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100%;
  background: var(--grad-primary);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.btn-cta-slide:hover {
  color: #000;
  transform: translateY(-3px);
}
.btn-cta-slide:hover::before {
  left: 0;
}

/* --- SOCIAL LINKS --- */
.social-links {
  display: flex;
  gap: 12px;
}
.social-links .social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none !important;
  transition: 0.3s ease;
}
.social-links .social-link:hover {
  background: var(--accent-cyan);
  color: #000 !important;
  box-shadow: 0 0 20px var(--accent-cyan);
}

/* =====================================================
   FAQ HUB – ALIGNED & ULTRA-SMOOTH
   Technique: CSS Grid Fr-Transition
===================================================== */
.faq-page-body {
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

.faq-accordion-pro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-pro {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.faq-item-pro:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.faq-item-pro.active {
  background: rgba(125, 211, 252, 0.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.faq-item-pro.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}
.faq-item-pro.active .faq-icon {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.4);
}
.faq-item-pro.active .faq-grid-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 28px;
}

.faq-toggle-pro {
  width: 100%;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.25rem;
}
.faq-toggle-pro .faq-icon {
  width: 52px;
  height: 52px;
  background: rgba(125, 211, 252, 0.1);
  color: var(--accent-cyan);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(125, 211, 252, 0.2);
}
.faq-toggle-pro span {
  flex: 1;
  padding-right: 20px;
}
.faq-toggle-pro .faq-arrow {
  margin-left: auto;
  font-size: 24px;
  color: var(--text-muted);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- THE ALIGNMENT ENGINE --- */
.faq-grid-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  /* ALIGMENT CALCULATION:
     Toggle Padding (28px) + Icon Width (52px) + Gap (20px) = 100px
  */
  padding: 0 28px 0 0;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.5s ease;
  will-change: grid-template-rows, opacity;
}

.faq-content-pro {
  min-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- SIDEBAR --- */
.faq-support-pro {
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  position: sticky;
  top: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-support-pro h4 {
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
}
.faq-support-pro .support-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}
.faq-support-pro .support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.faq-support-pro .support-list li i {
  color: var(--accent-cyan);
}

/* --- MOBILE ALIGNMENT --- */
@media (max-width: 576px) {
  .faq-toggle-pro {
    padding: 20px;
    gap: 15px;
    font-size: 1.1rem;
  }
  .faq-toggle-pro .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .faq-grid-wrapper {
    /* MOBILE CALCULATION:
       Padding (20px) + Icon (40px) + Gap (15px) = 75px
    */
    padding: 0 20px 0 0;
  }
  .faq-item-pro.active .faq-grid-wrapper {
    padding-bottom: 20px;
  }
}
/* =============================================================
   404 ERROR – FULL SCREEN RED-ALERT EDITION
   Features: Zero-Scroll, Red Blink Error, Centered Layout
   ============================================================= */
.error-page-body {
  background: #020617;
  color: var(--text-main);
  margin: 0;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- DYNAMIC BACKGROUND --- */
#warpCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.error-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  perspective: 1200px;
}

/* --- HOLOGRAPHIC VISUAL --- */
.error-visual-wrap {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  margin-bottom: clamp(20px, 4vh, 40px);
  margin-left: auto;
  margin-right: auto;
}
.error-visual-wrap .hologram-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.error-visual-wrap .glitch-text {
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.05);
  -webkit-text-stroke: 1px rgba(125, 211, 252, 0.3);
  letter-spacing: -0.05em;
  margin: 0;
  position: relative;
}
.error-visual-wrap .glitch-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--text-main);
  clip-path: inset(44% 0 44% 0);
  animation: glitch-slice 6s ease-in-out infinite;
}
.error-visual-wrap .scanner-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  animation: scanMoveLoop 5s ease-in-out infinite;
  left: 0;
}
.error-visual-wrap .system-status-bar {
  margin-top: 15px;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.error-visual-wrap .system-status-bar .status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.error-visual-wrap .system-status-bar .status-item i {
  font-size: 1.1rem;
}

/* --- BLINKING RED ALERT HEADING --- */
.blink-red-error {
  color: #ff4757 !important;
  text-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
  animation: red-alert-blink 0.8s ease-in-out infinite;
  font-weight: 900;
}

/* --- CONTENT SECTION --- */
.error-content {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.error-content h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--text-main);
}
.error-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* --- CENTERED BUTTON GROUP --- */
.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
}
.btn-group-custom .btn-faq-cta-slide {
  padding: 14px 30px;
  min-width: 200px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-group-custom .btn-glass-simple {
  padding: 14px 30px;
  min-width: 160px;
  border-radius: 12px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-group-custom .btn-glass-simple:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes scanMoveLoop {
  0%, 100% {
    top: 0%;
    opacity: 0;
  }
  20%, 80% {
    opacity: 0.6;
  }
  50% {
    top: 100%;
    opacity: 0.8;
  }
}
@keyframes glitch-slice {
  0%, 100% {
    clip-path: inset(44% 0 44% 0);
    transform: translateX(0);
  }
  25% {
    clip-path: inset(15% 0 65% 0);
    transform: translateX(-4px);
  }
  50% {
    clip-path: inset(65% 0 15% 0);
    transform: translateX(4px);
  }
}
@keyframes red-alert-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}
/* --- MOBILE RESPONSIVE --- */
@media (max-width: 576px) {
  .btn-group-custom {
    flex-direction: column;
    align-items: center;
  }
  .btn-group-custom .btn-faq-cta-slide,
  .btn-group-custom .btn-glass-simple {
    width: 100%;
    max-width: 280px;
    min-width: unset;
  }
  .error-visual-wrap .glitch-text {
    font-size: 8rem;
  }
}/*# sourceMappingURL=style.css.map */