
/* ===========================================
   BASE STYLES
   =========================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif
}
body{
  background:#000;
  color:#fff
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

body.nav-open{
  overflow:hidden;
}

:root{
  --bg:#04020a;
  --purple:#a855f7;
  --border:rgba(255,255,255,.08);
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
[data-animate]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .75s ease, transform .75s ease, filter .75s ease;
  will-change:opacity, transform;
}
[data-animate].show{
  opacity:1;
  transform:translateY(0);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden
}
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55)
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  text-align:left;
  padding:180px 7vw 0
}
.hero-content>div{
  max-width:720px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.hero h1{
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:700;
  opacity:0;
  transform:translateY(30px);
  animation:heroTitle 1.1s cubic-bezier(.22,.61,.36,1) forwards;
  color: white;
}

.hero p{
  max-width:720px;
  margin:0;
  opacity:0;
  transform:translateY(30px);
  animation:heroText 1.1s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay:.4s;
}

@keyframes heroTitle{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes heroText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===========================================
   TOP NAV
   =========================================== */
.top-nav{
  position:absolute;
  top:0;
  width:100%;
  padding:22px 0;
  z-index:998;
}
.top-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

/* ===========================================
   FLOATING NAV
   =========================================== */
.scroll-nav{
  position:fixed;
  top:-120px;
  width:100%;
  z-index:998;
  transition:.5s ease
}
.scroll-nav.active{top:20px}

.scroll-nav .nav-inner{
  max-width:1200px;
  width:calc(100% - 24px);
  margin:0 auto;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(14px);
  border-radius:60px;
  padding:14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.6)
}

/* ===========================================
   BRAND
   =========================================== */
.brand{
  display:flex;
  align-items:center;
  gap:10px
}
.top-nav .brand img{height:60px}
.scroll-nav .brand img{height:36px}
.brand span{
  font-weight:600;
  font-size:18px
}

/* ===========================================
   MAIN MENU
   =========================================== */
.main-menu{
  display:flex;
  gap:24px;
  list-style:none
}
.main-menu li{
  position:relative
}
.main-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:6px 0;
  display:block;
}

/* underline animation */
.main-menu li:not(.has-mega-dropdown) > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  transition:.35s ease
}
.main-menu li:not(.has-mega-dropdown):hover>a::after{
  width:100%
}

/* Services trigger special styling */
.has-mega-dropdown > a {
  cursor: pointer;
  transition: color .3s ease;
}
.has-mega-dropdown:hover > a,
.has-mega-dropdown.active > a {
  color: #a855f7;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  z-index: 1001;
  position: relative;
}
.menu-toggle{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  cursor:pointer;
  transition:.3s ease;
  padding:0;
}
.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:.3s ease;
}
.menu-toggle:focus-visible{
  outline:2px solid #a855f7;
  outline-offset:3px;
}
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:997;
}
body.nav-open .menu-overlay{
  opacity:1;
  visibility:visible;
}
.mobile-cta{
  display:none;
}
.mobile-cta .btn-gradient{
  width:100%;
  text-align:center;
}

/* ===========================================
   MEGA DROPDOWN
   =========================================== */
.mega-dropdown {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  display: none;
  border-top: 3px solid linear-gradient(135deg, #a855f7, #ec4899);
  z-index: 1000;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.scroll-nav.active ~ .mega-dropdown {
  top: 94px;
}

.mega-dropdown.open {
  display: block !important;
}

.mega-wrapper {
  display: flex;
  width: 100%;
  min-height: 400px;
  max-width: 100%;
}

/* ─── SIDEBAR ─────────────────────────────────────── */
.mega-sidebar {
  width: 270px;
  min-width: 270px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  padding: 8px 0;
}

.mega-sidebar ul {
  list-style: none;
}

.mega-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .18s, color .18s, border-left-color .18s;
  border-left: 4px solid transparent;
  position: relative;
  cursor: pointer;
}

.mega-sidebar ul li.sidebar-active a,
.mega-sidebar ul li a:hover {
  background: rgba(255,255,255,.15);
  border-left-color: #fff;
  color: #fff;
}

.sidebar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-label-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sidebar-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.sidebar-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
  font-weight: 400;
}

.sidebar-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity .15s;
}

