:root {
  --header-bg: #ffffff;
  --primary-color: #28104b;
  --text-color: #151032;
  --hover-bg: #170936;
  --hover-color: #b28cff;
  --font-family: Arial, Helvetica, sans-serif;

  --header-height: 14vh;
  --header-width: 100vw;
  --logo-width: 7.2vw;
  --container-width: 100vw;
  --menu-font-size: 1.12vw;
  --menu-gap: 5.2vw;





  --primary-color: #16062f;
  --button-bg: #b58cff;
  --button-text: #16062f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: #f4f4f4;
  color: var(--text-color);
}

:root {
  --header-height: 92px;
  --primary-color: #16062f;
  --button-bg: #b58cff;
  --button-text: #16062f;
}

.site-header {
  width: 100%;
  height: var(--header-height);
  background: #ffffff;
  border-top: 1px solid #111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header-container {
  width: 100%;
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 15px 30px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.header-contact-btn:hover {
  background: #16062f;
  color: #ffffff;
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

body {
  padding-top: var(--header-height);
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .header-container {
    padding: 0 22px;
  }

  .logo img {
    width: 160px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 30px;
    height: 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background: #16062f;
    border-radius: 20px;
    transition: 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #eee;
    transition: max-height 0.35s ease;
  }

  .mobile-nav.active {
    max-height: 120px;
  }

  .mobile-contact-btn {
    display: block;
    padding: 18px 24px;
    color: #16062f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
  }
}





.hero-section{
  width:100%;
  min-height:100vh;
  background:#16062f;
  color:#fff;
  overflow:hidden;
  position:relative;
  padding-top:90px;
  font-family:Arial, Helvetica, sans-serif;
}

.hero-content{
  max-width:1320px;
  margin:0 auto;
  padding:0 170px;
  text-align:center;
  position:relative;
  z-index:5;
}

.eyebrow{
  color:#b78cff;
  font-size:17px;
  font-weight:500;
  margin-bottom:28px;
}

.hero-content h1{
  max-width:1120px;
  margin:0 auto 28px;
  font-size:56px;
  line-height:1.14;
  letter-spacing:-1.4px;
  font-weight:900;
}

.hero-desc{
  max-width:1120px;
  margin:0 auto;
  font-size:16px;
  line-height:1.55;
  font-weight:800;
  color:#fff;
}

.hero-btn{
  margin-top:26px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:17px 42px;
  background:#b58cff;
  color:#15052d;
  text-decoration:none;
  border-radius:10px;
  font-size:18px;
  font-weight:700;
}

.hero-btn span{
  width:20px;
  height:20px;
  border:3px solid #15052d;
  border-radius:50%;
  position:relative;
}

.hero-btn span:after{
  content:"";
  width:7px;
  height:7px;
  background:#15052d;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.portfolio-area{
  margin-top:82px;
  position:relative;
  width:100%;
  height:395px;
}

.image-row{
  width:100%;
  overflow:hidden;
  position:absolute;
  left:0;
}

.row-one{
  top:0;
}

.row-two{
  top:210px;
}

.image-track{
  display:flex;
  gap:22px;
  width:max-content;
  will-change:transform;
  transition:transform .12s linear;
}

.row-one .image-track{
  transform:translateX(-120px);
}

.row-two .image-track{
  transform:translateX(-330px);
}

.image-track img{
  width:315px;
  height:190px;
  object-fit:cover;
  border-radius:6px;
  filter:brightness(.50);
  flex-shrink:0;
}

.row-two .image-track img{
  filter:brightness(.38);
}

.feature-pill{
  position:absolute;
  left:50%;
  top:285px;
  transform:translateX(-50%);
  width:min(1200px, 78%);
  background:#20104a;
  border-radius:80px;
  padding:16px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  z-index:9;
  box-shadow:0 22px 60px rgba(0,0,0,.45);
}

.feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  min-width:max-content;
}

.feature-item strong{
  font-size:18px;
  line-height:1.08;
  font-weight:900;
}

.icon{
  width:52px;
  height:52px;
  border:1px solid rgba(255,255,255,.85);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:21px;
  flex-shrink:0;
  color:#fff;
}

.figma{
  color:#ff6b4a;
}

.mobile-feature-marquee{
  display:none;
}

@media(max-width:1400px){
  .hero-content{
    padding:0 120px;
  }

  .hero-content h1{
    font-size:50px;
    max-width:1040px;
  }

  .hero-desc{
    max-width:1040px;
    font-size:15.5px;
  }

  .image-track img{
    width:295px;
    height:178px;
  }

  .row-two{
    top:202px;
  }

  .feature-pill{
    top:280px;
    width:80%;
    padding:15px 34px;
  }

  .feature-item strong{
    font-size:16px;
  }

  .icon{
    width:48px;
    height:48px;
  }
}

@media(max-width:991px){
  .hero-section{
    padding-top:65px;
  }

  .hero-content{
    padding:0 35px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-desc{
    font-size:15px;
    font-weight:700;
  }

  .portfolio-area{
    height:520px;
    margin-top:70px;
  }

  .image-track img{
    width:260px;
    height:165px;
  }

  .row-two{
    top:178px;
  }

  .feature-pill{
    top:360px;
    width:88%;
    border-radius:25px;
    padding:18px;
  }

  .feature-item strong{
    font-size:15px;
  }

  .icon{
    width:42px;
    height:42px;
    font-size:18px;
  }
}

@media(max-width:575px){
  .hero-section{
    min-height:auto;
    padding-top:46px;
    padding-bottom:0;
  }

  .hero-content{
    padding:0 24px;
  }

  .eyebrow{
    font-size:12px;
    margin-bottom:18px;
  }

  .hero-content h1{
    font-size:27px;
    line-height:1.12;
    letter-spacing:-.5px;
    max-width:360px;
    margin-bottom:18px;
  }

  .hero-desc{
    font-size:13px;
    line-height:1.48;
    font-weight:800;
    max-width:340px;
  }

  .hero-btn{
    margin-top:20px;
    padding:12px 24px;
    font-size:13px;
    border-radius:8px;
  }

  .hero-btn span{
    width:16px;
    height:16px;
    border-width:2px;
  }

  .hero-btn span:after{
    width:5px;
    height:5px;
  }

  .portfolio-area{
    margin-top:28px;
    height:420px;
    overflow:hidden;
  }

  .feature-pill{
    display:none;
  }

  .mobile-feature-marquee{
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    overflow:hidden;
    z-index:12;
  }

  .mobile-feature-track{
    display:flex;
    align-items:center;
    gap:28px;
    width:max-content;
    animation:mobileFeatureScroll 18s linear infinite;
  }

  .mobile-feature-marquee .feature-item{
    display:flex;
    align-items:center;
    gap:9px;
    min-width:max-content;
  }

  .mobile-feature-marquee .feature-item strong{
    font-size:12px;
    line-height:1.15;
    font-weight:500;
    white-space:nowrap;
  }

  .mobile-feature-marquee .icon{
    width:34px;
    height:34px;
    font-size:14px;
    border:1px solid rgba(255,255,255,.8);
  }

  .row-one{
    top:72px;
  }

  .row-two{
    top:205px;
  }

  .image-row{
    overflow:visible;
  }

  .image-track{
    gap:10px;
  }

  .image-track img{
    width:136px;
    height:105px;
    border-radius:6px;
    filter:brightness(.55);
  }

  .row-two .image-track img{
    filter:brightness(.48);
  }

  @keyframes mobileFeatureScroll{
    from{
      transform:translateX(0);
    }
    to{
      transform:translateX(-50%);
    }
  }
}









:root {
  --featured-bg: #f6f6f6;
  --featured-text: #140a2f;

  --featured-padding-top: 75px;
  --featured-padding-bottom: 135px;

  --featured-title-size: 46px;
  --featured-title-weight: 700;

  --featured-container-width: 1180px;
  --featured-gap: 86px;

  --featured-logo-width: 264px;
  --featured-logo-height: 136px;
}

.featured-section {
  width: 100%;
  background: var(--featured-bg);
  padding: var(--featured-padding-top) 5vw var(--featured-padding-bottom);
}

.featured-container {
  max-width: var(--featured-container-width);
  margin: 0 auto;
  text-align: center;
}

.featured-container h2 {
  color: var(--featured-text);
  font-size: clamp(32px, 2.4vw, var(--featured-title-size));
  font-weight: var(--featured-title-weight);
  line-height: 1.2;
  margin-bottom: 36px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--featured-gap);
  align-items: center;
}

.featured-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--featured-logo-height);
  background: transparent;
  text-decoration: none;
}

