/* ------------------------ *
- Page: Index.html
--------------------------- */

/* HOMEPAGE SECTION ONE */

/* =========================
   MAIN HERO
========================= */
.main-hero {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 8vh 2.4rem 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  overflow-x: hidden;
}

.border-top-solid {
  border-top: 1px solid #dbdddc;
}

/* =========================
   LEFT IMAGE
========================= */
.main-hero-left img {
  width: 700px;
  max-width: 100%;
  display: block;
  border-radius: 22px;
}

/* =========================
   RIGHT CONTENT
========================= */
.main-hero-right {
  width: 500px;
  max-width: 100%;
}

.main-hero-right h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #020205;
}

.main-hero-right h1 .highlight-text {
  color: #7338e8;
}

.main-hero-right h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-dark-main-hero);
}

.main-hero-right p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--text-dark-main-hero);
}

/* =========================
   FEATURE LIST
========================= */
.main-hero-list {
  margin-bottom: 32px;
}

.main-hero-list div {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: #1F2937;
}

.main-hero-list div::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  display: inline-block;
  background-color: var(--primary-main-hero);

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5L6.2 11.5L13 4.5' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5L6.2 11.5L13 4.5' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* =========================
   PRICE
========================= */
.hero-price-strip {
  display: inline-block;
  background: #ffffff;
  color: #212121;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;

  padding: 0 0 25px;
  border-radius: 6px;
}

/* Price emphasis */
.hero-price-strip strong {
  font-size: 20px;    
  font-weight: 600;
}

/* "+ 3 mo. free" part */
.hero-price-plus {
  font-size: 16px;    
  font-weight: 400;
}


/* =========================
   HERO BUTTON GROUP
========================= */
.hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   BASE HERO BUTTON
========================= */
.hero-btn {
  height: 48px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;

  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;

  transition: background-color 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease;
}

/* Arrow */
.hero-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.hero-btn-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================
   PRIMARY HERO BUTTON
========================= */
.hero-btn-primary {
  background: #7338e8;
  color: var(--text-inverse);
  border: none;
}

.hero-btn-primary:hover {
  background: #6933d3;
  transform: translateY(-2px);
}

.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(6px);
}

#hosting-plans {
  scroll-margin-top: 40px;
}

#shared-plans {
  scroll-margin-top: 130px;
}

#pricing {
  scroll-margin-top: 130px;
}

#view-shared-features {
  scroll-margin-top: 130px;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   OUTLINE HERO BUTTON
========================= */
.hero-btn-outline {
  background: transparent;
  color: #6933d3;
  border: 2px solid #6933d3;
}

.hero-btn-outline:hover {
  background: #ecedf9;
  color: #6933d3;
  border-color: #6933d3;
  transform: translateY(-2px);
}

.hero-btn-outline:hover .hero-btn-arrow {
  transform: translateX(6px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero-btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    width: 100%;
  }
}

/* =========================
   GUARANTEE
========================= */
.main-hero-guarantee {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 400;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* SVG image icon */
.guarantee-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

/* Optional dotted underline */
/*.guarantee-underline {*/
/*  border-bottom: 1px dotted #9ca3af;*/
/*  padding-bottom: 1px;*/
/*}*/



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .main-hero {
    flex-direction: column;
    text-align: left;
    gap: 40px;
    padding-top: 30px;
  }

  .main-hero-right h1 {
    font-size: 18px;
  }

  .main-hero-right h2 {
    font-size: 28px;
  }

  .main-hero-right p {
    font-size: 16px;
  }

  .main-hero-price {
    font-size: 18px;
  }

  .main-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-hero-btn {
    width: 100%;
    text-align: center;
  }
}



/*-------------------------------------*/

/* HOMEPAGE SECTION TWO*/

/* =========================
   TRUST – TECH STRIP
========================= */
.trust-alt {
  padding: 30px 20px;
  background: #ffffff;
}

.trust-alt-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center; /* 👈 NOT space-between */
  gap: 40px;
  flex-wrap: wrap;
}

/* Trustpilot badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /*padding: 24px 24px;*/
  background: #fff;
  border-radius: 12px;
  font-size: 16px;
  /*box-shadow: 0 0 45px rgba(0, 0, 0, .07);*/
}

.trust-logo {
  height: 32px;
  display: block;
  margin-bottom: 8px;
}

.trust-meta a {
  color: #212121;
  border-bottom: 1px solid #000;
  font-weight: 400;
}

/* =========================
   TECH LOGOS (CENTER)
========================= */
.trust-tech {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #212121;
}

.tech-logo {
  height: 60px;
  width: auto;
  display: block;
}

.tech-plus {
  font-weight: 400;
  opacity: 0.9;
}

.tech-text {
  font-size: 16px;    
  font-weight: 400;
  color: #212121;
}

/* =========================
   STATS (RIGHT)
========================= */
.trust-stats {
  display: flex;
  gap: 36px;
}

.trust-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.trust-stat span {
  font-size: 14px;
  color: #6b7280;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .trust-alt-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .trust-tech {
    flex-wrap: wrap;
  }

  .trust-stats {
    gap: 20px;
  }
}

/* =========================
   EXTRA SMALL SCREENS (≤520px)
========================= */
@media (max-width: 520px) {

  .trust-alt-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }

  /* Trustpilot badge */
  .trust-badge {
    justify-content: center;
    padding: 12px 14px;
  }

  .trust-meta {
    font-size: 14px; 
  }

  /* Tech logos block */
  .trust-tech {
    /*flex-direction: column;*/
    gap: 10px;
  }

  .tech-text {
    font-size: 16px;
  }

  /* Stats layout */
  .trust-stats {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }

  .trust-stat {
    text-align: center;
  }

  .trust-stat strong {
    font-size: 17px;
  }

  .trust-stat span {
    font-size: 13px;
  }
}

/* =========================
   TRUSTPILOT MOBILE STACK (≤460px)
========================= */
@media (max-width: 520px) {

  .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .trust-rating-block {
    align-items: center;
  }

  .trust-meta {
    font-size: 14px;
  }
}

/* =========================
   FIX: KEEP cPanel + WP INLINE (≤460px)
========================= */
@media (max-width: 460px) {
  .trust-tech {
    flex-direction: row !important;   /* 👈 force inline */
    align-items: center;
    justify-content: center;
    gap: 10px;
    /*flex-wrap: nowrap;*/
  }

  .tech-logo {
    height: 60px;
  }
}

/* =========================
   MOBILE ORDER FIX (≤460px)
========================= */
@media (max-width: 460px) {

  .trust-alt-inner {
    flex-direction: column;
    align-items: center;
  }

  /* Move tech logos to top */
  .trust-tech {
    order: -1;               /* 👈 brings it to top */
    margin-bottom: -1px;
  }

  /* Trustpilot comes next */
  .trust-badge {
    order: 0;
  }

  /* Stats stay at bottom */
  .trust-stats {
    order: 1;
  }
}


/*-------------------------------------*/

/* HOMEPAGE SECTION THREE */

.pricing-section {
  padding: 35px 24px 15px;
  background: var(--background);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.price-card {
  border-radius: 18px;
  border: 1px solid var(--border-light);
  padding: 36px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  /*box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);*/
}

/* Backgrounds */
.price-card.green { background: #ffffff; }
.price-card.blue  { background: #ffffff; }
.price-card.orange{ background: #ffffff; }

/* Icon */
.icon {
  /*font-size: 40px;*/
  /*margin-bottom: 10px;*/
}

/* Title */
.price-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 12px;
  color: #1F2937;
}

/* Description */
.price-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #1F2937;
  margin-bottom: 18px;
}

/* Price block */
.price .label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  /*margin-bottom: 6px;*/
}

.price strong {
  font-size: 36px;
  font-weight: 800;
  color: #1F2937;
}

/* CTA */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;

  font-weight: 600;
  font-size: 14px;
  color: #7338e8;
  text-decoration: none;
}

/* underline */
.cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 1px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

/* ✅ underline only on link hover */
.cta:hover::after {
  transform: scaleX(1);
}

/* arrow animation */
.cta span {
  display: inline-block;
  transition: transform .3s ease;
}

