/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e2e8f0;
  --surface:#f8fafc;

  --primary:#6d28d9;
  --primary-light:#8b5cf6;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

.container{
  width:min(1180px,92%);
  margin:auto;
}

.section{
  padding:90px 0;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(20px);

  border-bottom:1px solid rgba(15,23,42,0.08);
}

.nav-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.logo img{
  height:58px;
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}

.nav-center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex:1;
}

.nav-links a{
  text-decoration:none;
  color:var(--muted);
  font-size:0.95rem;
  font-weight:500;
  position:relative;
  transition:0.25s;
}

.nav-links a:hover{
  color:var(--text);
}

.nav-links a:not(.nav-btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:var(--primary);
  transition:0.25s ease;
}

.nav-links a:not(.nav-btn):hover::after{
  width:100%;
}

.nav-btn{
  background:var(--primary);
  color:#fff !important;
  padding:12px 22px;
  border-radius:999px;
}

.nav-btn:hover{
  background:var(--primary-light);
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  font-size:1.8rem;
  cursor:pointer;
}

/* =========================
   HERO
========================= */

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  overflow:hidden;

  min-height:100svh;

  display:flex;
  align-items:center;

  padding-top:95px;
  padding-bottom:35px;

  background:#f8f6ff;
}

/* REMOVE OLD BACKGROUND DIV */
.hero-bg{
  display:none;
}

/* DESKTOP BACKGROUND */
@media(min-width:1024px){

  .hero::before{
    content:"";

    position:absolute;
    inset:0;

    background-image:url("../assets/hero.png");
    background-repeat:no-repeat;
    background-position:right center;
    background-size:cover;

    z-index:0;
  }

  /* SMOOTH FADE FOR TEXT */
  .hero::after{
    content:"";

    position:absolute;
    inset:0;

    background:
      linear-gradient(
        90deg,
        rgba(248,246,255,0.98) 0%,
        rgba(248,246,255,0.93) 35%,
        rgba(248,246,255,0.55) 60%,
        rgba(248,246,255,0.08) 100%
      );

    z-index:1;
  }
}

/* KEEP TEXT ABOVE BACKGROUND */
.hero-grid,
.hero-content{
  position:relative;
  z-index:5;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:60px;
}

.hero-content{
  position:relative;
  z-index:5;
}

.hero-badge{
  display:inline-block;

  padding:9px 16px;
  border-radius:999px;

  background:#f3f0ff;
  color:var(--primary);

  font-size:0.82rem;
  font-weight:600;

  margin-bottom:14px;
}

.hero h1{
  font-family:'Fraunces',serif;

  font-size:clamp(3rem,6vw,6rem);
  line-height:0.92;
  letter-spacing:-2px;

  margin-bottom:16px;
}

.hero h1 span{
  color:var(--primary);
}

.hero-text{
  max-width:600px;

  color:var(--muted);

  font-size:1.05rem;
  line-height:1.7;

  margin-bottom:18px;
}