.featured-grid img {
  width: 100%;
  max-width: var(--featured-logo-width);
  height: var(--featured-logo-height);
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.featured-grid a:hover img {
  transform: translateY(-4px);
  opacity: 0.88;
}

@media (max-width: 1024px) {
  :root {
    --featured-padding-top: 60px;
    --featured-padding-bottom: 90px;
    --featured-gap: 35px;
    --featured-logo-width: 210px;
    --featured-logo-height: 110px;
  }
}

@media (max-width: 768px) {
  :root {
    --featured-padding-top: 48px;
    --featured-padding-bottom: 60px;
    --featured-title-size: 34px;
    --featured-gap: 22px;
    --featured-logo-width: 150px;
    --featured-logo-height: 78px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}







.shopify-services-section{
  background:#f4f4f4;
  padding:0 0 80px;
  color:#16062f;
  font-family:Arial, Helvetica, sans-serif;
}

.services-container{
  width:min(1640px, 88%);
  margin:0 auto;
}

.services-container h2{
  text-align:center;
  font-size:42px;
  line-height:1;
  font-weight:900;
  color:#16062f;
  margin:0 0 38px;
}

.services-subtitle{
  max-width:1150px;
  margin:0 auto 50px;
  text-align:center;
  font-size:15px;
  line-height:1.6;
  color:#16062f;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
  align-items:stretch;
}

.service-card{
  background:#fff;
  border:1.5px solid transparent;
  border-radius:18px;
  padding:48px 38px;
  min-height:390px;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  overflow:hidden;
  transition:all .3s ease;
}

.service-card:hover{
  border-color:#b58cff;
}

.service-icon{
  font-size:42px;
  line-height:1;
  margin-bottom:28px;
  color:#16062f;
  flex-shrink:0;
}

.service-card h3{
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  margin:0 0 16px;
  color:#16062f;
}

.service-card p{
  font-size:14px;
  line-height:1.55;
  color:#16062f;
  margin:0 0 26px;
}

.service-btn{
  margin-top:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#b58cff;
  color:#16062f;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  padding:14px 28px;
  min-height:50px;
  border-radius:8px;
  transition:.3s ease;
}


.service-btn span{
  width:15px;
  height:15px;
  border:2px solid currentColor;
  border-radius:50%;
  position:relative;
  flex-shrink:0;
}

.service-btn span:after{
  content:"";
  width:5px;
  height:5px;
  background:currentColor;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

@media(max-width:1200px){
  .services-container{
    width:90%;
  }

  .services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .service-card{
    min-height:370px;
  }
}

@media(max-width:768px){
  .shopify-services-section{
    padding:45px 0 60px;
  }

  .services-container{
    width:92%;
  }

  .services-container h2{
    font-size:32px;
    margin-bottom:22px;
  }

  .services-subtitle{
    font-size:14px;
    margin-bottom:35px;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .service-card{
    min-height:auto;
    padding:34px 26px;
  }

  .service-icon{
    font-size:36px;
    margin-bottom:22px;
  }

  .service-card h3{
    font-size:20px;
  }

  .service-card p{
    font-size:13.5px;
    line-height:1.5;
  }
}

@media(max-width:480px){
  .services-container h2{
    font-size:29px;
  }

  .service-card{
    padding:30px 22px;
  }

  .service-card h3{
    font-size:19px;
  }

  .service-card p{
    font-size:13px;
  }

  .service-btn{
    padding:12px 22px;
    font-size:13px;
  }
}

.service-card{
  height:auto !important;
  min-height:unset !important;
  overflow:visible !important;
  padding-bottom:38px !important;
}

.services-grid{
  align-items:start !important;
}

.service-btn{
  margin-top:20px !important;
  position:static !important;
}

.service-card p{
  margin-bottom:0 !important;
}
.services-container{
  width:100% !important;
  max-width:1720px !important;
  padding-left:90px !important;
  padding-right:90px !important;
  margin:0 auto !important;
}

.services-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:28px !important;
  align-items:stretch !important;
}

.service-card{
  height:100% !important;
  min-height:430px !important;
  overflow:visible !important;
}

@media(max-width:1200px){
  .services-container{
    padding-left:50px !important;
    padding-right:50px !important;
  }

  .services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media(max-width:768px){
  .services-container{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .services-grid{
    grid-template-columns:1fr !important;
  }

  .service-card{
    min-height:auto !important;
  }
}












/* =========================
   CASE STUDIES SECTION FINAL
========================= */

.case-section {
  background: #1a0d3a;
  padding: 72px 5vw;
  color: #fff;
}

.case-container {
  max-width: 1500px;
  margin: 0 auto;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.case-left h2 {
  font-size: clamp(44px, 3.4vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
  color: #b794ff;
}

.case-left h2 strong {
  color: #b794ff;
  font-weight: 700;
}

.case-right p {
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 700px;
}

.case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #c6a6ff, #8d6be8);
  color: #150b35;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}

@media (max-width: 1100px) {
  .case-section {
    padding: 58px 4vw;
  }

  .case-grid {
    gap: 42px;
  }

  .case-left h2 {
    font-size: 44px;
  }

  .case-right p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .case-section {
    padding: 48px 22px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-left h2 {
    font-size: 36px;
  }

  .case-right p {
    font-size: 16px;
    line-height: 1.6;
  }

  .case-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 16px;
  }
}



.ps-case-slider {
  width: 100%;
  background: #1a0d3a;
  padding: 85px 0 95px;
  overflow: hidden;
}

.psCaseSwiper {
  width: 100%;
  overflow: visible;
}

.ps-case-slide {
  position: relative;
  height: 360px;
  overflow: hidden;
  opacity: 0.72;
  transform: translateY(0) scale(0.94);
  transition: 0.65s ease;
}

.ps-case-slide.swiper-slide-active {
  height: 460px;
  opacity: 1;
  transform: translateY(-50px) scale(1);
  z-index: 5;
}

.ps-case-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* side overlay */
.ps-case-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 13, 58, 0.38);
  z-index: 1;
  transition: 0.4s ease;
}

/* active bottom gradient */
.ps-case-slide.swiper-slide-active::after {
  background: linear-gradient(
    to bottom,
    rgba(26, 13, 58, 0.05) 35%,
    rgba(26, 13, 58, 0.95) 100%
  );
}

.ps-case-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 44px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: 0.4s ease;
  pointer-events: none;
}

.ps-case-slide.swiper-slide-active .ps-case-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ps-case-content span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.ps-case-content h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}

.ps-case-content h3 a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.25s ease;
}

.ps-case-content h3 a:hover {
  background: transparent;
  color: #ff1d1d;
}

.ps-case-pagination {
  position: relative !important;
  margin-top: 30px;
  bottom: auto !important;
  text-align: center;
}

.ps-case-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 0;
  background: #b794ff;
  opacity: 0.45;
  margin: 0 6px !important;
}

.ps-case-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .ps-case-slider {
    padding: 70px 0 80px;
  }

  .ps-case-slide {
    height: 310px;
  }

  .ps-case-slide.swiper-slide-active {
    height: 390px;
    transform: translateY(-35px) scale(1);
  }
}