/* ✅ arrow moves only on link hover */
.cta:hover span {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------*/

/* HOMEPAGE SECTION FOUR */

/* outer spacing */
.cta-wrapper {
  padding: 70px 20px;
}

/* main box */
.cta-box {
  max-width: 1200px;
  margin: auto;
  padding: 44px 48px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  /*gap: 24px;*/

  color: #fff;
  background: #f6f7ff;
  position: relative;
  overflow: hidden;
}

/* subtle stripe effect */
/*.cta-box::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background:*/
/*    repeating-linear-gradient(*/
/*      -12deg,*/
/*      rgba(59,130,246,0.18),*/
/*      rgba(59,130,246,0.18) 3px,*/
/*      transparent 3px,*/
/*      transparent 10px*/
/*    );*/
/*  opacity: 0.35;*/
/*  pointer-events: none;*/
/*}*/

/* text */
.cta-content {
  max-width: 620px;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1F2937;
}

.cta-content p {
  font-size: 16px;
  color: #1F2937;
}

/* button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #6933d3;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* arrow */
.cta-arrow svg {
  display: block;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: #7338e8;
  transform: translateY(-1px);
}

.cta-button:hover .cta-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    align-items: flex-start; /* keeps text natural */
    text-align: left;
    padding: 36px 28px;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .cta-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .cta-button {
    margin-top: 8px;
  }
}


/*-------------------------------------*/

/* HOMEPAGE SECTION FIVE */

.hero-text-wrapper {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
}

.hero-text-wrapper h1 {
  font-size: clamp(32px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: #000;
  margin: 0 15px 25px;
}

.hero-text-wrapper p {
  max-width: 680px;
  margin: 0 auto 25px;
  padding: 0 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #212121;
  letter-spacing: 0.2px;
}


@media (max-width: 768px) {
  .hero-text-wrapper h1 {
    font-size: 28px;
  }

  .hero-text-wrapper p {
    font-size: 16px;
  }
}

.speed-section {
  padding: 26px 26px;
  background: #fff;
}

/* wrapper only aligns cards */
.speed-wrapper {
  max-width: 1240px;
  margin: auto;
  display: flex;
  gap: 24px;
  justify-content: center;
}

/* BOTH are separate cards */

.speed-card{
  background: #F1F5FF;
  border-radius: 28px;
  padding: clamp(3.2rem, 6vw, 4.8rem);
  font-size: 16px;
  font-weight: 400;
}

.speed-card-image {
  flex: 0 0 42%;
  background: #F1F5FF;
  border-radius: 28px;
  padding: 40px;
}

/* Default: flexible cards (safe for small screens) */
.speed-card-text,
.speed-card-image {
  flex: 1 1 0;
  min-width: 0; /* VERY important */
}

/* Large screens ONLY – exact ratio */
@media (min-width: 1200px) {
  .speed-card-text {
    flex: 0 0 60%;
  }

  .speed-card-image {
    flex: 0 0 40%;
  }
}

/* TEXT CARD */
.speed-card-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1F2937;
}

@media (max-width: 1200px) {
.speed-card-text h2 {
  font-size: 18px;
  font-weight: 600;
}
.speed-card-text li {
  font-size: 14px;
}
}
.speed-card-text p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #1F2937;
  font-weight: 400;
}

.speed-card-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.speed-card-text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #1F2937;
}

.speed-card-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 18px;
  height: 18px;

  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' fill='none' stroke='%2322C55E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* IMAGE CARD */
.speed-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  position: relative;
  max-width: 400px;
}

.main-img {
  width: 100%;
  border-radius: 24px;
}

.stats-card {
  position: absolute;
  left: -20px;
  bottom: -22px;
  background: white;
  border-radius: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.stats-value {
  font-size: 32px;
  font-weight: 700;
}

/* LINK */
.speed-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-weight: 600;
  color: #7338e8;
  text-decoration: none;
}

/* underline animation — unchanged */
.speed-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 1px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.speed-link:hover::after {
  transform: scaleX(1);
}

/* arrow animation */
.speed-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.speed-link:hover .speed-arrow {
  transform: translateX(6px);
}

/* ✅ MOBILE BEHAVIOR */
@media (max-width: 900px) {
  .speed-wrapper {
    flex-direction: column;
  }

  .speed-card-image {
    order: 1; /* image on top */
  }

  .speed-card-text {
    order: 2;
  }
}
/*-------------------------------------*/

/* HOMEPAGE SECTION SIX */

.award-support-section {
  background: #F1F5FF;
  padding: 90px 20px;
  margin-top: 15px;
}

.award-support-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.award-support-image img {
  max-width: 380px;
  /*border-radius: 200px;*/
}

.award-support-content {
  flex: 1;
}

.award-support-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 20px;
}

.award-subtitle {
  font-size: 16px;
  color: #1F2937;
  max-width: 620px;
  margin-bottom: 36px;
}

.award-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-bottom: 36px;
}

.award-feature {
  display: flex;
  gap: 14px;
}

.award-feature .icon {
  font-size: 22px;
  color: #4c50ff;
}

.award-feature strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.award-feature p {
  font-size: 16px;
  color: #1F2937;
}

.award-support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #457bff;
  text-decoration: none;
  /*letter-spacing: 0.5px;*/
}

.award-support-link span {
  transition: transform 0.2s ease;
}

.award-support-link:hover span {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .award-support-container {
    flex-direction: column;
    /*text-align: center;*/
  }

  .award-support-image img {
    max-width: 380px; 
  }

  .award-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .award-support-content h2 {
    font-size: 28px;
  }
}
/*-------------------------------------*/

/* HOMEPAGE SECTION SEVEN */
/* HOSTING INFO SECTION */

.hosting-info {
  background: linear-gradient(180deg, #f6f7ff, #ffffff);
  padding: 90px 20px 0;
}

.hosting-container {
  max-width: 1200px;
  margin: auto;
}

.hosting-info h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hosting-info p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center; /* vertical centering */
  justify-content: center;
  gap: 24px;
}

.card1 {
  background: #fff;
  border: 1px solid #dbdddc;
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 16px;
  padding: 36px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card1:hover {
  transform: scale(1.001) translateY(-4px);
}

.card1-content {
  display: flex;
  align-items: center; /* vertical centering */
  gap: 18px;
}

.icon-img {
  width: 44px;
  height: 44px;
  display: block;        /* IMPORTANT */
  flex-shrink: 0;        /* Prevent resizing */
  object-fit: contain;  /* Keeps aspect ratio */
  align-items: center;
}

 
.text {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.text-p {
  font-size: 16px;
  font-weight: 400;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.arrow {
  margin-left: auto;   /* ✅ pushes arrow to the far right */
  font-size: 24px;
  color: #7338e8;
  transition: transform 0.3s ease;
}

.card1:hover .arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hosting-info h2 {
    font-size: 26px;
  }
}

/*-------------------------------------*/

/* HOMEPAGE SECTION EIGHT */
/* BOTTOM HERO SECTION */

.cta-bottom {
  background-color: #7338e8;
  padding: 40px 20px;
}

.cta-bottom-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-bottom-content {
  flex: 1;
}

.cta-bottom-content h1 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-bottom-btn {
  display: inline-block;
  background: #ffffff;
  color: #7338e8;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-bottom-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.cta-bottom-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-bottom-image img {
  max-width: 70%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .cta-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-bottom-image {
    order: -1; /* Image goes on top */
    justify-content: center;
  }

  .cta-bottom-content h1 {
    font-size: 28px;
  }
}

/*-------------------------------------*/

/* HOMEPAGE SECTION NINE */

/* ========== Plans Container CSS ========== */

.plan_outer_container {
    margin:0 auto !important;
}

.plan_container_pointers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* feature item */
.outer_plan_features {
    display: flex;              /* 🔹 change */
    align-items: center;        /* 🔹 vertical align */
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    white-space: normal;        /* 🔹 IMPORTANT */
    flex: 0 0 auto;             /* natural width on PC */
}

/* check icon */
.outer_plan_features::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    display: block;
    line-height: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' fill='none' stroke='%230072ed' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .plan_container_pointers {
        flex-direction: column;
        align-items: center;
    }

    .outer_plan_features {
        /*width: 100%;*/
    }
}

.plan_container {
    width: 100%;
    /*padding: 60px 0 0;*/
    position: relative;
}

.slider-controls {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;               /* hidden by default */
    transition: opacity .3s;  /* fade in/out */
}