.mega-sidebar ul li.sidebar-active a .sidebar-arrow,
.mega-sidebar ul li a:hover .sidebar-arrow {
  opacity: 1;
}

/* ─── CONTENT AREA ────────────────────────────────── */
.mega-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.page-content {
  display: none;
  flex: 1;
  flex-direction: row;
}

.page-content.active {
  display: flex;
}

.mega-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  gap: 28px;
}

.mega-col {
  flex: 1;
}

.col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #1565c0;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8edf5;
  margin-bottom: 6px;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: color .18s, padding-left .18s;
}

.mega-col ul li:last-child a {
  border-bottom: none;
}

.mega-col ul li a:hover {
  color: #1565c0;
  padding-left: 5px;
}

.mega-col ul li a .link-dot {
  width: 6px;
  height: 6px;
  background: #1565c0;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .18s;
}

.mega-col ul li a:hover .link-dot {
  opacity: 1;
}

.more-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #1565c0 !important;
  font-weight: 700 !important;
  margin-top: 8px;
  border-bottom: none !important;
  font-size: 13px !important;
  padding-left: 0 !important;
}

.more-link:hover {
  padding-left: 0 !important;
}

.more-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.more-link:hover svg {
  transform: translateX(4px);
}

/* ─── RIGHT PANEL ─────────────────────────────────── */
.mega-panel {
  width: 250px;
  min-width: 250px;
  background: #f5f8ff;
  border-left: 1px solid #e2e9f5;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #8899bb;
  text-transform: uppercase;
}