@media (max-width: 768px) {
  .ps-case-slider {
    padding: 55px 0 65px;
  }

  .ps-case-slide {
    height: 260px;
    transform: translateY(0) scale(0.96);
  }

  .ps-case-slide.swiper-slide-active {
    height: 320px;
    transform: translateY(-25px) scale(1);
  }

  .ps-case-content {
    bottom: 28px;
    left: 18px;
    right: 18px;
  }

  .ps-case-content h3 {
    font-size: 24px;
  }

  .ps-case-content span {
    font-size: 10px;
  }
}








.contact-section{
  background:#f4f4f4;
  padding:70px 70px;
  font-family:Arial, Helvetica, sans-serif;
}

.contact-box{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  background:#b58cff;
  border-radius:18px;
  padding:65px 110px 95px;
  color:#16062f;
}

.contact-box h2{
  text-align:center;
  font-size:48px;
  line-height:1.18;
  font-weight:400;
  margin:0 0 52px;
  color:#16062f;
}

.contact-form{
  width:100%;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  margin-bottom:32px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.75);
  background:transparent;
  color:#16062f;
  font-size:16px;
  padding:0 0 13px;
  outline:none;
  font-family:inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#33204c;
  opacity:1;
}

.contact-form textarea{
  height:135px;
  resize:vertical;
  margin-top:8px;
}

.contact-form button{
  display:block;
  margin:24px auto 0;
  background:#000;
  color:#fff;
  border:0;
  border-radius:10px;
  padding:16px 38px;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:.3s ease;
}

.contact-form button:hover{
  background:#16062f;
  transform:translateY(-2px);
}

@media(max-width:991px){
  .contact-section{
    padding:55px 35px;
  }

  .contact-box{
    max-width:100%;
    padding:52px 42px 75px;
  }

  .contact-box h2{
    font-size:38px;
  }
}

@media(max-width:650px){
  .contact-section{
    padding:42px 18px;
  }

  .contact-box{
    padding:40px 22px 52px;
    border-radius:16px;
  }

  .contact-box h2{
    font-size:29px;
    line-height:1.25;
    margin-bottom:36px;
  }

  .form-row{
    grid-template-columns:1fr;
    gap:27px;
    margin-bottom:27px;
  }

  .contact-form textarea{
    height:125px;
  }

  .contact-form button{
    width:100%;
  }
}









:root {
  --work-bg: #1a0d3c;
  --work-text: #ffffff;
  --work-accent: #b89cff;
  --work-check: #ffc79f;

  --work-padding-top: 45px;
  --work-padding-bottom: 70px;
  --work-container-width: 1500px;

  --work-title-size: 66px;
  --work-subtitle-size: 27px;
  --work-list-size: 30px;

  --work-image-width: 705px;
  --work-image-height: 520px;
}

.work-section {
  width: 100%;
  background: var(--work-bg);
  color: var(--work-text);
  padding: var(--work-padding-top) 7vw var(--work-padding-bottom);
  overflow: hidden;
}

.work-container {
  max-width: var(--work-container-width);
  margin: 0 auto;
}

.work-heading {
  text-align: center;
  margin-bottom: 55px;
}

.work-heading h2 {
  font-size: clamp(38px, 3.55vw, var(--work-title-size));
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 70px;
  color: var(--work-text);
}

.work-heading p {
  font-size: clamp(18px, 1.45vw, var(--work-subtitle-size));
  line-height: 1.55;
  font-weight: 400;
  color: var(--work-text);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 165px;
  align-items: center;
}

.work-image img {
  width: 100%;
  max-width: var(--work-image-width);
  height: var(--work-image-height);
  object-fit: cover;
  object-position: center;
  display: block;
}

.work-content {
  padding-top: 40px;
}

.work-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 38px;
}

.work-content li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 32px;
  font-size: clamp(20px, 1.55vw, var(--work-list-size));
  line-height: 1.28;
  font-weight: 400;
  color: var(--work-text);
  white-space: nowrap;
}

.work-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--work-check);
  font-size: 30px;
  font-weight: 800;
}

.work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--work-accent);
  color: #1a0d3c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  transition: 0.3s ease;
}

