@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);
}

/* Light Theme Variables Override */
[data-theme=light] {
  /* Core Palette - Brighter backgrounds */
  --bg-dark: #ffffff;
  --bg-feature: #f8fafc;
  /* Text Colors - Strong contrast */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-body: #334155;
  /* Glassmorphism System - More visible */
  --glass-bg: rgba(15, 23, 42, 0.06);
  --glass-border: 1px solid rgba(15, 23, 42, 0.12);
}

: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-text-body: var(--text-body);
  --clr-border-soft: rgba(255, 255, 255, 0.08);
  --clr-on-accent: #030610;
  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.15rem;
  --text-2xl: 1.25rem;
  --text-3xl: clamp(1.75rem, 3vw, 2.25rem);
  --text-4xl: clamp(2rem, 4vw, 2.75rem);
  --text-5xl: clamp(2.2rem, 5vw, 3.5rem);
  --text-hero: clamp(2.2rem, 5vw, 3.2rem);
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;
  --leading-tight: 1.1;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;
  /* Spacing */
  --card-padding: clamp(20px, 2.5vw, 28px);
  --section-padding-y: clamp(60px, 10vw, 100px);
  /* Radius */
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  /* Motion */
  --ease-out-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-bounce: cubic-bezier(0.165, 0.84, 0.44, 1);
  --duration-fast: 0.25s;
  --duration-normal: 0.4s;
  --duration-slow: 0.55s;
  /* Shadows */
  --shadow-glow: 0 0 120px rgba(125, 211, 252, 0.15);
}

/* ============================================
   ABSTRACT BACKGROUND – DARK THEME ONLY
   ============================================ */
body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 80% at 0% 0%, rgba(125, 211, 252, 0.12) 0%, transparent 50%), radial-gradient(ellipse 80% 60% at 100% 20%, rgba(192, 132, 252, 0.1) 0%, transparent 45%), radial-gradient(ellipse 70% 70% at 50% 100%, rgba(125, 211, 252, 0.06) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 90% 70%, rgba(167, 139, 250, 0.08) 0%, transparent 45%), linear-gradient(180deg, #030610 0%, #050a14 40%, #080c16 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 75%);
}

#main-wrapper {
  position: relative;
  z-index: 1;
}

.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
================================ */
body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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(1.75rem, 4vw, var(--text-5xl));
  font-weight: var(--font-black);
  letter-spacing: -0.03em;
  line-height: var(--leading-tight);
  color: var(--text-main);
}

.section-head,
.section-header {
  text-align: center;
}

.section-head .section-para,
.section-header .section-para {
  margin-left: auto;
  margin-right: auto;
}

.section-para,
.features-subtitle,
.section-header .section-para {
  font-family: var(--font-main);
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

/* ===============================
   GLOBAL ANIMATIONS
================================ */
/* Premium scroll reveal – smooth fade-up on scroll */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

.scroll-reveal.scroll-revealed {
  opacity: 1;
  transform: translateY(0);
}

@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%);
  }
}
/* Shared motion for interactive elements */
@media (prefers-reduced-motion: no-preference) {
  .feature-box,
  .pricing-card,
  .showcase-card .card-inner,
  .testimonial-card-3d .card-inner,
  .btn-liquid,
  .btn-glass,
  .ultra-cta,
  .nav-link {
    transition: transform var(--duration-normal) var(--ease-out-smooth), opacity var(--duration-normal) var(--ease-out-smooth), border-color var(--duration-normal) ease, box-shadow var(--duration-normal) var(--ease-out-smooth);
  }
}
/* ===============================
   SCROLLBAR – MATCHES THEME
================================ */
/* Dark theme (default) */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 211, 252, 0.4) rgba(255, 255, 255, 0.06);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
  background: rgba(125, 211, 252, 0.35);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 211, 252, 0.5);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0.04);
}

/* ==============================================================
   GLOBAL RESPONSIVE
   Prevent overflow, touch-friendly, consistent breakpoints
   ============================================================== */
/* Premium: smooth scroll, touch-friendly */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

/* Smoother touch on interactive elements */
a, button, [role=button] {
  touch-action: manipulation;
}

/* Content images and media */
.site-footer img,
.legal-content img,
.contact-hub img,
.portfolio-card img,
.blog-card img {
  max-width: 100%;
  height: auto;
}

/* Container padding on small screens (backup for Bootstrap) */
@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-ultra-inner.container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* Announcement bar – prevent overflow on very small screens */
@media (max-width: 380px) {
  .announcement-marquee .marquee-item {
    white-space: normal;
    word-break: break-word;
  }
}
/* ============================================
   LOTTIE-STYLE ANIMATIONS
   Smooth, elastic keyframes for icons & UI
   ============================================ */
