*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#050713;
  color:#fff;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;

  background:
  radial-gradient(circle at 18% 18%, rgba(168,85,247,0.18), transparent 28%),
  radial-gradient(circle at 80% 35%, rgba(59,130,246,0.16), transparent 34%),
  radial-gradient(circle at 48% 100%, rgba(168,85,247,0.12), transparent 35%);

  z-index:-3;
}

body::after{
  content:"";
  position:fixed;
  inset:0;

  background-image:
  linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

  background-size:44px 44px;

  opacity:0.18;

  pointer-events:none;

  z-index:-2;
}

a{
  text-decoration:none;
  color:inherit;
}

section{
  padding:110px 7%;
}

p{
  color:rgba(255,255,255,0.72);
  line-height:1.8;
  font-weight:500;
}

h1{
  font-size:clamp(50px,6vw,92px);
  line-height:0.95;
  letter-spacing:-4px;
  max-width:900px;
}

h2{
  font-size:clamp(38px,5vw,72px);
  line-height:0.98;
  letter-spacing:-3px;
  max-width:900px;
  margin-bottom:36px;
}

h3{
  font-size:24px;
}

.section-label{
  color:#d8b4fe;
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:20px;
}

/* NAVBAR */

header{
  position:sticky;
  top:0;
  z-index:1000;

  padding:20px 7%;

  background:rgba(5,7,19,0.72);

  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.07);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo,
.footer-logo{
  font-size:24px;
  font-weight:950;
  letter-spacing:-1px;
}

.logo span,
.footer-logo span{
  color:#b26cff;
}

.nav-links{
  display:flex;
  gap:34px;
}

.nav-links a{
  color:rgba(255,255,255,0.78);
  font-size:14px;
  font-weight:700;
  transition:0.25s ease;
}

.nav-links a:hover{
  color:#d8b4fe;
}

/* HERO */

.hero{
  min-height:92vh;

  display:grid;
  grid-template-columns:1.05fr 0.95fr;

  align-items:center;

  gap:60px;
}

.hero-p{
  max-width:650px;
  margin:28px 0 34px;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 24px;

  border-radius:999px;

  border:none;

  cursor:pointer;

  font-weight:900;

  transition:0.25s ease;
}

.primary-btn{
  background:linear-gradient(135deg,#ffffff,#d8b4fe);

  color:#111;

  box-shadow:0 0 30px rgba(192,132,252,0.35);
}

.primary-btn:hover{
  transform:translateY(-2px);

  box-shadow:0 0 45px rgba(192,132,252,0.45);
}

.secondary-btn{
  background:transparent;

  border:1px solid rgba(255,255,255,0.22);

  color:white;
}

.secondary-btn:hover{
  background:rgba(192,132,252,0.08);

  border-color:#c084fc;

  color:#d8b4fe;
}

.hero-stats{
  display:flex;
  gap:34px;

  margin-top:46px;

  flex-wrap:wrap;
}

.hero-stats div{
  display:flex;
  flex-direction:column;
}

.hero-stats strong{
  font-size:20px;
}

.hero-stats span{
  font-size:13px;
  color:rgba(255,255,255,0.58);
}

/* HERO VISUAL */

.hero-visual{
  position:relative;

  min-height:540px;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* DASHBOARD */

.analytics-dashboard{
  width:100%;
  max-width:660px;

  padding:28px;

  border-radius:34px;

  background:rgba(255,255,255,0.055);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(20px);

  box-shadow:0 40px 100px rgba(0,0,0,0.38);
}

.dashboard-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:24px;
}

.dashboard-top p{
  color:rgba(255,255,255,0.62);

  font-size:14px;

  font-weight:800;
}

.dashboard-top h3{
  font-size:58px;

  line-height:1;

  letter-spacing:-3px;

  margin-top:6px;
}

.dashboard-top span{
  padding:8px 14px;

  border-radius:999px;

  background:rgba(192,132,252,0.14);

  border:1px solid rgba(192,132,252,0.22);

  color:#d8b4fe;

  font-size:12px;

  font-weight:900;
}

.analytics-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.analytics-card{
  min-height:145px;

  padding:22px;

  border-radius:24px;

  background:rgba(192,132,252,0.07);

  border:1px solid rgba(192,132,252,0.16);
}

.analytics-card p{
  font-size:13px;

  font-weight:850;

  color:rgba(255,255,255,0.66);

  margin-bottom:10px;
}

.analytics-card h4{
  font-size:38px;

  letter-spacing:-2px;

  margin-bottom:18px;
}

.wide-card{
  grid-column:span 2;
  min-height:190px;
}

.chart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:30px;
}

.chart-header p{
  margin:0;
}

.chart-header strong{
  color:#d8b4fe;
  font-size:13px;
}

.mini-bar{
  height:8px;

  border-radius:999px;

  background:rgba(255,255,255,0.12);

  overflow:hidden;
}