.panel-img {
  width: 100%;
  height: 110px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.panel-badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-badges li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #3a4a6b;
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: #1565c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-cta {
  display: block;
  background: linear-gradient(135deg, #a855f7, #ec4899);;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-top: 2px;
}

.panel-cta:hover {
  background: #0d47a1;
  transform: translateY(-1px);
}

/* ─── PAGE CONTENT BACKGROUNDS ───────────────────── */
.bg-seo { background: linear-gradient(135deg,#e3f0ff,#c8dcff); }
.bg-smm { background: linear-gradient(135deg,#fce4ec,#f8bbd9); }
.bg-orm { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); }
.bg-ppc { background: linear-gradient(135deg,#fff3e0,#ffe0b2); }
.bg-link { background: linear-gradient(135deg,#f3e5f5,#e1bee7); }
.bg-content { background: linear-gradient(135deg,#e0f7fa,#b2ebf2); }
.bg-white { background: linear-gradient(135deg,#f5f5f5,#e0e0e0); }
.bg-webdev { background: linear-gradient(135deg,#ede7f6,#d1c4e9); }

/* ===========================================
   BUTTONS
   =========================================== */
.btn-gradient{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:30px;
  cursor:pointer;
  display:inline-block;
  text-decoration:none
}
.hero .btn-hero{
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color:#000;
  border:none;
  padding:16px 28px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  align-self:flex-start;
  box-shadow:0 10px 40px rgba(0,0,0,.28)
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media(max-width:1100px){
  .top-nav{padding:16px 0;}
  .scroll-nav .nav-inner{border-radius:32px; padding:12px 20px;}
}

@media(max-width:980px){
  .main-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:76vw;
    max-width:340px;
    height:100vh;
    flex-direction:column;
    align-items:flex-start;
    padding:110px 26px 40px;
    background:rgba(8,7,13,.98);
    backdrop-filter:blur(12px);
    gap:18px;
    transition:.35s ease;
    z-index:999;
    overflow-y:auto;
  }
  .top-nav .main-menu{border-radius:0 0 0 24px;}
  .scroll-nav .main-menu{border-radius:24px 0 0 24px;}
  .top-nav.open .main-menu,
  .scroll-nav.open .main-menu{right:0;}
  .menu-toggle{display:flex;}
  .nav-actions .btn-gradient{display:none;}
  .mobile-cta{display:block;}
  .main-menu li{width:100%;}
  .main-menu a{display:block; width:100%; padding:10px 0;}
  
  /* Hide mega dropdown on mobile */
  .mega-dropdown {
    display: none !important;
  }
  
  .top-nav .brand img{height:52px;}
  .scroll-nav .brand img{height:32px;}
}

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{
    width:100%;
  }
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}

@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}

/* ===========================================
   ADDITIONAL STYLES FROM YOUR ORIGINAL FILE
   Add all your other section styles here...
   =========================================== */
/* ================= BUTTON ================= */
.btn-gradient{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:30px;
  cursor:pointer;
  display:inline-block;
  text-decoration:none
}
.hero .btn-hero{
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color:#000;
  border:none;
  padding:16px 28px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  align-self:flex-start;
  box-shadow:0 10px 40px rgba(0,0,0,.28)
}
/* ================= CHAT ================= */
.chat-box{
  position:fixed;
  right:20px;
  bottom:80px;
  width:280px;
  background:#fff;
  color:#000;
  border-radius:16px;
  padding:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.4)
}
.chat-box button{
  width:100%;
  margin-top:8px;
  border-radius:20px;
  border:1px solid #a855f7;
  background:transparent;
  color:#a855f7;
  padding:8px
}

/* demo scroll */
.section{
  height:140vh;
  background:linear-gradient(120deg,#1a002a,#000)
}
/* ================= SIDE SOCIAL ================= */
.side-social{
  position:fixed;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  opacity:0;
  pointer-events:none;
  transition:.5s ease;
  z-index:999;
}

.side-social.active{
  opacity:1;
  pointer-events:auto;
}

.side-social a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  transition:.35s ease;
  position:relative;
}

/* Glow ring */
.side-social a::after{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:50%;
  opacity:0;
  transition:.35s ease;
}

/* Hover animation */
.side-social a:hover{
  transform:scale(1.15);
  background:#fff;
  color:#000;
}

.side-social a:hover::after{
  opacity:1;
}

/* Platform glow colors */
.linkedin:hover::after{
  background:rgba(10,102,194,.5);
  filter:blur(12px);
}

.instagram:hover::after{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  filter:blur(12px);
}

.facebook:hover::after{
  background:rgba(24,119,242,.5);
  filter:blur(12px);
}

.youtube:hover::after{
  background:rgba(255,0,0,.5);
  filter:blur(12px);
}

@media(max-width:900px){
  .side-social{
    display:none;
  }
}

/* ================= Service SECTION ================= */
/* ===== RESET ===== */

/* ===== SECTION ===== */
.services-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 90px 6vw;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at right top, #7b2cff55, transparent 60%);
  background-size: 40px 40px, 40px 40px, cover;
}

/* ===== LEFT SIDE ===== */
.services-left {
  width: 100%;
  display:flex;
  flex-direction:column;
  gap:32px;
}

.section-label {
  color: #b889ff;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-list li {
  font-size: 2.1rem;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.35s ease;
  padding-left: 34px;
  position:relative;
}

.service-list li:hover {
  color: #ffffff;
}

.service-list li.active {
  color: #ffffff;
  position: relative;
}

.service-list li.active::before {
  content: "🚀";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.5rem;
}

/* ===== RIGHT SIDE ===== */
.services-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-panel{
  display:none;
  flex-direction:column;
  gap:32px;
  animation:fadeSlide .35s ease forwards;
}

.service-panel.active{
  display:flex;
}

/* ===== SERVICE BOX ===== */
.service-box {
  padding: 70px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  border-color: #9b4dff;
}

/* ===== TEXT ===== */
.service-box h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* ===== READ MORE ===== */
.read-more {
  text-decoration: none;
  color: #b889ff;
  font-weight: 500;
  display: inline-flex;
  gap: 6px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #ffffff;
  gap: 10px;
}

@keyframes fadeSlide{
  from{opacity:0; transform:translateY(14px);}
  to{opacity:1; transform:translateY(0);}
}


/* ================= ABOUT PITCH ================= */
.about-pitch{
  position:relative;
  padding:110px 6vw 120px;
  background:linear-gradient(180deg,#05040c 0%,#070716 100%);
  color:#fff;
}
.about-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:48px;
  align-items:center;
}
.about-left{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.about-left h2{
  font-size:clamp(2.4rem,4vw,3.2rem);
  line-height:1.1;
}
.about-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:0;
  margin:4px 0 10px;
}
.about-list li{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:flex-start;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}
.about-list h4{
  margin:0 0 6px;
  font-size:1.05rem;
}
.about-list p{
  margin:0;
  color:#d3d8e6;
  line-height:1.6;
}
.check{
  color:#7c3aed;
  font-size:20px;
  margin-top:2px;
}
.about-btn{
  align-self:flex-start;
  margin-top:6px;
  padding:12px 24px;
}
.about-right{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.idea-visual{
  position:relative;
  width:min(480px, 90vw);
  aspect-ratio:4/5;
  border-radius:28px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,.55)),
    url('../images/about.jpg') center/cover no-repeat;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(0,0,0,.45);
}
.idea-bulb{
  display:none;
}
.idea-glow{
  display:none;
}
.idea-card{
  position:absolute;
  bottom:26px;
  left:26px;
  background:rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 16px 36px rgba(0,0,0,.45);
  min-width:180px;
}
.idea-num{
  font-size:2.2rem;
  font-weight:700;
  color:#fff;
}
.idea-text{
  font-size:.95rem;
  color:#d7dce6;
  line-height:1.4;
}
@media(max-width:960px){
  .about-inner{
    grid-template-columns:1fr;
  }
  .idea-visual{
    margin-top:10px;
  }
}
@media(max-width:768px){
  .about-pitch{
    padding:90px 5vw;
  }
}

@media(max-width:900px){
  .services-section{
    grid-template-columns:1fr;
    gap:40px;
  }
}
@media(max-width:600px){
  .services-section{
    padding:70px 5vw;
  }
  .service-list li{
    font-size:1.6rem;
  }
}

/* ================= PARTNERS ================= */
.partners{
  position:relative;
  padding:110px 6vw 130px;
  background:
    radial-gradient(900px 520px at 20% 15%,rgba(168,85,247,.28),transparent 55%),
    radial-gradient(700px 420px at 75% 10%,rgba(59,130,246,.24),transparent 50%),
    linear-gradient(160deg,#0e0b14 0%,#0b0c14 38%,#0a0612 100%);
  overflow:hidden;
}
.partners::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,0) 32%),
    radial-gradient(circle at 50% 140%,rgba(255,255,255,.06),transparent 60%);
  pointer-events:none;
}
.partners::after{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.05);
  pointer-events:none;
}
.partners-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.partners-eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#e6d7ff;
}
.partners-eyebrow .dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  box-shadow:0 0 16px rgba(251,191,36,.7);
}
.partners-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  text-align:center;
}
.partners-head h3{
  font-size:26px;
  letter-spacing:.4px;
}
.partners-head p{
  color:#b9bfd1;
  max-width:720px;
}
.partners-marquee{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
}
.partners-marquee:hover .marquee-track{
  animation-play-state:paused;
}
.marquee-track{
  display:flex;
  gap:16px;
  width:max-content;
  flex-shrink:0;
  animation:partnerScroll 28s linear infinite;
}
.marquee-track.dupe{
  margin-left:16px;
}
.marquee-row{
  display:flex;
  gap:16px;
}
.partner-card{
  position:relative;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border-radius:16px;
  padding:18px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:auto;
  flex:0 0 auto;
  min-height:110px;
  text-align:center;
  color:#f3f3f3;
  font-weight:600;
  letter-spacing:.3px;
  box-shadow:0 12px 36px rgba(0,0,0,.32);
  overflow:hidden;
  transition:.28s ease;
}
.partner-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(168,85,247,.12),rgba(59,130,246,.08),rgba(236,72,153,.08));
  opacity:0;
  transition:.3s ease;
}
.partner-card:hover{
  border-color:rgba(168,85,247,.6);
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 18px 44px rgba(0,0,0,.4),0 0 18px rgba(168,85,247,.18);
}
.partner-card:hover::before{
  opacity:1;
}
.partner-card img{
  max-width:150px;
  max-height:78px;
  object-fit:contain;
  filter:brightness(.95);
  transition:.25s ease;
  z-index:1;
}
.partner-card:hover img{
  filter:brightness(1.05);
}
.partner-card .label{
  font-size:13px;
  font-weight:500;
  opacity:.82;
  z-index:1;
}
@media(max-width:640px){
  .partners{
    padding:80px 5vw 90px;
  }
  .partners-marquee{
    mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 88%,transparent 100%);
  }
  .partner-card{
    min-height:120px;
  }
}