/* Soft float – Lottie-style bounce (smooth ease-in-out) */
@keyframes lottie-float {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) scale(1.03) rotate(3deg);
  }
}
/* Gentle pulse (opacity) */
@keyframes lottie-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
/* Elastic scale in */
@keyframes lottie-pop-in {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  70% {
    transform: scale(1.03);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Apply to hero float nodes – Lottie-style motion */
.float-node {
  animation: lottie-float 4s ease-in-out infinite;
}

.float-node.n-2 {
  animation-delay: -1.5s;
}

/* Optional: apply to icons or CTAs for subtle Lottie feel */
.lottie-float {
  animation: lottie-float 3.5s ease-in-out infinite;
}

.lottie-pulse {
  animation: lottie-pulse 2s ease-in-out infinite;
}

/* ============================================
   LOTTIE-STYLE PRELOADER
   Unique, modern, beautiful – elastic bounce
   ============================================ */
/* elastic overshoot */
html.preloading,
html.preloading body {
  overflow: hidden !important;
  height: 100% !important;
  background: var(--preloader-bg, #030610) !important;
}

html.preloading #main-wrapper {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#main-wrapper {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader-pro {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--preloader-bg, #030610);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s step-end;
}

.preloader-pro--exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-pro--exit .preloader-pro-card {
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

/* Background */
.preloader-pro-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.preloader-pro-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(125, 211, 252, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 211, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 65%);
}

/* Card – flat, no border or glass */
.preloader-pro-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 48px 56px 44px;
  min-width: 280px;
  max-width: 90vw;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== LOTTIE DOTS – elastic staggered bounce ========== */
.preloader-lottie-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.preloader-lottie-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.4), 0 0 40px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: lottie-dot-bounce 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite both;
}

.preloader-lottie-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.preloader-lottie-dots .dot:nth-child(2) {
  animation-delay: 0.16s;
}

.preloader-lottie-dots .dot:nth-child(3) {
  animation-delay: 0.32s;
}

.preloader-lottie-dots .dot:nth-child(4) {
  animation-delay: 0.48s;
}

.preloader-lottie-dots .dot:nth-child(5) {
  animation-delay: 0.64s;
}

@keyframes lottie-dot-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.25);
    opacity: 1;
  }
}
/* Logo */
.preloader-pro-logo {
  text-align: center;
}

.preloader-pro-logo-text {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #7dd3fc, #a78bfa, #c084fc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lottie-shine 3s ease-in-out infinite;
}

@keyframes lottie-shine {
  0%, 100% {
    background-position: 0% center;
    filter: brightness(1);
  }
  50% {
    background-position: 100% center;
    filter: brightness(1.15);
  }
}
/* Percent – Lottie pop-in feel */
.preloader-pro-percent {
  position: relative;
  font-family: var(--font-main);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
  animation: lottie-pulse-soft 1.5s ease-in-out infinite;
}

@keyframes lottie-pulse-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
/* Progress bar – flowing gradient */
.preloader-pro-bar-wrap {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preloader-pro-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-violet));
  background-size: 200% 100%;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  animation: lottie-bar-glow 2.5s ease-in-out infinite;
}

@keyframes lottie-bar-glow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
/* Status */
.preloader-pro-status {
  margin: 0;
  font-family: var(--font-main);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.preloader-pro-dots {
  display: inline-block;
  min-width: 5ch;
}

/* ==== 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, .pricing-page .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.1), rgba(255, 255, 255, 0.06));
  border: var(--glass-border);
  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: 0.875rem;
  margin-bottom: 30px;
}

/* ===== ANNOUNCEMENT BAR (MARQUEE) ===== */
.announcement-bar {
  background: linear-gradient(90deg, rgba(6, 10, 18, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.announcement-bar-inner {
  display: flex;
  width: max-content;
  animation: announcementMarquee 35s linear infinite;
}

.announcement-marquee {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 10px 2rem;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.marquee-item i {
  color: var(--accent-cyan);
  font-size: 1rem;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0.6;
}

@keyframes announcementMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header-ultra {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 10, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}
.header-ultra.scrolled {
  background: rgba(6, 10, 18, 0.98);
  padding: 5px 0;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.header-ultra-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.ultra-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  font-size: 32px;
  z-index: 10;
  flex-shrink: 0;
}
.ultra-logo .logo-symbol {
  position: relative;
  color: var(--accent-cyan);
  font-size: 28px;
  display: flex;
  align-items: center;
}
.ultra-logo .logo-symbol .symbol-glow {
  position: absolute;
  inset: 0;
  background: var(--accent-cyan);
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
}
.ultra-logo .logo-text span {
  color: var(--accent-cyan);
}

/* --- 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);
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  max-width: min(100%, 720px);
}
@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: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  white-space: nowrap;
}
.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);
}
.ultra-nav .nav-link.nav-link-cta {
  color: var(--accent-cyan);
  font-weight: 700;
}
.ultra-nav .nav-link.nav-link-cta:hover {
  color: #fff;
}

/* --- SIMPLE DROPDOWN (Resources, Company) --- */
.has-dropdown {
  position: relative;
}
.has-dropdown .nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 180px;
  padding: 12px 0;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  margin-top: 4px;
}
.has-dropdown .nav-dropdown-panel a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.has-dropdown .nav-dropdown-panel a:hover {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
}
.has-dropdown.active .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- 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-compact {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.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: 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;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.ultra-cta {
  position: relative;
  padding: 12px 30px;
  border-radius: 12px;
  background: #fff;
  color: var(--clr-on-accent) !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;
  flex-shrink: 0;
  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);
  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 {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-dropdown-content a {
  padding: 12px;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
}
.m-dropdown-content a:hover {
  color: #fff;
}
.m-dropdown-content.open {
  max-height: 400px;
  padding: 10px 0;
}

.ultra-menu-footer {
  margin-top: 50px;
}
.ultra-menu-footer .ultra-menu-theme-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ultra-menu-footer .ultra-menu-theme-label {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.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);
}

/* Minimal footer (e.g. coming-soon, auth pages) */
.site-footer-minimal {
  padding: 32px 0;
}
.site-footer-minimal .footer-top-grid {
  display: none;
}
.site-footer-minimal .footer-bottom-centered {
  margin-bottom: 0;
}
.site-footer-minimal .footer-copyright {
  font-size: 0.9rem;
}
.site-footer-minimal .footer-copyright a {
  color: var(--text-muted);
  text-decoration: none;
}
.site-footer-minimal .footer-copyright a:hover {
  color: var(--accent-cyan);
}

.site-footer {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0 60px;
  overflow: hidden;
  font-family: var(--font-main);
}
.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 {
  /* Main Structure */
}
.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;
  }
  .site-footer .footer-top-grid .brand-info,
  .site-footer .footer-top-grid .connectivity-section {
    grid-column: span 1;
  }
  .site-footer .footer-top-grid {
    gap: 50px;
  }
}
.site-footer .brand-info .footer-logo {
  margin-bottom: 24px;
}
.site-footer .brand-info .footer-logo .section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0;
}
.site-footer .brand-info .footer-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
  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: 0.875rem;
}
.site-footer .brand-info .social-connectivity .social-pill i {
  font-size: 1.125rem;
  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: 0.8125rem;
  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: 0.9375rem;
  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: 0.875rem;
  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: 0.875rem;
  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: 0.75rem;
  margin-left: -12px;
  color: var(--accent-cyan);
}
.site-footer .connectivity-section .stay-connected-card .community-avatars .community-count {
  font-size: 0.75rem;
  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: 0.9375rem;
  font-weight: 500;
  opacity: 0.8;
}
.site-footer .footer-bottom-centered .footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer .footer-bottom-centered .footer-legal-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  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%;
}
@media (max-width: 576px) {
  .site-footer .footer-bottom-centered .footer-legal-nav {
    gap: 10px 16px;
  }
  .site-footer .footer-bottom-centered .footer-legal-nav .separator {
    display: none;
  }
}