.work-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  :root {
    --work-title-size: 46px;
    --work-subtitle-size: 20px;
    --work-list-size: 22px;
    --work-image-height: 460px;
  }

  .work-grid {
    gap: 70px;
  }

  .work-content li {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  :root {
    --work-title-size: 34px;
    --work-subtitle-size: 17px;
    --work-list-size: 17px;
    --work-image-height: auto;
  }

  .work-section {
    padding: 45px 22px 55px;
  }

  .work-heading {
    margin-bottom: 34px;
  }

  .work-heading h2 {
    margin-bottom: 22px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-image img {
    max-width: 100%;
    height: auto;
  }

  .work-content {
    padding-top: 0;
  }

  .work-content li {
    padding-left: 32px;
    margin-bottom: 17px;
    white-space: normal;
  }

  .work-content li::before {
    font-size: 18px;
    top: 0;
  }
}













.shopify-partner-section{
  background:#f4f4f4;
  padding:65px 20px 75px;
  font-family:Arial, Helvetica, sans-serif;
  color:#16062f;
}

.shopify-partner-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.shopify-partner-container h2{
  font-size:54px;
  line-height:1.1;
  font-weight:900;
  color:#16062f;
  margin:0 0 45px;
}

.shopify-partner-container p{
  max-width:970px;
  margin:0 auto 50px;
  font-size:20px;
  line-height:1.7;
  color:#16062f;
}

.partner-logo-link{
  display:inline-block;
}

.partner-logo-link img{
  width:640px;
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto;
}

@media(max-width:991px){
  .shopify-partner-section{
    padding:55px 20px 65px;
  }

  .shopify-partner-container h2{
    font-size:42px;
    margin-bottom:32px;
  }

  .shopify-partner-container p{
    font-size:17px;
    margin-bottom:38px;
  }

  .partner-logo-link img{
    width:520px;
  }
}

@media(max-width:575px){
  .shopify-partner-section{
    padding:45px 16px 55px;
  }

  .shopify-partner-container h2{
    font-size:32px;
    line-height:1.15;
  }

  .shopify-partner-container p{
    font-size:15px;
    line-height:1.6;
  }

  .partner-logo-link img{
    width:300px;
  }
}










.shopify-video-section{
  background:#f4f4f4;
  padding:45px 20px 70px;
  font-family:Arial, Helvetica, sans-serif;
}

.shopify-video-container{
  width:100%;
  max-width:1350px;
  margin:0 auto;
}

.video-wrapper{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:#000;
}

.video-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media(max-width:991px){
  .shopify-video-section{
    padding:40px 18px 60px;
  }

  .shopify-video-container{
    max-width:100%;
  }
}

@media(max-width:575px){
  .shopify-video-section{
    padding:32px 14px 45px;
  }

  .video-wrapper{
    aspect-ratio:16 / 9;
  }
}









.video-shorts-section {
  width: 100%;
  background: #f6f6f6;
  padding: 45px 5vw;
}

.video-shorts-container {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.copy-link-btn {
  position: absolute;
  left: 26px;
  bottom: 28px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-link-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.copy-link-btn.copied::after {
  content: "Copied";
  position: absolute;
  left: 58px;
  bottom: 12px;
  background: #190c39;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .video-shorts-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
  }
}

@media (max-width: 768px) {
  .video-shorts-section {
    padding: 35px 22px;
  }

  .video-shorts-container {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 390px;
  }

  .video-card {
    border-radius: 20px;
  }
}










.about-me-section{
  background:#170733;
  color:#fff;
  padding:90px 70px 100px;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.about-me-container{
  width:100%;
  max-width:1580px;
  margin:0 auto;
}

.about-main-title{
  text-align:center;
  font-size:48px;
  line-height:1.1;
  font-weight:400;
  margin:0 0 75px;
  color:#fff;
}

.about-me-grid{
  display:grid;
  grid-template-columns:1fr 0.92fr;
  gap:80px;
  align-items:start;
}

.about-content{
  max-width:760px;
}

.about-block{
  margin-bottom:36px;
}

.about-block h3{
  font-size:32px;
  line-height:1.15;
  font-weight:900;
  margin:0 0 28px;
  color:#fff;
}

.about-block ul{
  list-style:none;
  padding:0;
  margin:0;
}

.about-block li{
  position:relative;
  padding-left:15px;
  margin-bottom:13px;
  font-size:18px;
  line-height:1.4;
  color:#fff;
}

.about-block li::before{
  content:"○";
  position:absolute;
  left:0;
  top:0;
  font-size:16px;
  line-height:1.4;
  color:#fff;
}

.about-call-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:28px;
  background:#b58cff;
  color:#170733;
  text-decoration:none;
  padding:13px 24px;
  border-radius:999px;
  font-size:16px;
  font-weight:600;
  transition:.3s ease;
}

.about-call-btn:hover{
  background:#fff;
  transform:translateY(-2px);
}

.about-call-btn span{
  font-size:22px;
  font-weight:800;
}

.about-image-wrap{
  position:sticky;
  top:120px;
  padding-top:360px;
}

.about-image{
  width:100%;
  max-width:690px;
  display:block;
  margin-left:auto;
  object-fit:cover;
}

@media(max-width:1200px){
  .about-me-section{
    padding:80px 45px 90px;
  }

  .about-main-title{
    font-size:52px;
  }

  .about-me-grid{
    gap:50px;
  }

  .about-block h3{
    font-size:36px;
  }

  .about-block li{
    font-size:16px;
  }

  .about-image-wrap{
    padding-top:260px;
  }
}

@media(max-width:991px){
  .about-me-section{
    padding:65px 28px 75px;
  }

  .about-main-title{
    font-size:36px;
    margin-bottom:45px;
  }

  .about-me-grid{
    grid-template-columns:1fr;
    gap:45px;
  }

  .about-content{
    max-width:100%;
  }

  .about-block h3{
    font-size:28px;
  }

  .about-image-wrap{
    position:relative;
    top:auto;
    padding-top:0;
  }

  .about-image{
    max-width:620px;
    margin:0 auto;
  }
}

@media(max-width:575px){
  .about-me-section{
    padding:50px 18px 60px;
  }

  .about-main-title{
    font-size:30px;
  }

  .about-block{
    margin-bottom:30px;
  }

  .about-block h3{
    font-size:24px;
    margin-bottom:20px;
  }

  .about-block li{
    font-size:13.5px;
    padding-left:24px;
    margin-bottom:14px;
  }

  .about-call-btn{
    font-size:16px;
    padding:13px 22px;
  }
}















/* =========================
   SERVICES SECTION FINAL
========================= */

.services-section {
  background: #f6f6f6;
  padding: 90px 5vw 55px;
  color: #150b35;
  overflow: hidden;
}

.services-container {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}

.services-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 70px;
  margin-bottom: 68px;
}

.services-top h2 {
  margin: 0;
  font-size: clamp(42px, 3.6vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2px;
}

.services-top p {
  margin: 10px 0 0;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.7;
  font-weight: 400;
  max-width: 790px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.1vw, 60px);
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid transparent;
  height: 315px;
  min-height: 315px;
  padding: 34px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.25s ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: #b494ff;
}

.service-head {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 42px);
  margin-bottom: 22px;
}