.slider-button {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-light);
    box-shadow: 0 4px 16px #00000029;
    cursor: pointer;
    height: 45px;
    justify-content: center;
    width: 45px;
    z-index: 2;
    font-size: 22px;
    line-height: 22;
    border: 0;
    outline: 0;
    pointer-events: auto;
}

.slider-prev {
    transform:rotate(180deg);
}

.slider-button:disabled {
    background-color: #fff;
    opacity:0;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 60px 10px 30px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1; /* muted gray-blue */
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.carousel-dot.active {
  background: #1E3A8A;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.15);
}

.carousel-dot:hover {
  background: #64748B;
}

.carousel-dot:focus-visible {
  outline: 2px solid #1E3A8A;
  outline-offset: 3px;
}

@media (min-width: 1125px) {
  .carousel-pagination {
    display: none;
  }
}

@media (min-width: 1125px) {
  .carousel-pagination {
    display: none !important;
    height: 0;
    margin: 0;
    padding: 0;
  }
}

.plan_column {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    margin: 10px;
    padding: 45px 30px 60px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out;
    position: relative;
    min-height: 600px;
    /*box-shadow: 0 6px 18px rgba(11, 107, 136, 0.08);*/
    /*box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);*/
    box-shadow: var(--shadow-soft);
}

.plan_column:hover {
    /*transform: scale(1.02);*/
    /*z-index: 100;*/
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-hover);
}

.plan_column:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 48px;
    background: var(--bg-card);
    border-radius: 24px 24px 0 0;
}

/*.plan_column:hover {*/
/*    background-color:#fff;*/
/*}*/

#plan2 {
  border: 2px solid var(--popular-bg);

/*  background: linear-gradient(*/
/*  180deg,*/
/*  #FFFFFF 0%,*/
/*  #FFFFFF 80%,*/
/*  #F6F8FF 100%*/
/*);*/

/*  background-size: 100% 200%;*/
/*  background-position: 0% 0%;*/

/*  box-shadow: 0px 1px 25.8px rgb(188 199 226 / 64%);*/

  /* NO transform here */
  /*transition:*/
  /*  background-position 0.4s ease,*/
  /*  box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);*/
}

#plan2:hover {
  /*background-position: 0% 100%;*/
  /*box-shadow: 0px 12px 32px rgb(30 58 138 / 28%);*/
}

#plan3 {
    /*border-color:#673de6;*/
    /*background-color: #f2f3f6;*/
}

#plan3:before {
    /*background-color: #f2f3f6;*/
}

#plan1:hover,
#plan3:hover,
#plan4:hover {
    /*background-color:#faf9fa;*/
}

.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -40px;
    z-index: -1;
    left: 0.1px;
    right: 0;
    text-align: center;
    /*padding: 0 0 35px;*/
    padding-top: 8px;
    /*overflow: hidden;*/
    border-radius: 24px 24px 0 0;
}

.plan-badge:before {
    position: absolute;
    background: var(--popular-bg);
    content: "";
    left: -1.5px;
    top: -2px;
    right: -1.5px;
    bottom: -43px;
    z-index: -2;
    border-radius: 24px 24px 0 0;
}

.plan-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    /*animation: shinePlanBadge 2s infinite;*/
    pointer-events: none;
    z-index: -1;
}

@keyframes shinePlanBadge {
    100% {
        left: 125%;
    }
}

/* Pricing plan Start */

.plan-badge-img {
    filter: brightness(15.5);
}