/* ==== 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: var(--accent-cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent-cyan);
}

/* --- HERO WRAPPER --- */
.hero-pro {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  padding: clamp(60px, 8vw, 80px) 0 clamp(80px, 12vw, 120px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content-center {
  text-align: center;
}

.hero-para {
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.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: var(--text-hero);
  font-weight: var(--font-black);
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.hero-pro .section-para,
.section-para {
  color: var(--text-muted);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  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: var(--text-main);
  transform: translateY(-5px);
}
.btn-liquid:hover::before {
  left: 0;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  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;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}
.marquee-trust-section .marquee-track {
  display: flex;
  gap: 60px;
  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.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  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: lottie-float 6s ease-in-out infinite;
}
.float-node.n-2 {
  bottom: 40px;
  left: -35px;
  animation: lottie-float 8s ease-in-out infinite;
  animation-delay: -1.5s;
}

/* --- ANIMATIONS --- */
@keyframes marqueeContinuous {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero-pro {
    text-align: center;
    padding: clamp(100px, 14vw, 140px) 0 clamp(60px, 8vw, 80px);
  }
  .section-para {
    margin-inline: auto;
  }
  .float-node,
  .cursor-spotlight {
    display: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition-duration: 0.01ms;
  }
}

.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;
}
.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 HEADER --- */
}
.features-polished .section-head {
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  text-align: center;
}
.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;
  margin-left: auto;
  margin-right: auto;
}
.features-polished {
  /* ---FEATURE CARD--- */
}
.features-polished .feature-box {
  position: relative;
  padding: clamp(32px, 4vw, 45px) clamp(24px, 3vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--duration-slow) var(--ease-out-smooth), opacity var(--duration-normal) var(--ease-out-smooth), border-color var(--duration-normal) ease, box-shadow var(--duration-normal) var(--ease-out-smooth);
  isolation: isolate;
  backface-visibility: hidden;
}
.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 var(--duration-normal) var(--ease-out-smooth);
  z-index: 0;
  pointer-events: none;
}
.features-polished .feature-box:hover {
  transform: translateY(-8px);
  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: clamp(56px, 8vw, 68px);
  height: clamp(56px, 8vw, 68px);
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  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;
  margin-left: auto;
  margin-right: 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 {
  /* ---GLASS SHINING EFFECT--- */
}
.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;
}

.stats-strip {
  padding: clamp(50px, 6vw, 70px) 0;
  background: var(--bg-feature);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.stats-strip .container {
  position: relative;
  z-index: 1;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  text-align: center;
}
@media (max-width: 992px) {
  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .stats-strip-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.stat-item {
  padding: 0 16px;
}

.stat-item-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-cyan), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.25);
}

.stat-item-value {
  font-family: var(--font-main);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-item-label {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.how-it-works {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  /* Abstract curved background – soft blobs + wave curve */
}
.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 10% 20%, rgba(125, 211, 252, 0.12) 0%, transparent 55%), radial-gradient(ellipse 70% 60% at 90% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 50% 50%, rgba(125, 211, 252, 0.06) 0%, transparent 45%), linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark) 100%);
}
.how-it-works::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 35%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 100% at 50% 100%, rgba(125, 211, 252, 0.08) 0%, transparent 60%);
  border-radius: 50% 50% 0 0/30% 30% 0 0;
}
.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}

.how-it-works .section-title {
  margin-bottom: 16px;
}

