@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

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

  :root{
    --bg: #0a0a0a;
    --card-purple-1: #2b1650;
    --card-purple-2: #7a3d9e;
    --card-purple-3: #c96bd6;
    --accent-green: #8ee000;
    --text-light: #f5f3f7;
    --text-muted: #b9b3c3;
    --text-dim: #7d7688;
  }

  body{
    background: var(--bg);
    color: var(--text-light);
    font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0 24px 24px;
  }

  .site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    /* padding-top: 24px; */
    /* background: rgba(10, 10, 10, 0.88); */
    /* backdrop-filter: blur(16px); */
    /* -webkit-backdrop-filter: blur(16px); */
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .site-header.is-scrolled{
    /* border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); */
     padding-top: 24px;
  }

  .page{
    /* max-width: 1230px; */
    margin: 0 auto;
  }
  .page {
    max-width: 1400px;}

  /* NAV */
  nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px 28px;
  }

  .logo{
    background: rgb(242 255 252 / 7%);
    padding: 16px 24px;
    border-radius: 1000px;
    border: 1px solid #f2fffc42;
    border-bottom: 0px !important;
    display: flex;
    align-items: center;
    backdrop-filter: blur(80px);
  }

  .logo-icon{
    width: 20px;
    height: 20px;
    color: #6ee23a;
    display: inline-flex;
  }

  .logo-icon img{
    width: 100%;
    height: 100%;
    display: block;
  }

  .nav-links{
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 8px 8px 26px;
    border-radius: 40px;
    backdrop-filter: blur(80px);
}

  .nav-links a{
    color: #FDFFFC;
    text-decoration: none;
    font-size: 16px;
  }

  .cta-nav{
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #011627 !important;
    border-radius: 30px;
    padding: 20px 16px;
    font-size: 16px !important;
    font-weight: 600;
    white-space: nowrap;
  }

  @media (max-width: 900px){
   .nav-links { display: none; } 
  }
/* HAMBURGER BUTTON */
.hamburger-btn{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.07);
  border: 2px solid #232726;
  border-radius: 50%;
  backdrop-filter: blur(80px);
  cursor: pointer;
  z-index: 20;
}

