:root{
  --bg:#050505;
  --bg2:#090909;
  --card:rgba(255,255,255,.055);
  --card2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.13);
  --text:#ffffff;
  --muted:#a7a7b4;
  --purple:#7b2cf5;
  --purple2:#b067ff;
  --cyan:#5be7ff;
  --glow:rgba(123,44,245,.45);
  --shadow:0 30px 90px rgba(0,0,0,.55);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(123,44,245,.22), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(91,231,255,.12), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(123,44,245,.14), transparent 35%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

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

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:110px 0;
  position:relative;
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow{
  width:330px;
  height:330px;
  background:radial-gradient(circle, rgba(123,44,245,.22), transparent 70%);
  position:fixed;
  border-radius:50%;
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:0;
  left:50%;
  top:30%;
}

.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:100;
  padding:18px 0;
  transition:.3s ease;
}

.site-header.scrolled{
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  letter-spacing:.2px;
}

.brand img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 0 35px rgba(123,44,245,.35);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  color:#d9d9e6;
  font-size:14px;
}

.nav-links a{
  transition:.25s;
}

.nav-links a:hover{
  color:var(--text);
}

.nav-cta,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  transition:.3s ease;
  white-space:nowrap;
}

.nav-cta,
.btn.primary{
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  box-shadow:0 15px 50px rgba(123,44,245,.35);
}

.nav-cta:hover,
.btn.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 70px rgba(123,44,245,.48);
}

.btn.secondary{
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:#eee;
}

.btn.secondary:hover{
  background:rgba(255,255,255,.1);
  transform:translateY(-3px);
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
}

.menu-btn span{
  width:18px;
  height:2px;
  background:#fff;
  border-radius:4px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:150px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:60px;
}

.eyebrow,
.mini-title{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#d9c7ff;
  padding:8px 14px;
  border:1px solid rgba(123,44,245,.28);
  background:rgba(123,44,245,.1);
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:22px;
}

.eyebrow span{
  width:9px;
  height:9px;
  background:var(--purple2);
  border-radius:50%;
  box-shadow:0 0 20px var(--purple2);
}

h1,h2,h3{
  font-family:"Space Grotesk",sans-serif;
  line-height:1;
}

h1{
  font-size:clamp(46px, 6vw, 82px);
  letter-spacing:-3px;
  max-width:850px;
}

.hero-text{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  margin:26px 0 34px;
  max-width:650px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-actions.center{
  justify-content:center;
}

.hero-proof{
  display:flex;
  gap:20px;
  margin-top:42px;
  flex-wrap:wrap;
}

.hero-proof div{
  padding:18px 22px;
  min-width:128px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.045);
  border-radius:22px;
}

.hero-proof strong{
  display:block;
  font-size:18px;
}

.hero-proof span{
  color:var(--muted);
  font-size:13px;
  margin-top:5px;
  display:block;
}

.hero-visual{
  position:relative;
  min-height:590px;
}

.orbit{
  position:absolute;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  inset:50px;
  animation:spin 22s linear infinite;
}

.orbit-two{
  inset:110px;
  animation-duration:16s;
  animation-direction:reverse;
}

.main-mockup{
  position:absolute;
  width:min(520px,100%);
  right:0;
  top:80px;
  border:1px solid var(--border);
  background:linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  backdrop-filter:blur(20px);
  border-radius:32px;
  box-shadow:var(--shadow), 0 0 90px rgba(123,44,245,.22);
  overflow:hidden;
  transform:perspective(1000px) rotateY(-9deg) rotateX(4deg);
}

.mockup-top,
.browser-bar{
  display:flex;
  gap:8px;
  padding:18px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.mockup-top span,
.browser-bar span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
}

.mockup-body{
  padding:40px;
  min-height:390px;
}

.mockup-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(123,44,245,.18);
  border:1px solid rgba(123,44,245,.35);
  color:#dac9ff;
  font-size:12px;
  font-weight:700;
  margin-bottom:22px;
}

.mockup-body h3{
  font-size:38px;
  max-width:360px;
  line-height:1.08;
  margin-bottom:16px;
}

.mockup-body p{
  color:var(--muted);
  line-height:1.7;
  max-width:360px;
}

.mockup-line{
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  margin-top:24px;
}

.mockup-line.w1{width:88%;}
.mockup-line.w2{width:62%;}

.mockup-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}

.mockup-grid div{
  height:80px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(123,44,245,.35), rgba(255,255,255,.07));
  border:1px solid rgba(255,255,255,.09);
}