.how-it-works .section-para {
  margin-bottom: 0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
  margin-top: clamp(40px, 6vw, 56px);
}
@media (max-width: 992px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.how-step {
  position: relative;
  padding: clamp(32px, 4vw, 44px) clamp(28px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out-smooth), background 0.35s ease;
}

.how-step:hover {
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(125, 211, 252, 0.08);
  transform: translateY(-6px);
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-cyan), var(--accent-purple));
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(125, 211, 252, 0.25);
}

.how-step h4 {
  font-family: var(--font-main);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.how-step p {
  font-family: var(--font-main);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Connector line + arrow between steps (desktop) */
@media (min-width: 992px) {
  .how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 16px);
    width: calc(100% - 32px);
    height: 2px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.5), rgba(167, 139, 250, 0.35));
    transform: translateY(-50%);
    pointer-events: none;
  }
  .how-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(125, 211, 252, 0.6);
    border-bottom: 2px solid rgba(125, 211, 252, 0.6);
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
    z-index: 2;
  }
}
.why-choose {
  padding: clamp(88px, 12vw, 140px) 0;
  background: var(--bg-feature);
  position: relative;
  overflow: hidden;
  /* Abstract background – distinct from other sections */
}
.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 85% 15%, rgba(167, 139, 250, 0.14) 0%, transparent 50%), radial-gradient(ellipse 70% 80% at 5% 70%, rgba(125, 211, 252, 0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 50% 100%, rgba(192, 132, 252, 0.08) 0%, transparent 45%), linear-gradient(165deg, var(--bg-feature) 0%, var(--bg-dark) 50%, var(--bg-feature) 100%);
}
.why-choose::after {
  content: "";
  position: absolute;
  top: -15%;
  left: -5%;
  width: 50%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 30% 40%, rgba(125, 211, 252, 0.06) 0%, transparent 55%);
  border-radius: 50% 40% 60% 50%/50% 60% 40% 50%;
}
.why-choose .container {
  position: relative;
  z-index: 1;
}

.why-choose .section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(44px, 6vw, 64px);
}

.why-choose .section-title {
  margin-bottom: 16px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  margin-top: clamp(44px, 6vw, 60px);
  align-items: stretch;
}
@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-card {
  position: relative;
  padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-out-smooth), box-shadow 0.35s ease;
  overflow: hidden;
}
.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.why-choose-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(125, 211, 252, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(125, 211, 252, 0.06);
}
.why-choose-card:hover::before {
  opacity: 1;
}
.why-choose-card:hover .icon-wrap {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.25);
}

.why-choose-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.22), rgba(167, 139, 250, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 22px;
  transition: transform 0.35s var(--ease-out-smooth), box-shadow 0.35s ease;
}

/* Subtle color accent per card */
.why-choose-card:nth-child(1) .icon-wrap {
  color: var(--accent-cyan);
}

.why-choose-card:nth-child(2) .icon-wrap {
  color: #a78bfa;
}

.why-choose-card:nth-child(3) .icon-wrap {
  color: #c084fc;
}

.why-choose-card h4 {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-choose-card p {
  font-family: var(--font-main);
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.logic-pipeline-section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}
.logic-pipeline-section .pipeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: clamp(50px, 8vw, 100px) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 8vw, 100px);
}
.logic-pipeline-section .pipeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  z-index: 1;
}
.logic-pipeline-section .pipeline-spine .spine-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(125, 211, 252, 0.08), rgba(167, 139, 250, 0.12), rgba(125, 211, 252, 0.08));
  border-radius: 4px;
  opacity: 1;
}
.logic-pipeline-section .pipeline-spine .spine-active-glow {
  --spine-progress: 0;
  --active-step: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  z-index: 2;
  border-radius: 4px;
  pointer-events: none;
  overflow: hidden;
  /* Synchronized gradient fill based on active step (arrow position) */
  background: linear-gradient(to bottom, #7dd3fc 0%, #67c8fa calc(var(--active-step, 0) * 25%), #93b8fc calc(var(--active-step, 0) * 50%), #a78bfa calc(var(--active-step, 0) * 75%), #c084fc calc(var(--active-step, 0) * 100%), transparent calc(var(--active-step, 0) * 100% + 5%));
  /* Enhanced glow that's more visible */
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.6), 0 0 24px rgba(125, 211, 252, 0.4), 0 0 36px rgba(167, 139, 250, 0.3);
}
.logic-pipeline-section .pipeline-spine .spine-active-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Fill height based on active step + small progress within step */
  height: calc((var(--active-step, 0) * 25%) + (var(--spine-progress, 0) * 25%));
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 40%, transparent 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .logic-pipeline-section .pipeline-spine .spine-active-glow::before {
    opacity: 0.6;
  }
}
.logic-pipeline-section .pipeline-spine .spine-active-glow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: linear-gradient(145deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 24px var(--accent-cyan), 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.logic-pipeline-section .pipeline-spine .spine-node {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--bg-dark);
  border: 2px solid rgba(125, 211, 252, 0.35);
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.2);
  z-index: 2;
}
.logic-pipeline-section .pipeline-spine .spine-node-1 {
  top: 12.5%;
}
.logic-pipeline-section .pipeline-spine .spine-node-2 {
  top: 37.5%;
}
.logic-pipeline-section .pipeline-spine .spine-node-3 {
  top: 62.5%;
}
.logic-pipeline-section .pipeline-spine .spine-node-4 {
  top: 87.5%;
}
.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);
}
.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;
}
.logic-pipeline-section .pipeline-step .step-card {
  width: 44%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
}
.logic-pipeline-section .pipeline-step .step-card .step-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  opacity: 0.9;
}
.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;
}
.logic-pipeline-section .pipeline-step.step-right .step-card .step-num {
  left: auto;
  right: 24px;
}
.logic-pipeline-section .pipeline-step .pipeline-arrow {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%) translateY(50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.2), rgba(167, 139, 250, 0.2));
  border: 1px solid rgba(125, 211, 252, 0.35);
  display: grid;
  place-items: center;
  z-index: 3;
  animation: pipelineArrowPulse 2s ease-in-out infinite;
}
.logic-pipeline-section .pipeline-step .pipeline-arrow i {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

@keyframes pipelineArrowPulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-50%) translateY(50%) scale(1.08);
  }
}
@keyframes spineGradientFlow {
  0%, 100% { background-position: 0 0; opacity: 0.6; }
  50% { background-position: 0 50%; opacity: 1; }
}
#spineGlow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  height: 100%;
  width: 4px;
  border-radius: 20px;
  z-index: 2;
}