@keyframes partnerScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

:root{
  --purple:#a400ff;
  --dark:#050506;
  --grid:rgba(255,255,255,.06);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#000;
  color:#fff;
}

/* ================= SECTION ================= */
.tech-section{
  position:relative;
  min-height:100vh;
  padding:120px 8%;
  display:flex;
  align-items:center;
  background:var(--dark);
  overflow:hidden;
}

/* GRID BACKGROUND */
.tech-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg,var(--grid) 1px, transparent 1px);
  background-size:40px 40px;
}

/* PURPLE GLOW */
.tech-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 55%,
      rgba(164,0,255,.45),
      rgba(164,0,255,.15) 40%,
      transparent 70%);
}

/* ================= CONTAINER ================= */
.tech-container{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* ================= LEFT CONTENT ================= */
.section-tag{
  color:var(--purple);
  font-size:.85rem;
  letter-spacing:1px;
}

.tech-left h1{
  margin:18px 0 22px;
  font-size:clamp(2.4rem,4.5vw,3.8rem);
  line-height:1.1;
}

.tech-left p{
  max-width:520px;
  line-height:1.7;
  opacity:.85;
}

/* BUTTON */
.tech-btn{
  display:inline-block;
  margin-top:28px;
  padding:14px 28px;
  background:linear-gradient(135deg,#b000ff,#7a00ff);
  color:#fff;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.tech-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(164,0,255,.6);
}

/* ================= RIGHT IMAGE ================= */
.tech-right{
  display:flex;
  justify-content:center;
}

.tech-right img{
  width:80%;
  max-width:520px;
  filter:drop-shadow(0 0 60px rgba(164,0,255,.5));
  animation:float 6s ease-in-out infinite;
}

/* FLOATING EFFECT */
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-20px)}
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .tech-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .tech-left p{
    margin:auto;
  }
  .tech-right img{
    width:90%;
  }
}
@media(max-width:768px){
  .tech-section{
    padding:90px 6vw;
    min-height:auto;
  }
}