.mini-bar span{
  display:block;

  height:100%;

  border-radius:inherit;

  background:linear-gradient(90deg,#ffffff,#c084fc);
}

.fake-chart{
  height:95px;

  display:flex;
  align-items:flex-end;

  gap:14px;
}

.fake-chart span{
  flex:1;

  border-radius:14px 14px 0 0;

  background:linear-gradient(
    180deg,
    #d8b4fe,
    rgba(192,132,252,0.16)
  );
}

.fake-chart span:nth-child(1){
  height:35%;
}

.fake-chart span:nth-child(2){
  height:52%;
}

.fake-chart span:nth-child(3){
  height:48%;
}

.fake-chart span:nth-child(4){
  height:72%;
}

.fake-chart span:nth-child(5){
  height:92%;
}

/* STRIP */

.strip{

  margin-top:90px;

  padding:26px 7%;

  text-align:center;

  color:rgba(255,255,255,0.82);

  font-weight:800;

  border-top:1px solid rgba(255,255,255,0.07);

  border-bottom:1px solid rgba(255,255,255,0.07);

  background:rgba(255,255,255,0.025);
}

/* SERVICES */

.services-grid,
.packages-grid{
  display:grid;
  gap:22px;
}

.services-grid{
  grid-template-columns:repeat(4,1fr);
}

.packages-grid{
  grid-template-columns:repeat(3,1fr);
  align-items:stretch;
}

.service-card,
.package-card,
.checklist div{

  background:rgba(192,132,252,0.07);

  border:1px solid rgba(192,132,252,0.16);

  border-radius:24px;

  padding:32px;

  box-shadow:none;

  transition:none;
}

.service-card:hover,
.package-card:hover,
.checklist div:hover{

  background:rgba(192,132,252,0.07);

  border:1px solid rgba(192,132,252,0.16);

  transform:none;

  box-shadow:none;

  cursor:default;
}

/* PROCESS */

.process{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;

  gap:70px;

  align-items:center;
}

.checklist{
  display:grid;
  gap:18px;
}

.checklist div{
  font-weight:900;
}

/* PACKAGES */

.package-card h4{
  font-size:48px;

  margin:18px 0;

  letter-spacing:-2px;
}

.package-card ul{
  list-style:none;

  margin-top:28px;
}

.package-card li{
  padding:15px 0;

  border-bottom:1px solid rgba(255,255,255,0.12);

  color:rgba(255,255,255,0.86);

  font-weight:800;
}

.featured-package{

  background:linear-gradient(
    145deg,
    rgba(126,34,206,0.35),
    rgba(255,255,255,0.055)
  );

  border:1px solid rgba(192,132,252,0.82);

  box-shadow:0 0 45px rgba(168,85,247,0.28);

  transform:none;

  transition:none;
}

.featured-package:hover{

  background:linear-gradient(
    145deg,
    rgba(126,34,206,0.35),
    rgba(255,255,255,0.055)
  );

  border:1px solid rgba(192,132,252,0.82);

  box-shadow:0 0 45px rgba(168,85,247,0.28);

  transform:none;

  cursor:default;

  transition:none;
}

.badge{
  display:inline-block;

  margin-bottom:18px;

  padding:7px 14px;

  border-radius:999px;

  background:rgba(192,132,252,0.18);

  color:#d8b4fe;

  font-size:12px;

  font-weight:900;

  text-transform:uppercase;
}

/* CONTACT */

.contact{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;

  gap:70px;
}

.contact-details{
  margin-top:24px;
}

.contact-details p{
  color:rgba(255,255,255,0.78);
  font-weight:700;
}

.contact-details a{
  color:#d8b4fe;
}

.contact-details a:hover{
  color:#ffffff;
}

form{
  display:grid;
  gap:16px;
}

input,
textarea{
  width:100%;

  padding:19px 20px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,0.16);

  background:rgba(255,255,255,0.055);

  color:white;

  font-size:15px;

  outline:none;
}

textarea{
  min-height:150px;
  resize:vertical;
}

input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,0.62);
}

input:focus,
textarea:focus{
  border-color:#c084fc;

  box-shadow:0 0 25px rgba(168,85,247,0.18);
}

/* FOOTER */

footer{
  padding:70px 7% 35px;

  border-top:1px solid rgba(255,255,255,0.08);

  background:rgba(0,0,0,0.25);
}

footer p{
  max-width:520px;
  margin-top:12px;
}

.copyright{
  font-size:13px;
  color:rgba(255,255,255,0.45);
}

/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(45px);
  transition:all 0.85s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media (max-width:1050px){

  .hero,
  .process,
  .contact{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .packages-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){

  header{
    padding:18px 5%;
  }

  section{
    padding:80px 5%;
  }

  .nav-links{
    display:none;
  }

  h1{
    font-size:48px;
    letter-spacing:-2px;
  }

  h2{
    font-size:38px;
    letter-spacing:-1.5px;
  }

  .hero{
    min-height:auto;
    padding-top:70px;
  }

  .hero-visual{
    min-height:auto;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .analytics-grid{
    grid-template-columns:1fr;
  }

  .wide-card{
    grid-column:span 1;
  }

  .dashboard-top{
    align-items:flex-start;
    gap:16px;
    flex-direction:column;
  }
}