.plan-badge-text {
    color: var(--popular-text);
    font-size: 14px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.plan_popular {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan_popular_name {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.plan_popular_badge {
  padding: 4px 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    text-transform: none;
    background: #d8f7ff;
    border-radius: 8px;
  white-space: nowrap;
}

.plan_title {
    font-weight: 600;
    color: #1F2937;
    font-size: 24px;
}

.plan_para {
    font-size: 15px;
    font-weight: 400;
    padding-top: 8px;
    color: var(--text-body);
    padding-bottom: 10px;
}

.plan_content {
    border-radius: 20px;
    transition: all .3s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.plan_header_box {
    position: relative;
    z-index: 10;
}

.plan_header_padding {
    padding-top: 16px;
}

.plan_price_strikethrough {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-weight: 400;
    color: #000000;
}

.plan_price_strikethrough:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: calc(100% + 8px);
    height: 1px;
    background: #000000;
}

.plan_currency_icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
}

.plan_old_price {
    /*padding-left: 2px;*/
}

.plan_save {
    background-color: #feedd4;
    color: #EA580C;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.plan_price {
    width: 100%;
    line-height: 1;
    margin-top: 15px;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
}

.sp-price {
    color: #1F2937;
    font-size: 40px;
    font-weight: 600;
    padding: 5px 0 0;
}

.price-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .old-price {
      position: relative;
      display: inline-block;
      color: #1F2937;
      font-size: 14px;
      font-weight: 400;
      padding: 0 2px; /* small padding to avoid overshoot */
    }

    .old-price::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 1px;   /* thickness of line */
      background: currentColor;
      transform: translateY(-50%);
    }

.discount-badge {
    background: var(--discount-bg);
    color: var(--discount-text);
    font-weight: 600;
    padding: 4px 8px;          /* tiny adjustment */
    border-radius: 4px;
    font-size: 13px;
    line-height: 1;            /* 🔑 key fix */
    display: inline-flex;      /* 🔑 key fix */
    align-items: center;       /* 🔑 key fix */
    transform: translateY(0.5px);
}
    
.plan_renew {
    color: var(--text-body);
    font-size: 14px;
    font-weight: 400;
    padding: 20px 0 5px;
    
}

.plan_price_unit {
    font-size: 16px;
    transform: translate(0,-4px);
    font-weight: 400;
    align-self: flex-end;
}

.plan-tenure-text {
  font-size: 14px;
  color: #1F2937;
  font-weight: 400;
  padding: 0 0 5px;
}

/* Tooltip trigger */
.tooltip-free-underline {
  position: relative;
  /*cursor: help;*/
  color: var(--btn-primary-bg);
  font-weight: 600;
  border-bottom: 1.5px dashed currentColor;
}
.tooltip-free-underline:hover {
  color: var(--btn-primary-hover);
}

/* Tooltip base */
.tooltip-free-underline::before,
.tooltip-free-underline::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

/* Tooltip box */
.tooltip-free-underline::before {
  content: attr(data-tooltip);
  top: calc(100% + 6px);

  /* 👇 center WITHOUT transform */
  margin-left: -120px;
  width: 250px;

  background: #121e37;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  white-space: normal;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Tooltip arrow */
/*.tooltip-free-underline::after {*/
/*  content: "";*/
/*  top: 15px;*/
/*  margin-left: -8px;*/

/*  border: 8px solid transparent;*/
/*  border-bottom-color: #121e37;*/
/*}*/

/* Show tooltip */
.tooltip-free-underline:hover::before,
.tooltip-free-underline:hover::after {
  opacity: 1;
  visibility: visible;
}

.plan_renew_note {
    padding: 2px 0 30px;
    font-size: 12px;
}

.custom-btn {
      background: transparent;
    border: 1px solid var(--btn-primary-bg);
    color: var(--btn-primary-bg);
      padding: 12px 28px;
      font-size: 16px;
      font-weight: 500;
      border-radius: 8px;
      min-width:100%;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .custom-btn:hover {
      background: var(--btn-primary-bg);
      border: 1px solid var(--btn-primary-bg);
      color: var(--text-inverse); 
    }
    
    .custom-btn-popular {
      background: var(--btn-primary-bg); /* Dark teal */
      /*border: 3px solid #457bff;*/
      color: #fff; /* White text */
      border: none;
      padding: 13px 28px;
      font-size: 16px;
      font-weight: 500;
      border-radius: 8px;
      min-width:100%;
      cursor: pointer;
      transition: all 0.1s ease;
      position: relative;
      overflow: hidden;
    }

    .custom-btn-popular:hover {
      background: var(--btn-primary-hover); /* Light blue */
      color: #fff; /* Dark teal text */
      /*border: 1px solid #5656F2;*/
    }
    
.custom-btn-popular::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transition: left 0.9s ease;
}

.custom-btn-popular:hover::after {
  left: 120%;
}

.custom-btn-popular:hover {
  transform: translateY(-0.1px) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .custom-btn-popular {
    transition: none;
  }
  
  .custom-btn-popular::after {
    display: none;
  }
}


.custom-btn,
.custom-btn-popular {
    margin-top: 10px;
    margin-bottom: 16px;
}

.plan_divider {
    margin-top: 5px;
    margin-bottom: 14px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.plan_feature_list {
    padding: 0;
    list-style: none;
}

.plan_feature,
.plan_feature_crossed {
    display: block;
    margin: 9px 0 0;
    padding-left: 30px;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

.plan_feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.plan_feature.websites::before {
    background-image: url("/assets/images/icons/websites.svg");
}

.plan_feature.domain::before {
    background-image: url("/assets/images/icons/domain.svg");
}

.plan_feature.check-blue::before {
    background-image: url("/assets/images/icons/check-icon.svg");
}

.plan_feature.storage::before {
    background-image: url("/assets/images/icons/storage.svg");
}

.plan_feature.traffic::before {
    background-image: url("/assets/images/icons/traffic.svg");
}

.plan_feature.unlimited::before {
    background-image: url("/assets/images/icons/unlimited.svg");
}

.plan_feature.mail::before {
    background-image: url("/assets/images/icons/mail.svg");
}

.plan_feature.backup::before {
    background-image: url("/assets/images/icons/backup.svg");
}

.plan_feature.cpu::before {
    background-image: url("/assets/images/icons/cpu.svg");
}

.plan_feature.ram::before {
    background-image: url("/assets/images/icons/ram.svg");
}

.plan_feature.check::before {
    background-image: url("/assets/images/icons/check.svg");
}

.plan_feature.visitors::before {
    background-image: url("/assets/images/icons/visitors.svg");
}

.plan_feature.server::before {
    background-image: url("/assets/images/icons/server.svg");
}

.plan_feature.nodejs::before {
    background-image: url("/assets/images/icons/nodejs.svg");
}

.plan_feature.python::before {
    background-image: url("/assets/images/icons/python.svg");
}

.plan_feature.ssh::before {
    background-image: url("/assets/images/icons/ssh.svg");
}

.plan_feature.encryption::before {
    background-image: url("/assets/images/icons/encryption.svg");
}

.plan_feature.money::before {
    background-image: url("/assets/images/icons/money.svg");
}

.plan_feature.wordpress::before {
    background-image: url("/assets/images/icons/wordpress.svg");
}

.plan_feature.migration::before {
    background-image: url("/assets/images/icons/migration.svg");
}

.plan_feature.support::before {
    background-image: url("/assets/images/icons/support.svg");
}

.plan_feature.panel::before {
    background-image: url("/assets/images/icons/panel.svg");
}

.plan_feature.cache::before {
    background-image: url("/assets/images/icons/cache.svg");
}

.plan_feature_crossed::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.plan_feature_crossed.na::before {
    background-image: url("/assets/images/icons/na.svg");
}

/*.plan_feature:before {*/
/*    content: "✓";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 1px;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    color: #0072ed;*/
/*    font-weight: 500;*/
/*    font-size: 15px;*/
/*}*/

/*.plan_feature::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    transform: translateY(-50%);*/
/*    display: block;*/
/*    line-height: 1;*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    background-position: center;*/
/*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' fill='none' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");*/
/*}*/

.plan_feature_crossed {
    color: #9baab8 !important;
}

/*.plan_feature_crossed:before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 1px;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    content: "✕";*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    color: #9A9A9A;*/
/*}*/

.plan_feature_bold {
    font-weight: 800;
}

.plan_feature_highlight {
    color: var(--text-gray);
    text-decoration: underline;
    text-decoration-color: #B7C3D1;
    text-decoration-style: dashed;
    text-underline-position: under;
    padding-bottom: 2px;
    position: relative;
    cursor: help;
}

.sp-pr-feature-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #1F2937;
}

.sp-pr-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}

/* Default (Available feature) */
.sp-pr-feature-list li::before {
    content: "✓";
    margin-right: 12px;
    margin-top: 1px;
    font-size: 14px;
    color: #0072ed;
    flex-shrink: 0;
}

/* ❌ Unavailable feature */
.sp-pr-feature-list li.unavailable {
    color: #9a9a9a;
}

.sp-pr-feature-list li.unavailable::before {
    content: "–"; /* minus symbol */
    color: #b0b0b0;
    font-size: 14px;
}

/* Hide extra section and title by default */
.sp-pr-feature-list .extra-feature,
.sp-pr-feature-list .extra-title {
  display: none;
}

.extra-feature {
    position: relative;
    padding-left: 22px; /* space for checkmark */
    list-style: none;
}

/* The checkmark */
.extra-feature::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    color: #3b82f6;
    font-size: 15px;
    line-height: 1;
}

/* Remove the problematic code */
.extra-feature {
    text-indent: 0 !important;
}


/* Section title style */
.sp-pr-feature-list .extra-title {
  font-weight: 700;
  font-size: 15px;
  margin: 18px 0 8px;
  color: #1F2937;
  list-style: none;
}

/* full-width center container */
.view-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #1F2937;
  margin-top: 14px;
  padding-top: 20px;
}

/* underline under text + chevron */
.view-toggle-underline {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background-image: linear-gradient(#2563eb, #2563eb);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 60% 1.5px; /* hidden initially */
  padding-bottom: 4px;

  transition: background-size 0.3s ease;
}

/* hover animation: left → right */
.view-toggle-wrap:hover .view-toggle-underline {
  background-size: 100% 1.5px;
}

/* chevron animation */
.chevron {
  transition: transform 0.25s ease;
}

.view-toggle-wrap.expanded .chevron {
  transform: rotate(180deg);
}

/* ================================
   TEXT + RIGHT-SIDE ? MARK TOOLTIP
   ================================ */

/* Tooltip host */
.tooltip-hostx {
  position: relative;
  cursor: help;
  display: inline;
  border-bottom: 1px dashed #b6b6b6;
  overflow: visible;
}


/* Small "i" icon */
.tooltip-hostx .tooltip-hostx-icon {
  font-size: 12px;
  font-weight: 700;
  background: #e5e7eb;
  color: #374151;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  margin-left: 4px;
}

/* Tooltip box (BELOW the text) */
.tooltip-hostx-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  background: #121e37;
  color: #ffffff;

  font-size: 14px;
  line-height: 1.6;

  padding: 12px 18px 20px;
  border-radius: 8px;

  min-width: 250px;
  max-width: 350px;

  opacity: 0;
  transform: translateY(-4px) translateZ(0);
  pointer-events: none;

  transition: opacity 0.18s ease, transform 0.18s ease;

  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;

  z-index: 9999;
}


.tooltip-hostx-box > * {
  margin-top: 0;
}

.tooltip-hostx-box > *:last-child {
  margin-bottom: 0;
}