@media (max-width: 992px) {
  .logic-pipeline-section .pipeline-spine {
    left: 20px;
    transform: none;
    width: 3px;
  }
  .logic-pipeline-section .pipeline-spine .spine-node {
    width: 12px;
    height: 12px;
  }
  .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-num {
    top: 20px;
    left: 20px;
    right: auto;
  }
  .logic-pipeline-section .pipeline-step .step-card .step-icon {
    margin-left: 0;
  }
  .logic-pipeline-section .pipeline-step .pipeline-arrow {
    left: 20px;
    transform: translateX(-50%) translateY(50%);
    width: 36px;
    height: 36px;
  }
  .logic-pipeline-section .pipeline-step .pipeline-arrow i {
    font-size: 1.25rem;
  }
}
.integrations-marquee {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.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 {
  /* --- SECTION HEADER --- */
}
.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 {
  /* --- RUNNING TRACK --- */
}
.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: 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 img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.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 img {
  transform: scale(1.2) rotate(5deg);
}
.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 --- */
}
.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 & 3D LAYOUT --- */
}
.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: border-color var(--duration-normal) var(--ease-out-smooth), box-shadow var(--duration-normal) var(--ease-out-smooth);
  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);
  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;
}
.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 --- */
}
.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);
  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: var(--clr-on-accent);
}
.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 var(--duration-slow) var(--ease-out-bounce);
  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 {
  /* --- PRICING CARDS --- */
}
.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);
  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;
}

/* Standalone pricing page – reuse card styles */
.pricing-page .pricing-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  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-page .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-page .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-page .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-page .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-page .pricing-card .price-wrap {
  margin-bottom: 35px;
}
.pricing-page .pricing-card .price-wrap h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
}
.pricing-page .pricing-card .price-wrap span {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 8px;
}
.pricing-page .pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1;
}
.pricing-page .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-page .pricing-card .feature-list li i {
  color: var(--accent-cyan);
  font-size: 18px;
}
.pricing-page .pricing-card .feature-list li.disabled {
  opacity: 0.3;
}

