.websqr-websites { background: #fff; overflow-x: clip;}
.websqr-container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

.websqr-hero {
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(75,145,241,.12), rgba(255,255,255,1));
}

.websqr-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  padding: 48px 16px;
}

.websqr-hero__title { font-size: clamp(28px, 3vw, 44px); line-height: 1.1; margin: 0 0 12px; }
.websqr-hero__subtitle { font-size: 18px; line-height: 1.5; margin: 0 0 18px; max-width: 55ch; color: rgba(0,0,0,.75); }

.websqr-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 16px; }

.websqr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.websqr-btn--primary { background: #4b91f1; color: #fff; }
.websqr-btn--primary:hover { filter: brightness(.95); }
.websqr-btn--ghost { background: transparent; border-color: rgba(0,0,0,.18); color: #111; }
.websqr-btn--ghost:hover { background: rgba(0,0,0,.04); }

.websqr-hero__bullets {
  margin: 0; padding: 0 0 0 18px;
  display: grid; gap: 8px;
  color: rgba(0,0,0,.75);
}

.websqr-hero__media { display: flex; justify-content: center; }
.websqr-hero__img { max-width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.12); }

.websqr-content { padding: 32px 16px 44px; }
.websqr-content h2 { font-size: 28px; margin: 32px 10px 12px; }
.websqr-content h3 { font-size: 22px; margin: 22px 0 10px; }
.websqr-content p, .websqr-content li { line-height: 1.65; color: rgba(0,0,0,.80); }
.websqr-content a { text-underline-offset: 3px; }

.websqr-card {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  margin: 10px 0;
}

.websqr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.websqr-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.websqr-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 0; padding: 0; list-style: none; }
.websqr-badges li { padding: 6px 10px; border-radius: 999px; background: rgba(75,145,241,.12); border: 1px solid rgba(75,145,241,.22); }

.websqr-process { counter-reset: step; }
.websqr-step {
  position: relative;
  padding-left: 44px;
}
.websqr-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(75,145,241,.18);
  border: 1px solid rgba(75,145,241,.30);
  font-weight: 800;
}

.websqr-footer-cta {
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(75,145,241,.08);
  padding: 44px 0;
}
.websqr-footer-cta__inner { text-align: center; }
.websqr-footer-cta__title { margin: 0 0 8px; font-size: 30px; }
.websqr-footer-cta__text { margin: 0 0 16px; color: rgba(0,0,0,.75); }

@media (max-width: 900px) {
  .websqr-hero__grid { grid-template-columns: 1fr; padding: 34px 16px; }
  .websqr-grid-3 { grid-template-columns: 1fr; }
  .websqr-grid-2 { grid-template-columns: 1fr; }
}


/* --- Splide "Recent work" marquee --- */
.splide--work .splide__track { overflow: visible; }
.splide--work .splide__list { align-items: stretch; }

.splide--work .splide__slide {
  padding: 8px;
  transition: transform .25s ease;
}
.splide--work .splide__slide:hover {
  transform:scale(1.3);
  z-index:1111;
}
.work-carousel-wrapper{
  max-width:1200px;   /* pick what fits your layout */
  margin:0 auto;      /* center it */
  padding: 50px 20px;
    overflow: clip;    /* optional side breathing room */
}

}
.splide--work{
  width:100%;
}.splide--work .splide__track{
  overflow:visible;
}

.splide--work .splide__list{
  overflow:visible;
}
.work-card{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  background: #fff;
  transform: translateZ(0);
}

.work-card img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 900ms ease;
}

/* Overlay */
.work-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
  opacity: 0;
  transition: opacity 350ms ease;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.72) 100%);
  color: #fff;
}

.work-overlay__title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
}

.work-overlay__text{
  font-size: 15px;
  line-height: 1.4;
  opacity: .95;
}

/* Hover effects */
.work-card:hover img{

}
.work-card:hover .work-overlay{
  opacity: 1;
}

/* Make hover work nicely on touch */
@media (hover: none) {
  .work-overlay{ opacity: 1; }
  .work-card img{ transform: scale(1.02); }
}

/* Optional: soften Splide arrows/pagination if they exist */
.splide--work .splide__arrows,
.splide--work .splide__pagination{
  display: none;
}


.splide--work .splide__slide {
  width: 360px;
}
@media (max-width: 650px) {
  .splide--work .splide__slide {
    width: 86vw;
  }
  .work-card img{ height:530px;}
}


.section-alt{
  background:#f6f8fb;
  border-top:1px solid #e6e9ef;
  border-bottom:1px solid #e6e9ef;
}

.faq-item{
  border:1px solid #edf0f4;
  margin-bottom:12px;
}

.contact-form{
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  background:#ffffff;
}

.card-alt{
  background-color: #4b91f1;
  color:white;
}
.card-alt p{
    color:white;
}

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero__content{
  flex:1;
  max-width: 1100px;
}

.hero__visual{
  flex:1;
  position:relative;
  height:260px;
  display: flex;
  justify-content: center;
}
.hero__visual img{
  position:absolute;
  width:220px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  object-fit:cover;
}

/* front */
.hero__visual img:nth-child(1){
  top:0;
  right:10px;
  z-index:3;
}

/* middle */
.hero__visual img:nth-child(2){
  top:40px;
  right:90px;
  transform:rotate(-4deg);
  opacity:.95;
}

/* back */
.hero__visual img:nth-child(3){
  top:80px;
  right:170px;
  transform:rotate(6deg);
  opacity:.85;
}


.hero{
  position:relative;
  max-width: 1100px;
    margin: auto;
      border-bottom: 1px solid rgba(0,0,0,.08);

    
}
.hero_wrapper{
  height:unset;
  background: linear-gradient(180deg, rgba(75,145,241,.12), rgba(255,255,255,1));
}
.hero::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-60px;
  width:420px;
  height:420px;
  background:radial-gradient(circle, rgba(60,120,220,0.08), transparent 70%);
  z-index:0;
}

.fade-sides {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

.hero_visual_container{
  position:relative;
  height:100%;
  width: 400px;
}