/* Tooltip title */
.tooltip-hostx-title {
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

/* Tooltip description */
.tooltip-hostx-desc {
  font-weight: 400;
  font-size: 14px;
  display: block;
}


/* Arrow BELOW text, pointing UP */
.tooltip-hostx-box::before {
  content: "";
  position: absolute;

  top: -6px;          /* sits on tooltip top edge */
  left: 24px;         /* horizontal alignment */

  width: 0;
  height: 0;

  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #121e37; /* ▼ visually UP-pointing arrow */

  /* IMPORTANT:
     border-bottom creates a triangle that points UP
     when placed ABOVE the tooltip box */
}


/* Hover show tooltip + arrow */
.tooltip-hostx:hover .tooltip-hostx-box {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-hostx:hover::before {
  opacity: 1;
  transform: translateY(0);
}



.plan_feature_list_title {
    font-size: 15px;
    font-weight: 700;
    margin: 25px 0 20px;
}

.plan_toggle_features {
    text-align: left;
    padding-bottom: 28px;
    margin-top: auto;
}

.plan_toggle_button {
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    width:100%;
    margin: 25px 0 20px;
}

.plan_toggle_button:after {
    background:#673DE6;
    width: 70px;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.plan_toggle_button:hover:after {
    width: 138px;
}

.plan_hidden_features {
    /*display: none;*/
}

.plan_hidden_features.show {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.month_free {
    color: #673de6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.domain_span {
    background: #13b763;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:3px;
}

.rupee_icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 599px) {
    .plan_column {
        width: 85%;
        min-width: 85%;
        max-width: 85%;
        margin-left: 20px;
        margin-right: 10px;
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 600px) and (max-width: 899px) {
    .plan_column {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Medium - Show 3 plans */
@media (min-width: 900px) and (max-width: 1124px) {
    .plan_column {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Laptop Large - Show 4 plans */
/*@media (min-width: 1120px) and (max-width: 1299px) {*/
/*    .plan_column {*/
/*        width: calc(25% - 20px);*/
/*        min-width: calc(25% - 20px);*/
/*        max-width: calc(25% - 20px);*/
/*    }*/
    
/*    .slider-controls {*/
/*        display: none;*/
/*    }*/
/*}*/

/* Desktop - Show 4 plans */
@media (min-width: 1125px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    .slider-controls {
        display: flex !important; /* keep arrows always visible */
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .plan_container {
        /* padding-top: 80px; */
    }
    
    .plan_save {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .plan_price_discounted {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .plan_container {
        /* padding: 80px 5px 0; */
    }
    
    .plan_column {
        /*margin: 5px;*/
    }
    
    .plan_save {
        display: block;
        margin: 8px 0;
        margin-left: 0;
        text-align: center;
    }
}

.plan_hidden_features {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-20px);
    transition: max-height 0.6s ease, opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.plan_hidden_features.expanded {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow: visible;
}

/*.plan_toggle_button {
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
    color: #0073e6;
    font-weight: bold;
}*/


/*------------------------------*/

.sitepex-support-enterprise {
  padding: 40px 20px 60px;
  background: #fff; 
}

.enterprise-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 1.50fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.enterprise-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7338e8;
  margin-bottom: 14px;
}

.enterprise-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #212121;
  line-height: 1.15;
  margin-bottom: 20px;
}

.enterprise-desc {
  font-size: 16.5px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 46px;
}

/* METRICS */
.enterprise-metrics {
  display: flex;
  gap: 42px;
}

.enterprise-metrics div {
  display: flex;
  flex-direction: column;
}

.enterprise-metrics strong {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.enterprise-metrics span {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
}

/* RIGHT VISUAL */
.enterprise-visual img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

/* Responsive */
@media (max-width: 900px) {
  .enterprise-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .enterprise-content h2 {
    font-size: 32px;
  }

  .enterprise-metrics {
    gap: 26px;
    flex-wrap: wrap;
  }
}



/* =====================================================
   GLOBAL IMAGE RESET (IMPORTANT)
   ===================================================== */
.card img,
.feature-card img,
.icon-card img {
  /*width: 75% !important;*/
  /*height: 75% !important;*/
  /*max-width: 75% !important;*/
  /*max-height: 75% !important;*/
}

/* =====================================================
   WEB FEATURE SECTION
   ===================================================== */
.web-feature-section {
  padding: 90px 20px 130px;
}

.web-feature-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  grid-template-areas:
    "migration moneyback uptime"
    "migration domain     ssl";
  gap: 28px;
}

/* =====================================================
   CARD BASE
   ===================================================== */
.card {
  background: #ffffff;
  border-radius: 26px;
  padding: 36px;
  border: 1px solid #eef1f6;
  box-shadow: 0 3px 7px rgba(0,0,0,.05);
  text-align: center;
}

/* Grid areas */
.migration { grid-area: migration; }
.moneyback { grid-area: moneyback; }
.uptime    { grid-area: uptime; }
.domain    { grid-area: domain; }
.ssl       { grid-area: ssl; }

/* =====================================================
   HARD ICON LOCK (KEY FIX)
   ===================================================== */
.card-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 10px 0 10px;
}

.card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE GRID
   ===================================================== */
@media (max-width: 900px) {
  .web-feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "migration"
      "moneyback"
      "uptime"
      "domain"
      "ssl";
  }
}

/* =====================================================
   POWERFUL FEATURES SECTION
   ===================================================== */
.powerful-features {
  padding: 80px 20px;
  background: #ffffff;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Feature card */
.feature-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 26px;
  padding: 34px 34px 38px;
  text-align: center;
}

/* Slightly bigger icons */
.feature-card .card-icon {
  width: 84px;
  height: 84px;
}

/* Headings */
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Text */
.feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
}

/* =====================================================
   ICON CARDS
   ===================================================== */
.icon-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 230px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}



.sitepex-proof {
  padding: 120px 0;
  background: #f7f7ff;
}

.proof-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /*gap: 80px;*/
  align-items: center;
}

/* LEFT */

.proof-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #212121;
  margin-bottom: 18px;
}

.proof-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #212121;
  max-width: 480px;
  margin-bottom: 28px;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proof-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #1f2937;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;

  width: 18px;
  height: 18px;

  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' fill='none' stroke='%232f5deb' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* RIGHT */
.proof-right {
  position: relative;
  display: grid;
  gap: 22px;
}

.stat-pill {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid #eef1f6;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .05);
}

.stat-pill strong {
  display: block;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212121;
}

.stat-pill span {
  font-size: 14px;
  color: #212121;
}

/* Accent pills */
.stat-pill.primary strong {
  color: #212121;
}

.stat-pill.accent strong {
  color: #212121;
}

/* Responsive */
@media (max-width: 900px) {
  .proof-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .proof-left h2 {
    font-size: 34px;
  }
}

.sitepex-accordion {
  padding: 100px 0;
  background: #e9fbf2;
}

/* Wrapper */
.accordion-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.accordion-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #212121;
}

.subtitle {
  font-size: 16px;
  color: #212121;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ACCORDION */
.accordion-item {
  cursor: pointer;
  border-bottom: 1px solid #cfe9dc;
  padding: 24px 28px;
  border-radius: 12px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.accordion-item + .accordion-item {
  margin-top: 10px;
}

.accordion-item.active {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-bottom: none;
}

/* Header */
.accordion-header {
  background: none;
  border: none;
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #212121;
  margin-bottom: 10px;
  padding: 0;
}

/* Icon (+ / -) */
.icon {
  font-size: 25px;
  line-height: 1;
  color: #212121;
}

/* Content wrapper */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Expanded state */
.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-top: 10px;
}

/* Hover effect for unopened accordion */
.accordion-item:not(.active):hover {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}


/* List reset */
.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.accordion-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #212121;
  font-size: 16px;
  line-height: 1.6;
}

/* SVG Checkmark */
.accordion-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 18px;
  height: 18px;

  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' fill='none' stroke='%232f5deb' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* RIGHT SIDE (Image panel) */
.accordion-right {
  position: relative;
}

.image-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.image-panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.image-panel img {
  width: 100%;
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .accordion-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .accordion-left h2 {
    font-size: 30px;
  }
}

.sitepex-migration {
  padding: 110px 0;
  background: #ffffff;
}

.migration-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Heading */
.migration-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.migration-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 14px;
}

.migration-head p {
  font-size: 16px;
  color: #212121;
  line-height: 1.7;
}

/* Steps */
.migration-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 70px;
}

.step {
  padding: 32px 28px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: transform .3s ease, box-shadow .3s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.step-icon {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #7338e8;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212121;
}

.step p {
  font-size: 14px;
  color: #212121;
  line-height: 1.6;
}

/* CTA */
.migration-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.badge {
  font-size: 14px;
  color: #212121;
  background: rgba(108, 58, 232, 0.06);
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 500;
}

.btn-primary {
  background: #6933d3;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background .3s ease, transform .2s ease;
}

.btn-primary:hover {
  background: #7338e8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .migration-steps {
    grid-template-columns: 1fr;
  }

  .migration-head h2 {
    font-size: 30px;
  }
}

/* SECTION */
.cs-section {
  padding: 90px 20px;
  background: #f6f7ff;
  text-align: center;
}

.cs-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #111827;
}

/* CAROUSEL */
.cs-carousel {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* VIEWPORT (CRITICAL FIX) */
.cs-viewport {
  overflow: hidden; /* prevents hidden cards */
  width: 100%;
}

/* TRACK */
.cs-track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
  will-change: transform;
}

/* CARD */
.cs-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, .05);
  text-align: left;
}

.cs-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 28px;
}

/* USER */
.cs-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.cs-user strong {
  display: block;
  font-size: 15px;
  color: #111827;
}

.cs-user span {
  font-size: 13px;
  color: #6b7280;
}

/* NAV */
.cs-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.cs-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transition: all .2s ease;
}