.service-icon {
  width: clamp(48px, 3.4vw, 65px);
  height: clamp(48px, 3.4vw, 65px);
  flex: 0 0 clamp(48px, 3.4vw, 65px);
  color: #b494ff;
  font-size: clamp(42px, 3vw, 58px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-head h3 {
  margin: 0;
  font-size: clamp(28px, 1.9vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.service-card p {
  max-width: 430px;
  margin: 0 0 22px;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}

.service-card a {
  margin-top: 4px;
  color: #150b35;
  text-decoration: none;
  font-size: clamp(18px, 1.15vw, 23px);
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-card a:hover {
  color: #150b35;
}

@media (max-width: 1200px) {
  .services-section {
    padding: 70px 4vw 50px;
  }

  .services-top {
    gap: 40px;
    margin-bottom: 50px;
  }

  .service-card {
    height: 300px;
    min-height: 300px;
    padding: 32px 30px;
  }

  .service-card p {
    font-size: 17px;
    line-height: 1.45;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: auto;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 55px 22px;
  }

  .services-top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .services-top h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .services-top p {
    font-size: 17px;
    line-height: 1.6;
  }

  .service-card {
    height: auto;
    min-height: 260px;
    padding: 30px 24px;
  }

  .service-card p {
    max-width: 100%;
    font-size: 16px;
  }
}









.tools-design-reviews {
  width: 100%;
  background: #f6f6f6;
  padding: 45px 5vw;
}

.tdr-container {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.tdr-card {
  height: 430px;
  min-height: 430px;
  border-radius: 28px;
  padding: 34px 30px;
  overflow: hidden;
  box-sizing: border-box;
}

.tdr-card h3 {
  margin: 0 0 24px;
  color: #150b35;
  font-size: clamp(34px, 2.35vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.tdr-card p {
  margin: 0;
  color: #150b35;
  font-size: clamp(17px, 1.12vw, 22px);
  line-height: 1.35;
  font-weight: 400;
}

/* Tools */
.tdr-tools {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.tdr-tools img {
  width: 100%;
  max-height: 235px;
  margin-top: auto;
  object-fit: contain;
  display: block;
}

/* Designs */
.tdr-designs {
  background: #1a0d3a;
  display: flex;
  flex-direction: column;
}

.tdr-designs video {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin-bottom: 30px;
  background: #000;
}

.tdr-designs h3,
.tdr-designs p {
  color: #ffffff;
}

/* Reviews */
.tdr-reviews {
  background: #b794ff;
  display: flex;
  flex-direction: column;
}

.tdr-reviews img {
  width: 100%;
  height: 235px;
  object-fit: contain;
  border-radius: 24px;
  display: block;
  margin-bottom: 30px;
  background: #ffffff;
}

.tdr-reviews h3 {
  margin-bottom: 18px;
}

/* Tablet */
@media (max-width: 1100px) {
  .tdr-container {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .tdr-card {
    height: auto;
    min-height: 430px;
  }

  .tdr-tools img,
  .tdr-designs video,
  .tdr-reviews img {
    height: 240px;
    max-height: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tools-design-reviews {
    padding: 38px 22px;
  }

  .tdr-container {
    gap: 22px;
  }

  .tdr-card {
    height: auto;
    min-height: 360px;
    border-radius: 22px;
    padding: 26px 22px;
  }

  .tdr-card h3 {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .tdr-card p {
    font-size: 17px;
  }

  .tdr-tools img,
  .tdr-designs video,
  .tdr-reviews img {
    height: 190px;
    max-height: 190px;
  }
}








.reviews-section {
  width: 100%;
  background: #f6f6f6;
  padding: 55px 5vw 75px;
  color: #150b35;
}

.reviews-container {
  max-width: 1720px;
  margin: 0 auto;
}

.reviews-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.reviews-topline span {
  background: #ffc3a5;
  color: #150b35;
  padding: 13px 30px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.reviews-topline p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.reviews-heading-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 50px;
  margin-bottom: 48px;
}

.reviews-heading-row h2 {
  margin: 0;
  font-size: clamp(34px, 2.65vw, 50px);
  line-height: 1.15;
  font-weight: 800;
}

.reviews-stats {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  padding-top: 5px;
}

.reviews-stats div {
  display: flex;
  flex-direction: column;
}

.reviews-stats strong {
  font-size: clamp(34px, 2.4vw, 48px);
  line-height: 0.95;
  font-weight: 900;
}

.reviews-stats span {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.2;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
  align-items: start;
}

.review-card {
  background: #ffffff;
  border-radius: 7px;
  padding: 30px 24px 28px;
  min-height: 200px;
}

.stars {
  color: #69d37f;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 24px;
}

.review-card p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

.review-card h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

/* Tablet */
@media (max-width: 1200px) {
  .reviews-heading-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-section {
    padding: 42px 22px 55px;
  }

  .reviews-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .reviews-heading-row {
    margin-bottom: 34px;
  }

  .reviews-heading-row h2 {
    font-size: 34px;
  }

  .reviews-stats {
    width: 100%;
    gap: 20px;
    justify-content: space-between;
  }

  .reviews-stats strong {
    font-size: 30px;
  }

  .reviews-stats span {
    font-size: 11px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 26px 20px;
  }

  .stars {
    font-size: 32px;
  }
}










.faq-section{
  background:#170733;
  color:#fff;
  padding:70px 20px 90px;
  font-family:Arial, Helvetica, sans-serif;
}

.faq-container{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  padding-left:150px;
  padding-right:150px;
}

.faq-container h2{
  text-align:center;
  font-size:48px;
  line-height:1;
  font-weight:600;
  margin:0 0 70px;
  color:#fff;
}

.faq-item{
  border-bottom:1px solid rgba(255,255,255,.25);
}

.faq-question{
  width:100%;
  background:transparent;
  border:0;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:28px 0;
  font-size:24px;
  line-height:1.3;
  font-weight:400;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
}

.faq-question span{
  font-size:28px;
  font-weight:700;
  line-height:1;
  flex-shrink:0;
  transition:.3s ease;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-answer p,
.faq-answer li{
  font-size:16px;
  line-height:1.7;
  font-weight:400;
  color:#fff;
}

.faq-answer p,
.faq-answer ol{
  margin:0 0 26px;
}

.faq-answer ol{
  padding-left:22px;
}

@media(max-width:991px){
  .faq-section{
    padding:60px 24px 75px;
  }

  .faq-container h2{
    font-size:42px;
    margin-bottom:45px;
  }

  .faq-question{
    font-size:22px;
    padding:24px 0;
  }
}

@media(max-width:575px){
  .faq-section{
    padding:45px 18px 60px;
  }

  .faq-container h2{
    font-size:34px;
    margin-bottom:35px;
  }

  .faq-question{
    font-size:18px;
    gap:18px;
    padding:21px 0;
  }

  .faq-question span{
    font-size:24px;
  }

  .faq-answer p,
  .faq-answer li{
    font-size:14px;
  }
}


@media(max-width:991px){
  .faq-container{
    padding-left:28px;
    padding-right:28px;
  }
}

@media(max-width:575px){
  .faq-container{
    padding-left:8px;
    padding-right:8px;
  }
}












.insights-section {
  width: 100%;
  background: #f6f6f6;
  padding: 58px 5vw 75px;
  color: #190c39;
}

.insights-container {
  max-width: 1720px;
  margin: 0 auto;
}

.insights-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 58px;
}

.insights-header h2 {
  margin: 0;
  font-size: clamp(46px, 4vw, 78px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -1px;
}

.insights-header h2 strong {
  font-weight: 800;
}

.insights-copy p {
  margin: 0 0 54px;
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.6;
}

.insights-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 38px;
  border-radius: 999px;
  background: #190c39;
  color: #b794ff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.insight-card {
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 10px;
  transition: border-color 0.25s ease;
}

.insight-card:hover {
  border-color: #b794ff;
}

.insight-card a {
  color: #190c39;
  text-decoration: none;
  display: block;
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  margin-bottom: 22px;
}

.insight-card h3 {
  margin: 0 0 26px;
  font-size: clamp(25px, 1.75vw, 34px);
  line-height: 1.15;
  font-weight: 400;
}

.insight-card p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.4;
}

.insight-card span {
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .insights-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .insights-section {
    padding: 45px 22px 55px;
  }

  .insights-header {
    margin-bottom: 35px;
  }

  .insights-header h2 {
    font-size: 42px;
  }

  .insights-copy p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .insights-btn {
    min-height: 50px;
    padding: 0 28px;
    font-size: 16px;
  }

  .insights-grid {
    gap: 26px;
  }

  .insight-card h3 {
    font-size: 25px;
  }
}








.purple-ticker-section {
  width: 100%;
  background: #b794ff;
  overflow: hidden;
  padding: 30px 0;
  color: #190c39;
}

.purple-ticker-track {
  display: flex;
  width: max-content;
  animation: purpleTickerMove 24s linear infinite;
}

.purple-ticker-section:hover .purple-ticker-track {
  animation-play-state: paused;
}

.purple-ticker-group {
  display: flex;
  align-items: center;
  gap: 58px;
  padding-right: 58px;
}

.purple-ticker-group p {
  margin: 0;
  font-size: clamp(17px, 1.15vw, 23px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.ticker-star {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes purpleTickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .purple-ticker-section {
    padding: 22px 0;
  }

  .purple-ticker-group {
    gap: 34px;
    padding-right: 34px;
  }

  .purple-ticker-group p {
    font-size: 16px;
  }

  .purple-ticker-track {
    animation-duration: 18s;
  }
}









.site-footer {
  width: 100%;
  background: #190c39;
  color: #ffffff;
  padding: 70px 5vw 36px;
}

.footer-container {
  max-width: 1720px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 70px;
}

.footer-contact {
  grid-column: span 1;
}

.footer-email {
  display: inline-block;
  margin-bottom: 58px;
  color: #ffffff;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact p,
.footer-contact a {
  color: #ffffff;
  font-size: clamp(20px, 1.3vw, 27px);
  line-height: 1.65;
  font-weight: 400;
  text-decoration: none;
}

.footer-contact p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-links a {
  color: #ffffff;
  font-size: clamp(18px, 1.15vw, 23px);
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #b794ff;
}

.footer-socials {
  margin-top: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #b794ff;
}

.footer-copy {
  margin: 55px 0 0;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 22px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-email {
    margin-bottom: 32px;
    font-size: 26px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 20px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-links a {
    font-size: 19px;
  }

  .footer-socials {
    margin-top: 45px;
    gap: 24px;
  }

  .footer-copy {
    margin-top: 35px;
    font-size: 14px;
  }
}








.about-hero {
  background: #17052f;
  color: #fff;
  padding: 100px 5% ;
}

.about-hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-left h1 {
  margin: 0;
  color: #b78cff;
  font-size: clamp(42px, 4.2vw, 76px);
  line-height: 1.12;
  font-weight: 400;
}

.about-left h1 strong {
  font-weight: 800;
}

.about-right p {
  max-width: 620px;
  font-size: clamp(20px, 1.6vw, 30px);
  line-height: 1.55;
  font-weight: 700;
  margin: 0 0 45px;
}

.about-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 36px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.about-btn.primary {
  background: #b78cff;
  color: #17052f;
}

.about-btn.outline {
  border: 1px solid #b78cff;
  color: #b78cff;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.about-right p {
  margin: 0 0 38px;
}
.about-hero-inner {
  align-items: center;
  min-height: 360px;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-left h1 {
    font-size: 42px;
  }

  .about-right p {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .about-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .about-btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
}








.about-zoom-section {
  background: #17052f;
  padding: 0 0 70px;
  overflow: hidden;
}

.about-zoom-box {
  width: 100%;
  height: 720px;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.about-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.25);
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 768px) {
  .about-zoom-box {
    height: 420px;
    border-radius: 22px 22px 0 0;
  }
}

@media (max-width: 480px) {
  .about-zoom-box {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .about-zoom-img {
    height: 320px;
  }
}






.hp-intro-section {
  background: #f7f7f7;
  padding: 70px 5%;
}

.hp-intro-container {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 130px;
  align-items: center;
}

.hp-intro-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px 16px 0 0;
}

.hp-intro-content {
  max-width: 860px;
}

.hp-intro-content h2 {
  margin: 0 0 28px;
  color: #180633;
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
}

.hp-intro-content p {
  margin: 0 0 22px;
  color: #060026;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
}

.hp-intro-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  background: #180633;
  color: #b58cff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hp-intro-btn:hover {
  background: #2b0d55;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .hp-intro-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hp-intro-image img {
    height: 560px;
  }

  .hp-intro-content h2 {
    font-size: 46px;
  }

  .hp-intro-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hp-intro-section {
    padding: 50px 20px;
  }

  .hp-intro-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hp-intro-image img {
    height: auto;
    max-height: 520px;
  }

  .hp-intro-content {
    max-width: 100%;
  }

  .hp-intro-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .hp-intro-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .hp-intro-btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }
}







.hp-journey-section {
  background: #f7f7f7;
  padding: 80px 5%;
  overflow: hidden;
}

.hp-journey-container {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 44%;
  gap: 8%;
  align-items: center;
}

.hp-journey-content h2 {
  margin: 0 0 28px;
  color: #180633;
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
}

.hp-journey-content p {
  margin: 0 0 22px;
  color: #060026;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
}

.hp-journey-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  background: #180633;
  color: #b58cff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.hp-journey-image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1100px) {
  .hp-journey-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .hp-journey-content h2 {
    font-size: 46px;
  }

  .hp-journey-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hp-journey-section {
    padding: 55px 20px;
  }

  .hp-journey-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hp-journey-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .hp-journey-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hp-journey-btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  .hp-journey-image {
    order: -1;
  }
}








.hp-team-section {
  background: #f7f7f7;
  padding: 70px 5%;
}

.hp-team-container {
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 130px;
  align-items: center;
}

.hp-team-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px 16px 0 0;
}

.hp-team-content {
  max-width: 860px;
}

.hp-team-content h2 {
  margin: 0 0 28px;
  color: #180633;
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
}

.hp-team-content p {
  margin: 0 0 22px;
  color: #060026;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
}

.hp-team-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  background: #180633;
  color: #b58cff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hp-team-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hp-team-image img {
    height: 560px;
  }

  .hp-team-content h2 {
    font-size: 46px;
  }

  .hp-team-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hp-team-section {
    padding: 50px 20px;
  }

  .hp-team-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hp-team-image img {
    height: auto;
    max-height: 520px;
  }

  .hp-team-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .hp-team-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hp-team-btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }
}






.hp-video-section {
  background: #f7f7f7;
  padding: 70px 5% 90px;
}

.hp-video-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.hp-video-container h2 {
  margin: 0 0 36px;
  color: #180633;
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
}

.hp-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #180633;
}

.hp-video-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .hp-video-section {
    padding: 50px 20px 65px;
  }

  .hp-video-container h2 {
    font-size: 38px;
    margin-bottom: 26px;
  }

  .hp-video-box {
    border-radius: 14px;
  }
}










.approach-banner {
  width: 100%;
  min-height: 680px;
  position: relative;
  background-image:
    linear-gradient(rgba(38, 0, 54, 0.84), rgba(38, 0, 54, 0.84)),
    url("portfolio-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.approach-banner-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 70px;
}

.approach-title {
  margin: 0 0 38px;
  color: #009cff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.approach-points {
  margin: 0 0 42px;
  color: #ff18d4;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.approach-heading {
  margin: 0;
  max-width: 900px;
  color: #009cff;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.6px;
}

/* Tablet */
@media (max-width: 991px) {
  .approach-banner {
    min-height: 580px;
    background-position: center center;
  }

  .approach-banner-content {
    padding: 80px 40px;
  }

  .approach-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .approach-points {
    font-size: 22px;
    margin-bottom: 34px;
  }

  .approach-heading {
    font-size: 34px;
    max-width: 760px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .approach-banner {
    min-height: 500px;
    background-position: center center;
  }

  .approach-banner-content {
    padding: 60px 24px;
  }

  .approach-title {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .approach-points {
    font-size: 19px;
    margin-bottom: 28px;
  }

  .approach-heading {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }
}








.process-section {
  width: 100%;
  background: #f4f4f4;
  padding: 70px 0;
}

.process-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 70px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.process-label {
  margin: 0 0 34px;
  color: #4b1a70;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.process-content h2 {
  margin: 0 0 26px;
  color: #4b1a70;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.process-content p {
  margin: 0 0 28px;
  color: #151235;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
}

.process-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
  .process-section {
    padding: 60px 0;
  }

  .process-container {
    padding: 0 40px;
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .process-content h2 {
    font-size: 38px;
  }

  .process-content p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .process-section {
    padding: 45px 0;
  }

  .process-container {
    padding: 0 24px;
  }

  .process-label {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .process-content h2 {
    font-size: 32px;
    line-height: 1.18;
  }

  .process-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}





.six-phase-section {
  width: 100%;
  background: #4b1768;
  padding: 70px 0 65px;
}

.six-phase-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 90px;
  row-gap: 115px;
}

.phase-card {
  text-align: center;
  color: #fff;
}

.phase-icon {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 34px;
  font-weight: 700;
}

.phase-card h3 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.phase-card p {
  margin: 0 auto;
  max-width: 340px;
  color: #fff;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
}

.phase-card.orange .phase-icon {
  color: #ff9b4a;
}

.phase-card.pink .phase-icon {
  color: #ff18d4;
}

.phase-card.yellow .phase-icon {
  color: #fff13a;
}

.phase-card.sky .phase-icon {
  color: #6fffd4;
}

.phase-card.green .phase-icon {
  color: #c7f53d;
}

.phase-card.purple .phase-icon {
  color: #a678d6;
}

@media (max-width: 991px) {
  .six-phase-section {
    padding: 60px 0;
  }

  .six-phase-container {
    padding: 0 35px;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 45px;
  }

  .phase-card h3 {
    font-size: 24px;
  }

  .phase-card p {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .six-phase-section {
    padding: 50px 0;
  }

  .six-phase-container {
    padding: 0 24px;
    grid-template-columns: 1fr;
    row-gap: 55px;
  }

  .phase-icon {
    font-size: 46px;
    margin-bottom: 22px;
  }

  .phase-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .phase-card p {
    font-size: 16px;
    line-height: 1.55;
  }
}








.know-you-section {
  width: 100%;
  background: #4b1768;
  padding: 115px 0 105px;
  color: #fff;
}

.know-you-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.know-you-label {
  margin: 0 0 58px;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.know-you-container h2 {
  margin: 0 auto;
  max-width: 1040px;
  color: #fff;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 800;
}

.know-you-links {
  margin-top: 82px;
  display: flex;
  justify-content: center;
  gap: 230px;
}

.know-you-links a {
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.know-you-links a:hover {
  opacity: 0.75;
}

@media (max-width: 991px) {
  .know-you-section {
    padding: 90px 0 85px;
  }

  .know-you-container h2 {
    font-size: 29px;
  }

  .know-you-links {
    gap: 90px;
    margin-top: 60px;
  }
}

@media (max-width: 575px) {
  .know-you-section {
    padding: 70px 0;
  }

  .know-you-label {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .know-you-container h2 {
    font-size: 24px;
    line-height: 1.28;
  }

  .know-you-links {
    margin-top: 45px;
    flex-direction: column;
    gap: 22px;
  }

  .know-you-links a {
    font-size: 17px;
  }
}






.get-touch-section {
  width: 100%;
  background: #f1f1f1;
  padding: 110px 0 100px;
}

.get-touch-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.get-touch-container h2 {
  margin: 0 0 24px;
  color: #4b1768;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
}

.get-touch-container h3 {
  margin: 0 auto 48px;
  max-width: 900px;
  color: #202020;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 800;
}

.get-touch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #441369;
  color: #ffffff;
  min-width: 164px;
  min-height: 46px;
  padding: 14px 22px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.get-touch-btn:hover {
  background: #2e0849;
}

@media (max-width: 991px) {
  .get-touch-section {
    padding: 85px 0;
  }

  .get-touch-container h2 {
    font-size: 44px;
  }

  .get-touch-container h3 {
    font-size: 28px;
    max-width: 760px;
  }
}

@media (max-width: 575px) {
  .get-touch-section {
    padding: 65px 0;
  }

  .get-touch-container h2 {
    font-size: 34px;
  }

  .get-touch-container h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 34px;
  }

  .get-touch-btn {
    font-size: 13px;
    min-height: 42px;
  }
}








.portfolio-hero {
  width: 100%;
  min-height: 680px;
  position: relative;
  background-image:
    linear-gradient(rgba(38, 0, 54, 0.84), rgba(38, 0, 54, 0.84)),
    url("portfolio-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.portfolio-hero-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 70px;
}

.portfolio-label {
  margin: 0 0 34px;
  color: #009cff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.portfolio-subtitle {
  margin: 0 0 42px;
  color: #ff18d4;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.portfolio-hero h1 {
  margin: 0;
  max-width: 940px;
  color: #009cff;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .portfolio-hero {
    min-height: 580px;
  }

  .portfolio-hero-content {
    padding: 80px 40px;
  }

  .portfolio-label {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .portfolio-subtitle {
    font-size: 20px;
    margin-bottom: 34px;
  }

  .portfolio-hero h1 {
    font-size: 33px;
    max-width: 760px;
  }
}

@media (max-width: 575px) {
  .portfolio-hero {
    min-height: 500px;
  }

  .portfolio-hero-content {
    padding: 60px 24px;
  }

  .portfolio-label {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .portfolio-subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .portfolio-hero h1 {
    font-size: 26px;
    line-height: 1.25;
  }
}







    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #f4f4f4;
    }

    .ps-portfolio-section {
      background: #f4f4f4;
      padding: 38px 22px 60px;
      width: 100%;
    }

    .ps-filter-btn {
      display: block;
      margin: 0 auto 70px;
      background: #111;
      color: #fff;
      border: 0;
      padding: 8px 18px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 5px;
      cursor: pointer;
    }

    .ps-tabs {
      display: none;
      justify-content: center;
      align-items: center;
      gap: 34px;
      flex-wrap: nowrap;
      margin-bottom: 38px;
    }

    .ps-tabs.open {
      display: flex;
    }

    .ps-tab {
      background: transparent;
      border: 1px solid transparent;
      padding: 12px 18px;
      color: #999;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 5px;
      cursor: pointer;
      white-space: nowrap;
    }

    .ps-tab.active {
      color: #222;
      border-color: #222;
    }

    .ps-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      width: 100%;
    }

    .ps-card {
      display: block;
      text-decoration: none;
      background: #fff;
    }

    .ps-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 640 / 480;
      background: #eee;
    }

    .ps-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ps-img-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.78);
      opacity: 0;
      transition: 0.3s ease;
    }

    .ps-hover-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
      width: 58px;
      height: 58px;
      border: 1px solid #222;
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #222;
      font-size: 28px;
      opacity: 0;
      transition: 0.3s ease;
    }

    .ps-card:hover .ps-img-wrap::after {
      opacity: 1;
    }

    .ps-card:hover .ps-hover-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .ps-card h4 {
      margin: 0;
      padding: 12px 10px 16px;
      text-align: center;
      color: #222;
      font-size: 14px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ps-load-wrap {
      text-align: center;
      margin-top: 38px;
    }

    .ps-load-wrap button {
      background: #4b1768;
      color: #fff;
      border: 0;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
    }

    .ps-bottom-text {
      margin: 35px 0 0;
      text-align: center;
      font-size: 22px;
      font-weight: 800;
      color: #111;
      letter-spacing: 1px;
    }

    .ps-bottom-text a {
      color: #4b1768;
      text-decoration: none;
    }

    @media (max-width: 991px) {
      .ps-tabs.open {
        flex-wrap: wrap;
        gap: 16px;
      }

      .ps-tab {
        font-size: 13px;
        letter-spacing: 3px;
      }

      .ps-card h4 {
        font-size: 12px;
      }
    }

    @media (max-width: 767px) {
      .ps-portfolio-section {
        padding: 30px 14px 45px;
      }

      .ps-filter-btn {
        margin-bottom: 35px;
      }

      .ps-tabs.open {
        flex-direction: column;
      }

      .ps-tab {
        width: 100%;
      }

      .ps-grid {
        grid-template-columns: 1fr;
      }

      .ps-bottom-text {
        font-size: 18px;
      }
    }









    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.services-banner {
  position: relative;
  width: 100%;
  min-height: 580px;
  background-image: url("approach_bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 0, 35, 0.85),
    rgba(55, 0, 70, 0.82),
    rgba(35, 0, 58, 0.85)
  );
  z-index: 1;
}

.services-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 70px;
}

.services-banner__label {
  color: #009dff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: clamp(28px, 4vw, 50px);
}

.services-banner__title {
  color: #ff00c8;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
  font-weight: 800;
}

@media (max-width: 991px) {
  .services-banner {
    min-height: 500px;
  }

  .services-banner__content {
    padding: 70px 40px;
  }
}

@media (max-width: 575px) {
  .services-banner {
    min-height: 420px;
  }

  .services-banner__content {
    padding: 55px 22px;
  }

  .services-banner__label {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .services-banner__title {
    font-size: 22px;
    line-height: 1.25;
  }
}







.digital-services-section {
  background: #f3f3f3;
  padding: 70px 0 65px;
  width: 100%;
}

.digital-services-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.digital-services-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.digital-services-heading p {
  margin: 0 0 8px;
  color: #4b1768;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.digital-services-heading h2 {
  margin: 0;
  color: #4b1768;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
}

.digital-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: start;
}

.digital-service-card {
  text-align: center;
}

.digital-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  width: 100%;
}

.digital-service-card li {
  min-height: 56px;
  padding: 18px 10px;
  border-bottom: 1px solid #dedede;
  color: #7d8a92;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-service-card .service-head {
  color: #4b1768;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  justify-content: center;
}

.digital-service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #441369;
  color: #ffffff;
  min-height: 34px;
  padding: 10px 18px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.digital-service-card a:hover {
  background: #2d0748;
}

@media (max-width: 991px) {
  .digital-services-heading h2 {
    font-size: 32px;
  }

  .digital-services-grid {
    gap: 24px;
  }

  .digital-service-card li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .digital-services-section {
    padding: 55px 0;
  }

  .digital-services-heading {
    margin-bottom: 35px;
  }

  .digital-services-heading h2 {
    font-size: 26px;
  }

  .digital-services-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .digital-service-card li {
    min-height: 50px;
  }
}




.get-touch-section {
  width: 100%;
  background: #f2f2f2;
  padding: 140px 20px 115px;
  text-align: center;
}

.get-touch-content {
  max-width: 1120px;
  margin: 0 auto;
}

.get-touch-content h2 {
  color: #441369;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.get-touch-content p {
  max-width: 1080px;
  margin: 0 auto 55px;
  color: #333333;
  font-size: clamp(28px, 3.1vw, 50px);
  line-height: 1.18;
  font-weight: 800;
}

.get-touch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #441369;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  padding: 20px 28px;
  min-width: 205px;
  min-height: 57px;
  transition: all 0.3s ease;
}

.get-touch-btn:hover {
  background: #2d0749;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
  .get-touch-section {
    padding: 100px 25px 90px;
  }

  .get-touch-content p {
    max-width: 780px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .get-touch-section {
    padding: 75px 18px 70px;
  }

  .get-touch-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
  }

  .get-touch-content p {
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 38px;
  }

  .get-touch-btn {
    font-size: 15px;
    padding: 17px 22px;
    min-width: 180px;
  }
}









.contact-hero {
  position: relative;
  width: 100%;
  min-height: 610px;
  background-image: url("contact-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 0, 35, 0.88),
    rgba(55, 0, 70, 0.82),
    rgba(35, 0, 58, 0.86)
  );
  z-index: 1;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 55px;
}

.contact-hero__label {
  color: #009dff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 46px;
}

.contact-hero__subtitle {
  color: #ff00c8;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 55px;
}

.contact-hero__title {
  max-width: 1000px;
  color: #009dff;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 600;
}

@media (max-width: 991px) {
  .contact-hero {
    min-height: 540px;
  }

  .contact-hero__content {
    padding: 60px 35px;
  }

  .contact-hero__title {
    max-width: 760px;
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    min-height: 500px;
  }

  .contact-hero__content {
    padding: 50px 22px;
  }

  .contact-hero__label {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contact-hero__subtitle {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .contact-hero__title {
    font-size: 24px;
    line-height: 1.28;
    max-width: 100%;
  }
}









.contact-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: #f5f5f5;
}

.contact-left {
  background-image: url("contact-form-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 110px 90px 0;
}

.contact-form-box {
  background: rgba(68, 19, 105, 0.82);
  padding: 28px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: rgba(65, 10, 90, 0.75);
  color: #fff;
  padding: 24px 14px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
}

.contact-form-box textarea {
  height: 65px;
  resize: vertical;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.contact-form-box button {
  width: 100%;
  border: none;
  background: #ff00b8;
  color: #fff;
  padding: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.contact-bottom {
  background: #441369;
  color: #fff;
  padding: 22px;
  font-size: 14px;
  font-weight: 600;
}

.contact-line {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 22px 0;
}

.contact-details {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
}

.contact-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.info-card {
  padding: 42px 38px;
  min-height: 185px;
}

.info-card.grey {
  background: #eeeeee;
}

.info-card.light {
  background: #f7f7f7;
}

.info-card.white {
  background: #fff;
}

.info-card h3 {
  color: #441369;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 22px;
}

.info-card p {
  color: #191435;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.info-card a {
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.small-btn {
  display: inline-block;
  background: #441369;
  color: #fff !important;
  padding: 12px 18px;
  font-size: 11px !important;
  font-weight: 800;
}

@media (max-width: 991px) {
  .contact-info-section {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 70px 35px 0;
  }
}

@media (max-width: 575px) {
  .contact-left {
    padding: 45px 18px 0;
  }

  .contact-form-box {
    padding: 18px;
  }

  .contact-form-box input,
  .contact-form-box textarea {
    padding: 18px 12px;
  }

  .contact-right {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 32px 22px;
    min-height: auto;
  }

  .info-card h3 {
    font-size: 24px;
  }

  .contact-details {
    gap: 15px;
    flex-direction: column;
  }
}






.partner-section {
  width: 100%;
  background: #f5f5f5;
  padding: 95px 20px 115px;
  text-align: center;
}

.partner-container {
  max-width: 1280px;
  margin: 0 auto;
}

.partner-label {
  color: #191435;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 52px;
  text-transform: uppercase;
}

.partner-title {
  max-width: 1220px;
  margin: 0 auto;
  color: #444444;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 991px) {
  .partner-section {
    padding: 75px 25px 90px;
  }

  .partner-label {
    font-size: 14px;
    margin-bottom: 38px;
  }

  .partner-title {
    font-size: 24px;
    line-height: 1.22;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .partner-section {
    padding: 60px 18px 70px;
  }

  .partner-label {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .partner-title {
    font-size: 25px;
    line-height: 1.3;
  }
}








.careers-section {
  width: 100%;
  background: #f5f5f5;
  padding: 32px 20px 75px;
}

.careers-container {
  max-width: 1680px;
  margin: 0 auto;
}

.careers-line {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 55px;
}

.careers-title {
  color: #333333;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 55px;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.career-item h3 {
  color: #191435;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 12px;
}

.career-item p {
  color: #191435;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.career-item a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 991px) {
  .careers-section {
    padding: 28px 24px 60px;
  }

  .careers-grid {
    gap: 35px;
  }

  .career-item p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .careers-line {
    margin-bottom: 35px;
  }

  .careers-title {
    margin-bottom: 35px;
  }

  .career-item h3 {
    font-size: 18px;
  }

  .career-item p {
    font-size: 16px;
    line-height: 1.6;
  }
}