.pricing-page .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-page .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-page .btn-nexa-action:hover {
  color: #000;
  border-color: transparent;
}
.pricing-page .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 {
  padding: clamp(50px, 8vw, 120px) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.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 --- */
}
.faq-pro-advanced .section-header {
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 50px);
  text-align: center;
}
.faq-pro-advanced .section-header .ui-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(14px, 2vw, 22px);
  padding: clamp(7px, 1vw, 10px) clamp(12px, 2vw, 18px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-pro-advanced .section-header .ui-badge i {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--accent-cyan);
}
.faq-pro-advanced .section-header .ui-badge span {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 0.6px;
  opacity: 0.95;
}
.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: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.92;
}
.faq-pro-advanced {
  /* --- THE ACCORDION CORE --- */
}
.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.25s ease, border-color 0.25s ease;
  overflow: hidden;
  contain: layout style;
}
.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-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 {
  /* --- TOGGLE BUTTON --- */
}
.faq-pro-advanced .faq-toggle-pro {
  width: 100%;
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2.5vw, 25px);
  display: flex;
  align-items: center;
  gap: 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.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: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.3;
}
.faq-pro-advanced .faq-toggle-pro .faq-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  transform-origin: center;
}
.faq-pro-advanced .faq-grid-wrapper {
  max-height: 0;
  overflow: hidden;
  contain: layout;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: max-height;
}
.faq-pro-advanced .faq-content-pro {
  padding: 0 clamp(18px, 2.5vw, 25px) 0 84px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
}
.faq-pro-advanced .faq-content-inner {
  padding-bottom: 24px;
}
.faq-pro-advanced .faq-content-inner p {
  margin: 0;
}
.faq-pro-advanced .faq-support-pro {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(22px, 3vw, 35px);
  text-align: center;
  border-radius: 24px;
  position: sticky;
  top: 100px;
  transition: 0.45s ease;
}
.faq-pro-advanced .faq-support-pro:hover {
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(255, 255, 255, 0.04);
}
.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;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}
.faq-pro-advanced .faq-support-pro p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-pro-advanced .faq-support-pro .support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.faq-pro-advanced .faq-support-pro .support-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.faq-pro-advanced .faq-support-pro .support-list li i {
  color: var(--accent-cyan);
}
.faq-pro-advanced {
  /* --- CTA BUTTON --- */
}
.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;
}
.faq-pro-advanced {
  /* --- RESPONSIVE FIXES --- */
}
@media (max-width: 992px) {
  .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 {
    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;
  backdrop-filter: blur(12px);
  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  /* Halo Aura - Inside the node */
}
.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 {
  /* Icon Capsule - Synced with global accent colors */
}
.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 {
  /* Typography */
}
.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 Cinematic Lift */
}
.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: 992px) {
  .journey-flow-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .journey-curve-path {
    display: none;
  }
}
@media (max-width: 576px) {
  .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;
}
.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 --- */
}
.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 {
  /* --- 2) SHOWCASE CARD --- */
}
.showcase-pro .showcaseSwiper {
  padding: 40px 15px 100px !important;
  overflow: visible !important;
}
.showcase-pro .showcase-card {
  perspective: 2000px;
}
.showcase-pro .showcase-card .card-inner {
  --mouse-x: 50%;
  --mouse-y: 50%;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.08) 0%, transparent 55%), linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  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;
  object-fit: cover;
  display: block;
}
.showcase-pro {
  /* Card*/
}
.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 --- */
}
.cta-velocity-master .cta-bg-engine {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.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 {
  /* Vertical Velocity Lines – visible, connected to section */
}
.cta-velocity-master .cta-bg-engine .velocity-line {
  position: absolute;
  width: 2px;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, rgba(125, 211, 252, 0.5) 20%, var(--accent-cyan) 50%, rgba(167, 139, 250, 0.6) 80%, transparent 100%);
  opacity: 0.75;
  animation: lineRun 2.5s infinite linear;
  border-radius: 2px;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-1 {
  left: 15%;
  animation-duration: 1.8s;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-2 {
  left: 45%;
  animation-duration: 2.8s;
  animation-delay: 0.4s;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-3 {
  left: 75%;
  animation-duration: 2s;
  animation-delay: 1s;
}
.cta-velocity-master .cta-bg-engine .velocity-line.vl-4 {
  left: 90%;
  animation-duration: 2.4s;
  animation-delay: 0.2s;
}
.cta-velocity-master {
  /* --- GLASS PANEL --- */
}
.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.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(24px, 4vw, 40px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(125, 211, 252, 0.06);
}
.cta-velocity-master .cta-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: var(--font-black);
  color: var(--text-main);
  line-height: 1.1;
  margin: 25px 0;
  letter-spacing: -1.5px;
}
.cta-velocity-master .cta-subtitle {
  font-family: var(--font-main);
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 650px;
  margin: 0 auto 45px;
  line-height: var(--leading-relaxed);
}
.cta-velocity-master {
  /* --- BUTTONS --- */
}
.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: var(--text-main);
  color: var(--clr-on-accent);
  font-family: var(--font-main);
  font-weight: var(--font-black);
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out-bounce), color var(--duration-normal) ease, box-shadow var(--duration-normal) var(--ease-out-smooth);
  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: var(--text-main);
  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 {
  /* ---DOTS --- */
}
.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%;
  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 */
}
.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 {
  /* ✅ FULL IMAGE CARD */
}
.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);
}
.container.py-10 .company-full-image img {
  width: 100%;
  height: clamp(230px, 40vw, 420px);
  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 {
  /* ✅ LIGHT overlay only for text visibility (NOT dark) */
}
.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 {
  /* ✅ Overlay text ALWAYS visible now */
}
.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);
}
.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 .image-overlay-text span {
  /* ✅ animation smoothness */
  background-size: 200% 200%;
  will-change: background-position;
}
.container.py-10 .company-full-image {
  /* ✅ Hover effects like Capabilities section */
}
.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 {
  /* ✅ VALUE CARDS */
}
.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;
}
.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 same like capabilities */
}
.container.py-10 .value-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}
.container.py-10 {
  /* ✅ Mobile Fix */
}
@media (max-width: 576px) {
  .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: 992px) {
  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: 576px) {
  .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);
  position: relative;
  z-index: 2;
}
.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 --- */
}
.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 {
  /* --- DROPDOWN VISIBILITY FIX --- */
}
.contact-form-card .form-control option {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 12px;
}
.contact-form-card {
  /* --- DROPDOWN FIX --- */
}
.contact-form-card select.form-control {
  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 {
  /* --- AUTO-SIZABLE COMMENT BOX --- */
}
.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);
}

.services-page {
  background: var(--bg-dark);
  padding-bottom: clamp(80px, 12vw, 140px);
  overflow: hidden;
}

.services-hero {
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 80px);
  text-align: center;
}
.services-hero .services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(125, 211, 252, 0.1) 0%, transparent 55%), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(167, 139, 250, 0.08) 0%, transparent 50%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(125, 211, 252, 0.06) 0%, transparent 45%);
}
.services-hero .container {
  z-index: 1;
}
.services-hero .section-para {
  max-width: 560px;
}

.services-grid-section {
  padding: clamp(40px, 6vw, 60px) 0;
}