/* ===== FAQ SECTION BACKGROUND ===== */
.faq-section{
  position:relative;
  padding:120px 20px;
  background:var(--bg);
  color:#fff;
  overflow:hidden;
}

/* grid */
.faq-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:40px 40px;
}

/* purple glow */
.faq-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 50%,
      rgba(164,0,255,.35),
      rgba(164,0,255,.15) 35%,
      transparent 65%);
}

/* ===== LAYOUT ===== */
.faq-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
}

/* ===== LEFT CONTENT ===== */
.faq-left small{
  color:var(--purple);
  letter-spacing:1px;
  font-size:.85rem;
}

.faq-left h2{
  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:1.1;
  margin:18px 0 22px;
}

.faq-left p{
  opacity:.8;
  max-width:520px;
  line-height:1.7;
}

/* ===== FAQ ACCORDION ===== */
.faq-item{
  position:relative;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px 22px;
  margin-bottom:14px;
  cursor:pointer;
  transition:transform .25s ease, border-color .3s ease, box-shadow .3s ease;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}

.faq-item:hover{
  border-color:var(--purple);
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.faq-item::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at 50% 50%,rgba(168,85,247,.18),transparent 45%);
  opacity:0;
  transition:.35s ease;
  pointer-events:none;
}

.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:1rem;
  position:relative;
  z-index:1;
}

.faq-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(164,0,255,.15);
  display:grid;
  place-items:center;
  font-size:18px;
  transition:transform .35s ease, background .3s ease, color .3s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s cubic-bezier(.23,1,.32,1), opacity .3s ease;
  opacity:0;
  will-change:max-height;
  position:relative;
  z-index:1;
}

.faq-answer p{
  margin-top:14px;
  opacity:.75;
  line-height:1.6;
  transform:translateY(-6px);
  transition:transform .3s ease;
}

.faq-item.active .faq-answer{
  max-height:500px;
  opacity:1;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
  background:var(--purple);
  color:#000;
}

.faq-item.active::before{
  opacity:1;
}

