/* ==============================
   RESPONSIVE BASE (MUST HAVE)
================================ */
* { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }

:root{
  --wrap: 1160px;
  --pad: 20px;
}

.wrap{
  width: min(var(--wrap), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

/* Fluid typography */
h1{ font-size: clamp(32px, 4vw, 54px); line-height: 1.05; }
h2{ font-size: clamp(22px, 2.4vw, 34px); line-height: 1.15; }
h3{ font-size: clamp(16px, 1.6vw, 20px); }
p{ font-size: clamp(13px, 1.2vw, 15px); }

/* Buttons wrap on mobile */
.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; }

/* Generic grids become responsive */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

/* Section spacing scales */
.section{ padding: clamp(18px, 2.8vw, 34px) 0; }
.sectionHead p{ max-width: 70ch; }

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:rgba(255,255,255,.92);
  background: radial-gradient(1200px 700px at 20% 20%, #111a2e 0%, transparent 60%),
              radial-gradient(900px 600px at 80% 30%, #10263a 0%, transparent 60%),
              linear-gradient(180deg, #05060a 0%, #070914 100%);
  overflow-x:hidden;
}
a{color:inherit}

.bg{position:fixed; inset:0; z-index:-1; filter: blur(40px); opacity:.55;}
.glow{position:absolute; width:520px; height:520px; border-radius:50%;}
.g1{left:-120px; top:80px; background: #2b63ff;}
.g2{right:-140px; top:120px; background: #55b0ff;}
.g3{left:40%; bottom:-200px; background: #7c5cff;}

.wrap{max-width:1200px; margin:0 auto; padding:28px 18px 60px;}

.topbar{
  position:sticky; top:0; z-index:10;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:14px 18px;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand{display:flex; gap:10px; align-items:center; text-decoration:none;}
.logoMark{
  width:32px; height:32px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.brandText{font-weight:900; letter-spacing:.2px}

.pillNav{
  display:flex; gap:6px; align-items:center;
  padding:8px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.navItem{
  text-decoration:none;
  color: rgba(255,255,255,.75);
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
}
.navItem:hover{background: rgba(255,255,255,.08); color:#fff;}
.navItem.active{background: rgba(92,142,255,.25); color:#fff; border:1px solid rgba(92,142,255,.35);}

.topActions{display:flex; gap:10px; align-items:center;}
.iconBtn{
  width:36px; height:36px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
}
.avatar{
  width:36px; height:36px; border-radius:14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.12);
}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:center;
  padding:28px 0 10px;
}
@media (max-width: 980px){
  .hero{grid-template-columns:1fr;}
  .pillNav{display:none;}
}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;
  color: rgba(255,255,255,.82);
  margin-bottom:14px;
}

h1{margin:0 0 12px; font-size:48px; line-height:1.05; letter-spacing:-.8px;}
@media (max-width: 520px){h1{font-size:38px}}
.grad{
  background: linear-gradient(90deg, #6ea8ff, #b7f1ff);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.sub{margin:0 0 18px; color: rgba(255,255,255,.72); max-width: 60ch; line-height:1.6;}

.ctaRow{display:flex; gap:12px; align-items:center; margin: 18px 0 22px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn.primary{background: rgba(92,142,255,.28); border-color: rgba(92,142,255,.45); color:#fff;}
.btn.primary:hover{background: rgba(92,142,255,.36);}
.btn.ghost{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); color: rgba(255,255,255,.88);}
.btn.ghost:hover{background: rgba(255,255,255,.09);}

.miniStats{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px;}
@media (max-width: 520px){.miniStats{grid-template-columns:1fr}}
.statCard{padding:14px; border-radius:18px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10);}
.statTop{font-size:12px; color: rgba(255,255,255,.68);}
.statVal{font-size:16px; font-weight:1000; margin-top:6px;}
.statSub{font-size:12px; color: rgba(255,255,255,.60); margin-top:4px; line-height:1.4;}

.stage{position:relative; min-height: 440px;}
.heroCard.big{
  position:absolute; inset: 0;
  border-radius:26px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  overflow:hidden;
  padding:18px;
}
.heroCardTop{display:flex; justify-content:space-between; align-items:flex-start;}
.chip{padding:7px 10px; border-radius:999px; background: rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.80); font-size:12px;}
.bigNum{font-size:52px; font-weight:1000; letter-spacing:-1px;}
.chart{
  height:180px; margin-top:18px; border-radius:18px;
  background:
    radial-gradient(120px 120px at 20% 60%, rgba(92,142,255,.35), transparent 65%),
    radial-gradient(160px 140px at 70% 30%, rgba(160,245,255,.25), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  position:relative; overflow:hidden;
}
.chart::after{
  content:""; position:absolute; inset:-20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-18deg);
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer{
  0%{transform: translateX(-60%) skewX(-18deg);}
  100%{transform: translateX(60%) skewX(-18deg);}
}

.friends{display:flex; justify-content:space-between; align-items:center; margin-top:14px;}
.friendsTxt{font-size:12px; color: rgba(255,255,255,.70);}
.faces{display:flex; gap:8px;}
.face{width:26px; height:26px; border-radius:10px; background: rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.12);}
.f1{background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.08))}
.f2{background: radial-gradient(circle at 30% 30%, rgba(110,168,255,.55), rgba(255,255,255,.08))}
.f3{background: radial-gradient(circle at 30% 30%, rgba(183,241,255,.55), rgba(255,255,255,.08))}
.f4{background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.55), rgba(255,255,255,.08))}

.floatCard{
  position:absolute; padding:12px; width: 260px;
  border-radius:18px;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.floatTitle{font-weight:1000; font-size:13px;}
.floatDesc{margin-top:6px; font-size:12px; color: rgba(255,255,255,.70); line-height:1.45;}
.c1{left:-18px; bottom:46px;}
.c2{right:-22px; top:64px;}
.c3{right:-12px; bottom:18px;}
@media (max-width: 980px){.stage{min-height: 420px;} .floatCard{display:none;}}

.section{padding: 30px 0 8px;}
.sectionHead h2{margin:0; font-size:28px;}
.sectionHead p{margin:8px 0 0; color: rgba(255,255,255,.68);}

.grid{margin-top:18px; display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
@media (max-width: 980px){.grid{grid-template-columns:1fr 1fr;}}
@media (max-width: 640px){.grid{grid-template-columns:1fr;}}

.serviceCard{
  padding:16px; border-radius:20px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.serviceCard h3{margin:0 0 6px; font-size:16px;}
.serviceCard p{margin:0 0 10px; color: rgba(255,255,255,.70); line-height:1.55; font-size:13px;}
.serviceCard ul{margin:0; padding-left:18px; color: rgba(255,255,255,.66); font-size:13px; line-height:1.7;}

.aboutCard{
  margin-top:16px;
  padding:18px;
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 980px){.aboutCard{grid-template-columns:1fr;}}
.pillRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px;}
.pill{padding:8px 10px; border-radius:999px; font-size:12px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.78);}
.kpi{height:100%; border-radius:18px; padding:14px; background: rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.12);}
.kpiTop{font-size:12px; color: rgba(255,255,255,.68);}
.kpiVal{font-weight:1000; margin-top:8px;}
.kpiSub{font-size:12px; margin-top:6px; color: rgba(255,255,255,.64); line-height:1.4;}

.contactCard{
  margin-top:16px;
  padding:16px;
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
@media (max-width: 640px){.row{grid-template-columns:1fr;}}
.row.end{grid-template-columns: 160px 1fr; align-items:center;}
@media (max-width: 640px){.row.end{grid-template-columns:1fr;}}
.field label{display:block; font-size:12px; color: rgba(255,255,255,.68); margin-bottom:6px;}
input,textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color:#fff;
  outline:none;
}
input:focus,textarea:focus{border-color: rgba(110,168,255,.55);}
.hint{font-size:12px; color: rgba(255,255,255,.60);}

.toastOk{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(80, 200, 120, .14);
  border: 1px solid rgba(80, 200, 120, .30);
  color: rgba(235,255,240,.92);
}

.ctaStrip{
  margin-top:16px;
  padding:16px;
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.ctaTitle{font-weight:1000;}
.ctaSub{font-size:13px; color: rgba(255,255,255,.70); margin-top:4px;}

.footer{
  margin-top:22px;
  padding:14px 0 0;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color: rgba(255,255,255,.55);
  font-size:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer a{color: rgba(255,255,255,.70); text-decoration:none; margin-left:12px;}
.footer a:hover{color:#fff;}

/* ===== Motion + Interaction Upgrade ===== */
:root{ --ease: cubic-bezier(.2,.8,.2,1); --dur: 420ms; }
@media (prefers-reduced-motion: reduce){
  *{ animation:none!important; transition:none!important; scroll-behavior:auto!important; }
}

.pageTransition{ opacity:0; transform: translateY(10px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.pageTransition.ready{ opacity:1; transform: translateY(0); }

.topLoader{
  position: fixed; top:0; left:0; height:3px; width:0%;
  z-index: 9999;
  background: linear-gradient(90deg, rgba(110,168,255,.9), rgba(183,241,255,.9));
  box-shadow: 0 0 18px rgba(110,168,255,.55);
  transition: width 600ms var(--ease), opacity 400ms var(--ease);
  opacity: 0;
}

.bgParallax{
  position: fixed; inset: -30px; z-index: -2;
  background:
    radial-gradient(900px 540px at 20% 30%, rgba(43,99,255,.25), transparent 60%),
    radial-gradient(700px 480px at 80% 30%, rgba(85,176,255,.18), transparent 60%),
    radial-gradient(900px 650px at 50% 110%, rgba(124,92,255,.16), transparent 60%);
  transform: translateY(0);
  will-change: transform;
  filter: blur(28px);
  opacity: .9;
}

.hero .badge{ animation: floatY 4.4s var(--ease) infinite; }
.hero h1 .grad{ background-size: 220% 220%; animation: gradShift 6s var(--ease) infinite; }
@keyframes gradShift{ 0%{background-position:0% 40%} 50%{background-position:100% 60%} 100%{background-position:0% 40%} }
@keyframes floatY{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.serviceCard, .aboutCard, .contactCard, .statCard, .ctaStrip{
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}
.serviceCard:hover, .statCard:hover, .ctaStrip:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  border-color: rgba(110,168,255,.35);
}
.btn{ transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease); }
.btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.28); }
.btn:active{ transform: translateY(0); }

/* Like */
.likeBtn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer; user-select:none;
}
.likeIcon{
  width:20px; height:20px;
  display:inline-grid; place-items:center;
  transform: scale(1);
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
}
.likeBtn.liked .likeIcon{
  transform: scale(1.25) rotate(-10deg);
  filter: drop-shadow(0 0 10px rgba(110,168,255,.55));
}
.pulse{ animation: pulse 520ms var(--ease) 1; }
@keyframes pulse{ 0%{transform:scale(1)} 50%{transform:scale(1.22)} 100%{transform:scale(1)} }

/* Switch */
.switch{
  width: 52px; height: 30px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  position: relative;
  cursor:pointer;
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.switchKnob{
  width: 24px; height: 24px;
  border-radius:999px;
  position:absolute; top:2.5px; left:3px;
  background: rgba(255,255,255,.85);
  transition: transform 260ms var(--ease);
}
.switch.on{ background: rgba(92,142,255,.28); border-color: rgba(92,142,255,.45); }
.switch.on .switchKnob{ transform: translateX(21px); }

/* Reveal */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* Skeleton */
.skeletonGrid{ margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
@media (max-width:980px){ .skeletonGrid{grid-template-columns:1fr 1fr;} }
@media (max-width:640px){ .skeletonGrid{grid-template-columns:1fr;} }

.skeletonCard{
  padding:16px; border-radius:20px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden; position:relative;
}
.skeletonLine{ height:12px; border-radius:999px; background: rgba(255,255,255,.08); margin:10px 0; }
.skeletonLine.w60{width:60%}
.skeletonLine.w85{width:85%}
.skeletonLine.w40{width:40%}
.skeletonCard::after{
  content:""; position:absolute; inset:-40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: translateX(-60%) skewX(-18deg);
  animation: sk 1.3s linear infinite;
}
@keyframes sk{ 0%{transform:translateX(-60%) skewX(-18deg)} 100%{transform:translateX(60%) skewX(-18deg)} }

/* Modal */
.modalOverlay{
  position: fixed; inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 9998;
}
.modalOverlay.open{ display:flex; animation: fadeIn 220ms var(--ease) 1; }
@keyframes fadeIn{ from{opacity:0} to{opacity:1} }

.modal{
  width:min(620px, 92vw);
  border-radius:22px;
  background: rgba(10,12,18,.82);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  padding:16px;
  transform: translateY(10px) scale(.98);
  animation: popIn 260ms var(--ease) 1 forwards;
}
@keyframes popIn{ to{ transform: translateY(0) scale(1); } }
.modalTop{ display:flex; justify-content:space-between; align-items:center; gap:12px; }
.modalTitle{ font-weight:1000; }
.modalClose{
  width:36px; height:36px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff; cursor:pointer;
}
.modalBody{ margin-top:12px; color: rgba(255,255,255,.72); line-height:1.6; font-size:13px; }
/* ===== Interactive Enterprise Dashboard ===== */

.interactiveDash{
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

/* Live chip */
.chip.live{
  background: rgba(0,255,170,.12);
  color: #6cffc9;
  border: 1px solid rgba(0,255,170,.35);
  font-weight: 600;
}

/* Counter number */
.bigNum{
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* Chart */
.chartWrap{
  position: relative;
  height: 120px;
  margin: 16px 0;
  overflow: hidden;
}

.chartLine{
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,#4f8cff,#6cffc9);
  clip-path: polygon(
    0% 80%, 10% 70%, 25% 75%, 40% 40%,
    55% 50%, 70% 20%, 85% 30%, 100% 10%,
    100% 100%, 0% 100%
  );
  opacity: .6;
  animation: chartMove 6s ease-in-out infinite;
}

.chartGlow{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(108,255,201,.25), transparent 60%);
  filter: blur(20px);
}

@keyframes chartMove{
  0%,100%{ transform: translateX(0); }
  50%{ transform: translateX(-12px); }
}

/* KPI row */
.kpiRow{
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.kpiMini{
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: .3s;
}

.kpiMini:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}

.kpiVal{
  font-weight: 700;
  font-size: 16px;
}

.kpiLbl{
  font-size: 11px;
  opacity: .7;
}

/* Activity feed */
.activity{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.actItem{
  font-size: 12px;
  opacity: .75;
  animation: fadeSlide 4s infinite;
}

@keyframes fadeSlide{
  0%,100%{opacity:.4; transform:translateY(0);}
  50%{opacity:1; transform:translateY(-2px);}
}
/* ===== SaaS Landing + AI Dashboard ===== */

.saasHero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
  padding: 22px 0 6px;
}
@media (max-width: 980px){ .saasHero{grid-template-columns:1fr;} }

.heroPills{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px;}
.pillTag{
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
}
.saasH1{margin:0 0 10px; font-size:46px; line-height:1.05; letter-spacing:-.8px;}
@media (max-width: 520px){ .saasH1{font-size:38px;} }
.saasSub{margin:0; color: rgba(255,255,255,.72); line-height:1.6; max-width: 62ch;}
.trustRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
.trustItem{
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  min-width: 150px;
}
.trustVal{font-weight:1000; font-size:15px;}
.trustLbl{font-size:12px; color: rgba(255,255,255,.64); margin-top:4px;}

.founderMini{
  margin-top: 16px;
  display:flex; gap:12px; align-items:center;
  padding:12px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.founderMiniImg{
  width:52px; height:52px; border-radius:16px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
}
.founderMiniName{font-weight:1000;}
.founderMiniTitle{font-size:12px; color: rgba(255,255,255,.66); margin-top:3px;}

.logoStrip{padding: 16px 0 6px;}
.logoStripInner{
  display:flex; gap:10px; flex-wrap:wrap;
  padding:12px;
  border-radius:20px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.logoGhost{
  padding:10px 12px;
  border-radius:16px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-size:12px;
}

/* AI DASH */
.aiDashCard{
  border-radius:26px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  padding:16px;
  overflow:hidden;
  position:relative;
}
.aiDashCard::after{
  content:"";
  position:absolute; inset:-30px;
  background: radial-gradient(circle at 20% 25%, rgba(110,168,255,.18), transparent 55%),
              radial-gradient(circle at 80% 35%, rgba(108,255,201,.14), transparent 60%),
              radial-gradient(circle at 50% 110%, rgba(124,92,255,.14), transparent 60%);
  filter: blur(22px);
  pointer-events:none;
}
.aiDashTop{display:flex; justify-content:space-between; align-items:flex-start; gap:12px; position:relative; z-index:1;}
.aiBrand{display:flex; flex-direction:column; gap:2px;}
.aiDot{width:10px; height:10px; border-radius:999px; background: rgba(108,255,201,.95); box-shadow:0 0 16px rgba(108,255,201,.5);}
.aiTitle{font-weight:1000;}
.aiSub{font-size:12px; color: rgba(255,255,255,.65);}

.aiScore{display:grid; place-items:end; gap:2px;}
.aiScoreVal{font-weight:1000; font-size:34px; letter-spacing:-.6px;}
.aiScoreLbl{font-size:12px; color: rgba(255,255,255,.60);}

.aiTabs{
  margin-top:12px;
  display:flex; gap:8px; flex-wrap:wrap;
  position:relative; z-index:1;
}
.aiTab{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  cursor:pointer;
  font-weight:800;
}
.aiTab.active{
  background: rgba(92,142,255,.22);
  border-color: rgba(92,142,255,.42);
  color:#fff;
}

.aiPanels{margin-top:12px; position:relative; z-index:1;}
.aiPanel{display:none;}
.aiPanel.active{display:block; animation: aiFade 280ms cubic-bezier(.2,.8,.2,1) 1;}
@keyframes aiFade{from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:translateY(0)}}

.aiKpis{display:grid; grid-template-columns:repeat(3,1fr); gap:10px;}
.aiKpi{
  padding:12px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.aiKpiVal{font-weight:1000; font-size:16px;}
.aiKpiLbl{font-size:12px; color: rgba(255,255,255,.62); margin-top:4px;}

.aiChart{
  height: 120px;
  margin-top:12px;
  border-radius:18px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.10);
  position:relative;
  overflow:hidden;
}
.aiChartLine{
  position:absolute; inset:0;
  background: linear-gradient(120deg,#4f8cff,#6cffc9);
  clip-path: polygon(0% 78%, 12% 66%, 25% 72%, 40% 40%, 55% 52%, 70% 22%, 86% 30%, 100% 12%, 100% 100%, 0% 100%);
  opacity:.55;
  animation: aiChartMove 6.5s ease-in-out infinite;
}
.aiChartGlow{
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 40%, rgba(108,255,201,.18), transparent 60%);
  filter: blur(18px);
}
@keyframes aiChartMove{0%,100%{transform:translateX(0)} 50%{transform:translateX(-14px)}}

.aiMiniGrid{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px;}
.aiMiniCard{
  padding:12px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.aiMiniTop{font-weight:1000; font-size:12px;}
.aiMiniSub{font-size:12px; color: rgba(255,255,255,.62); margin-top:6px;}
.aiMiniBar{
  height:10px; border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  margin-top:10px;
}
.aiMiniBar span{
  display:block; height:100%;
  background: linear-gradient(90deg, rgba(110,168,255,.85), rgba(108,255,201,.85));
  border-radius:999px;
}

.aiCloud{
  margin-top:12px;
  display:flex; gap:12px; align-items:center;
  padding:12px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.aiCloudRing{
  width:54px; height:54px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: conic-gradient(from 180deg, rgba(110,168,255,.65), rgba(108,255,201,.65), rgba(124,92,255,.65));
  filter: blur(.0px);
  animation: ringSpin 5.2s linear infinite;
}
@keyframes ringSpin{to{transform:rotate(360deg)}}
.aiCloudTitle{font-weight:1000;}
.aiCloudSub{font-size:12px; color: rgba(255,255,255,.62); margin-top:4px;}

.aiPayGrid{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px;}
.aiPayCard{
  padding:12px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.aiPayTop{font-weight:1000; font-size:12px;}
.aiPaySub{font-size:12px; color: rgba(255,255,255,.62); margin-top:8px;}
.aiPayIcons{display:flex; gap:8px; margin-top:10px;}
.aiPayDot{width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.12);}

.aiFeed{
  margin-top:12px;
  display:flex; flex-direction:column; gap:6px;
}
.aiFeedItem{
  font-size:12px;
  color: rgba(255,255,255,.70);
  opacity:.92;
  animation: feedPulse 4.2s cubic-bezier(.2,.8,.2,1) infinite;
}
@keyframes feedPulse{0%,100%{opacity:.55} 50%{opacity:1}}

.aiDashBottom{
  margin-top:12px;
  display:flex; gap:10px; align-items:center;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  position:relative; z-index:1;
}
.aiAction{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(92,142,255,.22);
  border:1px solid rgba(92,142,255,.42);
  color:#fff;
  font-weight:1000;
  cursor:pointer;
}
.aiInsight{
  flex:1;
  font-size:12px;
  color: rgba(255,255,255,.72);
  padding:10px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}

/* Pricing */
.priceGrid{margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:12px;}
@media (max-width:980px){.priceGrid{grid-template-columns:1fr;}}
.priceCard{
  padding:16px;
  border-radius:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.priceCard.featured{
  border-color: rgba(92,142,255,.45);
  box-shadow: 0 24px 90px rgba(0,0,0,.35);
  background: linear-gradient(180deg, rgba(92,142,255,.16), rgba(255,255,255,.06));
}
.priceTop{display:flex; justify-content:space-between; align-items:baseline; gap:10px;}
.priceName{font-weight:1000;}
.priceVal{font-weight:1000; font-size:24px;}
.priceVal span{font-size:12px; opacity:.65; margin-left:6px;}
.priceSub{margin-top:10px; color: rgba(255,255,255,.70); font-size:13px; line-height:1.5;}
.priceList{margin:12px 0 0; padding-left:18px; color: rgba(255,255,255,.70); font-size:13px; line-height:1.8;}
.wFull{width:100%}

/* Split card tweak */
.saasSplit{align-items:center;}
/* Founder Corner */
.miniBtn{padding:10px 12px; border-radius:14px; font-weight:900;}
.founderPageCard{
  margin-top:16px;
  padding:16px;
  border-radius:24px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:14px;
}
@media (max-width: 980px){ .founderPageCard{grid-template-columns:1fr;} }

.founderPageLeft{
  padding:14px;
  border-radius:22px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.founderPageImg{
  width:100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.founderName{margin-top:12px; font-weight:1000; font-size:20px;}
.founderTitle{margin-top:4px; font-size:13px; color: rgba(255,255,255,.70);}

.founderQuick{margin-top:12px; display:grid; grid-template-columns:1fr 1fr; gap:10px;}
.fqItem{
  padding:10px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.fqVal{font-weight:1000; font-size:12px;}
.fqLbl{font-size:12px; color: rgba(255,255,255,.62); margin-top:4px;}

.founderPageRight{
  padding:14px;
  border-radius:22px;
  background: rgba(0,0,0,.14);
  border:1px solid rgba(255,255,255,.10);
}
.aboutBlock{margin-bottom:14px;}
.aboutBlock h3{margin:0 0 8px; font-size:16px;}
.aboutBlock p{margin:0 0 10px; color: rgba(255,255,255,.72); line-height:1.7; font-size:13px;}

.founderList{margin:0; padding-left:18px; color: rgba(255,255,255,.70); line-height:1.8; font-size:13px;}

.roadGrid{display:grid; grid-template-columns: repeat(3,1fr); gap:10px;}
@media (max-width: 980px){ .roadGrid{grid-template-columns:1fr;} }
.roadCard{
  padding:12px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.roadTop{font-weight:1000; font-size:13px;}
.roadSub{margin-top:6px; font-size:12px; color: rgba(255,255,255,.66); line-height:1.5;}
/* ==============================
   HERO RESPONSIVE
================================ */
.hero, .saasHero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px){
  .hero, .saasHero{
    grid-template-columns: 1fr;
  }
  .heroRight, .saasHeroRight{ order: -1; } /* dashboard comes first on mobile */
}

/* Fix dashboard card width on small screens */
.aiDashCard, .heroCard.big{
  width: 100%;
}

/* Cards should not overflow */
.serviceCard, .aboutCard, .priceCard{
  width: 100%;
  overflow: hidden;
}
/* ==============================
   NAV RESPONSIVE
================================ */
.topbar{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.pillNav{
  display:flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 720px){
  .pillNav{
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }
  .pillNav::-webkit-scrollbar{ height: 6px; }
}
/* ==============================
   FOUNDER PAGE RESPONSIVE
================================ */
.founderPageCard{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .founderPageCard{ grid-template-columns: 1fr; }
  .founderPageImg{ max-width: 420px; margin: 0 auto; }
}
.priceGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .priceGrid{ grid-template-columns: 1fr; }
}
.logoImg{
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}
/* ==============================
   CONTACT PAGE BRAND VISIBILITY
================================ */

.contactLayout{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}

@media (max-width: 980px){
  .contactLayout{
    grid-template-columns: 1fr;
  }
}

/* Right brand card */
.contactBrandCard{
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Large visible logo */
.contactLogo{
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,.45));
}

/* Brand text */
.contactBrandTitle{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
}

.contactBrandText{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 320px;
}

/* Highlights */
.contactHighlights{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlightItem{
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* ==============================
   GOOGLE MAP (CONTACT PAGE)
================================ */
.mapCard{
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  text-align: left;
}

.mapTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mapTitle{
  font-weight: 1000;
  font-size: 13px;
}

.mapLink{
  font-size: 12px;
  color: rgba(183,241,255,.92);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.mapLink:hover{ background: rgba(255,255,255,.10); }

.mapFrame{
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}

.mapNote{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.66);
}

/* ==============================
   WHATSAPP FLOATING BUTTON
================================ */
.waFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 1000;

  background: rgba(0, 255, 170, .12);
  border: 1px solid rgba(0, 255, 170, .35);
  color: rgba(235,255,245,.95);

  box-shadow: 0 18px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 220ms cubic-bezier(.2,.8,.2,1);
}

.waFloat:hover{
  transform: translateY(-3px);
  background: rgba(0, 255, 170, .18);
}

.waIcon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(0, 255, 170, .18);
  border: 1px solid rgba(0, 255, 170, .35);
  font-size: 16px;
}

.waText{ font-size: 13px; }

/* On very small screens keep it compact */
@media (max-width: 420px){
  .waText{ display:none; }
  .waFloat{ padding: 12px; }
}
/* ==============================
   MOBILE DROPDOWN NAV
================================ */

/* Hide hamburger on desktop */
.hamburger{ display:none; }
.hb{
  display:block;
  width:16px;
  height:2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
}
.hamburger{ gap:4px; display:none; flex-direction:column; justify-content:center; align-items:center; }

/* Mobile menu overlay */
.mobileMenu{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  z-index: 9999;
  padding: 16px;
}

.mobileMenu.open{ display:block; }

.mobileMenuInner{
  width: min(520px, 100%);
  margin-left: auto;
  border-radius: 22px;
  background: rgba(10,12,18,.90);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
  box-shadow: 0 18px 80px rgba(0,0,0,.45);
  animation: menuIn 220ms cubic-bezier(.2,.8,.2,1) 1;
}

@keyframes menuIn{
  from{ transform: translateY(-10px); opacity: .6; }
  to{ transform: translateY(0); opacity: 1; }
}

.mobileMenuTop{
  padding: 12px 12px 10px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobileMenuTitle{
  font-weight: 1000;
}

.mobileNavList{
  display:flex;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
}

.mobileNavItem{
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.mobileNavItem:hover{
  background: rgba(255,255,255,.10);
}

.mobileNavItem.active{
  background: rgba(92,142,255,.22);
  border-color: rgba(92,142,255,.42);
  color: #fff;
}

/* Prevent background scroll when menu open */
.noScroll, .noScroll body{ overflow: hidden; }

/* Switch rules for mobile */
@media (max-width: 980px){
  .desktopNav{ display:none; }
  .hamburger{ display:flex; }
}