.cs-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-btn:hover {
  background: #6933d3;
  color: #ffffff;
  border-color: #6933d3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cs-card {
    flex: 0 0 100%;
  }
}


.sitepex-guarantee-modern {
  padding: 50px 20px 120px;
  background: #ffffff;
}

.guarantee-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 50px;
  /*box-shadow: 0px 0px 91px rgba(216, 231, 254, 0.41);*/
  box-shadow: 0 2px 2px -1px #4040421a, 0 4px 4px 1px #40404205, 0 1px 8px #4040421a;
  background: #ffffff;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 0.5fr 1.1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.guarantee-visual {
  display: flex;
  justify-content: center;
}

.guarantee-visual img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* RIGHT */
.guarantee-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.guarantee-content .lead {
  font-size: 20px;
  line-height: 1.7;
  color: #020202;
  max-width: 720px;
  margin-bottom: 12px;
}

.guarantee-content .muted {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 28px;
}

/* Points */
.guarantee-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guarantee-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #0f172a;
}

.guarantee-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7.8 14.6L3.9 10.7l1.4-1.4 2.5 2.5 6.8-6.8 1.4 1.4z' fill='%2322C55E'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 900px) {
  .guarantee-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 0px;
  }

  .guarantee-visual {
    order: 2;
  }

  .guarantee-content h2 {
    font-size: 24px;
  }
  .guarantee-visual img {
    display: none;
  }
}

.web-pricing-full {
  background: #f6f7f9;
}

.web-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.web-pricing-title {
  padding: 0 30px 0;
  text-align: center;
}

/* Pill */
.web-pricing-pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  background: #e0e7ff;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* Heading */
.web-pricing-heading {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-top: 70px;
}

/* Description paragraph */
.web-pricing-description {
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
}

/* Features row */
.web-pricing-features {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* Single feature */
.web-pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-body);
  white-space: nowrap;
}

/* SVG icon */
.web-pricing-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .web-pricing-heading {
    font-size: 38px;
  }

  .web-pricing-description {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .web-pricing-features {
    gap: 20px;
  }
}

.oneclick-apps {
  padding: 110px 20px;
  background: #f8fafc;
  overflow: hidden;
}

.apps-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.apps-heading {
  text-align: center;
  margin-bottom: 70px;
}

.apps-heading h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.apps-heading p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* Rows */
.apps-row {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;

  /* fade effect */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}


.apps-track {
  display: flex;
  width: max-content;
}

/* Card */
.app-card {
  min-width: 200px;
  height: 90px;
  background: #ffffff;
  border-radius: 12px;
  margin-right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo normalization */
.app-card img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.85;
}

/* Animations */
.scroll-left .apps-track {
  animation: scroll-left 35s linear infinite;
}

.scroll-right .apps-track {
  animation: scroll-right 35s linear infinite;
}

.slow .apps-track {
  animation-duration: 45s;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .app-card {
    min-width: 160px;
  }
}

/* ===============================
   FLOATING GEOMETRY CTA
================================ */
.sp-cta-geo {
  padding: 120px 20px;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.sp-cta-geo-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 60px 60px;
  border-radius: 32px;
  background: #ffffff;
  overflow: hidden;

  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.12);
}

/* ===============================
   CONTENT
================================ */
.sp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.sp-cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7338e8;
  margin-bottom: 18px;
}

.sp-cta-content h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.sp-cta-content strong {
  color: #7338e8;
}

.sp-cta-content p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 36px;
}

/* ===============================
   BUTTON
================================ */
.sp-cta-action {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 32px;
  border-radius: 14px;
  color: #7338e8;
  border: 1px solid #7338e8;
  background: #ffffff;
  text-decoration: none;

  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.sp-cta-action:hover {
  background: #6933d3;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 11px 23px rgba(37, 99, 235, 0.45);
}

/* ===============================
   GEOMETRIC SHAPES
================================ */
.geo-shape {
  position: absolute;
  opacity: 0.15;
  filter: blur(0.5px);
}

/* Circle */
.geo-shape.circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #60a5fa;
  top: -80px;
  right: -60px;
}

/* Square */
.geo-shape.square {
  width: 180px;
  height: 180px;
  background: #93c5fd;
  bottom: -60px;
  right: 180px;
  transform: rotate(18deg);
}

/* Triangle */
.geo-shape.triangle {
  width: 0;
  height: 0;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 240px solid #2563eb;
  opacity: 0.08;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .sp-cta-geo-inner {
    padding: 70px 30px;
  }

  .geo-shape.square,
  .geo-shape.circle {
    display: none;
  }
}

.stats-pro {
  position: relative;
  padding: 70px 20px 90px;
  color: #fff;
  overflow: hidden;
  background: #7338e8;

/*  background:*/
/*    radial-gradient(1000px 600px at 80% 0%, rgba(255,255,255,0.45), transparent 60%),*/
/*    radial-gradient(800px 500px at 10% 10%, rgba(255,255,255,0.2), transparent 55%),*/
/*    linear-gradient(180deg, #7c3aed 0%, #6d28d9 45%, #4c1d95 100%);*/
}

/* floating glow blobs */
.stats-pro::before,
.stats-pro::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: 0;
}

.stats-pro::before {
  background: #a78bfa;
  top: -200px;
  left: -200px;
}

.stats-pro::after {
  background: #c4b5fd;
  bottom: -250px;
  right: -250px;
}

.stats-wrap {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-wrap h2 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 600;
  margin-bottom: 50px;
  text-align: left;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Glass cards */
.stat-card {
  /*background: rgba(255,255,255,0.12);*/
  background: #f6f7ff;
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
}

/* Numbers */
.stat-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  background: linear-gradient(
  180deg,
  #7338e8 0%,
  #7338e8 35%,
  #7338e8 70%,
  #7338e8 100%
);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.stat-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #212121;
}

.stat-card p {
  font-size: 16px;
  line-height: 1.7;
  /*color: rgba(255,255,255,0.85);*/
  color: #212121;
}

/* Mobile */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SITEPEX FEATURES SECTION
================================ */
.spx-features {
  background: #ffffff;
  padding: 100px 20px 120px;
}

.spx-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Heading */
.spx-features-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.spx-features-header h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.spx-features-header p {
  font-size: 18px;
  color: #475569;
}

/* Grid */
.spx-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Cards */
.spx-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.spx-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Image instead of icon */
.spx-feature-image {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b35f2, #7a5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.spx-feature-image img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes any image white */
}

/* Text */
.spx-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.spx-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Mobile */
@media (max-width: 992px) {
  .spx-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .spx-features-grid {
    grid-template-columns: 1fr;
  }

  .spx-features-header h2 {
    font-size: 28px;
  }
}


.spx-expert-section {
  background: linear-gradient(180deg, #f6f7ff, #ffffff);
  padding: 120px 20px;
}

.spx-container {
  max-width: 1300px;
  margin: 0 auto;
}

.spx-expert-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left content */
.spx-expert-content h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.spx-expert-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
}

.spx-expert-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.spx-expert-stats div {
  display: flex;
  flex-direction: column;
}

.spx-expert-stats strong {
  font-size: 34px;
  font-weight: 700;
  color: #5b35f2;
}

.spx-expert-stats span {
  font-size: 14px;
  color: #64748b;
}

/* Feature tiles */
.spx-expert-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spx-feature-tile {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.spx-feature-tile:hover {
  transform: translateX(6px);
  box-shadow: 0 20px 60px rgba(91,53,242,0.15);
}

/* Brand color background for feature images */
.spx-tile-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b35f2, #7a5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(91,53,242,0.35);
}

/* Actual image inside */
.spx-tile-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}


.spx-feature-tile h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.spx-feature-tile p {
  font-size: 16px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 992px) {
  .spx-expert-grid {
    grid-template-columns: 1fr;
  }
  .spx-expert-content h2 {
  font-size: 26px;
  }
}


.main-testimonials {
  background: linear-gradient(180deg, #f6f7ff, #ffffff);
  padding: 90px 20px 130px;
}

.mt-container {
  max-width: 1300px;
  margin: 0 auto;
}

.mt-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.mt-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.mt-header p {
  font-size: 16px;
  color: #64748b;
}

/* Grid */
.mt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.mt-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.mt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(91,53,242,0.12);
}

/* User */
.mt-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e6e8ff;
  color: #5b35f2;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-avatar.purple { background: #ede9fe; color: #7c3aed; }