.hero-proof{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;

  color:var(--muted);

  font-size:0.92rem;
  font-weight:500;

  margin-bottom:22px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;

  position:relative;
  z-index:10;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary,
.btn-white{
  text-decoration:none;
  font-weight:600;
  border-radius:999px;
  transition:0.25s;
}

.btn-primary{
  background:var(--primary);
  color:white;
  padding:15px 26px;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid var(--border);
  color:var(--text);
  padding:15px 26px;
}

.btn-secondary:hover{
  background:var(--surface);
}

.btn-white{
  background:white;
  color:#0f172a;
  padding:18px 32px;
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual{
  position:relative;
  height:500px;
}

.dashboard-card{
  position:absolute;

  right:40px;
  top:55px;

  width:350px;

  background:white;
  border:1px solid var(--border);

  border-radius:30px;

  padding:30px;

  box-shadow:0 30px 80px rgba(15,23,42,0.08);
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:28px;
}

.card-top span{
  color:var(--muted);
}

.card-top strong{
  font-size:2rem;
}

.graph{
  display:flex;
  align-items:flex-end;
  gap:14px;

  height:180px;
}

.bar{
  flex:1;

  background:linear-gradient(
    to top,
    var(--primary),
    #c4b5fd
  );

  border-radius:18px 18px 6px 6px;

  height:40%;
}

.bar.tall{
  height:75%;
}

.bar.tallest{
  height:100%;
}

.floating-card{
  position:absolute;

  background:white;
  border:1px solid var(--border);

  border-radius:24px;

  padding:18px 22px;

  box-shadow:0 15px 40px rgba(15,23,42,0.06);
}

.floating-card p{
  color:var(--muted);
  margin-bottom:5px;
}

.floating-card strong{
  font-size:1.4rem;
}

.card-one{
  left:0;
  top:35px;
}

.card-two{
  bottom:50px;
  right:0;
}

/* =========================
   SECTION HEAD
========================= */

.section-head{
  max-width:700px;
  margin-bottom:55px;
}

.center{
  text-align:center;
  margin-inline:auto;
}

.section-tag{
  display:inline-block;

  color:var(--primary);

  font-size:0.8rem;
  letter-spacing:2px;
  font-weight:700;

  margin-bottom:16px;
}

.section-head h2,
.process-left h2,
.about-box h2,
.cta-box h2{
  font-family:'Fraunces',serif;

  font-size:clamp(2.1rem,5vw,4rem);
  line-height:1.05;
  letter-spacing:-2px;

  margin-bottom:18px;
}

.section-head p,
.process-left p,
.about-box p,
.cta-box p{
  color:var(--muted);

  line-height:1.8;
  font-size:1rem;
}

/* =========================
   SERVICES
========================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  padding:34px;

  border:1px solid var(--border);
  border-radius:28px;

  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(15,23,42,0.07);
}

.service-icon{
  width:56px;
  height:56px;

  border-radius:18px;

  background:#f3f0ff;
  color:var(--primary);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:1.35rem;

  margin-bottom:22px;
}

.service-card h3{
  margin-bottom:12px;
  font-size:1.15rem;
}

.service-card p{
  color:var(--muted);
  line-height:1.75;
}

/* =========================
   RESULTS
========================= */

.results{
  background:var(--surface);
}

.results-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.result-card{
  background:white;

  border:1px solid var(--border);
  border-radius:28px;

  padding:34px;

  transition:0.3s;
}

.result-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(15,23,42,0.06);
}

.result-card h3{
  font-size:1.2rem;
  margin-bottom:12px;
}

.result-card p{
  color:var(--muted);
  line-height:1.75;
}

/* =========================
   PROCESS
========================= */

.process-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
}

