.elementor-827 .elementor-element.elementor-element-3dfc65c{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-827 .elementor-element.elementor-element-3e4956a > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-827 .elementor-element.elementor-element-6d424b1 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-827{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-6d424b1 *//* ===========================
   Base / Tokens
=========================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --bg: #0b0d12;
  --bg-2: #0e121a;
  --fg: #f5f7fb;
  --muted:#96a0b5;
  --card:#111624;
  --card-2:#0f1420;
  --border:#1c2434;
  --accent:#5b8def;
  --accent-2:#6fd3ff;
  --radius:16px;
  --shadow: 0 10px 40px rgba(0,0,0,.45);
}
html,body{height:100%;}
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(91,141,239,.15), transparent),
              radial-gradient(900px 450px at -10% 20%, rgba(111,211,255,.08), transparent),
              linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

/* Containers */
.container{ width:min(1220px, 100% - 3rem); margin-inline:auto; }

/* ===========================
   Header (true full-width)
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  inset-inline: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 18, 0.85);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
.site-header > .elementor-container,
.site-header > .container,
.site-header .header-row {
  width: min(1220px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
header.site-header,
header.site-header.elementor-sticky--effects {
  position: sticky !important;
  left: 0 !important;
  right: 0 !important;
  max-width: 100vw !important;
  overflow: visible !important;
}

/* Header content */
.brand{ 
  display:flex; 
  align-items:center; 
  gap:.6rem; 
  text-decoration:none; 
  color:inherit; 
}
.brand-icon{
  inline-size: 36px; 
  block-size: 36px; 
  display:grid; 
  place-items:center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: white;
}
.brand-icon svg{ width:20px; height:20px; }
.brand-text{ font-weight:700; letter-spacing:.2px; }

.primary-nav{ display:none; gap:1.5rem; }
.nav-link{
  color: var(--muted); 
  text-decoration:none; 
  font-size:.95rem;
  transition: color .2s ease;
}
.nav-link:hover{ color: var(--fg); }
.header-actions{ display:flex; gap:.75rem; }

/* Hamburger menu toggle - hidden by default */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu - hidden by default */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(11,13,18,0.98) 0%, rgba(14,18,25,0.99) 100%);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 2rem 1rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 10000;
}

.mobile-menu.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent-2);
}

.mobile-menu .btn {
  margin-top: 1rem;
}

/* Buttons */
.btn{
  --padY:.55rem; 
  --padX:1rem;
  display:inline-flex; 
  align-items:center; 
  gap:.5rem;
  padding: var(--padY) var(--padX);
  border-radius: 999px; 
  text-decoration:none; 
  font-weight:600; 
  font-size:.95rem;
  border:1px solid transparent; 
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
}
.btn-lg{ --padY:.8rem; --padX:1.4rem; font-size:1rem; }
.btn-primary{
  color:white; 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 6px 16px rgba(91,141,239,.35);
  background-size: 200% auto;
}
.btn-primary:hover{ 
  transform: translateY(-1px); 
  box-shadow:0 10px 24px rgba(91,141,239,.45); 
}
.btn-outline{
  color: var(--fg); 
  background:transparent; 
  border-color: var(--border);
}
.btn-outline:hover{ 
  background: #111828; 
  border-color:#243147; 
}
.btn-ghost{ color: var(--fg); opacity:.9; }
.btn-ghost:hover{ opacity:1; background:#0d1320; }
.btn-icon{ width:1.05rem; height:1.05rem; }

/* ===========================
   Hero
=========================== */
.hero-section{ 
  position:relative; 
  padding: clamp(6rem, 8vw, 8rem) 0; 
  overflow: clip; 
}
.hero-section {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(91,141,239,.20), transparent 70%),
    linear-gradient(180deg, #0b0d12 0%, #0e121a 100%);
}
.hero-bg{
  position:absolute; 
  inset: -30% -10% auto -10%; 
  height: 70%;
  background:
    radial-gradient(600px 300px at 30% 10%, rgba(91,141,239,.25), transparent 60%),
    radial-gradient(500px 250px at 80% 0%, rgba(111,211,255,.18), transparent 60%);
  filter: blur(20px); 
  pointer-events:none;
}
.hero-grid{ 
  display:grid; 
  gap: clamp(2rem, 4vw, 4rem); 
  align-items:center; 
  grid-template-columns: 1.15fr 1fr; 
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr; } }