.floating-card{
  position:absolute;
  border:1px solid var(--border);
  background:rgba(10,10,10,.75);
  backdrop-filter:blur(18px);
  border-radius:22px;
  padding:18px 20px;
  box-shadow:var(--shadow);
  animation:float 5s ease-in-out infinite;
}

.floating-card strong{
  display:block;
  margin-bottom:7px;
}

.floating-card span{
  font-size:13px;
  color:var(--muted);
}

.card-a{
  left:0;
  top:160px;
}

.card-b{
  right:30px;
  bottom:85px;
  animation-delay:1s;
}

.trust{
  padding:28px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:rgba(255,255,255,.025);
}

.trust-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.trust-row span{
  color:#e9e9f5;
  font-weight:700;
  font-size:14px;
}

.section-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 60px;
}

.section-head span{
  color:#d8c4ff;
  font-weight:800;
  margin-bottom:14px;
  display:block;
}

.section-head h2,
.why-content h2,
.audit-content h2,
.cta-box h2{
  font-size:clamp(34px,4vw,58px);
  letter-spacing:-2px;
  line-height:1.05;
}

.section-head p,
.why-content p,
.audit-content p,
.cta-box p{
  color:var(--muted);
  line-height:1.8;
  margin-top:18px;
  font-size:17px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.service-card,
.why-card,
.process-item,
.audit-form,
.cta-box,
.project-card{
  border:1px solid var(--border);
  background:linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border-radius:28px;
  backdrop-filter:blur(16px);
  box-shadow:0 24px 80px rgba(0,0,0,.22);
}

.service-card{
  padding:30px;
  min-height:280px;
  transition:.35s ease;
}

.service-card:hover,
.project-card:hover,
.why-card:hover{
  transform:translateY(-8px);
  border-color:rgba(176,103,255,.45);
  box-shadow:0 30px 90px rgba(123,44,245,.16);
}

.icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(123,44,245,.16);
  color:#dfcfff;
  border:1px solid rgba(123,44,245,.35);
  font-weight:800;
  margin-bottom:30px;
}

.service-card h3{
  font-size:24px;
  line-height:1.15;
  margin-bottom:14px;
}

.service-card p,
.why-card p,
.process-item p{
  color:var(--muted);
  line-height:1.75;
}

.work-section{
  background:linear-gradient(180deg, transparent, rgba(123,44,245,.06), transparent);
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.project-card{
  overflow:hidden;
  transition:.35s ease;
}

.project-preview{
  min-height:280px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
}

.project-preview:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg, rgba(0,0,0,.15), rgba(0,0,0,.68));
}

.project-preview h3,
.project-preview p,
.browser-bar{
  position:relative;
  z-index:2;
}

.project-preview h3{
  font-size:30px;
  margin-bottom:10px;
}

.project-preview p{
  color:rgba(255,255,255,.78);
}

.browser-bar{
  position:absolute;
  top:18px;
  left:18px;
  right:18px;
  padding:0;
  border:0;
}