.steps{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.step{
  display:flex;
  gap:22px;

  padding-bottom:24px;

  border-bottom:1px solid var(--border);
}

.step span{
  font-size:1.9rem;
  font-family:'Fraunces',serif;
  color:var(--primary-light);
}

.step h3{
  margin-bottom:8px;
}

.step p{
  color:var(--muted);
  line-height:1.75;
}

/* =========================
   ABOUT
========================= */

.about-box{
  background:linear-gradient(
    135deg,
    #faf5ff,
    #ffffff
  );

  border:1px solid #ede9fe;
  border-radius:36px;

  padding:60px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* =========================
   CTA
========================= */

.cta{
  padding:90px 0;
}

.cta-box{
  background:#0f172a;
  color:white;

  border-radius:40px;

  padding:75px 50px;

  text-align:center;
}

.cta-box span{
  color:#a78bfa;

  letter-spacing:2px;
  font-size:0.8rem;
  font-weight:700;
}

.cta-box h2{
  margin:22px 0;
}

.cta-box p{
  max-width:700px;

  margin:auto auto 34px;

  color:#94a3b8;
}

/* =========================
   FOOTER
========================= */

.footer{
  border-top:1px solid var(--border);
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;

  gap:40px;

  padding-bottom:50px;
}

.footer-logo{
  height:42px;
  margin-bottom:18px;
}

.footer-text{
  max-width:300px;

  color:var(--muted);
  line-height:1.75;
}

.footer h4{
  margin-bottom:18px;
}

.footer a{
  display:block;

  margin-bottom:12px;

  color:var(--muted);
  text-decoration:none;
}

.footer a:hover{
  color:var(--text);
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:24px 0;
}

.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;
  flex-wrap:wrap;
}

.footer-copy,
.footer-venture{
  color:var(--muted);
  font-size:0.92rem;
}

.footer-venture a{
  display:inline;
  color:var(--primary);
  font-weight:600;
}

.footer-venture a:hover{
  color:var(--primary-light);
}

/* =========================
   TABLET
========================= */

@media(max-width:1000px){

  .section{
    padding:75px 0;
  }

  .hero{
    min-height:auto;
    padding-top:110px;
    padding-bottom:55px;
  }

  .hero-grid,
  .process-grid,
  .about-box{
    grid-template-columns:1fr;
  }

  .hero-grid{
    gap:30px;
  }

  .hero-visual{
    display:none;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .results-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-box{
    padding:50px;
  }

  .cta{
    padding:75px 0;
  }

  .cta-box{
    padding:65px 40px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-bottom-inner{
    flex-direction:column;
    text-align:center;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){

  .container{
    width:min(92%,540px);
  }

  .section{
    padding:60px 0;
  }

  .navbar{
    backdrop-filter:blur(16px);
  }

  .nav-inner{
    height:74px;
  }

  .logo img{
    height:52px;
  }

  .nav-links{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .mobile-menu{
    position:fixed;

    top:74px;
    left:0;

    width:100%;

    background:white;

    padding:22px;

    border-bottom:1px solid var(--border);

    display:none;
    flex-direction:column;
    gap:18px;

    z-index:998;
  }

  .mobile-menu.active{
    display:flex;
  }

  .mobile-menu a{
    text-decoration:none;
    color:var(--text);
    font-weight:500;
  }

  .hero{
    min-height:auto;

    padding-top:105px;
    padding-bottom:40px;
  }

  .hero-grid{
    gap:10px;
  }

  .hero-badge{
    margin-bottom:12px;
  }

  .hero h1{
    font-size:clamp(2.6rem,11vw,4rem);
    line-height:0.94;
    letter-spacing:-1px;

    margin-bottom:14px;
  }

  .hero-text{
    font-size:0.98rem;
    line-height:1.65;

    margin-bottom:18px;
  }

  .hero-proof{
    gap:8px;
    font-size:0.86rem;

    margin-bottom:18px;
  }

  .hero-actions{
    gap:12px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

  .services-grid,
  .results-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .service-card,
  .result-card{
    padding:28px;
  }

  .section-head{
    margin-bottom:40px;
  }

  .section-head h2,
  .process-left h2,
  .about-box h2,
  .cta-box h2{
    letter-spacing:-1px;
  }

  .about-box{
    padding:36px 24px;
    gap:28px;
  }

  .cta{
    padding:60px 0;
  }

  .cta-box{
    border-radius:30px;
    padding:50px 24px;
  }

  .footer{
    padding-top:55px;
  }

  .footer-bottom{
    text-align:center;
  }

  .footer-bottom-inner{
    flex-direction:column;
    gap:10px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:400px){

  .hero{
    padding-top:100px;
    padding-bottom:35px;
  }

  .hero h1{
    font-size:2.35rem;
  }

  .hero-text{
    font-size:0.94rem;
  }

  .service-card,
  .result-card{
    padding:24px;
  }

  .about-box,
  .cta-box{
    padding-inline:20px;
  }
}