.faq-item.active .faq-answer p{
  transform:translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .faq-container{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .faq-section{
    padding:90px 5vw;
  }
}
/* SECTION */
.testimonial-section{
  position:relative;
  padding:120px 6vw 140px;
  background:
    radial-gradient(880px 520px at 20% 20%,rgba(168,85,247,.18),transparent 50%),
    radial-gradient(720px 420px at 80% 0%,rgba(56,189,248,.16),transparent 55%),
    linear-gradient(170deg,#06040c 0%,#090713 40%,#05040a 100%);
  overflow:hidden;
}

.testimonial-section::after{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  pointer-events:none;
}

.testimonial-inner{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:34px;
  padding:0 14px;
}

.testimonial-head{
  text-align:center;
  max-width:780px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.testimonial-head h2{
  font-size:clamp(2rem,4vw,3rem);
  letter-spacing:.2px;
}

.testimonial-head .subhead{
  color:#cbd5e1;
  line-height:1.65;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:#a5b4fc;
}
.eyebrow::before,
.eyebrow::after{
  content:"";
  width:22px;
  height:1px;
  background:linear-gradient(90deg,transparent,#a855f7);
  opacity:.6;
}
.eyebrow::after{
  background:linear-gradient(90deg,#38bdf8,transparent);
}

/* SWIPER */
.testimonialSwiper{
  padding:10px 10px 90px;
  max-width:1050px;
  margin:0 auto;
}
.testimonialSwiper .swiper-wrapper{
  padding:6px;
}
.testimonialSwiper .swiper-slide{
  height:auto;
}

.testimonial-card{
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:30px;
  height:100%;
  box-shadow:0 18px 60px rgba(0,0,0,.38);
  display:flex;
  flex-direction:column;
  gap:26px;
  transition:.25s ease;
}

.testimonial-card:hover{
  transform:translateY(-4px);
  border-color:rgba(168,85,247,.4);
  box-shadow:0 22px 70px rgba(0,0,0,.45),0 0 24px rgba(168,85,247,.15);
}

/* COMMENT */
.testimonial-card p{
  font-size:1rem;
  line-height:1.7;
  color:#e5e7eb;
  opacity:.9;
}

/* FOOTER */
.client-info{
  display:flex;
  align-items:center;
  gap:16px;
}

.client-name{
  font-weight:700;
  font-size:1.1rem;
}

.client-post{
  font-size:.9rem;
  opacity:.65;
}

/* STARS */
.stars{
  color:#f5b50a;
  margin-top:8px;
}

.client-avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,#a855f7,#38bdf8);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#0a0a0a;
  letter-spacing:.5px;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
}

/* NAVIGATION */
.swiper-button-next,
.swiper-button-prev{
  position:static;
  color:#fff;
  background:rgba(255,255,255,.08);
  width:38px;
  height:38px;
  border-radius:50%;
  backdrop-filter:blur(8px);
  box-shadow:0 10px 20px rgba(0,0,0,.35);
  margin:0;
}

.swiper-button-next::after,
.swiper-button-prev::after{
  font-size:18px;
  font-weight:bold;
}

.testimonial-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:20px;
  pointer-events:none;
}
.testimonial-nav .swiper-button-next,
.testimonial-nav .swiper-button-prev,
.testimonial-nav .swiper-pagination{
  pointer-events:auto;
}

.swiper-pagination{
  position:static;
}

.swiper-pagination-bullet{
  width:10px;
  height:10px;
  background:#6b7280;
  opacity:.6;
}
.swiper-pagination-bullet-active{
  width:26px;
  border-radius:12px;
  background:linear-gradient(90deg,#a855f7,#38bdf8);
  opacity:1;
}

@media(max-width:1024px){
  .testimonial-section{
    padding:100px 5vw 120px;
  }
  .testimonialSwiper{
    padding-bottom:90px;
  }
}

@media(max-width:640px){
  .testimonial-section{
    padding:80px 5vw 100px;
  }
  .testimonial-card{
    padding:24px;
  }
}


/* stats */
.stats-section{
  background:#fff;
  padding:80px 20px;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  text-align:left;
}

.stat-box{
  position:relative;
}

.stat-box h3{
  font-size:clamp(2.5rem,4vw,4rem);
  font-weight:700;
  margin:0 0 10px;
}

.stat-box p{
  font-size:0.95rem;
  opacity:0.7;
  margin:0;
}

/* underline */
.stat-box::after{
  content:"";
  position:absolute;
  bottom:-12px;
  left:0;
  width:100%;
  height:1px;
  background:#e5e5e5;
}

/* Responsive */
@media(max-width:900px){
  .stats-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .stats-container{
    grid-template-columns:1fr;
    gap:30px;
  }
}

/* ================= STATS ================= */
.stats-section{
  position:relative;
  padding:120px 6vw 140px;
  background:#04030a;
  overflow:hidden;
}
.stats-grid-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:120px 120px;
  opacity:.25;
}
.stats-grid-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 45%,rgba(168,85,247,.24),rgba(56,189,248,.16),transparent 58%);
  filter:blur(18px);
}
.stats-inner{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:34px;
  text-align:center;
}
.stats-head h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-top:6px;
}
.stats-head p{
  color:#cbd5e1;
  max-width:760px;
  margin:8px auto 0;
  line-height:1.6;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:12px;
}
.stat-card{
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
  padding:30px 24px;
  box-shadow:0 16px 40px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
}
.stat-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 20%,rgba(168,85,247,.18),transparent 45%);
  opacity:.8;
}
.stat-value,
.stat-label{
  position:relative;
  z-index:1;
}
.stat-value{
  font-size:clamp(2.6rem,4vw,3.2rem);
  font-weight:700;
  letter-spacing:.4px;
}
.stat-label{
  margin-top:10px;
  font-size:0.95rem;
  color:#d1d5db;
}
@media(max-width:900px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:540px){
  .stats-section{
    padding:90px 5vw 110px;
  }
  .stats-grid{
    grid-template-columns:1fr;
  }
}