.service-card {
  position: relative;
  padding: var(--card-padding);
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out-smooth), box-shadow 0.35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  border-color: rgba(125, 211, 252, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover .service-card-icon {
  transform: scale(1.05);
}
.service-card .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.2), rgba(167, 139, 250, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}
.service-card .service-card-icon i {
  font-size: 1.6rem;
  color: var(--accent-cyan);
}
.service-card h3 {
  font-family: var(--font-main);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-card .service-link {
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.service-card .service-link:hover {
  gap: 10px;
}

.services-cta {
  padding: clamp(60px, 10vw, 100px) 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(125, 211, 252, 0.06) 0%, transparent 60%);
  border-radius: 32px;
  margin: 0 1rem;
}

.blog-page {
  background: var(--bg-dark);
  padding-bottom: clamp(80px, 12vw, 120px);
  overflow: hidden;
}

.blog-hero {
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0 clamp(50px, 8vw, 70px);
  text-align: center;
}
.blog-hero .blog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 80% 20%, rgba(125, 211, 252, 0.08) 0%, transparent 50%);
}
.blog-hero .container {
  z-index: 1;
}
.blog-hero .section-para {
  max-width: 520px;
}

.blog-list-section {
  padding: clamp(40px, 6vw, 60px) 0;
}

.blog-card {
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out-smooth), box-shadow 0.35s ease;
}
.blog-card:hover {
  border-color: rgba(125, 211, 252, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}
.blog-card:hover .blog-card-link {
  gap: 8px;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.08), rgba(167, 139, 250, 0.08));
}

.blog-card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.5;
  font-size: 2.5rem;
}

.blog-card-date {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.blog-card-body {
  padding: var(--card-padding);
}

.blog-card-body h3 {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-card-link {
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.signin-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  overflow: hidden;
}

.signin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .signin-split {
    grid-template-columns: 1fr;
  }
}

.signin-brand {
  position: relative;
  padding: clamp(60px, 10vw, 100px);
  display: flex;
  align-items: center;
  background: var(--bg-feature);
}
@media (max-width: 992px) {
  .signin-brand {
    padding: 48px 24px;
    min-height: auto;
  }
}

.signin-brand-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(125, 211, 252, 0.12) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 80% 60%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
}

.signin-brand-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.signin-logo {
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 48px;
}

.signin-quote {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.signin-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-body);
  font-size: 0.95rem;
}
.signin-features i {
  color: var(--accent-cyan);
  margin-right: 8px;
}

.signin-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px);
  background: var(--bg-dark);
}
@media (max-width: 992px) {
  .signin-form-wrap {
    padding: 48px 24px;
  }
}

.signin-form-inner {
  width: 100%;
  max-width: 400px;
}

.signin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.signin-tab {
  padding: 10px 20px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.signin-tab.active {
  color: var(--text-main);
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(125, 211, 252, 0.08);
}
.signin-tab:hover:not(.active) {
  color: var(--text-body);
  border-color: rgba(255, 255, 255, 0.15);
}

.signin-panel {
  display: none;
}
.signin-panel.active {
  display: block;
  animation: signinFadeIn 0.35s ease;
}

@keyframes signinFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.signin-panel h2 {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.signin-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.signin-form .form-group {
  margin-bottom: 20px;
}
.signin-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}
.signin-form .form-group input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}
.signin-form .form-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}
.signin-form .form-group input:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.signin-forgot {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  text-decoration: none;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}
.signin-forgot:hover {
  opacity: 0.9;
}

.signin-submit {
  width: 100%;
  padding: 16px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.signin-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.35);
}

/* =====================================================
   FAQ PAGE – Premium, smooth, aligned with home
   Uses max-height for JS-driven accordion
===================================================== */
.faq-page-body {
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

.faq-pro-advanced {
  padding: clamp(60px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.faq-pro-advanced .faq-bg-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(125, 211, 252, 0.08), transparent 65%);
  pointer-events: none;
}
.faq-pro-advanced .section-header {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.faq-accordion-pro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  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);
  overflow: hidden;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  contain: layout style;
}
.faq-item-pro:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.faq-item-pro.active {
  background: rgba(125, 211, 252, 0.06);
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(125, 211, 252, 0.08);
}
.faq-item-pro.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}
.faq-item-pro.active .faq-icon {
  background: rgba(125, 211, 252, 0.15);
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.2);
}