.badge{
  display:inline-flex; 
  align-items:center; 
  gap:.5rem;
  padding:.35rem .8rem; 
  border:1px solid #1f2a40; 
  border-radius:999px;
  color:#cfe1ff; 
  background: #0e1a2e;
  box-shadow: inset 0 0 0 1px rgba(91,141,239,.15);
  margin-bottom: 1.25rem;
}
.badge .dot{ 
  width:.5rem; 
  height:.5rem; 
  border-radius:999px; 
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); 
  box-shadow: 0 0 0 6px rgba(91,141,239,.12), 0 0 0 12px rgba(111,211,255,.06); 
  animation: pulse 2.8s ease-in-out infinite; 
}

.display{ 
  font-size: clamp(2.4rem, 4.6vw, 4.2rem); 
  line-height:1.07; 
  letter-spacing:-.02em; 
  margin-bottom: 1rem; 
}
.text-accent{ 
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); 
  -webkit-background-clip:text; 
  background-clip:text; 
  color: transparent; 
}
.lead{ 
  color: var(--muted); 
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); 
  max-width: 46ch; 
}

.hero-cta{ 
  display:flex; 
  flex-wrap:wrap; 
  gap: .9rem; 
  margin-top:1.6rem; 
}

.hero-visual{ 
  position:relative; 
  animation: float 6s ease-in-out infinite; 
}
.demo-window{
  background: linear-gradient(180deg, #111624, #0f1420);
  border:1px solid var(--border);
  border-radius: 18px; 
  box-shadow: var(--shadow);
  padding: 1rem 1rem 1.2rem;
}
.window-bar{ 
  display:flex; 
  align-items:center; 
  gap:.45rem; 
  border-bottom:1px solid #162036; 
  padding:.5rem .5rem .7rem; 
}
.w-dot{ 
  width:.65rem; 
  height:.65rem; 
  border-radius:999px; 
  display:inline-block; 
}
.red{ background:#ef4444; } 
.yellow{ background:#f59e0b; } 
.green{ background:#22c55e; }
.window-title{ 
  margin-left:auto; 
  font-size:.8rem; 
  color:#9fb1d6; 
}

.window-body{ 
  display:flex; 
  flex-direction:column; 
  gap:.9rem; 
  padding:.9rem .6rem 0; 
}
.call-row{
  display:flex; 
  align-items:center; 
  gap:.8rem; 
  padding:.8rem; 
  border:1px solid #17233a; 
  border-radius:14px;
  background:#0e1626;
}
.call-icon{ 
  width:40px; 
  height:40px; 
  border-radius:10px; 
  display:grid; 
  place-items:center; 
  color: var(--accent); 
  background: #0c1a35; 
}
.call-icon svg{ width:18px; height:18px; }
.call-info{ flex:1; }
.call-title{ font-weight:600; font-size:.95rem; }
.call-sub{ color:#9ab0d6; font-size:.82rem; }
.call-status{ color:#22c55e; font-weight:600; font-size:.85rem; }

.stats{ 
  display:grid; 
  grid-template-columns: repeat(3,1fr); 
  gap:.7rem; 
}
.stat{ 
  padding:.9rem; 
  border-radius:12px; 
  border:1px solid #15203a; 
  background:#0c1324; 
  text-align:center; 
}
.stat-value{ font-size:1.4rem; font-weight:800; }
.stat-label{ color:#9ab0d6; font-size:.78rem; }

.hero-glow{ 
  position:absolute; 
  inset:auto -20% -25% -20%; 
  height:260px; 
  filter: blur(40px);
  background: radial-gradient(40% 60% at 50% 50%, rgba(91,141,239,.3), transparent 70%); 
  pointer-events:none; 
}

/* ===========================
   Logos
=========================== */
.logos-section{ 
  padding: 3.2rem 0; 
  border-block: 1px solid var(--border); 
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(91,141,239,.12), transparent 60%),
    linear-gradient(180deg, #0b0e16 0%, #0b0d12 100%);
}
.logos-title{ 
  text-align:center; 
  color: var(--muted); 
  font-size:.95rem; 
  margin-bottom: 1.6rem; 
}
.logos-row{ 
  display:flex; 
  flex-wrap:wrap; 
  gap: clamp(1.2rem, 4vw, 2.6rem); 
  justify-content:center; 
  align-items:center; 
  animation: drift 8s ease-in-out infinite; 
}
.logo-item{ 
  color: #9db2d9; 
  font-weight:600; 
  opacity:.7; 
  transition: opacity .2s ease, color .2s ease; 
}
.logo-item:hover{ opacity:1; color:#d9e7ff; }

/* ===========================
   Section Defaults
=========================== */
.features-section, 
.how-section, 
.cta-section, 
.testimonials-section, 
.industries-section{ 
  padding: clamp(4rem, 8vw, 6rem) 0; 
}
.testimonials-section {
  background:
    radial-gradient(700px 350px at 70% 0%, rgba(111,211,255,.08), transparent 70%),
    linear-gradient(180deg, #0b0d12 0%, #0a0c11 100%);
}
.features-section {
  background:
    radial-gradient(900px 450px at 20% 10%, rgba(111,211,255,.10), transparent 70%),
    linear-gradient(180deg, #0b0e16 0%, #0b0d12 100%);
}
.section-head{ text-align:center; margin-bottom: 2.4rem; }
.h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing:-.01em; }
.h4{ font-size:1.15rem; }
.h5{ font-size:1.05rem; }
.section-desc{ 
  color: var(--muted); 
  max-width: 60ch; 
  margin-inline:auto; 
  margin-top:.8rem; 
}

/* ===========================
   Features
=========================== */
.features-grid{
  display:grid; 
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 1100px){ .features-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .features-grid{ grid-template-columns: 1fr;} }

.feature-card{
  border:1px solid var(--border); 
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  padding: 1.2rem; 
  border-radius: 14px; 
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: border-color .25s ease, transform .18s ease, box-shadow .25s ease;
  position:relative; 
  overflow:hidden;
}
.feature-card:hover{ 
  border-color:#2a3960; 
  transform: translateY(-2px); 
  box-shadow: 0 12px 28px rgba(0,0,0,.35); 
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(91,141,239,.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover::before {
  opacity: 1;
}
.f-icon{
  width:48px; 
  height:48px; 
  display:grid; 
  place-items:center; 
  border-radius:10px;
  background: #0e1a2e; 
  color: var(--accent); 
  margin-bottom:.8rem;
}
.f-icon svg{ width:22px; height:22px; }
.muted{ color: var(--muted); }

/* ===========================
   Testimonials
=========================== */
.testimonials-grid{
  display:grid; 
  gap:1.2rem;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 1024px){ .testimonials-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .testimonials-grid{ grid-template-columns: 1fr; } }

.testimonial-card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border-radius: 14px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover{ 
  transform: translateY(-2px); 
  border-color:#2a3960; 
  box-shadow: 0 12px 28px rgba(0,0,0,.35); 
}
.t-quote{ font-size:1.02rem; line-height:1.55; }
.t-meta{ 
  display:flex; 
  gap:.6rem; 
  align-items:center; 
  margin-top:.9rem; 
  color: var(--muted); 
}
.t-name{ font-weight:700; color:#dbe7ff; }
.t-role{ font-size:.9rem; opacity:.9; }

/* ===========================
   Industries
=========================== */
.industries-section {
  background:linear-gradient(180deg, #0b0f19 0%, #0b0d12 100%);
}
.industries-grid{
  display:grid; 
  gap: .9rem;
  grid-template-columns: repeat(5, minmax(0,1fr));
}
@media (max-width: 1200px){ .industries-grid{ grid-template-columns: repeat(4,1fr); } }
@media (max-width: 980px){ .industries-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px){ .industries-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .industries-grid{ grid-template-columns: 1fr; } }

.industry-card{
  border:1px solid var(--border);
  background: #0e1422;
  border-radius: 12px;
  padding: 1rem;
  min-height: 126px;
  display:flex; 
  flex-direction:column; 
  justify-content:center;
  transition: border-color .25s ease, transform .18s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  position:relative;
}
.industry-card::after{
  content:""; 
  position:absolute; 
  inset:0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(91,141,239,.10), transparent 70%);
  opacity:0; 
  transition: opacity .25s ease;
  border-radius:12px; 
  pointer-events:none;
}
.industry-card:hover{ 
  border-color:#2a3960; 
  transform: translateY(-2px); 
  box-shadow: 0 12px 28px rgba(0,0,0,.32); 
}
.industry-card:hover::after{ opacity:1; }

.industry-name{ font-weight:700; letter-spacing:.2px; margin-bottom:.25rem; }
.industry-tasks{ color: var(--muted); font-size:.95rem; }

/* ===========================
   How it works
=========================== */
.how-grid{ 
  display:grid; 
  gap:2.2rem; 
  grid-template-columns: 1.1fr 1fr; 
  align-items:center; 
}
.how-section {
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(91,141,239,.15), transparent 75%),
    linear-gradient(180deg, #0b0e15 0%, #0b0d12 100%);
}
@media (max-width: 1000px){ .how-grid{ grid-template-columns: 1fr; } }

.steps{ display:flex; flex-direction:column; gap: .9rem; margin-top: 1.2rem; }
.step{ display:flex; gap:.8rem; align-items:flex-start; }
.step-num{
  width:28px; 
  height:28px; 
  border-radius:999px; 
  display:grid; 
  place-items:center; 
  font-weight:800; 
  font-size:.9rem;
  color:#061225; 
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.viz-card{
  position:relative; 
  display:grid; 
  place-items:center; 
  aspect-ratio: 1;
  border-radius: 16px; 
  border:1px solid var(--border);
  background: radial-gradient(60% 60% at 50% 40%, rgba(91,141,239,.18), transparent 70%), #0e1422;
  box-shadow: var(--shadow);
}
.viz-card svg{ 
  width:128px; 
  height:128px; 
  color: color-mix(in oklab, var(--accent) 45%, white 0%); 
  opacity:.8; 
}
.viz-glow{ 
  position:absolute; 
  inset: 0; 
  background: radial-gradient(40% 40% at 50% 50%, rgba(111,211,255,.18), transparent 70%); 
  filter: blur(20px); 
  pointer-events:none; 
}

/* ===========================
   CTA
=========================== */
.cta-box{
  text-align:center;
  border:1px solid var(--border);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 18px;
  background: linear-gradient(180deg, #0f1523, #0b1221);
  box-shadow: var(--shadow);
}
.cta-section {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(91,141,239,.12), transparent 60%),
    linear-gradient(180deg, #0b0e16 0%, #0b0d12 100%);
}

/* ===========================
   Footer (true full width + centered content)
=========================== */
.site-footer {
  position: relative;
  width: 100%;
  background: #0b0d12;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 8px rgba(0,0,0,.3);
  padding: 3rem 0;
  overflow: hidden;
}

body .elementor-section-wrap > .site-footer,
.elementor-location-footer .site-footer,
.elementor-page .site-footer {
  width: 100% !important;
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
  display: block !important;
  margin-inline: auto;
  max-width: 100vw !important;
}

.footer-grid,
.foot-bottom {
  margin: 0 auto;
  max-width: 100vw !important;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(4, minmax(0,1fr));
  justify-content: center;
  text-align: center;
}
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }

.brand-foot { margin-bottom: .6rem; }
.foot-head { font-weight: 700; margin-bottom: .5rem; }
.foot-list { list-style: none; display: grid; gap: .45rem; }
.foot-link { 
  color: var(--muted); 
  text-decoration: none; 
  transition: color .2s ease; 
}
.foot-link:hover { color: #d9e7ff; }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  margin-top: 1.4rem;
  text-align: center;
}

.socials { display: flex; gap: .8rem; justify-content: center; }
.social { color: #9db2d9; transition: color .2s ease; }
.social:hover { color: #d9e7ff; }

/* ===========================
   Responsive nav tweaks
=========================== */
@media (min-width: 900px){ 
  .primary-nav{ display:flex; } 
}

@media (max-width: 900px) {
  /* Show hamburger, hide desktop nav */
  .menu-toggle {
    display: flex;
  }
  
  .primary-nav,
  .header-actions {
    display: none;
  }
}

/* ===========================
   Animations
=========================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(91,141,239,.12), 0 0 0 12px rgba(111,211,255,.06); }
  50% { box-shadow: 0 0 0 8px rgba(91,141,239,.25), 0 0 0 16px rgba(111,211,255,.15); }
}
@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s ease-out forwards;
}
@supports (animation-timeline: view()) {
  .reveal{
    animation-timeline: view();
    animation-range: entry 25% cover 40%;
  }
}

@keyframes section-fade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: section-fade 1.2s ease-out forwards;
}

.fade-delayed {
  opacity: 0;
  animation: section-fade 1.2s ease-out forwards;
  animation-delay: .4s;
}

@supports (animation-timeline: view()) {
  .fade-in, .fade-delayed {
    animation-timeline: view();
    animation-range: entry 20% cover 35%;
  }
}

/* Motion reduction */
@media (prefers-reduced-motion: reduce){
  * { animation:none !important; transition:none !important; }
}/* End custom CSS */