/* ================= FOOTER ================= */

.lavender-footer{
    position:relative;
    background:linear-gradient(180deg,#0d0a1f 0%,#140f2d 50%,#090617 100%);
    padding:120px 0 60px;
    overflow:hidden;
    color:#eae6ff;
}

/* BIG BACKGROUND TEXT */
.lavender-footer .bg-text{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    font-size:18vw;
    font-weight:900;
    letter-spacing:10px;
    color:rgba(255,255,255,0.03);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

/* Glow Effect */
.lavender-footer::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(168,85,247,0.35) 0%,transparent 70%);
    top:-250px;
    right:-250px;
    filter:blur(120px);
}

/* Floating Badge */
.floating-badge{
    position:absolute;
    bottom:80px;
    right:10%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    padding:20px 30px;
    border-radius:20px;
    border:1px solid rgba(168,85,247,0.4);
    color:#fff;
    font-weight:600;
    transform:rotate(-8deg);
    box-shadow:0 20px 40px rgba(168,85,247,0.4);
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    position:relative;
    z-index:2;
}

.footer-logo{
    margin-bottom:25px;
}

.footer-logo img{
    max-width:180px;
    height:auto;
    display:block;
    filter:drop-shadow(0 10px 20px rgba(168,85,247,0.5));
    transition:0.3s ease;
}

.footer-logo img:hover{
    transform:scale(1.05);
}

.footer-brand p{
    color:#bfb9ff;
    margin-bottom:35px;
    line-height:1.8;
}
.newsletter form{
    display:flex;
    width:100%;
}

.newsletter input{
    flex:1;
    padding:16px 20px;
    border:none;
    background:transparent;
    color:white;
    outline:none;
}

.newsletter button{
    padding:16px 30px;
    border:none;
    background:linear-gradient(135deg,#a855f7,#c084fc);
    color:white;
    font-weight:600;
    cursor:pointer;
}


/* Links */
.footer-links h4{
    margin-bottom:20px;
    font-weight:700;
    color:#c084fc;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#bfb9ff;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#fff;
    padding-left:6px;
}

/* Social Icons */
.socials{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.socials a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.socials a:hover{
    background:#a855f7;
    transform:translateY(-4px);
}

/* Bottom */
.footer-bottom{
    text-align:center;
    margin-top:100px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#9e9ac8;
    position:relative;
    z-index:2;
}

/* Responsive */
@media(max-width:992px){
    .footer-container{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
    .footer-container{grid-template-columns:1fr;text-align:center;}
    .newsletter{flex-direction:column;border-radius:15px;}
    .newsletter button{width:100%;}
    .floating-badge{display:none;}
}