@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #050510;
  --bg2: #080820;
  --surface: #0d0d2b;
  --surface2: #12122e;
  --border: rgba(99, 102, 241, 0.15);
  --accent: #6366f1;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --glow: rgba(99, 102, 241, 0.4);
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  --gradient2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content:'';
  position:fixed;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:9999;
  opacity:0.4;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--accent); border-radius:2px; }



/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  height: 90px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

nav.scrolled {
  background: rgba(5,5,16,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 78px;
}

.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.logo img{
    height:42px;
    width:auto;
    display:block;
    object-fit:contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(99,102,241,0.1);
}

 .nav-cta {
  background: var(--gradient) !important;
  color: white !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px var(--glow);
  transition: all 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--glow) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  nav {
    height: 72px;
    padding: 0;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .logo img {
    height: 34px;
    max-width: 140px;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 0 30px var(--glow);
  
  
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px var(--glow);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 0 30px rgba(37,211,102,0.3);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(37,211,102,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99,102,241,0.05);
}

/* ── SECTIONS ── */
section { padding: 100px 0; position: relative; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-label::before {
  content:'';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}

/* ── HEADINGS ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

.heading-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -1px;
}

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

.gradient-text2 {
  background: linear-gradient(90deg, #06b6d4, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99,102,241,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover::before { opacity: 1; }

.card:hover {
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ── GLOW ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 { width:500px; height:500px; background:rgba(99,102,241,0.12); top:-200px; right:-100px; }
.orb-2 { width:400px; height:400px; background:rgba(6,182,212,0.08); bottom:-100px; left:-100px; }
.orb-3 { width:300px; height:300px; background:rgba(139,92,246,0.1); top:50%; left:50%; transform:translate(-50%,-50%); }

/* ── GRID LINES BG ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float-bob 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.wa-float svg { width: 28px; height: 28px; fill: white; }

@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wa-float:hover { animation: none; transform: scale(1.1); }

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-ring 2.5s ease-out infinite;
}

@keyframes wa-ring {
  0% { transform:scale(1); opacity:0.8; }
  100% { transform:scale(1.6); opacity:0; }
}

/* ── STATS ── */
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.badge-green { background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.badge-orange { background: rgba(245,158,11,0.1); color: var(--orange); border: 1px solid rgba(245,158,11,0.2); }
.badge-blue { background: rgba(99,102,241,0.1); color: var(--accent); border: 1px solid rgba(99,102,241,0.2); }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 6rem;
  font-family: var(--font-head);
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.stars { color: var(--orange); letter-spacing: 2px; }

/* ── PROCESS STEPS ── */
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 25px var(--glow);
}

/* ── FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.form-group select option { background: var(--surface2); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

/* ── DIVIDERS ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes fade-in {
  from { opacity:0; }
  to { opacity:1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.copyright{
    text-align: center;
    font-size: 16px;
    color: #bdbdbd;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.96);
  backdrop-filter: blur(24px);
  z-index: 9999;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;

  animation: fadeIn 0.3s ease;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;

  padding: 14px 28px;
  border-radius: 14px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);

  min-width: 240px;
  text-align: center;

  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: white;
  transform: translateX(6px);
}

.mobile-nav a:last-child {
  margin-top: 28px;
  padding: 16px 28px;
  border-radius: 999px;

  background: linear-gradient(90deg, #25D366, #1ebe5d);
  color: white;
  opacity: 1 !important;
  -webkit-text-fill-color: white !important;

  width: fit-content;
  min-width: 260px;

  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(37,211,102,0.25),
    0 0 18px rgba(37,211,102,0.15);

  border: none;

  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-nav a:last-child:hover {
  transform: scale(1.04) !important;
  box-shadow:
    0 14px 35px rgba(37,211,102,0.32),
    0 0 24px rgba(37,211,102,0.20);
}

.mobile-nav a:last-child::after {
  display: none;
}




.close-nav {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;
}



.close-nav {
  z-index: 10001 !important;
  pointer-events: auto !important;
}

.hamburger {
  z-index: 100 !important;
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .page-hero { padding: 120px 0 60px; }
  .wa-float { bottom: 20px; right: 20px; }

  .heading-xl { letter-spacing: -1px; }
  .heading-lg { letter-spacing: -0.5px; }
}



/* MAIN SECTION */
.adflue-stats-section{
    padding:40px 20px;
    background:var(--bg2);
}

/* GRID */
.adflue-stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.adflue-single-stat{
    text-align:center;
}

/* NUMBER */
.adflue-stat-value{
    font-size:60px;
    font-weight:800;
    line-height:1;
}

/* LABEL */
.adflue-stat-text{
    margin-top:8px;
    font-size:14px;
    color:var(--text3);
}

.adflue-stat-value{
    font-size:60px;
    font-weight:800;
    line-height:1;

    background: linear-gradient(90deg,#8b5cf6,#3b82f6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* MOBILE */
@media screen and (max-width:768px){

    .adflue-stats-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .adflue-stat-value{
        font-size:42px;
    }

    .adflue-stat-text{
        font-size:12px;
    }

}

@media (max-width: 480px) {
  .btn { padding: 12px 24px; font-size: 0.875rem; }
}

/* ── ICON WRAPPERS ── */
.icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}

 
.card:hover .icon-box {
  background: rgba(99,102,241,0.2);
  border-color: rgba(99,102,241,0.4);
  transform: scale(1.05);
}



/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }




/* MOBILE OVERFLOW FIX */
@media (max-width: 768px) {

  nav,
  .nav-inner {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .orb-1 {
    width: 250px !important;
    height: 250px !important;
    right: -100px !important;
    top: -80px !important;
  }

  body,
  html {
    overflow-x: hidden !important;
  }
  
 footer .container > div:first-child {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

}

nav .logo img {
  height: 100px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block !important;
  object-fit: contain !important;
}

nav .logo {
  display: flex !important;
  align-items: center !important;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;

 
 
@media (max-width: 768px){

   .btn-wa{
      display: none;
   }
   
   .wa-float{
      bottom: 17px;
      right: 28px;
   }
   .btn-primary{
       margin-top:20px;
   }
   
    .hero-metrics{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
    }

    .hero-metrics > div{
        flex: 1;
        width: 33%;
    }

    .hero-metric-val{
        font-size: 24px;
    }

    .hero-metric-label{
        font-size: 9px;
        line-height: 1.2;
    }
    
    .stats-grid{
    grid-template-columns:1fr 1fr;
    gap:15px;
}
     .stats-grid{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }



}






   
   

/*   .hamburger{*/
/*       margin-left: 78px;*/
/*}*/


}