.gradient-one{background:linear-gradient(135deg,#33106f,#0a0a0a);}
.gradient-two{background:linear-gradient(135deg,#6f104f,#0a0a0a);}
.gradient-three{background:linear-gradient(135deg,#5f3b10,#0a0a0a);}
.gradient-four{background:linear-gradient(135deg,#172f6f,#0a0a0a);}
.gradient-five{background:linear-gradient(135deg,#6f1032,#0a0a0a);}
.gradient-six{background:linear-gradient(135deg,#104f6f,#0a0a0a);}

.project-info{
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.project-info span{
  color:var(--muted);
  font-size:13px;
}

.project-info strong{
  color:#dbc9ff;
  font-size:13px;
}

.more-work{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.more-work a{
  padding:13px 18px;
  border:1px solid var(--border);
  border-radius:999px;
  color:#d8d8e7;
  background:rgba(255,255,255,.045);
  transition:.3s;
}

.more-work a:hover{
  background:rgba(123,44,245,.18);
  border-color:rgba(123,44,245,.45);
}

.why-grid,
.audit-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
  align-items:center;
}

.why-content p{
  margin-bottom:28px;
}

.why-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.why-card{
  padding:28px;
  min-height:190px;
  transition:.35s ease;
}

.why-card h3{
  font-size:24px;
  margin-bottom:12px;
}

.process{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  position:relative;
}

.process-item{
  padding:26px;
  min-height:220px;
}

.process-item span{
  color:#d8c4ff;
  font-weight:900;
  margin-bottom:24px;
  display:block;
}

.process-item h3{
  font-size:23px;
  margin-bottom:12px;
}

.audit-section{
  background:radial-gradient(circle at 40% 40%, rgba(123,44,245,.12), transparent 42%);
}

.audit-content ul{
  list-style:none;
  margin-top:28px;
  display:grid;
  gap:14px;
}

.audit-content li{
  color:#e7e7ef;
  padding-left:28px;
  position:relative;
}

.audit-content li:before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--purple2);
  position:absolute;
  left:0;
  top:6px;
  box-shadow:0 0 18px var(--purple2);
}

.audit-form{
  padding:34px;
}

.audit-form label{
  display:block;
  color:#e8e8f2;
  font-weight:700;
  font-size:14px;
  margin-bottom:16px;
}

.audit-form input{
  width:100%;
  height:54px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  color:#fff;
  border-radius:16px;
  margin-top:8px;
  padding:0 16px;
  outline:none;
  font-family:inherit;
}

.audit-form input:focus{
  border-color:rgba(176,103,255,.7);
  box-shadow:0 0 0 4px rgba(123,44,245,.14);
}

.audit-form button{
  width:100%;
  height:56px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  color:#fff;
  font-family:inherit;
  font-weight:900;
  cursor:pointer;
  margin-top:8px;
  box-shadow:0 18px 60px rgba(123,44,245,.35);
}

.audit-form p{
  color:var(--muted);
  text-align:center;
  margin-top:18px;
  font-size:14px;
}

.audit-form p a{
  color:#dccbff;
  font-weight:800;
}

.cta-box{
  text-align:center;
  padding:70px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(123,44,245,.28), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.cta-box span{
  color:#d9c7ff;
  font-weight:800;
  margin-bottom:16px;
  display:block;
}

.cta-box p{
  max-width:760px;
  margin:18px auto 32px;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:linear-gradient(135deg,#25d366,#128c7e);
  z-index:99;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 50px rgba(37,211,102,.35);
}

.whatsapp-float span{
  width:26px;
  height:26px;
  border-radius:50%;
  border:3px solid #fff;
  position:relative;
}

.whatsapp-float span:after{
  content:"";
  width:10px;
  height:8px;
  background:#fff;
  position:absolute;
  right:-2px;
  bottom:-5px;
  clip-path:polygon(0 0,100% 50%,0 100%);
  transform:rotate(22deg);
}

.footer{
  padding:70px 0 28px;
  border-top:1px solid var(--border);
  background:#050505;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr;
  gap:40px;
}

.footer p,
.footer a,
.footer span{
  color:var(--muted);
  display:block;
  margin-top:12px;
}

.footer h4{
  margin-bottom:18px;
}

.copyright{
  padding-top:34px;
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#777783;
  font-size:14px;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:all .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

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

@keyframes spin{
  to{transform:rotate(360deg)}
}

@media(max-width:1024px){
  .hero-grid,
  .why-grid,
  .audit-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:520px;
  }

  .services-grid,
  .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process{
    grid-template-columns:repeat(2,1fr);
  }

  .nav-cta{
    display:none;
  }
}

@media(max-width:760px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .section{
    padding:78px 0;
  }

  .site-header{
    padding:12px 0;
  }

  .menu-btn{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:74px;
    left:14px;
    right:14px;
    background:rgba(7,7,7,.94);
    border:1px solid var(--border);
    backdrop-filter:blur(18px);
    border-radius:22px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .brand span{
    font-size:15px;
  }

  .brand img{
    width:40px;
    height:40px;
  }

  .hero{
    padding-top:118px;
    min-height:auto;
  }

  h1{
    font-size:44px;
    letter-spacing:-2px;
  }

  .hero-text{
    font-size:16px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    width:100%;
  }

  .hero-proof{
    gap:12px;
  }

  .hero-proof div{
    flex:1 1 120px;
    padding:16px;
  }

  .hero-visual{
    min-height:420px;
  }

  .main-mockup{
    top:40px;
    transform:none;
  }

  .mockup-body{
    padding:28px;
    min-height:330px;
  }

  .mockup-body h3{
    font-size:30px;
  }

  .floating-card{
    display:none;
  }

  .trust-row{
    justify-content:center;
    text-align:center;
  }

  .services-grid,
  .portfolio-grid,
  .why-cards,
  .process,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .project-info{
    align-items:flex-start;
    flex-direction:column;
  }

  .section-head h2,
  .why-content h2,
  .audit-content h2,
  .cta-box h2{
    font-size:34px;
    letter-spacing:-1px;
  }

  .cta-box{
    padding:46px 20px;
  }

  .audit-form{
    padding:24px;
  }
}

@media(max-width:420px){
  h1{
    font-size:38px;
  }

  .eyebrow{
    font-size:12px;
    align-items:flex-start;
  }

  .project-preview{
    min-height:240px;
  }

  .whatsapp-float{
    width:54px;
    height:54px;
  }
}


/* User requested updates */
.brand img{width:150px;height:auto;object-fit:contain;border-radius:0;box-shadow:none;filter:drop-shadow(0 0 22px rgba(123,44,245,.35));}
.logo-only img{border-radius:0;box-shadow:none;}
.footer-brand img{width:210px;max-width:100%;}
.mockup-top{align-items:center;}
.mockup-top small{margin-left:auto;color:rgba(255,255,255,.55);font-size:12px;}
.mockup-body.upgraded{min-height:430px;background:radial-gradient(circle at 15% 0%, rgba(176,103,255,.24), transparent 38%),radial-gradient(circle at 90% 30%, rgba(91,231,255,.10), transparent 35%),linear-gradient(145deg, rgba(123,44,245,.10), transparent);}
.dashboard-head{display:grid;grid-template-columns:1fr 92px;gap:18px;align-items:start;}
.score-circle{width:92px;height:92px;border-radius:50%;background:radial-gradient(circle at 50% 50%, rgba(123,44,245,.28), rgba(255,255,255,.04)),conic-gradient(from 20deg, var(--purple2), var(--cyan), var(--purple), rgba(255,255,255,.08));display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 0 40px rgba(123,44,245,.28);}
.score-circle strong{font-size:28px;}
.score-circle span{color:#e9ddff;font-size:11px;font-weight:800;}
.growth-chart{height:112px;margin:26px 0;display:flex;align-items:end;gap:12px;padding:18px;border-radius:22px;background:rgba(0,0,0,.22);border:1px solid rgba(255,255,255,.08);}
.growth-chart div{flex:1;border-radius:999px 999px 8px 8px;background:linear-gradient(180deg, var(--purple2), rgba(123,44,245,.22));box-shadow:0 0 18px rgba(176,103,255,.22);}
.mockup-features{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.mockup-features div{padding:15px;border-radius:18px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.08);}
.mockup-features strong{display:block;font-size:13px;margin-bottom:7px;}
.mockup-features span{display:block;color:var(--muted);font-size:11px;line-height:1.45;}
.live-preview{height:300px;background:#090909;position:relative;overflow:hidden;}
.live-preview:before{content:"";position:absolute;top:0;left:0;right:0;height:34px;z-index:2;background:rgba(7,7,7,.86);border-bottom:1px solid rgba(255,255,255,.11);}
.live-preview:after{content:"";position:absolute;top:13px;left:18px;z-index:3;width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.42);box-shadow:16px 0 rgba(255,255,255,.34),32px 0 rgba(255,255,255,.26);}
.live-preview iframe{width:1440px;height:1100px;border:0;pointer-events:none;transform:scale(.235);transform-origin:top left;margin-top:34px;filter:saturate(1.05) contrast(1.03);}
@media(max-width:760px){.brand img{width:132px}.mockup-top small{display:none}.dashboard-head{grid-template-columns:1fr}.mockup-features{grid-template-columns:1fr}.hero-visual{min-height:530px}.live-preview{height:320px}.live-preview iframe{transform:scale(.225)}.footer-brand img{width:220px}}
@media(max-width:420px){.live-preview{height:280px}.live-preview iframe{transform:scale(.195)}}


/* FINAL CLIENT REQUEST UPDATE */
.brand img{width:150px;height:auto;object-fit:contain;border-radius:0!important;box-shadow:none!important;filter:drop-shadow(0 0 22px rgba(123,44,245,.35));}
.footer-brand img{width:250px;max-width:100%;}
h1{font-size:clamp(40px,4.8vw,66px)!important;letter-spacing:-2.2px!important;max-width:760px;}
.section-head h2,.why-content h2,.audit-content h2,.cta-box h2{font-size:clamp(32px,3.6vw,52px)!important;letter-spacing:-1.6px!important;}
.mockup-body.upgraded{min-height:430px;background:radial-gradient(circle at 15% 0%, rgba(176,103,255,.24), transparent 38%),radial-gradient(circle at 90% 30%, rgba(91,231,255,.10), transparent 35%),linear-gradient(145deg, rgba(123,44,245,.10), transparent);}
.dashboard-head{display:grid;grid-template-columns:1fr 92px;gap:18px;align-items:start;}
.score-circle{width:92px;height:92px;border-radius:50%;background:radial-gradient(circle at 50% 50%, rgba(123,44,245,.28), rgba(255,255,255,.04)),conic-gradient(from 20deg, var(--purple2), var(--cyan), var(--purple), rgba(255,255,255,.08));display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 0 40px rgba(123,44,245,.28);}
.score-circle strong{font-size:28px;}.score-circle span{color:#e9ddff;font-size:11px;font-weight:800;}
.growth-chart{height:112px;margin:26px 0;display:flex;align-items:end;gap:12px;padding:18px;border-radius:22px;background:rgba(0,0,0,.22);border:1px solid rgba(255,255,255,.08);}
.growth-chart div{flex:1;border-radius:999px 999px 8px 8px;background:linear-gradient(180deg, var(--purple2), rgba(123,44,245,.22));box-shadow:0 0 18px rgba(176,103,255,.22);}
.mockup-features{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.mockup-features div{padding:15px;border-radius:18px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.08);}
.mockup-features strong{display:block;font-size:13px;margin-bottom:7px;}.mockup-features span{display:block;color:var(--muted);font-size:11px;line-height:1.45;}
.live-preview{height:360px!important;background:#070707!important;}
.live-preview iframe{width:390px!important;height:900px!important;border:0;pointer-events:none;transform:scale(.85)!important;transform-origin:top left;margin-top:34px;filter:saturate(1.05) contrast(1.03);}
.footer-grid{display:grid;grid-template-columns:1.3fr .8fr!important;gap:50px;align-items:start;}
.footer-main-text{color:#d8d8e7!important;line-height:1.8;margin-top:26px!important;max-width:560px;font-size:17px;}
.footer-email{display:inline-block!important;color:#d9c7ff!important;margin-top:18px!important;font-weight:700;}
.footer a:not(.footer-email),.footer span{color:var(--muted);}
@media(max-width:760px){.brand img{width:135px}.footer-brand img{width:230px}.dashboard-head{grid-template-columns:1fr}.score-circle{width:82px;height:82px}.mockup-features{grid-template-columns:1fr}.hero-visual{min-height:540px}.mockup-body h3{font-size:28px}.live-preview{height:360px!important}.live-preview iframe{transform:scale(.88)!important}.footer-grid{grid-template-columns:1fr!important}h1{font-size:38px!important;letter-spacing:-1.4px!important}}
@media(max-width:420px){h1{font-size:34px!important}.live-preview{height:320px!important}.live-preview iframe{transform:scale(.78)!important}}

@media(max-width:760px){

  .hero{
    padding-top:115px !important;
    padding-bottom:40px !important;
  }

  .hero-grid{
    gap:35px !important;
  }

  .hero-visual{
    min-height:auto !important;
    height:auto !important;
    margin-top:20px !important;
  }

  .main-mockup{
    position:relative !important;
    top:auto !important;
    right:auto !important;
    width:100% !important;
    transform:none !important;
    margin:0 auto !important;
  }

  .mockup-body{
    min-height:auto !important;
    padding:24px !important;
  }

  .mockup-features{
    grid-template-columns:1fr !important;
  }

  .trust{
    margin-top:30px !important;
    position:relative !important;
    z-index:5 !important;
  }

  #services{
    padding-top:80px !important;
    position:relative !important;
    z-index:5 !important;
    background:transparent !important;
  }

  .section-head{
    margin-bottom:40px !important;
  }

  .section-head h2{
    font-size:30px !important;
    line-height:1.12 !important;
  }

  .section-head p{
    font-size:16px !important;
    line-height:1.7 !important;
  }
}

.screenshot-scroll{
  height:320px;
  overflow:hidden;
  position:relative;
  background:#070707;
}

.screenshot-scroll img{
  width:100%;
  height:auto;
  display:block;
  transition:transform 10s ease-in-out;
}

.project-card:hover .screenshot-scroll img{
  transform:translateY(calc(-100% + 320px));
}

@media(max-width:760px){
  .screenshot-scroll img{
    animation:autoScrollShot 12s ease-in-out infinite alternate;
  }

  @keyframes autoScrollShot{
    from{
      transform:translateY(0);
    }
    to{
      transform:translateY(calc(-100% + 320px));
    }
  }
}