.faq-toggle-pro {
  width: 100%;
  padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-toggle-pro .faq-icon {
  width: 52px;
  height: 52px;
  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: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-toggle-pro .faq-icon i {
  font-size: 22px;
  color: var(--accent-cyan);
}
.faq-toggle-pro span {
  flex: 1;
  color: var(--text-main);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.35;
  padding-right: 12px;
}
.faq-toggle-pro .faq-arrow {
  font-size: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  transform-origin: center;
}

/* Max-height accordion – JS-driven, smooth */
.faq-grid-wrapper {
  max-height: 0;
  overflow: hidden;
  contain: layout;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: max-height;
}

.faq-content-pro {
  padding: 0 clamp(22px, 3vw, 32px) 0 84px;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.faq-content-inner {
  padding-bottom: 28px;
}
.faq-content-inner p {
  margin: 0;
}

/* Support card */
.faq-support-pro {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  text-align: center;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-support-pro:hover {
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.faq-support-pro .support-icon {
  width: 68px;
  height: 68px;
  background: rgba(125, 211, 252, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: var(--accent-cyan);
  border: 1px solid rgba(125, 211, 252, 0.2);
}
.faq-support-pro h4 {
  color: var(--text-main);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
}
.faq-support-pro p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 0.98rem;
  line-height: 1.65;
}
.faq-support-pro .support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: center;
}
.faq-support-pro .support-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.faq-support-pro .support-list li i {
  color: var(--accent-cyan);
}

.btn-faq-cta-slide {
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 800;
  display: inline-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.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-faq-cta-slide:hover {
  background: var(--accent-cyan);
  color: #000;
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(125, 211, 252, 0.3);
}

@media (max-width: 992px) {
  .faq-support-pro {
    position: static;
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .faq-toggle-pro {
    padding: 18px 20px;
    gap: 16px;
  }
  .faq-toggle-pro .faq-icon {
    width: 44px;
    height: 44px;
  }
  .faq-toggle-pro .faq-icon i {
    font-size: 20px;
  }
  .faq-toggle-pro span {
    font-size: 1.05rem;
  }
  .faq-content-pro {
    padding: 0 20px 20px 72px;
  }
  .faq-content-inner {
    padding-bottom: 22px;
  }
}
/* =============================================================
   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;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

.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;
  }
}
.pricing-page {
  background: var(--bg-dark);
  padding-bottom: clamp(80px, 12vw, 140px);
  overflow: hidden;
}

.pricing-page-hero {
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 80px);
  text-align: center;
}
.pricing-page-hero .pricing-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(125, 211, 252, 0.12) 0%, transparent 55%), radial-gradient(ellipse 70% 50% at 20% 70%, rgba(167, 139, 250, 0.08) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 80% 80%, rgba(125, 211, 252, 0.06) 0%, transparent 45%);
}
.pricing-page-hero .container {
  position: relative;
  z-index: 1;
}
.pricing-page-hero .section-para {
  max-width: 560px;
}
.pricing-page-hero .billing-toggle-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pricing-page-hero .billing-toggle-wrapper .toggle-glass-pill {
  background: var(--glass-bg);
  border: var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 100px;
  display: flex;
  width: 280px;
  position: relative;
}
.pricing-page-hero .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-page-hero .billing-toggle-wrapper .toggle-glass-pill .tgl-btn.active {
  color: var(--clr-on-accent);
}
.pricing-page-hero .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.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  left: 6px;
}
.pricing-page-hero .billing-toggle-wrapper .discount-tag {
  position: absolute;
  top: -28px;
  right: -8px;
  background: linear-gradient(145deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-page-cards {
  padding: clamp(40px, 6vw, 80px) 0;
}

.pricing-page-card {
  height: 100%;
}

.pricing-page-cta {
  padding: clamp(60px, 10vw, 100px) 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(125, 211, 252, 0.06) 0%, transparent 60%);
}

/* Responsive */
@media (max-width: 576px) {
  .pricing-page-hero .billing-toggle-wrapper .toggle-glass-pill {
    width: 100%;
    max-width: 260px;
  }
  .pricing-page-hero .billing-toggle-wrapper .discount-tag {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.portfolio-page {
  background: var(--bg-dark);
  padding-bottom: clamp(80px, 12vw, 140px);
  overflow: hidden;
}

.portfolio-hero {
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 80px);
  text-align: center;
}
.portfolio-hero .portfolio-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%), radial-gradient(ellipse 70% 60% at 80% 20%, rgba(125, 211, 252, 0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 50% at 50% 90%, rgba(192, 132, 252, 0.06) 0%, transparent 45%);
}
.portfolio-hero .container {
  position: relative;
  z-index: 1;
}
.portfolio-hero .section-para {
  max-width: 560px;
}

.portfolio-grid-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.portfolio-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out-smooth), box-shadow 0.35s ease;
}
.portfolio-card:hover {
  border-color: rgba(125, 211, 252, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}
.portfolio-card:hover .portfolio-card-placeholder {
  transform: scale(1.08);
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.2), rgba(167, 139, 250, 0.18));
}
.portfolio-card:hover .portfolio-link {
  gap: 10px;
  color: var(--accent-cyan);
}

.portfolio-card-visual {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(125, 211, 252, 0.08), rgba(167, 139, 250, 0.08));
  transition: transform 0.4s ease, background 0.4s ease;
}
.portfolio-card-placeholder i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.15);
}

.portfolio-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.portfolio-card-body {
  padding: clamp(24px, 3vw, 32px);
}

.portfolio-card-body h3 {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.portfolio-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.portfolio-link {
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.portfolio-cta {
  padding: clamp(60px, 10vw, 100px) 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(125, 211, 252, 0.06) 0%, transparent 60%);
}

/* Responsive */
@media (max-width: 576px) {
  .portfolio-grid-section .row {
    --bs-gutter-x: 0.75rem;
  }
  .portfolio-card-body {
    padding: 20px 16px;
  }
}
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(125, 211, 252, 0.12) 0%, transparent 50%), radial-gradient(ellipse 60% 50% at 80% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(125, 211, 252, 0.06) 0%, transparent 45%);
}

.coming-soon-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}

.coming-soon-logo {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 3rem;
}

.coming-soon-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.coming-soon-para {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-coming-outline {
  padding: 14px 28px;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.btn-coming-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(125, 211, 252, 0.08);
  color: var(--text-main);
}

/* Legal pages – Terms, Privacy */
.legal-page-body {
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

.legal-page {
  position: relative;
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
  min-height: 60vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content .section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.legal-content .legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.legal-content ul {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.legal-content a {
  color: var(--accent-cyan);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .legal-content {
    padding: 0 4px;
  }
}

/*# sourceMappingURL=style.css.map */