.mt-avatar.blue { background: #dbeafe; color: #2563eb; }
.mt-avatar.green { background: #dcfce7; color: #16a34a; }

.mt-user h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.mt-user span {
  font-size: 13px;
  color: #94a3b8;
}

/* Stars */
.mt-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Content */
.mt-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.mt-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Mobile */
@media (max-width: 992px) {
  .mt-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mt-header h2 {
  font-size: 28px;
  }
}

@media (max-width: 600px) {
  .mt-grid {
    grid-template-columns: 1fr;
  }
}

.spx-cta-section {
  padding: 20px 20px 120px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.spx-cta-box {
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(135deg, #0b1020, #05060f);
  border-radius: 36px;
  padding: 90px 80px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

/* Badge */
.spx-cta-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(105, 51, 211, 0.15);
  color: #bda9ff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Title */
.spx-cta-box h2 {
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
}

/* Description */
.spx-cta-box p {
  max-width: 620px;
  margin: 0 auto 42px;
  font-size: 18px;
  line-height: 1.7;
  color: #cbd0f3;
}

/* Button */
.spx-cta-btn {
  display: inline-block;
  padding: 18px 52px;
  border-radius: 14px;
  background: #6933d3;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.spx-cta-btn:hover {
  background: #7a4cf0;
  transform: translateY(-2px);
}

/* Features */
.spx-cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.spx-cta-features span {
  font-size: 14px;
  color: #cbd0f3;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SVG Checkmark */
.spx-cta-features span::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13L9 17L19 7' stroke='%239b7cff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 768px) {
  .spx-cta-box {
    padding: 60px 20px;
    border-radius: 24px;
  }
}

.wp-includes-section {
  background: #f6f7f9;
  padding: 70px 20px 110px;
}

.wp-includes-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  padding: 60px 50px;
  background: #ffffff;
}

.wp-includes-container h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #0b132b;
  margin-bottom: 50px;
}

.wp-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 26px;
}

.wp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #3a3f55;
}

.wp-feature img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .wp-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wp-includes-container {
    padding: 40px 25px;
  }

  .wp-includes-container h2 {
    font-size: 28px;
  }

  .wp-includes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   PLAN TYPES SECTION
============================== */

.lh-plan-types {
  padding: 70px 20px 0;
  background-color: #ffffff;
  /*background-image: radial-gradient(#dcdfe6 1px, transparent 1px);*/
  background-size: 20px 20px;
}

.lh-container {
  max-width: 1250px;
  margin: 0 auto;
}

/* Heading */

.lh-heading {
  text-align: center;
  margin-bottom: 70px;
}

.lh-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.lh-heading .underline {
  border-bottom: 4px solid #2b36c7;
  padding-bottom: 1px;
}

.lh-heading p {
  margin-top: 15px;
  font-size: 16px;
  color: #6b7280;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid */

/*.lh-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  gap: 28px;*/
/*}*/

.lh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px; /* optional tighter layout */
  margin: 0 auto;
}

/* Card */

.lh-card {
  background: #ffffff;
  border: 1px solid #d9dfeb;
  border-radius: 12px;
  padding: 40px 28px;
  position: relative;
  transition: all 0.25s ease;
}

.lh-card:hover {
  box-shadow: 0 10px 30px rgba(43, 54, 199, 0.08);
  border-color: #c7d2fe;
  transform: translateY(-2px);
}

.lh-card.featured {
  background: #f9faff;
  border-radius: 0 0 12px 12px;
}

.lh-card.featured .popular {
  border-radius: 12px 12px 0 0;
}

/* Popular Ribbon */

.popular {
  position: absolute;
  top: -38px;
  left: -0.5px;
  right: -0.5px;
  background: #7338e8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  border-radius: 18px 18px 0 0;
}

/* Title */

.lh-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Old price */

.lh-old {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.strike {
  text-decoration: line-through;
  color: #797980;
  font-size: 14px;
}

.save {
  border-radius: 20px;
  color: #FF4400;
  background: #FFEDE6;
  padding: 4px 12px;
  font-size: 14px;
  margin-left: -5px;
  font-weight: 600;
  border: 1px solid #ffceb5;
}

/* Price */

.lh-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.us {
  font-size:18px;    
  font-weight: 400;
}

.amount {
  font-size: 36px;
  font-weight: 600;
  color: #1F1B24;
  line-height: 1;
}

.mo {
  font-size: 16px;
}

.billing {
  font-size: 14px;
  color: #41464B;
  margin: 10px 0 30px;
  font-weight: 400;
}

/* Button */

.lh-btn {
  cursor: pointer;    
  display: block;
  text-align: center;
  background: #fff;
  color: #7338e8;
  padding: 14px 0;
  border-radius: 8px;
  border: 1px solid #7338e8;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lh-btn:hover {
  color: #fff;    
  background: linear-gradient(90deg, #7a5cff, #5b35f2);
  box-shadow: 0 6px 20px rgba(43, 54, 199, 0.25);
}

/* Button Popular */

.lh-btn-recommended {
  cursor: pointer;    
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #5b35f2, #7a5cff);
  color: #fff;
  padding: 14px 0;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lh-btn-recommended:hover {
  background: linear-gradient(90deg, #7a5cff, #5b35f2);
  box-shadow: 0 6px 20px rgba(43, 54, 199, 0.25);
}

/* Divider */

.divider {
  height: 1px;
  background: #d6dbe8;
  margin: 28px 0;
}

/* Description */

.description {
  font-size: 15px;
  color: #1f2937;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 1140px) {
  .lh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lh-grid {
    grid-template-columns: 1fr;
  }

  .lh-heading h2 {
    font-size: 26px;
  }
  .lh-card.featured {
  margin-top: 35px;
  }
  .amount {
  font-size: 36px;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.lh-services {
  padding: 90px 20px 120px;
  background: #f1f3ff;
}

.lh-services-header {
  text-align: center;
  max-width: 630px;
  margin: 0 auto 60px;
}

.lh-services-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

.lh-title-border span {
  position: relative;
  display: inline-block;
}

.lh-title-border span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #2b36c7;
  border-radius: 4px;
}

.lh-services-header p {
  font-size: 16px;
  color: #1D1D1D;
  line-height: 1.6;
}

/* =========================
   GRID
========================= */

.lh-services-grid {
  max-width: 1217px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.lh-service-card {
  padding: 26px 24px 36px;
  border-radius: 16px;
  /*background: linear-gradient(213deg, #F1F3FF -13.21%, #FFFFFF 101.76%);*/
  background: #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.lh-service-card:hover {
  /*transform: translateY(-6px);*/
  box-shadow: 6px 10px 20px rgba(0, 0, 0, 0.12);
}

/* ICON */

.lh-service-icon {
  width: 60px;
  height: 60px;
}

.lh-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT */

.lh-service-card h3 {
  margin: 20px 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.lh-service-card p {
  font-size: 16px;
  color: #212121;
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .lh-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lh-services {
    padding: 70px 15px;
  }

  .lh-services-header h2 {
    font-size: 24px;
  }

  .lh-services-grid {
    grid-template-columns: 1fr;
  }

  .lh-service-card {
    padding: 20px 16px;
  }

  .lh-service-card h3 {
    font-size: 16px;
  }

  .lh-service-card p {
    font-size: 13px;
  }
}

/* ==============================
   PERFORMANCE SECTION
============================== */

.lh-performance {
  padding: 0 20px 110px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.lh-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lh-performance-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */

.lh-performance-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lh-performance-content p {
  font-size: 18px;
  color: #212121;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 540px;
}

/* FEATURES */

.lh-performance-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lh-performance-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #1f2937;
}

/* Simple Green Check */
.lh-performance-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13L9 17L19 7' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* RIGHT VISUAL */

.lh-performance-visual {
  display: flex;
  justify-content: center;
}

.lh-speed-card {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e0e7ff;
  box-shadow: 0 15px 40px rgba(43, 54, 199, 0.08);
  transition: all 0.3s ease;
  max-width: 380px;
}

.lh-speed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(43, 54, 199, 0.15);
}

/* SPEED CIRCLE */

.lh-speed-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b35f2, #7a5cff);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
}

.lh-speed-circle span {
  font-size: 34px;
  font-weight: 700;
}

.lh-speed-circle small {
  font-size: 13px;
  opacity: 0.9;
}

.lh-speed-card p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .lh-performance-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lh-performance-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .lh-performance-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .lh-performance-content h2 {
    font-size: 26px;
  }
}

/* ==============================
   TRUSTED SECTION
============================== */

.lh-trusted {
  padding: 120px 20px;
  background: #ffffff; /* outer grey */
}

.lh-trusted-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 90px 60px 110px;
  border-radius: 30px;
  background: linear-gradient(90deg, #5b35f2, #7a5cff);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Abstract Gradient Shapes */

.lh-trusted-wrapper::before,
.lh-trusted-wrapper::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.lh-trusted-wrapper::before {
  top: -200px;
  left: -200px;
}

.lh-trusted-wrapper::after {
  bottom: -250px;
  right: -200px;
}

/* Header */

.lh-trusted-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.lh-trusted-header h2 {
  font-size: 38px;
  font-weight: 700;
  /*margin-bottom: 15px;*/
  position: relative;
  display: inline-block;
}

.lh-trusted-header .underline {
  display: block;
  width: 140px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  margin: 4px auto 0;
  border-radius: 4px;
}

.lh-trusted-header p {
  max-width: 750px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Grid */

.lh-trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Cards */

.lh-trusted-card {
  background: #f3f3f3;
  border-radius: 18px;
  padding: 40px 30px;
  color: #111827;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.lh-trusted-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.lh-trusted-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.lh-trusted-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */

@media (max-width: 992px) {
  .lh-trusted-grid {
    grid-template-columns: 1fr;
  }

  .lh-trusted-wrapper {
    padding: 70px 30px;
  }

  .lh-trusted-header h2 {
    font-size: 28px;
  }
}

/* ===========================
   PRICING SECTION
=========================== */

.zs-pricing {
  padding: 70px 15px 0;
  background: #ffffff;
}

.zs-container {
  max-width: 1450px;
  margin: 0 auto;
}

/*.zs-grid {*/
/*  margin-top: 20px;    */
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*  gap: 15px;*/
/*}*/

.zs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
} 

@media (max-width: 1300px) {
  .zs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1140px) {
  .zs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 698px) {
  .zs-grid {
    grid-template-columns: 350px;   /* fixed card width */
    justify-content: center;        /* center horizontally */
  }
}

/* Card */

.zs-card {
  background: #ffffff;
  border: 1px solid #cfd6e4;
  border-radius: 12px;
  padding: 40px 30px 45px;
  /*margin-bottom: 15px;*/
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.zs-card:hover {
  /*transform: translateY(-3px);*/
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.zs-featured {
  /*background: #f6f7fb;*/
  border-radius: 0 0 12px 12px;
  border: 2px solid #7338e8;
}

/* Popular Ribbon */

.zs-popular {
  position: absolute;
  top: -47px;
  left: -1.5px;
  right: -1.5px;
  background: linear-gradient(90deg, #5b35f2, #7a5cff);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  border-radius: 16px 16px 0 0;
}

/* Headings */

.zs-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222225;
}

.zs-card p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #222225;
}

/* Old Price */

.zs-old {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.zs-strike {
  text-decoration: line-through;
  color: #1f1b24;
  font-size: 15px;
}

.zs-save {
  background: #e6e9ff;
  color: #2b36c7;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 14px;
}

/* Price */

.zs-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.zs-us {
  font-size: 18px;
  font-weight: 600;
  color: #2b36c7;
}

.zs-amount {
  font-size: 40px;
  font-weight: 700;
  color: #2b36c7;
}

.zs-mo {
  font-size: 16px;
}

.zs-billing {
  margin: 12px 0 28px;
  font-size: 14px;
  color: #333;
}

/* Limited deal */

.limited-deal {
  position: relative;
  overflow: hidden;

  background: #e6e8ff;   /* soft amber */
  color: #7338e8;        /* dark amber text */

  font-weight: 600;
  font-size: 12px;
  text-align: center;

  padding: 2px 4px;
  border-radius: 8px;
  margin: 25px 0 10px;
}

/* shimmer layer */

.limited-deal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55),
    transparent 70%
  );
  animation: dealShimmer 4.5s ease-in-out infinite;
}

/* pulse animation */
@keyframes dealPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

/* shimmer sweep */
@keyframes dealShimmer {
  0% {
    left: -120%;
  }
  60%, 100% {
    left: 120%;
  }
}

.limited-deal-hide {
  display: inline-block;
  padding: 6px 8px;

  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  color: transparent;                 /* green text */
  background: transparent;            /* very light green bg */

  border: transparent;      /* subtle border */
  border-radius: 8px;          /* full pill */

  letter-spacing: 0.2px;
  text-align: center;
  margin-bottom: 4px;
}

/* Button */

.zs-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #1f6fe5, #1a4ed8);
  color: #fff;
  padding: 14px 0;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
}

/*.renewal-badge {*/
/*    display: inline-block;*/
/*    padding: 6px 12px;*/
/*    margin: 5px 0 15px;*/
/*    font-size: 13px;*/
/*    font-weight: 500;*/
/*    text-align: center;*/
/*    color: #1BA94F;*/
/*    background: #eafaf1;*/
/*    border-radius: 6px;*/
/*    border: 1px solid #bfe8d3;*/
/*}*/

.renewal-badge {
    display: inline-block;
    padding: 6px 12px;
    margin: 22px 0 0;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: #1BA94F;
    background: #eafaf1;
    border-radius: 8px;
    /*border: 1px solid #bfe8d3;*/
    width: 100%;
}

/* Divider */

/*.zs-divider {*/
/*  height: 1px;*/
/*  background: #d6dbe8;*/
/*  margin: 28px 0;*/
/*}*/

.zs-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

/* Section heading */

.zs-section-heading {
  font-size: 15px;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #212121;
}

/* Features */

.zs-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #1F1B24;
}

/*.zs-features li {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  font-size: 14.5px;*/
/*  margin-bottom: 13px;*/
  /*position: relative;*/
/*}*/

.zs-features li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14.5px;
  margin-bottom: 14px;
  /*z-index: 5;*/
}

.highlight {
  margin-right: 4px;
  font-weight: 600;
}

/* Clean SVG Checkmark */

.zs-features li::before {
  margin-right: 12px;
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13L9 17L19 7' stroke='%2324a148' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Disabled */

.zs-disabled {
  color: #9BAAB8;
}

.zs-features li.zs-disabled::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L18 18M6 18L18 6' stroke='%239BAAB8' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Tooltip box attached to card */
.zs-card {
  position: relative;
}

/* Tooltip box */
.zs-feature-text {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.zs-feature-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 0.5px dashed #b6b6b6;
}

/* Create tooltip on card */
.zs-tooltip-box {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  background: #0f1c34;
  color: #fff;
  width: 95%;
  max-width: 250px;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Show */
.zs-feature-text:hover ~ .zs-tooltip-box {
  opacity: 1;
}

/* When flipped */
.zs-tooltip-box.flip {
  top: calc(100% + 10px);
  bottom: auto;
}

/* Responsive */

@media (max-width: 698px) {
  .zs-featured {
    margin-top: 40px;
  }
}

/* Section wrapper */
.zs-section {
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 1;
}

/* Title */
.zs-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* Toggle icon */
.zs-toggle {
  font-size: 24px;
  transition: 0.2s ease;
  font-weight: 200;
}

/* Content hidden by default */
.zs-section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Active state */
.zs-section.active .zs-section-content {
  max-height: 800px;
  padding-bottom: 20px;
  overflow: visible;   /* ✅ allow tooltip to escape */
}

.zs-section.active .zs-toggle {
  content: "-";
}

.lh-features-note {
  margin: 40px auto 0;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 700px;
}

.lh-view-features {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #7338e8;
  text-decoration: none;
  font-size: 16px;
}

.lh-view-features:hover {
  color: #6933d3;
  text-decoration: underline;
  text-underline-offset: 4px;   /* controls gap */
  text-decoration-thickness: 1.5px; /* optional: cleaner line */
}

.lh-icon {
  display: flex;
  transition: transform 0.2s ease;
}

.lh-view-features:hover .lh-icon {
  transform: translate(2px, -2px);
}

.lh-features-note p {
  font-size: 12px;
  color: #797980;
  line-height: 1.6;
  margin-top: 15px;
}