.hamburger-btn span{
  display: block;
  width: 20px;
  height: 2px;
  background: #FDFFFC;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* animate into an X when open */
.hamburger-btn.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2){
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU PANEL */
.mobile-menu{
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(80px);
  padding: 12px;
  margin: 8px 4px 20px;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.mobile-menu.open{
  display: flex;
  max-height: 500px;
  opacity: 1;
  padding: 16px;
}

.mobile-menu a{
  color: #FDFFFC;
  text-decoration: none;
  font-size: 17px;
  padding: 14px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu a:not(.cta-nav):hover{
  background: rgba(255,255,255,0.06);
}

.mobile-menu .cta-nav{
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 900px){
  .hamburger-btn{ display: flex; }
}


/* SLIDE IN UP ANIMATION FOR H2 */
h2{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

h2.slide-in-up{
  opacity: 1;
  transform: translateY(0);
}


  /* HERO CARD */
  .hero{
    position: relative;
    border-radius: 28px;
    overflow: visible; /* let the phone image spill below the card */
    /* min-height: 460px; */
    min-height: 560px;
  }

  .hero-bg{
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
  }

  .hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-copy{
    position: relative;
    z-index: 2;
    padding: 56px 0 0 56px;
    max-width: 641px;
  }

  .hero-copy h1{
    font-size: 50px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -0.5px;
  }

  .explore-link{
    position: absolute;
    left: 56px;
    bottom: 34px;
    z-index: 3;
    color: #FDFFFC;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope';
    text-decoration: none;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* Phones â€” real mockup image, overlapping the bottom edge of the banner */
  .phones{
    position: absolute;
    z-index: 5;
    pointer-events: none;

    left: 25%;
    bottom: -230px;
    width: 580px;
  }

  .phones img{
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
  }

  /* info card */
  .info-card{
    position: absolute;
    right: 40px;
    top: 210px;
    z-index: 3;
    width: 280px;
    background: rgb(255 255 255 / 7%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 25px;
  }
  .info-card p{
    font-size: 16px;
    line-height: 1.5;
    color: #FDFFFC;
    margin-bottom: 16px;
  }

  .btn-green{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #9EF01A;
    color: #011627;
    font-family: 'Manrope', 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 14px;
    border-radius: 1000px;
    text-decoration: none;
    border: 1px solid rgba(242,242,242,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all .35s ease;
  }

  .hero-spacer{
    height: 70px; /* clears the bottom of the overlapping phone image */
  }

  /* below hero */
  .below-hero{
    display: flex;
    justify-content: flex-end;
    padding: 22px 10px 0;
    margin-top: 80px;
  }
  .below-hero p{
    line-height: 1.6;
    color: #FDFFFC;
    font-size: 20px;
    max-width: 460px;
  }

  .bottom-row{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 10px 20px;
  }

  .icon-panel{
    /* background: #121212; */
    border-radius: 32px;
    padding: 32px;
    display:block;
    /* display: grid;
    grid-template-columns: repeat(3, 56px); */
    gap: 12px;
    /* background-image: radial-gradient(circle at 30% 20%, rgba(120,60,180,0.25), transparent 60%); */
    background-image: url('../img/Frame 2147228252.png');  
    background-position: center center; 
    justify-items: center;
  }
  .icon-box{
    width: 56px; height: 56px;
    /* background: #1c1c1c; */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 22px; */
        margin-bottom: 30px;
  }

  .divider{
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.1);
  }

  .bottom-text{
    font-size: 45px;
    line-height: 1.4;
    font-weight: 400;
    color: #FDFFFC;
    max-width: 773px;
  }

  @media (max-width: 1000px){
    .hero{ overflow: visible; }
    .hero-copy{ padding: 36px 24px 0; max-width: 100%; }
    .hero-copy h1{ font-size: 30px; }
    .explore-link{ position: static; display: inline-flex; margin: 16px 24px 0; }
    .info-card{
      position: static;
      width: calc(100% - 48px);
      margin: 20px 24px 0;
    }
    /* .phones{
      position: static;
      width: 70%;
      max-width: 320px;
      margin: 24px auto 0;
      bottom: auto;
      left: auto;
    } */
    .hero-spacer{ height: 30px; }
    .bottom-row{ flex-direction: column; align-items: flex-start; }
    .bottom-text{ font-size: 20px;}
   
  }

  @media only screen and (min-width:1390px){
     .bottom-text {
    margin-left: 63px;}
     .hero-copy{
          max-width: 668px;
     }
     .hero-copy h1{
      font-size: 56px;
     }
     .phones{
      width: 696px;
}
.icon-panel {
    margin-right: 65px;
}
  }
  @media (max-width: 876px){
    .phones{
      position: static;
      width: 70%;
      max-width: 320px;
      margin: 24px auto 0;
      bottom: auto;
      left: auto;
    }
     }

  @media (max-width: 480px){
    .hero-copy h1, h2.contact-heading{ font-size: 30px; }
    /* .icon-panel{ grid-template-columns: repeat(3, 1fr); width: 100%; } */
  }

  /* ============================= */
  /* DOMAIN-READY EXPERTS SECTION   */
  /* ============================= */

  .experts-section{
    padding: 160px 10px 20px;
  }

  .experts-heading{
    font-size: 48px;
    font-weight: 400;
    font-family: 'Aeonik';
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 36px;
  }

  .experts-grid{
        margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 26px;
  }

  .expert-card{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .expert-label{
    font-size: 16px;
    color: #FDFFFC;
    font-family: 'Manrope';
    font-weight: 400;
  }

  .expert-thumb{
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
  }

  .expert-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Dummy placeholder swatches â€” swap each .expert-thumb img src with a real photo */
  .thumb-realestate{ background: linear-gradient(160deg,#3b4a5a,#1c242e); }
  .thumb-health{ background: linear-gradient(160deg,#5a3a2a,#2a1c14); }
  .thumb-sports{ background: linear-gradient(160deg,#2f6fa8,#173350); }
  .thumb-ecommerce{ background: linear-gradient(160deg,#4a4a52,#1e1e22); }
  .thumb-medical{ background: linear-gradient(160deg,#3a4a3f,#1a221c); }
  .thumb-tech{ background: linear-gradient(160deg,#4a2a4a,#20101f); }

  .expert-thumb .placeholder-icon{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: 0.85;
  }

  .expert-thumb .placeholder-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Banner: Couldn't find what you're looking for */
  .cta-banner{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 259px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 44px;
    /* background:
      radial-gradient(circle at 38% 50%, rgba(214,120,255,0.55), transparent 55%),
      radial-gradient(circle at 55% 40%, rgba(120,80,255,0.5), transparent 60%),
      radial-gradient(circle at 30% 60%, rgba(60,30,120,0.6), transparent 50%),
      #0d0716; */
    background-image: url('../img/Frame 2147228251 (1).webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .cta-banner::before{
    content: "";
    position: absolute;
    left: 20%;
    top: 50%;
    width: 260px;
    height: 260px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.25), rgba(180,90,255,0.05) 60%, transparent 70%);
    filter: blur(2px);
  }

  .cta-banner-copy{
    position: relative;
    z-index: 2;
    max-width: 420px;
  }

  .cta-banner-copy h3{
    color: #FDFFFC;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }

  .cta-banner-right{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    gap: 14px;
    text-align: left;
  }

  .cta-banner-right p{
    font-size: 16px;
    color: #FDFFFC;
    line-height: 1.5;
  }

  @media (max-width: 900px){
    .experts-grid{
      grid-template-columns: repeat(3, 1fr);
    }
    .experts-heading{ font-size: 24px; }
    .cta-banner{
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 20px;
      padding: 32px 28px;
      text-align: left;
    }
    .cta-banner-right{ align-items: flex-start; text-align: left; }
   
  }

  @media (max-width: 500px){
    .experts-grid{
      grid-template-columns: repeat(2, 1fr);
    }
     .cta-banner-copy h3 {
      font-size: 28px; 
    }
  }

  /* ============================= */
  /* HIGH-FIDELITY SOLUTIONS SECTION */
  /* ============================= */

  .solutions-section{
    padding: 160px 10px 20px;
  }

  .solutions-heading{
    font-size: 48px;
    font-weight: 400;
    font-family: 'Aeonik';
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 36px;
    max-width: 501px;
  }

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

  .solution-card{
    /* background: #111111; */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(123, 44, 191, 0.07) 46%, rgba(4, 8, 4, 0.07) 100%);
    /* border: 1px solid rgba(255,255,255,0.06); */
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
  }

  .solution-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    /* border: 1px solid rgba(255,255,255,0.12); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    color: #FDFFFC;
  }

  .solution-card h3{
    font-size: 20px;
    font-weight: 600;
    font-family: 'Aeonik';
    margin-bottom: 10px;
    color: #F2FFFC;
  }

  .solution-card p{
    font-size: 15px;
    font-weight: 400;
    font-family: 'Manrope';
    line-height: 1.6;
    color: #FDFFFC;
    margin-bottom: 40px;
  }

  .solution-link{
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9EF01A;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope';
    text-decoration: none;
  }

  .solution-link svg{
    stroke: var(--accent-green);
  }

  @media (max-width: 900px){
    .solutions-grid{
      grid-template-columns: 1fr;
    }
    .solutions-heading, h2.products-heading{ font-size: 24px; }
  }

  /* ============================= */
  /* BUILT ON TRUST SECTION          */
  /* ============================= */

  .trust-section{
    padding: 160px 10px 20px;
  }

  .trust-heading{
    font-size: 48px;
    font-weight: 400;
    font-family: 'Aeonik';
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 28px;
  }

  .trust-panel{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0d0d0d;
    /* border: 1px solid rgba(255,255,255,0.06); */
    background-image: url('../img/satisfaction-cover.webp');
    background-size: cover;
    background-position: center;
  }

  .trust-glow{
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 220px;
    z-index: 0;
    background:
      radial-gradient(ellipse 45% 90% at 30% 100%, rgba(200,60,255,0.55), transparent 65%),
      radial-gradient(ellipse 45% 90% at 70% 100%, rgba(150,40,220,0.5), transparent 65%),
      radial-gradient(ellipse 60% 70% at 50% 110%, rgba(255,255,255,0.15), transparent 60%);
    filter: blur(6px);
  }

  .trust-stats{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 36px 40px 30px;
  }

  .trust-stat b{
    display: block;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #FDFFFC;
  }

  .trust-stat span{
    font-size: 16px;
    font-family: 'Manrope';
    font-weight: 400;
    color: #FDFFFC;
  }

  .trust-logos{
    position: relative;
    z-index: 1;
    margin: 0 16px 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 50px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-logo{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .trust-logo .mark{
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 900px){
    .trust-heading{ font-size: 24px; }
    .trust-stats{
      grid-template-columns: repeat(2, 1fr);
      padding: 28px 24px 24px;
    }
    .trust-logos{
      justify-content: center;
      padding: 20px;
    }
    .trust-logo img {
        height: 25px;
        width: 70px;
        object-fit: contain;
    }
  }

  @media (max-width: 480px){
    .trust-stats{ grid-template-columns: 1fr 1fr; gap: 20px; }
    .trust-stat b{ font-size: 22px; }
  }

  /* ============================= */
  /* PROCESS SECTION                  */
  /* ============================= */

  .process-section{
    padding: 160px 10px 20px;
  }

  .process-panel{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 44px 40px 40px;
    /* background:
      radial-gradient(ellipse 60% 50% at 30% 0%, rgba(190,90,255,0.35), transparent 60%),
      radial-gradient(ellipse 50% 60% at 75% 15%, rgba(130,60,220,0.3), transparent 65%),
      #17091f; */
    background-image: url('../img/clarity-scale.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .process-lines{
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
  }

  .process-copy{
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
    max-width: 560px;
    margin-bottom: 36px;
  }

  .process-grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process-card{
    background: rgba(15,10,20,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(40px);
  }
  .process-card:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, #FFFFFF 0%, #7B2CBF 46%, #040804 100%);
    opacity: .07;
    z-index: 0;
}

  .process-icon{
    width: 38px;
    height: 38px;
    border-radius: 32px;
    /* border: 1px solid rgba(255,255,255,0.16); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 70px;
  }

  .process-card h3{
    font-size: 21px;
    font-weight: 600;
    color: #F2FFFC;
    margin-bottom: 16px;
  }

  .process-card p{
    font-size: 16px;
    line-height: 1.6;
    color: #FDFFFC;
  }

  @media (max-width: 900px){
    .process-copy{ font-size: 22px; }
    .process-grid{
      grid-template-columns: 1fr;
    }
    .process-panel {
    padding: 44px 20px 40px; }
  }

  /* ============================= */
  /* FINAL CTA SECTION                */
  /* ============================= */

  .final-cta{
    padding: 100px 10px 40px;
    text-align: center;
        justify-items: center;
  }
.finalaftercta{
    margin: 0px 10px 40px;
  }
  .final-eyebrow{
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #FDFFFC;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .final-heading{
    font-family: 'Aeonik';
    font-size: 56px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
  }



  .final-graphic{
    width: 100%;
  }
.final-graphic img {
    margin-top: -80px;
    width: 100%;
    height: 544px;
    align-items: center;}

  @media (max-width: 768px){
    .final-heading{ font-size: 28px; }
    .final-cta{ padding: 70px 10px 30px; }
    .btn-green{    font-size: 14px;
    padding: 10px 16px;  }
    .final-graphic img{
    width: 100%;
    height: auto;
    margin-top: 0px;
      }
  }

  /* ============================= */
  /* TESTIMONIALS SECTION             */
  /* ============================= */

  .testimonials-section{
    padding: 160px 10px 40px;
  }

  .testimonials-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 24px;
  }

  .testi-nav{
    display: flex;
    gap: 10px;
  }

  .testi-arrow{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #161616;
    border: 1px solid rgba(255,255,255,0.08);
    color: #f5f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .testi-arrow:hover{
    background: #232323;
  }

  .testi-arrow:disabled{
    opacity: 0.35;
    cursor: default;
  }

  .testi-intro{
    font-size: 18px;
    color: #FDFFFC;
    line-height: 1.6;
    max-width: 400px;
    text-align: left;
  }

  .testi-body{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }

  .testi-quote-col{
    max-width: 686px;
  }

  .testi-quote{
    font-size: 40px;
    line-height: 1.4;
    font-weight: 400;
    color: #FDFFFC;
    margin-bottom: 20px;
  }

  .testi-stars{
    display: flex;
    gap: 4px;
    font-size: 25px;
    color: #f5c518;
    letter-spacing: 2px;
  }

  .testi-divider{
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.15);
  }

  .testi-person{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
  }

  .testi-photo{
    width: 120px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(160deg,#3a3a42,#18181c);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testi-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .testi-photo .initials{
    font-size: 34px;
    font-weight: 600;
    color: #cfcfd6;
  }

  .testi-person-name{
    font-size: 18px;
    font-weight: 500;
    color: #FDFFFC;
    text-align: center;
  }

  .testi-person-role{
    font-size: 14px;
    color: #FDFFFC;
    text-align: left;
    margin-top: -8px;
  }

  @media (max-width: 800px){
    .testimonials-top{ flex-direction: column; gap: 16px; }
    .testi-intro{ text-align: left; max-width: 100%; }
    .testi-body{ flex-direction: column; align-items: flex-start; gap: 28px; }
    .testi-quote{ font-size: 22px; }
    .testi-divider{ display: none; }
    .testi-person{ flex-direction: column; align-self: flex-start; }
    .testi-photo{ width: 64px; height: 64px; }
    .testi-photo .initials{ font-size: 20px; }
    .testi-person-name, .testi-person-role{ text-align: left; }
  }

  /* ============================= */
  /* CONTACT FORM SECTION             */
  /* ============================= */

  .contact-section{
    padding: 160px 10px 0;
  }

  .contact-panel{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 48px 48px 44px;
    /* background:
      radial-gradient(ellipse 60% 80% at 20% 10%, rgba(150,60,220,0.35), transparent 60%),
      radial-gradient(ellipse 50% 60% at 85% 0%, rgba(190,90,255,0.3), transparent 60%),
      #150a20; */
      /*background-image: url('../img/bg-formm.webp');*/
      background-image: url('../img/cta-bg.webp');
      background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .contact-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 46px;
  }

  .contact-heading{
    position: relative;
    z-index: 1;
    font-family: 'Aeonik';
    font-size: 48px;
    font-weight: 400;
    line-height: 1.4;
  }

  .contact-heading span{
    display: block;
    text-align: right;
  }

  .contact-gem{
    width: 266px;
    height: 190px;
    flex-shrink: 0;
  }

  /* .contact-gem svg{ width: 100%; height: 100%; } */

  .contact-form{
    position: relative;
    z-index: 1;
  }

  .form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 26px;
  }

  .form-field label{
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #d8d0e0;
    margin-bottom: 12px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 0 0 12px;
    font-size: 14px;
    color: #f5f3f7;
    font-family: inherit;
    outline: none;
  }

  .form-field select{
    appearance: none;
    -webkit-appearance: none;
    color: #f5f3f7;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23cfc8d8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
  }

  .form-field select option{
    background: #1a0f26;
    color: #f5f3f7;
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder{
    color: #8b849a;
  }

  .phone-field{
    display: flex;
    align-items: flex-end;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 12px;
  }

  .phone-field select{
    width: auto;
    border-bottom: none;
    padding-bottom: 0;
    flex-shrink: 0;
  }

  .phone-field input{
    border-bottom: none;
    padding-bottom: 0;
  }

  .budget-block{
    margin-bottom: 26px;
  }

  .budget-block > label{
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #d8d0e0;
    margin-bottom: 14px;
  }

  .budget-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .budget-pill{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #d8d0e0;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .budget-pill:hover{
    background: rgba(255,255,255,0.1);
  }

  .budget-pill.active{
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #011627;
    font-weight: 700;
  }

  .message-field{
    margin-bottom: 20px;
  }

  .message-field textarea{
    resize: none;
    min-height: 24px;
  }

  .form-divider{
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0 30px;
  }

  .contact-submit{
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
  }

  @media (max-width: 800px){
    .contact-panel{ padding: 36px 24px 32px; }
    .contact-header{ flex-direction: column; }
    .contact-heading span{ text-align: left; }
    .form-row{ grid-template-columns: 1fr; gap: 22px; }
  }

  /* ============================= */
  /* FOOTER                           */
  /* ============================= */

  .site-footer{
    padding: 70px 10px 00px;
  }

  .footer-top{
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }

  .footer-col{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-col a{
        display: flex;
    column-gap: 8px;
    color: #FDFFFC;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Manrope';
    font-weight: 400;
}

  .footer-contact-row{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FDFFFC;
    font-size: 16px;
  }

  .footer-contact-row svg{ flex-shrink: 0; }

  .footer-wordmark{
margin-bottom: -20px;
  }

  .footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #FDFFFC;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-legal{
    display: flex;
    gap: 24px;
  }

  .footer-legal a{
    color: #FDFFFC;
    text-decoration: none;
  }

  @media (max-width: 900px){
    .footer-top{ justify-content: flex-start; gap: 40px; }
    .footer-wordmark{ font-size: 90px; letter-spacing: -2px; }
  }

  @media (max-width: 480px){
    .footer-top{
    display: grid;}
    .footer-wordmark{ font-size: 56px; }
  }

  .cta-banner-btn-bg{
    background-image: url('../img/Group 30.png');
    background-size: cover;
    background-position: center center;
    padding: 2px;
    border-radius: 1000px;
    width: fit-content;
  }

  .contact-gem-pic{
    width: 100%;
    height: 191px;
  }



  
  /* ============================= */
  /* PRODUCTS STICKY SCROLL SECTION   */
  /* ============================= */

  .products-section{
    position: relative;
    /* height is set by JS based on card count */
  }

  .products-sticky{
    position: sticky;
    top: 0;
    /*height: 100vh;*/
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .products-layout{
    display: grid;
    /* grid-template-columns: 280px 1fr 280px; */
    
    grid-template-columns: 410px 1fr 280px;
    gap: 40px;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
    align-items: center;
  }

  .products-heading{
    font-family: 'Aeonik';
    font-size: 48px;
    font-weight: 400;
    color:#FDFFFC;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }

  .products-stack-viewport{
    position: relative;
    height: 560px;
    overflow: visible;
    /*-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);*/
    /*mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);*/
  }

  .products-stack{
    position: absolute;
    left: 0;
    width: 100%;
    will-change: transform;
  }

  .product-card{
    height: 440px;
    margin-bottom: 40px;
    background: rgb(255 255 255 / 7%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .product-thumb{
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

        width: fit-content;
    padding: 10px;

  }

  .product-thumb .device{
    position: relative;
    z-index: 1;
  }

  /* phone device placeholder */
  .device-phone{
    width: 130px;
    height: 260px;
    background: #0c0c0e;
    border: 5px solid #1e1e22;
    border-radius: 24px;
    padding: 10px 8px;
  }
  .device-phone .screen{
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(160deg, #f2eef7, #d7c9ec);
    padding: 14px 10px;
  }
  .device-phone .screen .bar{
    height: 8px;
    border-radius: 6px;
    background: rgba(120,80,160,0.25);
    margin-bottom: 8px;
  }
  .device-phone .screen .bar.short{ width: 60%; }
  .device-phone .screen .pill{
    margin-top: 20px;
    height: 34px;
    border-radius: 20px;
    background: linear-gradient(90deg,#ff8fd0,#ffd08f);
  }

  /* laptop device placeholder */
  .device-laptop{
    width: 240px;
  }
  .device-laptop .screen-frame{
    background: #d9d9dd;
    border-radius: 8px 8px 0 0;
    padding: 8px 8px 0;
  }
  .device-laptop .screen{
    background: linear-gradient(160deg,#2b3a55,#0f1626);
    border-radius: 4px;
    height: 130px;
    position: relative;
    overflow: hidden;
  }
  .device-laptop .screen .glow{
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,200,140,0.5), transparent 55%);
  }
  .device-laptop .base{
    height: 10px;
    background: #c2c2c8;
    border-radius: 0 0 10px 10px;
    margin: 0 -10px;
  }

  .product-thumb-bg{
    position: absolute;
    inset: 0;
    opacity: 0.8;
  }

  .product-info{
    padding: 18px 22px 20px;
  }

  .product-info-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .product-info-top h3{
    font-family: 'Manrope';
    font-size: 18px;
    font-weight: 600;
    color: #F2FFFC;
  }

  .product-tag{
    font-size: 12px;
    color: #FDFFFC;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .product-info p{
    font-family: 'Manrope';
    font-size: 16px;
    line-height: 1.5;
    color: #FDFFFC;
  }

  .products-side p{
    font-size: 16px;
    font-family: 'Manrope';
    line-height: 1.6;
    color: #FDFFFC;
    margin-bottom: 22px;
  }

  @media (max-width: 900px){
    .products-sticky{ height: auto; position: relative; padding: 60px 0; overflow: visible; }
    .products-layout{
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .products-stack-viewport{
      height: auto;
      overflow: visible;
      mask-image: none;
      -webkit-mask-image: none;
    }
    .products-stack{
      position: static;
      transform: none !important;
    }
    .product-card{ margin-bottom: 20px; }
  }
  @media (max-width: 786px){
    .products-stack-viewport{
      overflow: hidden;}
  }

/* FADE IN DOWN ANIMATION FOR H2 */
h1{
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

h1.fade-in-down{
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown{
  from{
    opacity: 0;
    transform: translateY(-30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

nav .nav-links a:hover, .footer-legal a:hover, .site-footer .footer-col a:hover {
    color: #9ef01a;
}
nav a.cta-nav:hover {
    background: #9ef01a;
}
a.btn-green:hover {
    background: #fff;
}


/* form design */
/* =========================================
   SNIPTERS CF7 FORM
========================================= */

.snipters-cf7-form {
    width: 100%;
    color: #fff;
}


/* -----------------------------------------
   ROW
----------------------------------------- */

.snipters-cf7-form .cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 34px;
}


/* -----------------------------------------
   FIELD
----------------------------------------- */

.snipters-cf7-form .cf7-field {
    width: 100%;
}

.snipters-cf7-form .cf7-field > label {
    display: block;
    margin-bottom: 14px;
    color: #e9e4ef;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}


/* -----------------------------------------
   INPUTS
----------------------------------------- */

.snipters-cf7-form input[type="text"],
.snipters-cf7-form input[type="email"],
.snipters-cf7-form input[type="tel"],
.snipters-cf7-form textarea,
.snipters-cf7-form select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.22);
    border-radius: 0;
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 0 0 15px;
    font-family: inherit;
    box-sizing: border-box;
}


/* Placeholder */

.snipters-cf7-form input::placeholder,
.snipters-cf7-form textarea::placeholder {
    color: rgba(255,255,255,0.38);
    opacity: 1;
}


/* Focus */

.snipters-cf7-form input:focus,
.snipters-cf7-form textarea:focus,
.snipters-cf7-form select:focus {
    border-bottom-color: rgba(255,255,255,0.6);
}


/* -----------------------------------------
   PHONE
----------------------------------------- */

.snipters-cf7-form .phone-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.22);
}

.snipters-cf7-form .phone-wrapper select {
        background: rgb(255 255 255 / 12%);
    border-radius: 5px;
    width: 59px;
    flex-shrink: 0;
    border-bottom: 0;
    padding-bottom: 5px;
    padding-right: 5px;
    margin-right: 12px;
}

.snipters-cf7-form .phone-wrapper input {
    flex: 1;
    border-bottom: 0;
}


/* -----------------------------------------
   SELECT
----------------------------------------- */

.snipters-cf7-form select {
    appearance: auto;
    cursor: pointer;
}

.snipters-cf7-form select option {
    color: #111;
    background: #fff;
}


/* -----------------------------------------
   BUDGET
----------------------------------------- */

.snipters-cf7-form .cf7-budget {
    margin-top: 4px;
    margin-bottom: 34px;
}

.snipters-cf7-form .cf7-budget > label {
    margin-bottom: 18px;
}


/* Remove default radio layout */

.snipters-cf7-form .cf7-budget .wpcf7-list-item {
    margin: 0 9px 0 0;
}


/* Radio label becomes pill */

.snipters-cf7-form .cf7-budget .wpcf7-list-item label {
  background: rgb(255 255 255 / 7%);
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 123px;
    height: 44px;
    padding: 0 20px;

    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 8px;

     color: #B3B3B3;
    font-size: 15px;

    cursor: pointer;
    transition: all 0.25s ease;
    box-sizing: border-box;
}


/* Hide radio */

.snipters-cf7-form .cf7-budget input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* Selected pill */

/* .snipters-cf7-form .cf7-budget input[type="radio"]:checked + span {
    background: #8cff00;
    border-color: #8cff00;
    color: #071000;
} */


/* Hover */

.snipters-cf7-form .cf7-budget .wpcf7-list-item label:hover {
    border-color: rgba(255,255,255,0.5);
}


/* -----------------------------------------
   MESSAGE
----------------------------------------- */

.snipters-cf7-form .cf7-message {
    margin-bottom: 40px;
}

.snipters-cf7-form .cf7-message textarea {
    height: 80px;
    min-height: 80px;
    resize: vertical;
}


/* -----------------------------------------
   SUBMIT
----------------------------------------- */

.snipters-cf7-form .cf7-submit-wrapper {
    width: 100%;
}

.snipters-cf7-form input[type="submit"] {
    width: 100%;
    height: 56px;

    border: 0;
    border-radius: 50px;

    background: #9EF01A;
    color: #011627;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: transform 0.2s ease,
                background 0.2s ease;
}

.snipters-cf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    background: #9cff20;
}


/* -----------------------------------------
   CF7 DEFAULT STYLES
----------------------------------------- */

.snipters-cf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 20px;
}

.snipters-cf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 6px;
}

.snipters-cf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    border-radius: 8px;
}


/* -----------------------------------------
   MOBILE
----------------------------------------- */

@media (max-width: 767px) {

    .snipters-cf7-form .cf7-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 28px;
    }

    .snipters-cf7-form .cf7-budget {
        margin-bottom: 28px;
    }

    .snipters-cf7-form .cf7-budget .wpcf7-list-item {
        margin-bottom: 8px;
    }

    .snipters-cf7-form .cf7-budget .wpcf7-list-item label {
        min-width: auto;
        padding: 0 18px;
    }

    .snipters-cf7-form input[type="submit"] {
        height: 65px;
        font-size: 17px;
    }
}
.phone-wrapper p {
    display: flex;
}
.contact-section input:-internal-autofill-selected {
  background-color: transparent !important;
}
.snipters-cf7-form input::placeholder,
.snipters-cf7-form textarea::placeholder {
    color: #959595;
    opacity: 1;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #8cff00;
    background-image: url('/wp-content/themes/snipters/assets/img/sendicon.svg');
    background-repeat: no-repeat;
    background-position: calc(50% + 110px) center;
    background-size: 18px 18px;
    padding-right: 20px;
}


@media only screen and (min-width:1900px){
.bottom-text {
    font-size: 48px;    
    max-width: 825px;}

.testi-quote {
    font-size: 48px;}
.testi-quote-col {
    max-width: 825px;}
.testi-intro {
    font-size: 20px;}



.products-side p {
    margin-bottom: 40px;}
.footer-bottom{
    font-size: 16px;
    font-family: 'Manrope';}
}

/*//for all screens*/
.solution-card p {
    font-size: 16px;}
.process-card p, .footer-bottom {
    font-family: 'Manrope';}
.solution-link{
    font-weight: bold;}

.icon-panel, .cta-banner, .solution-card, .trust-logos, .product-card{
    border-top: 2px solid #ffffff3b;}
.expert-thumb{
    aspect-ratio: 1 / 1.22;
    border-radius: 32px;}
.expert-card {
   gap: 26px;}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    font-family: 'Manrope';
    font-weight: bold;
    background-image: url('/wp-content/themes/snipters/assets/img/sendicon.svg');}

.product-thumb{align-self: anchor-center;}
.product-thumb img {
    margin-top: 16px;
}
.products-layout{
    max-width: 1280px;
    margin: 0 0;
    padding: 0 0px;
    gap: 77px;}
    
@media only screen and (min-width:786px) and (max-width:1280px){
    .products-layout {
    display: grid;
    grid-template-columns: 281px 1fr 280px;
    gap: 20px;
}
}    
.testi-photo {
    width: 100%;
    height: 246px;
}    
.testi-person-name {
    font-size: 20px;}
.testi-person-role {
    font-size: 16px;}   
    
@media only screen and (min-width:1024px){
.solutions-heading, .trust-heading{    margin-bottom: 80px;}}

@media only screen and (max-width:786px){
.experts-section, .solutions-section, .trust-section, .process-section, .testimonials-section, .contact-section {
    padding: 50px 10px 10px;
}
}
 
@media only screen and (min-width:1000px) and (max-width:1200px){
.phones {
    left: 21%;
    bottom: -230px;
    width: 508px;
}
}

@media only screen and (min-width:1340px){
    .process-section {
    padding: 0px 10px 20px!important;
}
}

.page-id-15 h2.slide-in-up, .page-id-3 h2.slide-in-up{
    margin-bottom: 24px;
    margin-top: 40px;}
    
    
.page-id-15 h1.entry-title.fade-in-down, .page-id-3 h1.fade-in-down {
    margin-bottom: 40px;
    margin-top: 20px;
    font-weight: 400;
}    
    
  .page-id-15 p.wp-block-paragraph, .page-id-15 ul li, .page-id-3 p.wp-block-paragraph, .page-id-3 ul li {
    line-height: 172%;
} 
    
    
    
    
/* =========================================================
   CASE STUDY CARDS
========================================================= */

.sb-case-study-card {
    cursor: pointer;
}


/* =========================================================
   CASE STUDY MODAL
========================================================= */

.sb-case-study-modal {

    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 30px;

}


.sb-case-study-modal.is-open {

    display: flex;

}


/* Overlay */

.sb-case-study-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(7px);

}


/* =========================================================
   MODAL BOX
========================================================= */

.sb-case-study-modal-inner {

    position: relative;

    z-index: 2;

    width: min(1100px, 100%);

    height: min(88vh, 900px);

    background: #111;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.45);

}


/* =========================================================
   MODAL HEADER
========================================================= */

.sb-case-study-modal-header {

    position: relative;

    z-index: 5;

    height: 70px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px 20px;

    background: #292929;

    border-bottom: 1px solid rgba(255,255,255,0.08);

}


/* Close */

.sb-case-study-close {

    width: 40px;

    height: 40px;

    flex: 0 0 40px;

    border: none;

    border-radius: 50%;

    background: #3a3a3a;

    color: #fff;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

}


.sb-case-study-close:hover {

    background: #04AF77;

    color: #011627;

}


/* Title */

.sb-case-study-modal-title {
    flex: 1;
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}


/* Header Verify */

.sb-case-study-header-verify {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border-radius: 30px;
    
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    background: rgba(242, 255, 252, 0.07);
    border: 1px solid transparent;
    /* border-image: radial-gradient(circle, rgba(242, 255, 252, 0.32) 0%, rgba(242, 255, 252, 0) 100%) 1; */
    font-family: 'Manrope';
    border-top: 1px solid rgba(242, 255, 252, 0.07);
}


.sb-case-study-header-verify:hover {
    opacity: 0.85;
}


/* =========================================================
   INTERNAL SCROLL
========================================================= */

.sb-case-study-modal-scroll {

    height: calc(100% - 70px);

    overflow-y: auto;

    overflow-x: hidden;

}


/* Scrollbar */

.sb-case-study-modal-scroll::-webkit-scrollbar {
    width: 7px;
}


.sb-case-study-modal-scroll::-webkit-scrollbar-track {
    background: #151515;
}

.sb-case-study-modal-scroll::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;

}


/* =========================================================
   POPUP IMAGE
========================================================= */

.sb-popup-image {
    width: 100%;
    padding: 20px 20px 0;
}


.sb-popup-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}


/* =========================================================
   POPUP DETAILS
========================================================= */

.sb-popup-detail {
    /*max-width: 900px;*/
    /*margin: 0 auto;*/
    /*padding: 50px 45px 80px;*/
    max-width: 983px;
    margin: 0 auto;
    padding: 50px 15px 80px;
}


.sb-popup-detail h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 38px;
    line-height: 1.15;
}

.sb-popup-category {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 13px;
    border-radius: 30px;
    background: #E6F9DC;
    color: #04AF77;
    font-size: 12px;
    font-weight: 600;
}

.sb-popup-description {
    margin: 0 0 35px;
    color: #04AF77;
    font-size: 15px;
    line-height: 1.6;
}


/* WordPress editor content */
.sb-popup-content {
    color: #b5b5b5;
    font-size: 15px;
    line-height: 1.75;
}

.sb-popup-content h2,
.sb-popup-content h3,
.sb-popup-content h4 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.sb-popup-content h2 {
    font-size: 25px;
}

.sb-popup-content h3 {
    font-size: 21px;
}

.sb-popup-content h4 {
    font-size: 18px;
}

.sb-popup-content p {
    margin-bottom: 20px;
}

.sb-popup-content ul,
.sb-popup-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.sb-popup-content li {
    margin-bottom: 8px;
}


.sb-popup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;

}


/* =========================================================
   VERIFY BUTTON
========================================================= */

.sb-popup-verify {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    margin: 0 auto 60px;
    padding: 13px 20px;
    border-radius: 30px;
    background: #04AF77;
    color: #011627;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


.sb-popup-verify:hover {
    opacity: 0.9;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.sb-modal-open {
    overflow: hidden;
}

/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 900px) {
    .sb-case-study-modal {
        padding: 12px;
    }
    .sb-case-study-modal-inner {
        width: 100%;
        height: 92vh;
        border-radius: 14px;
    }
    .sb-case-study-modal-header {
        height: 62px;
        padding: 10px 12px;
    }
    .sb-case-study-modal-title {
        font-size: 14px;
    }
    .sb-case-study-header-verify {
        padding: 8px 11px;
        font-size: 11px;
    }
    .sb-popup-image {
        padding: 12px 12px 0;
    }
    .sb-popup-detail {
        padding: 35px 22px 35px;
    }
    .sb-popup-detail h2 {
        font-size: 28px;
    }
    .sb-popup-content {
        font-size: 14px;
    }

}    
    
.sb-case-study-modal-footer {
    margin-top: -65px;
    background: #292929;
    z-index: 5;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-top: 2px solid #ffffff3b;
    flex-shrink: 0; /* keep it pinned below the scroll area */
}

.sb-case-study-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 126px;
    padding: 8px 16px;
    cursor: pointer;
        color: #FDFFFC;
    background: rgba(242, 255, 252, 0.07);
    border: 1px solid transparent;
    /*border-image: radial-gradient(circle, rgba(242, 255, 252, 0.32) 0%, rgba(242, 255, 252, 0) 100%) 1;*/
}

.sb-case-study-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}    

.sb-popup-image{
    background: #292929;
}
.sb-case-study-modal-scroll {
    background: #292929;}
.sb-case-study-modal-header{
    border-bottom: 0px;
}

.sb-case-study-modal-title {
    font-family: 'Manrope';
    font-size: 20px;}
    
@media only screen and (max-width:786px){
   .sb-case-study-modal-title {
    font-size: 13px;} 
}    
    
    
.sb-popup-detail .sb-popup-content h2.wp-block-heading{
    border-radius: -3px;
    color: white !important;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 55px;
    border-left: 5px solid #33D499;
    padding-left: 13px;
}    
#sbCaseStudyModalContent .sb-popup-detail h1{
    color: white !important;
    opacity: 1;}    
    
    
    
    