/* ------------------------ *
- Page: Index.html
--------------i------------- */
/* Header HERO OFFER SECTION */
.header {
  padding: 30px 0 20px;
  background: #fff; /* Removed redundant gradient since overridden */
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .header { padding: 30px 0; }
}

/* Navigator */
.header .navigator {
  margin-bottom: 100px;
  font-family: var(--secondary-font);
}

/* Title */
.header .navigator .title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-right: 45px;
}
.header .navigator .title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--dark);
  right: -24px;
}

/* Items */
.header .navigator .item {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  border-bottom: 1px solid transparent;
  margin-right: 25px;
}
.header .navigator .item:last-child {
  margin-right: 0;
}
.header .navigator .item.active,
.header .navigator .item:hover {
  font-weight: 500;
  border-bottom-color: var(--dark);
}

.se-i .se-footer .line {
    margin: 6px 12px;
}

.se-i .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
    margin-right: 10px;
}

.highlight{
    color: var(--primary);
}

/* GLOBAL HERO SECTION */
.hero-section {
  background-color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

/* Wrapper */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Hero Content */
.hero-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-title {
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-off {
  color: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Hero List Section */
.hero-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-ul-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.hero-list-item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  width: max-content;
  align-items: start;
}

.hero-list-item::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-list-price {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  text-decoration-color: #61646e;
  font-size: 16px;
}

.start-price-text{
    font-size:18px;
    font-weight:600;
}

.price-current {
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee {
  font-size: 28px;
  color: var(--text-gray);
  position: absolute;
  top: 0px;
}

.rupee-number {
    color: var(--dark);
    color:var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-gray);
}

.bonus {
  font-size: 18px;
  font-weight:600;
  color: var(--primary);
}

/* Buttons + Timer */
.hero-button-timer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid var(--primary);
    width: 35%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    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.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shineMove 2s infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-timer-wrapper {
  font-family: var(--secondary-font);
  font-size: 15px;
  background-color: #f5f3fe;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero_timer {
  display: flex;
  justify-content: space-around;
  width: 85%;
  align-items: center;
  font-family: var(--secondary-font);
}

/* Guarantee */
.hero-guarantee {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 5px;
}

.hero-guarantee-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-guarantee-text {
  font-size: 14px;
  font-weight: 500;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% - 45px);
  transform: translateY(-50%) scale(0.98);
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.underline-dotted {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #b7c3d1;
  text-decoration-style: dashed;
  text-underline-position: under;
  font-size: 16px;
  font-weight: 400;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
}

.hero-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-list-section {
    align-items: flex-start;
  }

  .hero-ul-list-items {
    align-items: flex-start;
  }

  .hero-list-price {
    justify-content: flex-start;
  }

  .hero-button-timer {
    justify-content: flex-start;
    gap: 15px;
  }

  .hero-guarantee {
    justify-content: flex-start;
  }

  .plan_container_pointers {
    justify-content: flex-start;
  }

  .tooltip-content {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
  }

  .tooltip-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border-color: var(--primary) transparent transparent transparent;
  }

  .tooltip:hover .tooltip-content {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 468px) {
  .hero-btn,
  .hero-timer-wrapper {
    width: 100%;
    max-width: 200px;
  }
}


/*GLOBAL HERO SECTION CSS END*/

/* REVIEW SECTION CSS */

.review-section-container {
  background-color: #ffffff;
  padding: 25px 0;
  text-align:center;
}

.review-section{
    max-width:1100px;
}

.rating-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}

.rating-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-icon .icon-cpanel {
  width: 100px;
  height: 50px;
}

.rating-icon .icon-wordpress {
  height: 45px;
}

.rating-plus {
  font-size: 20px;
  margin: 0 5px;
}

.rating-dash {
  font-size: 100%;
  margin: 0 5px;
}

.rating-text-bold {
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  margin-right: 5px;
}

.rating-text {
  font-size: 26px;
  color: var(--text-gray);
  font-weight: 700;
}

.reviews-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:7px;
  min-width: 220px;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.review-logo, .review-stars{
    display:flex;
    justify-content:center;
    align-items:center;
}

.review-logo-img {
  height: 30px;
}

.review-star-img {
  height: 35px;
  width: 180px;
}

.review-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.review-text strong {
  color: var(--text-gray);
  font-weight: 600;
}

.review-link {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
  text-underline-position: under;
}

.review-link:hover {
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
}


@media (max-width: 768px) {
  .reviews-section {
    flex-wrap: nowrap;                 
    overflow-x: auto;                  
    scroll-snap-type: x mandatory;     
    -webkit-overflow-scrolling: touch; 
    gap: 20px;
    padding: 0 10px;
  }

  .review-box {
    flex: 0 0 50%;
  }

  .reviews-section::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 468px) {
  .rating-section {
    flex-wrap: wrap;
  }
  
  .review-box {
        flex: 0 0 100%;
    }
  
  .rating-text{
      margin-top: 10px;
  }

}

/* REVIEW SECTION CSS */

/* ========== Plans Container CSS ========== */

.plan_outer_container{
    margin:0 auto !important;
    max-width: 850px;
}

.plan_container_pointers{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.outer_plan_features{
    display: block;
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
}

.outer_plan_features:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_container {
    width: 100%;
    position: relative;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    /*padding: 0 20px;*/
    z-index: 1000;
}

.slider-button {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color:var(--primary);
    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;
}

.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: 80px 0px 20px;
}

.plan_column {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 10px;
    padding: 35px 17px 14px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out;
    position: relative;
    min-height: 600px;
}

.plan_badge:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 48px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

#plan2, #plan3{
    border-color:var(--primary);
    border: 2px solid var(--primary);
}

#plan1:hover,#plan4:hover{
    border-color:var(--primary);
}

#plan3{
    background: linear-gradient(to bottom, #e6e0ff 0%, #ffffff 50%, #f2eaff 100%);
}

#plan3 .plan_save, #plan3 .plan_renew_note, #plan3 .addon_span{
    background: #ffffff;
}

.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -50px;
    left: 0;
    text-align: center;
    z-index: -1;
    overflow: unset;
    border-radius: 14px 14px 0 0;
    padding: 12px 0 24px;
}

.plan-badge:before {
    content: "";
    position: absolute;
    left: -1.75px;
    top: -1.5px;
    right: -1.75px;
    bottom: -15px;
    background: var(--primary);
    border-radius: 16px 16px 0 0;
    z-index: -2;
}

.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%;
  }
}

.web_plan_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-badge-img {
    filter: brightness(15.5);
}

.plan-badge-text{
    color: #fff;
    font-size: 16px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.plan_title {
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
}

.plan_para {
    font-size: 14px;
    margin-top: 20px;
    color:var(--text-gray);
}

.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_price_strikethrough {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

.plan_price_strikethrough:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: calc(100% + 8px);
    height: 1px;
    background: #61646e;
}

.plan_currency_icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
}

.plan_save {
    color: var(--primary);
    background: #ecedf9;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    border-radius: 20px;
    display: inline-block;
}

.plan_price {
    width: 100%;
    line-height: 0.8;
    margin-top: 20px;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
}

.plan_price_discounted {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-gray);
}

.plan_price_unit {
    font-size: 16px;
    transform: translate(0,-4px);
    font-weight: 400;
    align-self: flex-end;
}

.plan_month_text {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
}

.plan_button_box {
    margin: 24px 0 24px;
    text-align: center;
}

.plan_button {
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--primary);
    background: #fff;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid var(--primary);
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight:500;
}

.plan_button:hover {
    background: var(--primary);
    color: #fff;
}

.plan_button {
  position: relative;
  overflow: hidden;
}

.plan_button:hover::before {
  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.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.btn_active_plan{
    background: var(--primary);
    color: #fff;
}

.btn_active_plan {
  position: relative;
  overflow: hidden;
}

.btn_active_plan::before {
  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.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.plan_renew_note {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    background: rgb(69 123 255 / 6%);
    color: var(--primary);
}

.plan_divider {
    margin-bottom: 34px;
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
}

.plan_feature_list {
    padding: 0;
    list-style: none;
}

.plan_feature, .plan_feature_crossed {
    display: block;
    margin-bottom: 20px;
    padding-left: 25px;
    font-size: 14px;
    font-weight:400;
    line-height: 1.2;
    position: relative;
}

.plan_feature:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_crossed {
    color: #9baab8 !important;
}

.plan_feature_crossed:before {
    content: "✗";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #ef4444;
    font-weight: bold;
    font-size: 16px;
}

.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: pointer;
}

.plan_feature_highlight_strong {
    font-weight: 600;
    color: var(--dark);
}

.plan_feature_highlight[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    min-width: 200px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    pointer-events: none;
}

.plan_feature_highlight[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.plan_feature_list_title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 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-bottom:20px;
}

.plan_toggle_button:after {
    background:var(--primary);
    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;
}

.addon_span{
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: rgb(69 123 255 / 6%);
    color: var(--primary);
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    width: max-content;
    margin-top: -5px;
}

.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: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.domain_span{
    background: #13b763;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:10px;
}

.rupee_icon{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

.accordion_content {
    max-height: 0;
    /*overflow: hidden;*/ /* keep hidden if needed */
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.5s ease-in-out,
        opacity 0.5s ease-in-out,
        visibility 0.5s ease-in-out;
}

.accordion_content.is-open {
    max-height: 1000px; /* Large enough for content */
    opacity: 1;
    visibility: visible;
}

.accordion_title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion_title::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
}

.accordion_title.is-open::after {
    content: "−";
}



/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 480px) {
    .plan_column {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 481px) and (max-width: 768px) {
    .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: 769px) and (max-width: 1024px) {
    .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: 1025px) and (max-width: 1200px) {
    .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: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    .slider-controls {
        display: none;
    }
}

/* 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;
}

/*PLANS SECTION CSS END*/



/* se-footer */
.se-i .se-footer .line {
  margin: 6px 12px;
}
.se-i .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-i .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}
/*------------------------HERO OFFFER CSS------------------------------*/

/* Header */
/*.main-header {*/
/*  position: relative;*/
/*  padding: 30px 0;*/
/*  overflow: hidden;*/
/*}*/
/*.light-theme .main-header {*/
/*  background-color: #e6f4f8;*/
/*  background-image: url(../images/theme/bghxh.webp);*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center bottom;*/
/*}*/

/* title-1 & para-1 */
/*.main-header .title-1 {*/
/*  font-size: 60px;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 900;*/
/*  color: #000000;*/
/*  line-height: 1.2;*/
/*  max-width: 600px;*/
/*}*/
/*.light-theme .main-header .title-1 {*/
/*  color: #000000;*/
/*}*/
/*.main-header .para-1 {*/
/*  font-size: 16px;*/
/*  font-family: var(--secondary-font);*/
/*  line-height: 1.6;*/
/*  color: var(--text-gray);*/
/*  opacity: 0.8;*/
/*  max-width: 600px;*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*  .main-header {*/
/*    padding: 100px 0 60px;*/
/*  }*/
/*  .main-header .title-1 {*/
/*    font-size: 44px;*/
/*  }*/
/*  .main-header .para-1 {*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/* notify */
/*.main-header .notify {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  background-color: var(--semi-dark);*/
/*  border-radius: 50px;*/
/*  cursor: default;*/
/*}*/
/*.light-theme .main-header .notify {*/
/*  border: 1px solid var(--border);*/
/*  background-color: #ffffff;*/
/*}*/
/*.main-header .notify .icon {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background-color: #ffffff;*/
/*  border-radius: 50px;*/
/*  width: 54px;*/
/*  min-width: 54px;*/
/*  height: 54px;*/
/*}*/
/*.main-header .notify .icon img {*/
/*  width: 16px;*/
/*}*/
/*.light-theme .main-header .notify .icon {*/
/*  background-color: var(--light);*/
/*}*/
/*.main-header .notify .text {*/
/*  padding: 0 25px 0 20px;*/
/*  font-size: 14px;*/
/*  color: #ffffff;*/
/*  font-weight: 400;*/
/*}*/
/*.light-theme .main-header .notify .text {*/
/*  color: var(--text-gray);*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*  .main-header .notify .icon {*/
/*    display: none;*/
/*  }*/
/*  .main-header .notify .text {*/
/*    padding: 15px 30px;*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/* header-form */
/*.main-header .header-form {*/
/*  position: relative;*/
/*  background-color: var(--semi-dark);*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  padding: 60px 40px 40px;*/
/*  text-align: center;*/
/*  border-radius: 16px;*/
/*  max-width: 380px;*/
/*}*/
/*.light-theme .main-header .header-form {*/
/*  background-color: #fff;*/
/*  border: 1px solid var(--border);*/
/*  background-color: #ffffff;*/
/*}*/

/* form-title */
/*.main-header .form-title {*/
/*  font-size: 22px;*/
/*  line-height: 1.4;*/
/*  color: #ffffff;*/
/*  font-weight: 700;*/
/*}*/
/*.light-theme .main-header .form-title {*/
/*  color: var(--dark);*/
/*}*/

/* form-label */
/*.main-header .form-label {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*}*/
/*.main-header .form-label:not(:last-child) {*/
/*  margin-bottom: 15px;*/
/*}*/
/*.main-header .form-label input {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  height: 54px;*/
/*  padding: 0 20px;*/
/*  background-color: #282a3f;*/
/*  border: 1px solid rgba(255, 255, 255, 0.1);*/
/*  overflow: hidden;*/
/*  width: 100%;*/
/*  border-radius: 4px;*/
/*  font-size: 14px;*/
/*  color: #ffffff;*/
/*  font-family: var(--primary-font);*/
/*  font-weight: 500;*/
/*  outline: none;*/
/*  transition: background-color 0.2s ease;*/
/*}*/
/*.light-theme .main-header .form-label input {*/
/*  color: var(--dark);*/
/*  background-color: var(--light);*/
/*  border-color: var(--border);*/
/*}*/
/*.main-header .form-label input:hover {*/
/*  background-color: #2f3146;*/
/*}*/
/*.light-theme .main-header .form-label input:hover {*/
/*  background-color: #eaedef;*/
/*  border-color: var(--border);*/
/*}*/
/*.main-header .form-label input::placeholder {*/
/*  color: rgba(255, 255, 255, 0.3);*/
/*  font-weight: 400;*/
/*}*/
/*.light-theme .main-header .form-label input::placeholder {*/
/*  color: rgba(0, 0, 0, 0.3);*/
/*}*/

/* hr */
/*.main-header .hr {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/
/*.main-header .hr::before,*/
/*.main-header .hr::after {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: 0;*/
/*  height: 1px;*/
/*  width: 100px;*/
/*  background-color: rgba(255, 255, 255, 0.2);*/
/*  z-index: 1;*/
/*  margin-top: 1px;*/
/*}*/
/*.light-theme .main-header .hr::before,*/
/*.light-theme .main-header .hr::after {*/
/*  background-color: rgba(0, 0, 0, 0.2);*/
/*}*/
/*.main-header .hr::after {*/
/*  left: unset;*/
/*  right: 0;*/
/*}*/
/*.main-header .hr span {*/
/*  position: relative;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*  z-index: 2;*/
/*}*/

/* form-comment */
/*.main-header .form-comment {*/
/*  font-size: 12px;*/
/*  font-weight: 500;*/
/*  color: var(--text-gray);*/
/*}*/
/*.main-header .form-comment a {*/
/*  color: var(--primary);*/
/*}*/
/*.main-header .form-comment a:hover {*/
/*  text-decoration: underline;*/
/*}*/

/* review and rating */

/*^^^^^^^^^^^^^^^ rating-and-reviews ^^^^^^^^^^^^^^^^^^*/

.counter-section-one .rating-and-reviews p {
  font-size: 15px;
  font-weight: bold !important;
}
.counter-section-one .child-container {
  margin-top: 1rem;
}
.counter-section-one .rating-and-reviews p strong {
  font-weight: 900 !important;
  color: #04b928;
}
.counter-section-one .forbs {
  font-size: 12px !important;
  max-width: 13rem;
}
.counter-section-one .forbs span {
  font-weight: 900 !important;
  color: black;
}
.counter-section-one {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
  background-color: white;
}
.counter-section-one h6 {
  font-size: 20px;
  font-weight: 700 !important;
}

/*-------------------------------------*/

/* Section I */
.se-i {
  padding-bottom: 80px;
}
/*.light-theme .se-i {
  background-color: #cbe2ec;
}
*/
/* box */
.se-i .box {
  padding: 35px 30px;
  background-color: var(--semi-dark);
  border-radius: 8px;
}
.light-theme .se-i .box {
  background-color: #fff;
}
.se-i .box-icon {
  width: 48px;
  margin-bottom: 20px;
}
.light-theme .se-i .box-icon {
  filter: invert(1);
}
.se-i .box-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .box-title {
  color: var(--dark);
}
@media only screen and (max-width: 767px) {
  .se-i .box-icon {
    width: 38px;
  }
  .se-i .box-title {
    font-size: 14px;
  }
}
/*-------------------------------------*/

/* Section II */
.se-ii {
  padding: 60px 0;
}

/* title-1 */
.se-ii .title-1 {
  font-size: 46px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.light-theme .se-ii .title-1 {
  color: var(--dark);
}
.se-ii .title-1 span {
  line-height: 1;
  display: inline-block;
}

/* para-1 */
.se-ii .para-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* item */
.se-ii .item {
  background-color: var(--semi-dark-2);
  padding: 20px 15px 20px 15px;
  border-radius: 8px;
  transition: background-color 0.25s ease;
}
.light-theme .se-ii .item {
  background-color: var(--light);
  border: 1px solid var(--border);
}
.se-ii .item img {
  width: 80px;
  margin-bottom: 15px;
}
.se-ii .item .text {
  font-size: 14px;
  font-weight: 400;
  color: #9193a8;
}
.light-theme .se-ii .item .text {
  font-weight: 500;
  color: var(--text-gray);
}
@media only screen and (max-width: 1199.98px) {
  .se-ii {
    padding: 60px 0 30px;
  }
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 36px;
    line-height: 1.4;
  }
  .se-ii .item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 26px;
    line-height: 1.2;
  }
}
/*-------------------------------------*/

/* Section III */

/* plans */
.se-iii .plans {
  border-radius: 12px;
  background-color: #141526;
}
.light-theme .se-iii .plans {
  background-color: #fff;
  border: 2px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 2px 5px #dde5eb;
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    border-radius: unset;
  }
}

/* plan */
.se-iii .plans .plan {
  position: relative;
  padding: 50px 40px 40px;
  background-color: #141526;
  height: 100%;
  z-index: 2;
}
.light-theme .se-iii .plans .plan {
  background-color: #fff;
}
.se-iii .plans .row > div:nth-child(1) .plan {
  border-radius: 12px 0 0 12px;
}
.se-iii .plans .row > div:nth-child(4) .plan {
  border-radius: 0 12px 12px 0;
}
.se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    background-color: unset;
  }
  .se-iii .plans .row > div .plan {
    border-radius: 12px !important;
    border-right: unset !important;
  }
}

/* plan-head */
.se-iii .plans .plan-head {
  padding-bottom: 20px;
}
.se-iii .plans .plan-name {
  font-size: 23px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-name {
  color: var(--dark);
}
.se-iii .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px;
}

/* plan-price */
.se-iii .plans .plan-price {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.light-theme .se-iii .plans .plan-price {
  border-bottom-color: var(--border);
}
.se-iii .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-price .price {
  color: var(--dark);
}
.se-iii .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-iii .plans .actions {
  padding-bottom: 10px;
}

/* group */
.se-iii .plans .group {
  margin-top: 45px;
}
.se-iii .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}
.light-theme .se-iii .plans .group .title-4 {
  color: var(--dark);
}
.se-iii .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  padding-right: 26px;
}
.se-iii .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px;
}
.se-iii .plans .group .list li img {
  margin-right: 10px;
  width: 16px;
}

/* float-box */
.se-iii .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-iii .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: "?";
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all 0.15s ease-in-out;
}
.light-theme .se-iii .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, 0.1);
}
.se-iii .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.se-iii .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, 0.4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.light-theme .se-iii .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #ffffff;
  box-shadow: 0 2px 15px #dde5eb;
}
.se-iii .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-iii .se-footer .line {
  margin: 6px 12px;
}
.se-iii .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-iii .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}
/*-------------------------------------*/

/* Section IV */

/* box */
.se-iv {
  position: relative;
  background-color: var(--dark);
  padding: 50px 0;
  overflow: hidden;
}

.se-iv::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
}

.se-iv .container {
  position: relative;
  z-index: 2;
}

/* Benefit Grid (Bento Layout) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

/* Bento Spans */
.benefit-card.span-1 {
  grid-column: span 1;
}

.benefit-card.span-2 {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.benefit-card.span-2 .card-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-card.span-2 .card-visual-side {
  width: 230px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefit Card Base */
.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 270px;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(103, 61, 230, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.benefit-card:hover::after {
  opacity: 1;
}

/* Icon Container with radial backdrop glow */
.benefit-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.benefit-card:hover .benefit-icon-wrapper {
  background: rgba(103, 61, 230, 0.15);
  border-color: rgba(103, 61, 230, 0.3);
}

.benefit-icon-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.25) 0%, rgba(0,0,0,0) 70%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.benefit-card:hover .benefit-icon-glow {
  opacity: 1;
}

.benefit-icon {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover .benefit-icon {
  color: #c084fc;
}

/* Card content */
.benefit-title {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
  z-index: 2;
  letter-spacing: -0.01em;
}

.benefit-para {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  z-index: 2;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-para {
  color: #f1f5f9;
}

/* Arrow indicator link */
.benefit-arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.benefit-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ================= BENTO VISUAL MOCKUPS ================= */
.mockup-dir-window,
.mockup-chat-window,
.mockup-backup-window,
.mockup-resource-window {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

/* Mockup Header */
.mockup-window-header,
.mockup-chat-header {
  background: rgba(30, 41, 59, 0.5);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-window-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mockup-window-header .dot.red { background: #ef4444; }
.mockup-window-header .dot.yellow { background: #f59e0b; }
.mockup-window-header .dot.green { background: #10b981; }

.mockup-window-header .window-title {
  margin-left: 6px;
  color: #64748b;
  font-size: 10px;
  font-family: var(--primary-font);
}

.mockup-window-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: monospace;
  font-size: 11px;
}

.dir-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}
.dir-item.sub {
  margin-left: 14px;
}
.dir-item svg {
  color: #64748b;
}
.dir-item:hover {
  color: #c084fc;
}
.dir-item:hover svg {
  color: #a78bfa;
}

/* Chat Mockup */
.mockup-chat-header {
  color: #f1f5f9;
  font-weight: 600;
  font-size: 11px;
  gap: 8px;
}
.status-indicator {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}
.mockup-chat-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
}
.chat-bubble {
  max-width: 85%;
  padding: 8px 10px;
  border-radius: 8px;
  line-height: 1.4;
}
.chat-bubble.user {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.chat-bubble.agent {
  background: #673de6;
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 10px rgba(103, 61, 230, 0.2);
}

/* Backup Mockup */
.mockup-backup-window {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.backup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 11px;
}
.backup-date {
  color: #94a3b8;
  font-weight: 500;
}
.backup-btn-restore {
  background: rgba(103, 61, 230, 0.2);
  border: 1px solid rgba(103, 61, 230, 0.4);
  color: #c084fc;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 10px;
  font-weight: 600;
}
.backup-btn-restore:hover {
  background: #673de6;
  color: #ffffff;
  border-color: #673de6;
}
.backup-btn-restore.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
  cursor: default;
}

/* Resource Monitor Mockup */
.mockup-resource-window {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}
.resource-label {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-weight: 500;
}
.resource-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.resource-fill {
  height: 100%;
  border-radius: 3px;
}
.resource-fill.cpu {
  background: #26c6da;
  box-shadow: 0 0 6px rgba(38, 198, 218, 0.5);
}
.resource-fill.ram {
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.5);
}

/* Call-to-Action Section bottom styling */
.benefits-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 55px;
  position: relative;
  z-index: 2;
}

.benefits-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #673de6;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits-cta-btn:hover {
  background: #5527db;
  transform: translateY(-2px);
}

.benefits-cta-btn svg {
  transition: transform 0.3s ease;
}

.benefits-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Light Theme Support */
.light-theme .se-iv {
  background-color: #f8fafc;
}

.light-theme .se-iv::before {
  background: radial-gradient(circle, rgba(103, 61, 230, 0.03) 0%, rgba(0,0,0,0) 70%);
}

.light-theme .benefit-card {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.06);
}

.light-theme .benefit-card:hover {
  background: #ffffff;
  border-color: rgba(103, 61, 230, 0.35);
}

.light-theme .benefit-icon-wrapper {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}

.light-theme .benefit-card:hover .benefit-icon-wrapper {
  background: rgba(103, 61, 230, 0.06);
  border-color: rgba(103, 61, 230, 0.2);
}

.light-theme .benefit-card .benefit-icon {
  color: #475569;
}

.light-theme .benefit-card:hover .benefit-icon {
  color: #673de6;
}

.light-theme .benefit-icon-glow {
  background: radial-gradient(circle, rgba(103, 61, 230, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.light-theme .benefit-title {
  color: var(--dark);
}

.light-theme .benefit-para {
  color: #64748b;
}

.light-theme .benefit-card:hover .benefit-para {
  color: #334155;
}

.light-theme .benefit-arrow-wrapper {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}

.light-theme .benefit-arrow {
  color: #64748b;
}


.light-theme .benefits-cta-btn {
  border: 1px solid rgba(103, 61, 230, 0.1);
}

.light-theme .benefits-cta-btn:hover {
}

/* Light Theme Bento Mockups */
.light-theme .mockup-dir-window,
.light-theme .mockup-chat-window,
.light-theme .mockup-backup-window,
.light-theme .mockup-resource-window {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.08);
  color: #334155;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.light-theme .mockup-window-header,
.light-theme .mockup-chat-header {
  background: rgba(0, 0, 0, 0.02);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  color: #334155;
}

.light-theme .dir-item {
  color: #475569;
}
.light-theme .dir-item:hover {
  color: #673de6;
}
.light-theme .dir-item svg {
  color: #94a3b8;
}
.light-theme .dir-item:hover svg {
  color: #673de6;
}

.light-theme .mockup-chat-header {
  color: #334155;
}
.light-theme .chat-bubble.user {
  background: rgba(0, 0, 0, 0.04);
  color: #334155;
}
.light-theme .chat-bubble.agent {
  background: #673de6;
  color: #ffffff;
}

.light-theme .backup-row {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}
.light-theme .backup-date {
  color: #475569;
}

.light-theme .backup-btn-restore {
  background: rgba(103, 61, 230, 0.06);
  border-color: rgba(103, 61, 230, 0.2);
  color: #673de6;
}
.light-theme .backup-btn-restore:hover {
  background: #673de6;
  color: #ffffff;
}

.light-theme .resource-label {
  color: #475569;
}
.light-theme .resource-bar {
  background: rgba(0, 0, 0, 0.04);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .se-iv {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .benefit-card.span-2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 24px;
  }
  .benefit-card.span-2 .card-visual-side {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefit-card.span-2 {
    grid-column: span 1;
  }
  .se-iv {
    padding: 60px 0;
  }
  .benefit-card {
    padding: 24px 20px;
    min-height: auto;
  }
}
/*-------------------------------------*/

/* Section V */

/* filter-nav */
.se-v .filter-nav {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .filter-nav {
    display: none;
  }
}

/* tab */
.se-v .filter-nav .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}
.light-theme .se-v .filter-nav .tab {
  background-color: #fff;
  border-color: var(--border);
}
.se-v .filter-nav .tab:not(.active):hover {
  background-color: var(--semi-dark);
}
.light-theme .se-v .filter-nav .tab:not(.active):hover {
  background-color: #fff;
  border-color: var(--primary);
}
.se-v .filter-nav .tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* compare-table */
.se-v .compare-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.se-v .compare-table::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  z-index: -1;
}
.light-theme .se-v .compare-table::before {
  background-color: #fff;
  border-color: var(--border);
}

/* custom-thead */
.se-v .custom-thead {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  z-index: 3;
}
.light-theme .se-v .custom-thead {
  background-color: #fff;
  border-color: var(--border);
}

/* tabs */
.se-v .custom-thead .tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .custom-thead .tabs {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab {
  padding: 15px 30px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.se-v .custom-thead .tabs .tab:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .custom-thead .tabs .tab:nth-child(1) {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab.active {
  background-color: var(--semi-dark);
  color: #ffffff;
}
.light-theme .se-v .custom-thead .tabs .tab.active {
  background-color: var(--primary);
}
@media only screen and (min-width: 1200px) {
  .se-v .custom-thead {
    display: none;
  }
}

/* tab-content */
.se-v .custom-thead .tab-content {
  padding: 30px;
}
.se-v .custom-thead .tab-content.content-hide {
  display: none;
}

/* table-title-4 */
.se-v .custom-thead .tab-content .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .custom-thead .tab-content .table-title-1 {
  display: block;
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  font-family: var(--secondary-font);
}
.light-theme .se-v .custom-thead .tab-content .table-title-1 {
  color: var(--dark);
}
.se-v .custom-thead .tab-content .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  margin-right: 5px;
}
.se-v .custom-thead .tab-content .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* thead */
.se-v .compare-table thead th {
  padding: 30px 30px 40px;
}
.se-v .compare-table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.se-v .compare-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .compare-table thead th:not(:last-child) {
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table thead {
    display: none;
  }
}

/* top-left-corner */
.se-v .compare-table thead th.top-left-corner {
  min-width: 470px;
  width: 470px;
  text-align: left;
  vertical-align: top;
}
.se-v .compare-table thead th.top-left-corner .table-title-head {
  display: block;
  font-size: 32px;
  color: #ffffff;
  opacity: 0.2;
  line-height: 1.2;
}
.light-theme .se-v .compare-table thead th.top-left-corner .table-title-head {
  color: var(--dark);
}
.se-v .compare-table thead th.top-left-corner .table-title-head span {
  letter-spacing: -9px;
}

/* top-right-corner */
.se-v .compare-table thead th.top-right-corner {
  min-width: 380px;
  width: 380px;
}

/* table-title-3 */
.se-v .compare-table thead th.top-right-corner .table-title-3 {
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 35px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-3 {
  color: var(--dark);
}

/* table-title-4 */
.se-v .compare-table thead th.top-right-corner .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .compare-table thead th.top-right-corner .table-title-1 {
  display: block;
  font-size: 46px;
  color: #ffffff;
  font-weight: bold;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-1 {
  color: var(--dark);
}
.se-v .compare-table thead th.top-right-corner .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  top: 10px;
  margin-right: 5px;
}
.se-v .compare-table thead th.top-right-corner .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* hovered */
.se-v .compare-table tbody tr.hovered {
  background-color: var(--semi-dark);
}
.light-theme .se-v .compare-table tbody tr.hovered {
  background-color: var(--light);
}
.se-v .compare-table tbody tr.hovered td {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.light-theme .se-v .compare-table tbody tr.hovered td {
  border-color: var(--border) !important;
}
.se-v .compare-table tbody tr.hovered td:last-child {
  border-right: 0 !important;
}

/* t-space */
.se-v .compare-table tbody tr.t-space {
  border: 0 !important;
}
.se-v .compare-table tbody tr.t-space td {
  border: 0 !important;
}

/* tr-hide */
@media only screen and (min-width: 1200px) {
  .se-v .compare-table tbody tr.tr-hide {
    display: none;
  }
}

/* tbody > tr */
.se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.light-theme .se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: var(--light);
}

/* tbody > tr > td */
.se-v .compare-table tbody tr td {
  position: relative;
  padding: 20px 30px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.light-theme .se-v .compare-table tbody tr td {
  border-color: var(--border);
}
.se-v .compare-table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-v .compare-table tbody tr td:not(:last-child) {
  border-color: var(--border);
}

/* hide td[data-for="full"] */
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody tr td.td-hide {
    display: none;
  }
}

/* left-corner */
.se-v .compare-table tbody .left-corner {
  min-width: 470px;
  width: 470px;
  text-align: right;
  font-weight: 600;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .left-corner {
    min-width: 60%;
    width: 60%;
  }
}

/* right-corner */
.se-v .compare-table tbody .right-corner {
  min-width: 380px;
  width: 380px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .right-corner {
    min-width: 40%;
    width: 40%;
  }
}

/* se-footer > line */
.se-v .se-footer .line {
  margin: 6px 12px;
}
.se-v .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-v .se-footer .line .text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1;
}
/*---------------------------------/*PERFORMANCE SECTION CSS (DASHBOARD SHOWCASE)*/

.performance-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.performance-section::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 50%;
  transform: translateX(50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.06) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
}

.performance-header {
  max-width: 750px;
  margin: 0 auto 45px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.performance-header .se-title-1 {
  font-size: 18px;
}

.performance-header .se-title-2 {
  font-size: 44px;
}

@media only screen and (max-width: 1199.98px) {
  .performance-header .se-title-2 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 768px) {
  .performance-header .se-title-2 {
    font-size: 28px;
  }
}

/* 2-Column Grid Layout */
.visualizer-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Left Column: Compact Features */
.visualizer-features-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vis-feature-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vis-feature-card::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 12px;
  width: 3px;
  height: calc(100% - 32px);
  background: transparent;
  border-radius: 2px;
  transition: background 0.3s;
}

.vis-feature-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.vis-feature-card[data-feature-index="0"].active {
  background: radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}
.vis-feature-card[data-feature-index="0"].active::before {
  background: linear-gradient(180deg, #a855f7, #3b82f6);
}
.vis-feature-card[data-feature-index="0"].active .vis-card-bullet {
  color: #a855f7;
}

.vis-feature-card[data-feature-index="1"].active {
  background: radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.06) 0%, rgba(5, 150, 105, 0.02) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}
.vis-feature-card[data-feature-index="1"].active::before {
  background: linear-gradient(180deg, #10b981, #059669);
}
.vis-feature-card[data-feature-index="1"].active .vis-card-bullet {
  color: #10b981;
}

.vis-feature-card[data-feature-index="2"].active {
  background: radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.06) 0%, rgba(139, 92, 246, 0.02) 100%);
  border-color: rgba(236, 72, 153, 0.3);
}
.vis-feature-card[data-feature-index="2"].active::before {
  background: linear-gradient(180deg, #ec4899, #8b5cf6);
}
.vis-feature-card[data-feature-index="2"].active .vis-card-bullet {
  color: #ec4899;
}

.vis-feature-card[data-feature-index="3"].active {
  background: radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.06) 0%, rgba(234, 179, 8, 0.02) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}
.vis-feature-card[data-feature-index="3"].active::before {
  background: linear-gradient(180deg, #f59e0b, #eab308);
}
.vis-feature-card[data-feature-index="3"].active .vis-card-bullet {
  color: #f59e0b;
}

.vis-card-icon-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 2px;
}

.vis-card-bullet {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
}

.vis-card-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.vis-card-title {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 4px 0;
  transition: color 0.3s;
}

.vis-feature-card.active .vis-card-title {
  color: #ffffff;
}

.vis-card-para {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.vis-compare-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.badge-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 5px;
  font-family: var(--primary-font);
}

.badge-tag.standard {
  background: rgba(244, 63, 94, 0.08);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.15);
}

.badge-tag.arrow {
  color: rgba(255, 255, 255, 0.3);
}

.badge-tag.premium {
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Right Column: Interactive Visualizer */
.visualizer-display-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-display-box {
  width: 100%;
  min-height: 380px;
  background: rgba(9, 13, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: left;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Background Shifting Glow */
.vis-display-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  transition: background 0.6s ease;
}

.vis-display-box.theme-speed::before {
  background: radial-gradient(circle at 80% 20%, #8b5cf6 0%, transparent 60%);
}
.vis-display-box.theme-security::before {
  background: radial-gradient(circle at 80% 20%, #10b981 0%, transparent 60%);
}
.vis-display-box.theme-support::before {
  background: radial-gradient(circle at 80% 20%, #ec4899 0%, transparent 60%);
}
.vis-display-box.theme-control::before {
  background: radial-gradient(circle at 80% 20%, #f59e0b 0%, transparent 60%);
}

/* Border and Box-Shadow Shifting Glow */
.vis-display-box.theme-speed {
  border-color: rgba(139, 92, 246, 0.25);
}
.vis-display-box.theme-security {
  border-color: rgba(16, 185, 129, 0.25);
}
.vis-display-box.theme-support {
  border-color: rgba(236, 72, 153, 0.25);
}
.vis-display-box.theme-control {
  border-color: rgba(245, 158, 11, 0.25);
}

.vis-module {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(10px);
}

.vis-module.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.vis-module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.vis-module-title {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
}

.vis-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.vis-led.pulsing-green {
  background-color: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseGreenLed 2s infinite;
}

.vis-led.pulsing-red {
  background-color: #f43f5e;
  box-shadow: 0 0 8px #f43f5e;
  animation: pulseRedLed 2s infinite;
}

@keyframes pulseGreenLed {
  0% { box-shadow: 0 0 0 0px rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0px rgba(52, 211, 153, 0); }
}

@keyframes pulseRedLed {
  0% { box-shadow: 0 0 0 0px rgba(244, 63, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(244, 63, 94, 0); }
  100% { box-shadow: 0 0 0 0px rgba(244, 63, 94, 0); }
}

.vis-module-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Speed Module Styles */
.speed-body {
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.speed-gauge-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.speed-gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.speed-gauge-svg .gauge-bg {
  stroke: rgba(255, 255, 255, 0.05);
}

.speed-gauge-svg .gauge-fill {
  stroke: url(#speedGrad);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease-out;
}

.speed-gauge-val {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.speed-num {
  font-family: var(--primary-font);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}

.speed-unit {
  font-family: var(--primary-font);
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.speed-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speed-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bar-label {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.speed-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.speed-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.speed-bar-fill.hxh-speed {
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
}

.speed-bar-fill.comp-speed {
  background: #f43f5e;
}

.bar-value {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  margin-top: 2px;
}

/* Security Module Styles */
.security-body {
  align-items: stretch;
  gap: 0;
}

.server-hardening-dashboard {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.security-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.badge-dot.green {
  background-color: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.status-text {
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.5px;
}

.patch-info {
  font-family: var(--primary-font);
  font-size: 13px;
  color: #94a3b8;
}

.hardening-ports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.port-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.port-meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.port-num {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.port-service {
  font-family: var(--primary-font);
  font-size: 11px;
  color: #64748b;
}

.port-status-pill {
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 600;
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.threat-log-console {
  background: #0b0f17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
  font-family: monospace;
  font-size: 11.5px;
  color: #cbd5e1;
  text-align: left;
}

.console-line {
  line-height: 1.4;
  margin-bottom: 2px;
}

.console-line:last-child {
  margin-bottom: 0;
}

.console-line.success {
  color: #34d399;
}

.console-line .c-time {
  color: #94a3b8;
}

/* Support Module Styles */
.support-body {
  justify-content: flex-start;
}

.chat-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.chat-bubble {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 16px;
  font-family: var(--primary-font);
}

.chat-bubble.user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom-right-radius: 4px;
}

.chat-bubble.agent {
  align-self: flex-start;
  background: rgba(103, 61, 230, 0.05);
  border: 1px solid rgba(103, 61, 230, 0.15);
  border-bottom-left-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.chat-agent-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #673de6;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-agent-content {
  display: flex;
  flex-direction: column;
}

.chat-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.45;
}

.chat-meta {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  font-weight: 600;
}

/* Control Module Styles */
.control-body {
  justify-content: stretch;
  align-items: stretch;
}

.developer-terminal {
  display: flex;
  flex-direction: column;
  background: #0b0f17;
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.terminal-header {
  display: flex;
  align-items: center;
  background: #121824;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.terminal-buttons {
  display: flex;
  gap: 6px;
  z-index: 2;
}

.t-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.t-btn.close { background-color: #ef4444; }
.t-btn.minimize { background-color: #eab308; }
.t-btn.expand { background-color: #22c55e; }

.terminal-title {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  font-family: monospace;
  font-size: 11.5px;
  color: #64748b;
  pointer-events: none;
}

.terminal-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: monospace;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.4;
  text-align: left;
}

.t-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.t-prompt {
  color: #f59e0b;
  font-weight: bold;
}

.t-output {
  color: #94a3b8;
}

.t-output.success {
  color: #34d399;
}

.t-cursor {
  display: inline-block;
  width: 5px;
  height: 10px;
  background-color: #cbd5e1;
  animation: tBlink 1s step-end infinite;
}

@keyframes tBlink {
  50% { opacity: 0; }
}

/* Light Theme Support */
.light-theme .performance-section {
  background: #f8fafc;
}

.light-theme .performance-section::before {
  background: radial-gradient(circle, rgba(103, 61, 230, 0.03) 0%, rgba(0,0,0,0) 70%);
}

.light-theme .vis-feature-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.04);
}

.light-theme .vis-feature-card:hover {
  background: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.07);
}

.light-theme .vis-feature-card.active {
  background: #ffffff;
  border-color: rgba(103, 61, 230, 0.2);
}

.light-theme .vis-card-bullet {
  color: rgba(0, 0, 0, 0.15);
}

.light-theme .vis-feature-card.active .vis-card-bullet {
  color: #8b5cf6;
}

.light-theme .vis-card-title {
  color: #475569;
}

.light-theme .vis-feature-card.active .vis-card-title {
  color: var(--dark);
}

.light-theme .vis-card-para {
  color: #64748b;
}

.light-theme .badge-tag.arrow {
  color: rgba(0, 0, 0, 0.2);
}

.light-theme .vis-display-box {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

.light-theme .vis-module-header {
  border-color: rgba(0, 0, 0, 0.05);
}

.light-theme .speed-gauge-svg .gauge-bg {
  stroke: rgba(0, 0, 0, 0.03);
}

.light-theme .speed-num {
  color: var(--dark);
}

.light-theme .speed-bar-track {
  background: rgba(0, 0, 0, 0.03);
}

.light-theme .bar-value {
  color: #475569;
}

.light-theme .server-hardening-dashboard {
  border-color: rgba(0, 0, 0, 0.05);
}

.light-theme .security-status-header {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.light-theme .patch-info {
  color: #475569;
}

.light-theme .port-card {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.04);
}

.light-theme .port-num {
  color: var(--dark);
}

.light-theme .chat-bubble.user {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.04);
}

.light-theme .chat-bubble.agent {
  background: rgba(103, 61, 230, 0.02);
  border-color: rgba(103, 61, 230, 0.1);
}

.light-theme .chat-text {
  color: #475569;
}

.light-theme .developer-terminal {
  border-color: rgba(0, 0, 0, 0.08);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .performance-section {
    padding: 60px 0;
  }
  .visualizer-section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .visualizer-display-column {
    order: 2;
  }
  .visualizer-features-column {
    order: 1;
  }
  .vis-display-box {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .vis-display-box {
    min-height: 380px;
  }
  .speed-body {
    flex-direction: column;
    gap: 20px;
  }
}

/*PERFORMANCE SECTION CSS (DASHBOARD SHOWCASE)*/



/*ALL PAGES TAB SECTION CSS */

.pages-tab-section {
  padding:60px 0px;
  background-color:#ffffff;
}

.all-tab-header{
    margin: 0 auto 25px;
}

.pages-main-header{
    margin-bottom:15px;
}

input[type="radio"] {
  display: none;
}

.allpages-tabs{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: visible; 
}

.card-tab{
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: var(--text-gray);
  border:1px solid var(--border);
  width:150px;
  text-align:center;
}

.card-tab:hover {
  background: #ded3ff;
  border-color: #ded3ff;
}



#tab-hosting:checked ~ .allpages-tabs label[for="tab-hosting"],
#tab-cloud:checked ~ .allpages-tabs label[for="tab-cloud"],
#tab-server:checked ~ .allpages-tabs label[for="tab-server"],
#tab-domain:checked ~ .allpages-tabs label[for="tab-domain"],
#tab-service:checked ~ .allpages-tabs label[for="tab-service"] {
  background: #673de6;
  color: #fff;
  font-weight: 600;
}

.allpages-tab-content {
  display: none;
}

#tab-hosting:checked ~ .hosting-content,
#tab-cloud:checked ~ .cloud-content,
#tab-server:checked ~ .server-content,
#tab-domain:checked ~ .domain-content,
#tab-service:checked ~ .service-content {
  display: block;
}

.tab-content-header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
}

.all-card-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: auto;
  align-items: stretch;
}

.hosting-card,
.cloud-card,
.server-card,
.domain-card,
.service-card {
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  border: 1px solid var(--border);
  transition: 0.3s ease-in-out;
  display: flex;            
  flex-direction: column; 
  justify-content: space-between;
  height: 420px;
}


.hosting-card:hover,
.cloud-card:hover,
.server-card:hover,
.domain-card:hover,
.service-card:hover{
  border: 1px solid #673de6;
}

.all-card-h3{
  font-size: 20px;
  font-weight: 600;
  color:var(--text-gray);
}

.all-card-para{
  color:var(--text-gray);
  font-size: 16px;
}

.features {
  list-style: none;
}

.features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #673de6;
  font-weight: bold;
}

.all-card-icon {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 60px;
    width: 60px;
    background-color: #673de6;
    border-radius: 8px;
}

.all-card-icon img{
    height:35px;
    width:35px;
}

.price {
  font-weight: bold;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.price::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #673de6;
  transition: width 0.3s ease; 
}

.hosting-card:hover .price::after,
.cloud-card:hover .price::after,
.server-card:hover .price::after,
.domain-card:hover .price::after,
.service-card:hover .price::after {
  width: 35%;
}

.active-card:hover .price::after {
  width: 35%;
  background-color:#ffffff;
}


.active-card{
    position: relative;
    border: 1px solid #673de6;
    background-color: #673de6;
    overflow: hidden;
}

.active-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 3s infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}

.active-card .all-card-h3,
.active-card .all-card-para,
.active-card .price,
.active-card .features li {
  color: #ffffff;
}


.active-card .all-card-icon{
    background-color:#ffffff;
}


.active-card .features li::before {
  color: #ffffff;
}

@media (max-width: 1024px) {
  
    .allpages-tabs{
        justify-content:center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .allpages-tabs::-webkit-scrollbar {
       display: none;
    }

    .card-tab {
        flex: 0 0 auto;
        width: 150px;
    }
}

@media (max-width: 768px) {
    
    .allpages-tabs{
        justify-content: space-between;
    }
    
    .card-tab {
        width: 130px;
        font-size: 15px;
        padding: 10px 20px;
    }
  
    .content-header-para{
        text-align:center;
    }
}

/*ALL PAGES TAB SECTION CSS */


/* Section VI */

/* box */
.se-vi .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 30px 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.2s ease;
}
.light-theme .se-vi .box {
  background-color: var(--light);
  border: 1px solid var(--border);
  box-shadow: none !important;
}

/* user-info */
.se-vi .box .user-info {
  margin-bottom: 25px;
}
.se-vi .box .user-info .avatar {
  min-width: 54px;
  width: 54px;
  min-height: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.se-vi .box .user-info .name {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}
.light-theme .se-vi .box .user-info .name {
  color: var(--dark);
}
.se-vi .box .user-info .job {
  font-family: var(--secondary-font);
  font-size: 13px;
  color: var(--text-gray);
}

/* quotes */
.se-vi .box .quotes {
  font-size: 17px;
  font-weight: 600;
  /*font-style: italic;*/
  font-family: var(--third-font);
  color: var(--text-gray);
}
.se-vi .box .quotes::before {
  position: relative;
  content: '"';
  left: 0;
  top: 0;
  margin-right: 2px;
}
.se-vi .box .quotes::after {
  position: relative;
  content: '"';
  right: 0;
  top: 0;
  margin-left: 2px;
}
/*-------------------------------------*/

/*page padding */
.p-80 {
  padding: 60px 0;
  background-color: #ffffff;
}
.about .i-c img {
  width: 400px;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
/* -- :: About */
.about .row:not(:last-child) {
  margin-bottom: 60px;
}
/* text contain */
.about .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor);
  text-transform: capitalize;
}
.about .t-c p {
  font-size: 17px;
  color: var(--pColor);
}
/* image contain */
.about .i-c img {
  width: 400px;
}
/* ------------------------------- */

/* -- :: Features */
/* text contain */
.features .t-c h4 {
  font-size: 22px;
  color: var(--typeColor);
  font-weight: 600;
}
.features .t-c p {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5 !important;
  color: var(--pColor);
  font-weight: 400;
}
/* ------------------------------- */

/*NEW-SECTION*/

.four-steps .se-head {
    margin:0px;
    max-width:990px;
}
    
@media (min-width: 990px) {
.four-steps .se-head {
    text-align:left;
}
}

.four-steps .plan_button{
    padding:17px 30px;
    width: fit-content;
}

@media (max-width: 990px) {
.four-steps .plan_button{
    margin:auto;
}
}
/*NEW-SECTION*/


/* -- :: Compare */

/* table contain */
.compare .table-contain {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 2px 4px 0 rgba(14, 30, 37, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.compare table {
  background: #fff;
}
/* table head */
.compare table thead {
  background: #e3ebed;
}
.compare table thead tr th {
  padding: 17px 20px;
}
.compare table thead tr th:nth-child(3) {
  border: 2px solid var(--thBlue);
  border-bottom: 0;
}
.compare table thead tr th img {
  min-width: 130px;
  width: 130px;
}
.compare table thead tr th span.header {
  font-size: 24px;
  color: var(--typeColor);
}
.compare table thead tr th span.th-title {
  font-size: 24px;
}
/* table body */
.compare table tbody tr:nth-child(odd) {
  background: rgba(14, 30, 37, 0.02);
}
.compare table tbody tr td:nth-child(even) {
  background: rgba(14, 30, 37, 0.02);
}
.compare table tbody tr th,
.compare table tbody tr td {
  position: relative;
  padding: 17px 20px;
  font-size: 17px;
  font-weight: 500;
  color: var(--typeColor);
  min-width: 200px;
}
.compare table tbody tr td:nth-child(3) {
  border-right: 2px solid var(--thBlue);
  border-left: 2px solid var(--thBlue);
}
.compare table tbody tr:last-child td:nth-child(3) {
  border-bottom: 2px solid var(--thBlue);
}
.compare table tbody tr td span.text {
  z-index: 1;
  position: relative;
}
.compare table tbody tr td span.text i.fa-check {
  color: var(--thGreen);
}
.compare table tbody tr td span.text i.fa-times {
  color: var(--hotColor);
}
/* ------------------------------- */

/* -- :: Wrapper 2 */
.wrapper-2 img {
  width: 400px;
}
/* text contain */
.wrapper-2 .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor);
  text-transform: capitalize;
}
.wrapper-2 .t-c p {
  font-size: 17px;
  color: var(--pColor);
}
/* ------------------------------- */

/* -- :: Media Query */

/* Extra Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  /* -- :: Wrapper */
  .wrapper .boxes .row > div:nth-child(1) .box,
  .wrapper .boxes .row > div:nth-child(2) .box,
  .wrapper .boxes .row > div:nth-child(3) .box {
    border-bottom-width: 0;
  }
  .wrapper .boxes .row > div:nth-child(4) .box {
    border-left-width: 0;
  }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  /* -- :: Header */
  header {
    padding: 120px 0 70px;
  }
  header h1 {
    font-size: 36px;
  }
  /* -- :: Wrapper */
  .wrapper .boxes .row > div:nth-child(3) .box {
    border-left-width: 0;
  }
  .wrapper .boxes .row > div:nth-child(4) .box {
    border-left-width: 1px;
    border-bottom-width: 0;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* -- :: About */
  .about .t-c h3 {
    font-size: 28px;
  }
  .about .t-c p {
    font-size: 17px;
  }
  /* -- :: Compare */
  .compare table thead tr th span.header {
    font-size: 18px;
  }
  .compare table tbody tr th,
  .compare table tbody tr td {
    font-size: 14px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* -- :: Header */
  header {
    padding: 120px 0 60px;
  }
  header h1 {
    font-size: 28px;
  }
  header p {
    font-size: 18px;
  }
  /* -- :: About */
  .about .t-c h3 {
    font-size: 24px;
  }
  .about .t-c p {
    font-size: 16px;
  }
  .about .i-c img {
    width: auto;
    height: 218px !important;
  }
  /* -- :: Wrapper 2 */
  .wrapper-2 img {
    width: 240px;
  }
  .wrapper-2 .t-c h3 {
    font-size: 24px;
  }
  .wrapper-2 .t-c p {
    font-size: 16px;
  }
}
/* ------------------------------- */
/*------------------Trustpilot-------------------*/

.p-80t {
  padding: 20px 0;
  background-color: #ffffff;
}

.col-md-2t {
    padding-left: 20px;
    padding-top:50px;
}
.col-md-3t {
    padding: 19px;
    background-color: #ecf4fa;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 30%;
}
.row1 {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.trustpilot-widget {
  max-width: 1550px;
  background: transparent;
  color: #333;
  padding: 30px 0 25px 0;
  overflow: hidden;
}
.trustpilot-widget .wrapper-left a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}
.trustpilot-widget .wrapper-left {
  text-align: left;
}
.trustpilot-widget .wrapper-left .title {
  color: #333;
  font-size: 24px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.trustpilot-widget .wrapper-left .rating img {
  max-width: 160px;
  margin: auto;
}
.trustpilot-widget .wrapper-left .info {
  color: #333;
  font-size: 13px;
  line-height: 45px;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  max-width: 25px;
  margin: auto;
  margin-top: -10px;
  display: inline-block;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  font-size: 18px;
  line-height: 35px;
  color: #333;
  text-align: center;
  display: inline-block;
}
.trustpilot-widget .reviews {
  margin-left: 2%
}
.trustpilot-widget .carousel-control {
    height: 25px;
    width: 25px;
    border: 1px solid #9E9E9E;
    border-radius: 50%;
    margin-top: 60px;
    font-size: 25px;
    background: transparent;
    line-height: 18px;
}
.trustpilot-widget .carousel-control.right {
  margin-right: -50px;
  color: #333;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.left {
  left: -70px;
  color: #333;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.right:hover, .trustpilot-widget .carousel-control.left:hover {
    color: #333;
}
.trustpilot-widget .carousel-inner .rating img {
  max-width: 110px
}
.trustpilot-widget .carousel-inner {
    overflow: hidden
}
.trustpilot-widget .carousel-inner .date, .trustpilot-widget .carousel-inner .name {
  color: rgba(0,0,0,0.6);
  font-size: 13px;
}
.trustpilot-widget .carousel-inner .title {
  margin: 15px 0 10px 0;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden; 
  width: 100%; 
  white-space: nowrap; 
}
.trustpilot-widget .carousel-inner .descriptions {
    min-height: 42px;
}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px
}
@media (max-width: 575.98px) {
  .col-md-2t {
     display: none;
    padding-top:50px;
}
.col-md-3t {
    display: none;
}
.row1 {
    display: none;
}
.trustpilot-widget {
  display: none;
}
.trustpilot-widget .wrapper-left a {
  display: none;
}
.trustpilot-widget .wrapper-left {
  display: none;
}
.trustpilot-widget .wrapper-left .title {
  display: none;
}
.trustpilot-widget .wrapper-left .rating img {
  display: none;
}
.trustpilot-widget .wrapper-left .info {
  display: none;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  display: none;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  display: none;
}
.trustpilot-widget .reviews {
  display: none;
}

}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px
}
/* Section II */

/* filter-nav */
.se-ii .filter-nav {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .se-ii .filter-nav {
    display: none;
  }
}

/* tab */
.se-ii .filter-nav .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all .2s ease;
}
.light-theme .se-ii .filter-nav .tab {
  background-color: var(--light);
  border-color: var(--border);
}
.se-ii .filter-nav .tab:hover {
  background-color: var(--semi-dark);
}
.light-theme .se-ii .filter-nav .tab:not(.active):hover {
  background-color: var(--light);
  border-color: var(--primary);
}
.se-ii .filter-nav .tab.active {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* compare-table */
.se-ii .compare-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.se-ii .compare-table::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  z-index: -1;
}
.light-theme .se-ii .compare-table::before {
  background-color: #fff;
  border-color: var(--border);  
}

/* custom-thead */
.se-ii .custom-thead {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 30px;
  z-index: 3;
}
.light-theme .se-ii .custom-thead {
  background-color: #fff;
  border-color: var(--border);
}

/* tabs */
.se-ii .custom-thead .tabs {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-ii .custom-thead .tabs {
  border-color: var(--border);
}
.se-ii .custom-thead .tabs .tab {
  padding: 15px 30px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all .2s ease;
}
.se-ii .custom-thead .tabs .tab:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-ii .custom-thead .tabs .tab:nth-child(1) {
  border-color: var(--border);
}
.se-ii .custom-thead .tabs .tab.active {
  background-color: var(--semi-dark);
  color: #FFFFFF;
}
.light-theme .se-ii .custom-thead .tabs .tab.active {
  background-color: var(--primary);
}
@media only screen and (min-width: 1200px) {
  .se-ii .custom-thead {
    display: none;
  }
}

/* tab-content */
.se-ii .custom-thead .tab-content {
  padding: 30px;
}
.se-ii .custom-thead .tab-content.content-hide {
  display: none;
}

/* table-title-4 */
.se-ii .custom-thead .tab-content .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-ii .custom-thead .tab-content .table-title-1 {
  display: block;
  font-size: 32px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: var(--secondary-font);
}
.light-theme .se-ii .custom-thead .tab-content .table-title-1 {
  color: var(--dark);
}
.se-ii .custom-thead .tab-content .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  margin-right: 5px;
}
.se-ii .custom-thead .tab-content .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* thead */
.se-ii .compare-table thead th {
  padding: 30px 30px 40px;
}
.se-ii .compare-table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.se-ii .compare-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-ii .compare-table thead th:not(:last-child) {
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-ii .compare-table thead {
    display: none;
  }
}

/* top-left-corner */
.se-ii .compare-table thead th.top-left-corner {
  min-width: 470px;
  width: 470px;
  text-align: left;
  vertical-align: top;
}
.se-ii .compare-table thead th.top-left-corner .table-title-head {
  display: block;
  font-size: 32px;
  color: #FFFFFF;
  opacity: .2;
  line-height: 1.2;
}
.light-theme .se-ii .compare-table thead th.top-left-corner .table-title-head {
  color: var(--dark);
}
.se-ii .compare-table thead th.top-left-corner .table-title-head span {
  letter-spacing: -9px;
}

/* top-right-corner */
.se-ii .compare-table thead th.top-right-corner {
  min-width: 380px;
  width: 380px;
}

/* table-title-3 */
.se-ii .compare-table thead th.top-right-corner .table-title-3 {
  display: block;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 35px;
}
.light-theme .se-ii .compare-table thead th.top-right-corner .table-title-3 {
  color: var(--dark);
}

/* table-title-4 */
.se-ii .compare-table thead th.top-right-corner .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-ii .compare-table thead th.top-right-corner .table-title-1 {
  display: block;
  font-size: 46px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}
.light-theme .se-ii .compare-table thead th.top-right-corner .table-title-1 {
  color: var(--dark);
}
.se-ii .compare-table thead th.top-right-corner .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  top: 10px;
  margin-right: 5px;
}
.se-ii .compare-table thead th.top-right-corner .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* hovered */
.se-ii .compare-table tbody tr.hovered {
  background-color: var(--semi-dark);
}
.light-theme .se-ii .compare-table tbody tr.hovered {
  background-color: var(--light);
}
.se-ii .compare-table tbody tr.hovered td {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, .08) !important;
}
.light-theme .se-ii .compare-table tbody tr.hovered td {
  border-color: var(--border) !important;
}
.se-ii .compare-table tbody tr.hovered td:last-child {
  border-right: 0 !important;
}

/* t-space */
.se-ii .compare-table tbody tr.t-space {
  border: 0 !important;
}
.se-ii .compare-table tbody tr.t-space td {
  border: 0 !important;
}

/* tr-hide */
@media only screen and (min-width: 1200px) {
  .se-ii .compare-table tbody tr.tr-hide {
    display: none;
  }
}

/* tbody > tr */
.se-ii .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: rgba(255, 255, 255, .02);
}
.light-theme .se-ii .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: var(--light) !important;
}

/* tbody > tr > td */
.se-ii .compare-table tbody tr td {
  position: relative;
  padding: 20px 30px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}
.light-theme .se-ii .compare-table tbody tr td {
  border-color: var(--border);
}
.se-ii .compare-table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-ii .compare-table tbody tr td:not(:last-child) {
  border-color: var(--border);
}

/* hide td[data-for="full"] */
@media only screen and (max-width: 1199.98px) {
  .se-ii .compare-table tbody tr td.td-hide {
    display: none;
  }
}

/* left-corner */
.se-ii .compare-table tbody .left-corner {
  min-width: 470px;
  width: 470px;
  text-align: right;
  font-weight: 600;
}
@media only screen and (max-width: 1199.98px) {
  .se-ii .compare-table tbody .left-corner {
    min-width: 60%;
    width: 60%;
  }
}

/* right-corner */
.se-ii .compare-table tbody .right-corner {
  min-width: 380px;
  width: 380px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .se-ii .compare-table tbody .right-corner {
    min-width: 40%;
    width: 40%;
  }
}

/* se-footer > line */
.se-ii .se-footer .line {
  margin: 6px 12px;
}
.se-ii .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-ii .se-footer .line .text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1;
}
/*-------------------------------------*/
/*/MONEY BACK GUARANTEE CSS/*/

/* Section */
.money-back-section {
  padding: 10px 0;
  background-color:#673de6;
}

.money-back-box {
  background: #673de6;
}

.money-back-row {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 20px;
}

.money-back-image {
    width:30%;
  text-align: center;
}

.money-back-content{
    width:70%;
    margin:0 20px;
}

.money-back-img {
  width: 65%;
  filter: invert(1);
}

.money-back-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.money-back-text {
  font-size: 18px;
  color: #ffffff;
}


.money-back-btn {
  display: none;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  background: #ffffff;
  border:none;
}


@media (max-width: 768px) {
  .money-back-section {
    padding: 40px 0;
  }

  .money-back-box {
    text-align: center;
  }

  .money-back-row {
    flex-direction: column;
    gap: 20px;
  }

  .money-back-title {
    font-size: 28px;
  }

  .money-back-text {
    font-size: 16px;
  }
  
  .money-back-image{
      width:40%;
  }
  
  .money-back-img{
      width:80%;
  }
  
  .money-back-content{
      width:100%;
  }
}

@media (max-width: 468px) {
    
    .money-back-image{
        width:50%;
    }
    .money-back-img{
       width:100%;
     }
     
}
/*/MONEY BACK GUARANTEE CSS END/*/

/*TECHSTACK SECTION CSS START*/

.techstack-section {
    background-color:#ffffff;
    padding: 80px 0;
}

.techstack-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.techstack-title-1 {
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.techstack-title-2 {
    font-family: var(--titles-font);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Bento Grid System */
.techstack-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.techstack-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.techstack-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 61, 230, 0.25);
}

.techstack-card.card-wide {
    grid-column: span 7;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.techstack-card.card-tall {
    grid-column: span 5;
    min-height: 380px;
}

/* Card Inner Content */
.card-content {
    flex: 1;
    text-align: left;
}

.techstack-card.card-tall .card-content {
    margin-bottom: 24px;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(103, 61, 230, 0.06);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.techstack-card:hover .icon-wrapper {
    background: rgba(103, 61, 230, 0.15);
}

.techstack-img {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}

.techstack-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.techstack-card:hover h4 {
    color: var(--primary);
}

.techstack-card p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Card Visual representations */
.card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.techstack-card.card-wide .card-visual {
    width: 220px;
    height: 160px;
    flex-shrink: 0;
}

.techstack-card.card-tall .card-visual {
    width: 100%;
    height: 140px;
}

/* 1. WordPress Mockup Visual */
.wp-mockup {
    width: 80%;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-align: left;
}

.wp-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.wp-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.wp-bar span {
    display: block;
    height: 100%;
    background: #2563eb;
    border-radius: 3px;
}

.wp-status {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: wp-pulse 1.5s infinite;
}

@keyframes wp-pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* 2. Speed Indicator Visual */
.speed-indicator {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.speed-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.speed-bar .label {
    width: 65px;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-align: left;
}

.speed-bar .bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.speed-bar .bar span {
    display: block;
    height: 100%;
    border-radius: 4px;
}

.speed-bar.speed-ls .bar span {
    background: var(--primary);
}

.speed-bar.speed-apache .bar span {
    background: #94a3b8;
}

.speed-bar .time {
    font-size: 10px;
    font-weight: 700;
    color: var(--dark);
    width: 25px;
}

/* 3. Security Badge Visual */
.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-lock 3s ease-in-out infinite;
}

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

.security-badge .status-text {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 4. NVMe Circuit Visual */
.nvme-visual {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    background: #1e293b;
    border-radius: 10px;
    border: 1px solid #334155;
    position: relative;
    overflow: hidden;
}

.chip-circuit {
    text-align: left;
    z-index: 2;
}

.chip-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.read-speed {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    font-family: monospace;
}

.circuit-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.15;
}

.circuit-lines span {
    position: absolute;
    background: var(--primary);
}

.circuit-lines span:nth-child(1) {
    top: 50%; left: 0; width: 100%; height: 1px;
}
.circuit-lines span:nth-child(2) {
    left: 40%; top: 0; width: 1px; height: 100%;
}
.circuit-lines span:nth-child(3) {
    left: 70%; top: 0; width: 1px; height: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .techstack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .techstack-card.card-wide,
    .techstack-card.card-tall {
        grid-column: span 1;
        min-height: auto;
    }
    .techstack-card.card-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .techstack-card.card-wide .card-visual {
        width: 100%;
        height: 140px;
    }
}

@media (max-width: 767px) {
    .techstack-section {
        padding: 50px 0;
    }
    .techstack-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .techstack-card.card-wide,
    .techstack-card.card-tall {
        grid-column: span 1 !important;
    }
    .techstack-card {
        padding: 24px;
    }
    .techstack-title-2 {
        font-size: 26px;
    }
}

/*TECHSTACK SECTION CSS END*/

/* BENEFITS SECTION */

.benefits-section {
  background-color: var(--primary);
  color: #ffffff;
  padding: 80px 0;
}

.benefits-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 25px;
}

.benefits-header-primary {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.benefits-header-secondary {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.benefits-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-template-areas:
    "box1 box2 box4"
    "box3 box3 box4";
}

.benefits-box {
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  color: var(--text-gray);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.benefits-box:nth-child(1) { grid-area: box1; }
.benefits-box:nth-child(2) { grid-area: box2; }
.benefits-box:nth-child(3) { grid-area: box3; }
.benefits-box:nth-child(4) { grid-area: box4; }

@media (max-width: 1024px) and (min-width: 468px) {
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "box1 box2"
          "box3 box3"
          "box4 box4";
        gap: 30px;
    }

    .benefits-box {
        aspect-ratio: auto;
        padding: 20px;
    }

    .benefits-box-title {
      font-size: 18px;
    }
    
    .benefits-box-para { 
        font-size: 14px; 
        overflow: auto; 
    }
}

@media (max-width: 468px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "box1"
      "box2"
      "box3"
      "box4";
    gap: 30px;
  }

  .benefits-header-secondary { font-size: 28px; }
  .benefits-icon-img { width: 44px; padding: 6px; }
}

.benefits-icon-img {
  width: 60px;
  padding: 10px;
  border-radius: 8px;
  background: var(--primary);
}

.benefits-box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-gray);
}

.benefits-box-para {
  font-size: 16px;
  color: var(--text-gray);
}

.image-box {
  position: relative; 
  display: flex;
  justify-content:center;
  align-items:center;
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.image-box::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

.image-box:hover::before {
  animation: shine 2s ease forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/*BENEFITS SECTION CSS END */


/*DEVELOPER SECTION CSS START*/

.developer-showcase{
  background: #ffffff;
  padding: 60px 0px;
  width: 100%;
}

.developer-showcase-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.developer-showcase-subtitle {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.developer-showcase-heading {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.2;
  margin-bottom: 20px;
}

.developer-showcase-description {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}


.grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #120a1f;
}

.card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.stacked-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
}

.mini-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.icon-box {
  width: 85px;
  height: 85px;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kvm-img{
    width:200px;
}

.mini-card-icon {
  width: 100%;
  height: 100%;
}

.left-icon {
    order: -1; 
}
.right-icon { 
    order: 1; 
}

.mini-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mini-card-text .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #120a1f;
  margin: 0;
}

.mini-card-text .card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  margin: 0;
}

.wordpress-card,
.os-card{
  background: #ECEDF9;
}

.cloud-icon-box{
    width:120px;
}

.domain-showcase {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.domain-show-card {
  position: relative;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-align:center;
  color: var(--text-gray);
}

.domain-show-card::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  margin-right: 10px; 
}

.businesses-showcase {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.businesses-show-card {
  position: relative;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  /*width: 180px;*/
  text-align:center;
  color: var(--text-gray);
}

.businesses-show-card::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  margin-right: 10px; 
}


.languages-grid {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.language-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.lang-card-title{
    font-size:16px;
    font-weight:600;
}

.language-icon {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.language-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



@media (max-width: 1024px) {
  .grid-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

}

@media (max-width: 468px) {
    
    .mini-card-content{
        flex-direction:column;
    }
    
    .mini-card-text{
        text-align:center;
    }
    
    .card-header{
        text-align:center;
    }
    
    .businesses-showcase{
        justify-content:center;
    }
    
}

/*DEVELOPERS SECTION CSS END*/
/* ================= ZIGZAG SECTION ================= */

.zizzag-container-sections {

    padding: 60px 0;

    background: #ffffff;

}



.zigzag-section {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.zigzag-item {

    display: flex;

    justify-content: space-between;

    overflow: hidden;

    flex-wrap: wrap;

    gap: 20px;

}



.zigzag-item--speed {

    background-color: #ffe6e0;

    border-radius: 8px;

}



.zigzag-item--security {

    background-color: #ECEDF9;

    flex-direction: row-reverse;

    border-radius: 8px;

}



.zigzag-item--growth {

    background-color: #f0e6ff;

    border-radius: 8px;

}



.zigzag-item--performance {

    background: linear-gradient(94.66deg,#f8f6ff 35%,#bcb2ff 100%);

    border-radius: 8px;

}



.zigzag-item-contents {

    width: 63%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 3rem 6rem;

}



.zigzag-content {

    display: flex;

    justify-content: center;

    flex-direction: column;

    gap: 1rem;

    width: 100%;

}



.zigzag-image-container {

    width: 35%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 2rem;

}



.zigzag-image-div {

    width: 100%;

    height: 100%;

}



.zigzag-image {

    width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    max-width: 500px;

}



.zigzag-title {

    font-size: 52px;

    font-weight: 500;

    color: var(--dark);

    line-height: 1.2;

}



.zigzag-subtitle {

    font-size: 18px;

    color: var(--text-gray);

}



.zigzag-list {

    display: flex;

    flex-direction: column;

    gap: 0.5rem;

    list-style: none;

    padding: 0;

    margin: 0;

}



.zigzag-list-item {

    position: relative;

    padding-left: 1.75rem;

    font-size: 16px;

    color: var(--text-gray);

}



.zigzag-list-item::before {

    content: '✔';

    position: absolute;

    left: 0;

    top: 0;

    color: var(--primary);

    font-size: 16px;

}



.zigzag-link {

    margin-top: 1rem;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    color: var(--primary);

    text-transform: uppercase;

}



.zigzag-text-link {

    text-decoration: underline;

    color: var(--primary);

}



.zigzag-image-div{

    display:flex;

    justify-content: center;

    align-items: center;

}



/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    

    .zigzag-item-contents,

    .zigzag-image-container {

        width: 100%;

        padding: 1.5rem;

    }

    

    .zigzag-image-div{

        text-align:center;

    }

    

    .zigzag-item-contents {

        padding: 2.5rem 4rem;

    }



    .zigzag-image-container {

        padding: 1.5rem;

    }



    .zigzag-title {

        font-size: 42px;

    }



    .zigzag-subtitle {

        font-size: 17px;

    }



    .zigzag-list-item {

        font-size: 15px;

    }



    .zigzag-list-item::before {

        font-size: 15px;

    }

    

    .zigzag-performance-items{

        flex-direction: column-reverse;

    }

}



@media (max-width: 768px) {

    .zigzag-item {

        flex-direction: column;

        gap: 20px;

    }



    .zigzag-title {

        font-size: 32px;

    }



    .zigzag-subtitle {

        font-size: 16px;

    }



    .zigzag-list-item {

        font-size: 14px;

        padding-left: 1.5rem;

    }



    .zigzag-list-item::before {

        font-size: 14px;

    }



    .zigzag-link {

        display: block;

    }

    

    



}



@media (max-width: 480px) {



    .zigzag-title {

        font-size: 26px;

    }



    .zigzag-item-contents,

    .zigzag-image-container {

        padding: 2rem;

    }

}




/* ================= CUSTOMER SUCCESS STORIES SECTION ================= */

.success-stories-section {
  position: relative;
  z-index: 1;
  background-color: #090d16;
  overflow: hidden;
  padding: 100px 0;
}

.light-theme .success-stories-section {
  background-color: #f8fafc;
}

.success-stories-header {
  margin-bottom: 50px;
  text-align: left;
}

.success-stories-header .s-eyebrow {
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 12px;
}

.success-stories-header .s-title {
  font-family: var(--titles-font);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.light-theme .success-stories-header .s-title {
  color: var(--dark);
}

.success-stories-header .s-subtitle {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
}

.light-theme .success-stories-header .s-subtitle {
  color: #64748b;
}

/* Success Stories Stats */
.success-stories-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.success-stories-stats .testi-stat-val {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #ffffff;
}
.success-stories-stats .testi-stat-lbl {
  font-size: 11.5px;
  margin-top: 2px;
  color: var(--text-gray);
}
.success-stories-stats .stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.light-theme .success-stories-stats .testi-stat-val {
  color: var(--dark);
}
.light-theme .success-stories-stats .testi-stat-lbl {
  color: #64748b;
}
.light-theme .success-stories-stats .stat-divider {
  background: rgba(0, 0, 0, 0.08);
}

/* Carousel Track & Container */
.success-stories-carousel-wrapper {
  width: 100%;
  overflow: visible;
  position: relative;
}

.success-stories-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Card General Styling */
.success-story-card {
  flex-shrink: 0;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Large Featured Card (Dark theme) */
.success-story-card.featured {
  width: 820px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.light-theme .success-story-card.featured {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(9, 13, 22, 0.04);
}

/* Specific theme classes */
.success-story-card.featured.theme-dark-purple {
  background: #131230;
  border-color: rgba(165, 180, 252, 0.08);
}

.light-theme .success-story-card.featured.theme-dark-purple {
  background: #ffffff;
}

/* Standard text-only card */
.success-story-card.standard {
  width: 380px;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
}

.success-story-card.standard.theme-light-blue {
  background: rgba(59, 130, 246, 0.04);
  border-color: rgba(59, 130, 246, 0.1);
}
.light-theme .success-story-card.standard.theme-light-blue {
  background: #f0f7ff;
  border-color: rgba(59, 130, 246, 0.15);
}

.success-story-card.standard.theme-light-green {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.1);
}
.light-theme .success-story-card.standard.theme-light-green {
  background: #f0fdf4;
  border-color: rgba(16, 185, 129, 0.15);
}

.success-story-card.standard.theme-light-purple {
  background: rgba(139, 92, 246, 0.04);
  border-color: rgba(139, 92, 246, 0.1);
}
.light-theme .success-story-card.standard.theme-light-purple {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.15);
}

/* Card Inner Content */
.story-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.quote-icon {
  font-family: var(--titles-font);
  font-size: 80px;
  line-height: 0.2;
  color: #10b981;
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
}

.story-quote {
  font-family: var(--primary-font);
  font-size: 17px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.light-theme .story-quote {
  color: #1e293b;
}

.success-story-card.standard .story-quote {
  font-size: 15.5px;
  color: #cbd5e1;
}

.light-theme .success-story-card.standard .story-quote {
  color: #334155;
}

.story-quote strong {
  font-weight: 600;
  color: #ffffff;
}

.light-theme .story-quote strong {
  color: var(--dark);
}

.story-author {
  margin-top: auto;
}

.story-name {
  font-family: var(--titles-font);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.light-theme .story-name {
  color: var(--dark);
}

.story-role {
  font-family: var(--primary-font);
  font-size: 12.5px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.light-theme .story-role {
  color: #64748b;
}

.story-link {
  font-family: var(--primary-font);
  font-size: 12.5px;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.theme-dark-purple .story-link {
  color: #818cf8;
}

.story-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Card Visual Side (Featured only) */
.story-visual {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 16px;
  overflow: visible;
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(10%) contrast(1.05);
}

/* Floating Mockup Chrome window */
.story-mockup {
  position: absolute;
  bottom: 20px;
  right: -30px;
  width: 150px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.light-theme .story-mockup {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(9, 13, 22, 0.08);
}

.mockup-header {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}

.mockup-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-line-wide {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}
.light-theme .mockup-line-wide {
  background: rgba(0, 0, 0, 0.06);
}

.mockup-line-med {
  width: 70%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}
.light-theme .mockup-line-med {
  background: rgba(0, 0, 0, 0.06);
}

.mockup-line-short {
  width: 40%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}
.light-theme .mockup-line-short {
  background: rgba(0, 0, 0, 0.06);
}

/* Floating floatbar status box */
.story-floatbar {
  position: absolute;
  top: 30px;
  left: -24px;
  background: #10b981;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #ffffff;
  min-width: 70px;
  box-sizing: border-box;
}

.story-floatbar.reseller {
  background: #6366f1;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.story-floatbar.success {
  background: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.floatbar-icon {
  font-size: 14px;
}

.floatbar-value {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.1;
}

.floatbar-lbl {
  font-size: 8.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

/* Controls */
.success-stories-controls {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 40px;
}

.story-control-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.light-theme .story-control-btn {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.story-control-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.light-theme .story-control-btn:hover {
  background: rgba(9, 13, 22, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .success-story-card.featured {
    width: 680px;
    padding: 35px;
    gap: 30px;
  }
  .story-image-wrapper {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 60px 0;
  }
  .success-stories-header .s-title {
    font-size: 28px;
  }
  .success-story-card.featured {
    width: 320px;
    flex-direction: column;
    padding: 30px;
    gap: 24px;
  }
  .success-story-card.standard {
    width: 320px;
    padding: 30px;
  }
  .story-visual {
    width: 100%;
    order: -1; /* image on top on mobile */
  }
  .story-image-wrapper {
    width: 200px;
    height: 200px;
  }
  .story-mockup {
    right: -10px;
  }
  .story-floatbar {
    left: -10px;
  }
  .success-stories-controls {
    justify-content: center;
    margin-top: 30px;
  }
}


.understand-cta {
  background: #09090b;
  border-radius: 28px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #27272a;
}

.understand-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.understand-cta-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: #27272a;
}

.understand-cta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.understand-cta-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
}

.understand-cta-text {
  font-size: 0.9rem;
  color: #a1a1aa;
}

.understand-cta-btn {
  background: #ffffff;
  color: #09090b;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.understand-cta-btn:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .understand-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .understand-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/*ALL MOBILE RESPONSIVE CODE*/

/*@media (max-width: 480px) {*/
    
/*    .se-head .se-title-1{*/
/*        text-align: left;*/
/*    }*/
    
/*    .se-head .se-title-2{*/
/*        text-align: left;*/
/*    }*/
    
/*    .plan_container_pointers{*/
/*        justify-content: flex-start;*/
/*    }*/
    
/*    .subtitle{*/
/*        text-align: left;*/
/*    }*/
    
/*    .icon-wrapper{*/
/*        margin: 0;*/
/*        margin-bottom: 15px;*/
/*    }*/
    
/*    .step h4{*/
/*        text-align: left;*/
/*    }*/
    
/*    .step p{*/
/*        text-align: left;*/
/*    }*/
    
/*    .performance-cta{*/
/*        text-align: left;*/
/*    }*/
    
/*    .money-back-title{*/
/*        text-align: left;*/
/*    }*/
    
/*    .money-back-text{*/
/*        text-align: left;*/
/*    }*/
    
/*    .about .t-c h3{*/
/*        text-align: left;*/
/*    }*/
    
/*    .about .t-c p{*/
/*        text-align: left;*/
/*    }*/
    
/*    .content-header-para{*/
/*        text-align: left;*/
/*    }*/
    
/*    .benefits-header-primary{*/
/*        text-align: left;*/
/*    }*/
    
/*    .benefits-header-secondary{*/
/*        text-align: left;*/
/*    }*/
    
/*    .developer-showcase-subtitle{*/
/*        text-align: left;*/
/*    }*/
    
/*    .developer-showcase-heading{*/
/*        text-align: left;*/
/*    }*/
    
/*    .developer-showcase-description{*/
/*        text-align: left;*/
/*    }*/
    
    
/*    .benefits-title-para {*/
/*        text-align: left;*/
/*    }*/
    
/*    .last-para{*/
/*        text-align: left;*/
/*    }*/
    
/*    .last-plan_button{*/
/*        margin: 0 !important;*/
/*    }*/
/*}*/

/* TESTIMONIAL SECTION CSS */
.testimonial-section {
  position: relative;
  z-index: 1;
  background-color: var(--dark);
}
.light-theme .testimonial-section {
  background-color: #ecf4fa;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.light-theme .testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 16, 51, 0.05);
}



.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-rating .star {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 25px;
  font-style: italic;
}

.light-theme .testimonial-text {
  color: #3b4256;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.light-theme .testimonial-user {
  border-top: 1px solid var(--border);
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(103, 61, 230, 0.2);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.light-theme .user-name {
  color: var(--dark);
}

.user-role {
  font-size: 13px;
  color: var(--text-gray);
}

.light-theme .user-role {
  color: #718096;
}

/* Responsive testimonial rules */
@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 24px;
  }
}
/* TESTIMONIAL SECTION CSS */
.testimonial-section {
  position: relative;
  z-index: 1;
  background-color: var(--dark);
  --gray-6: rgba(255, 255, 255, 0.08);
  --gray-4: #9193a8;
  --black: #ffffff;
}
.light-theme .testimonial-section {
  background-color: #ecf4fa;
  --gray-6: var(--border);
  --gray-4: #718096;
  --black: var(--dark);
}

.s-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.s-title {
  font-family: var(--primary-font);
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.testi-stat-val {
  color: var(--black);
}

.testi-stat-lbl {
  color: var(--gray-4);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.testi-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tcard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.light-theme .tcard {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 16, 51, 0.02);
}


.tcard-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.tstar {
  width: 14px;
  height: 14px;
}

.tcard-quote {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.light-theme .tcard-quote {
  color: #3b4256;
}

.tcard-quote strong {
  color: var(--black);
  font-weight: 600;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  margin-top: 4px;
}

.light-theme .tcard-author {
  border-top: 1px solid var(--border);
}

.tcard-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(103, 61, 230, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.tcard-meta {
  flex-grow: 1;
}

.tcard-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 2px 0;
}

.tcard-role {
  font-size: 12px;
  color: var(--gray-4);
  margin: 0;
}

.tcard-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(103, 61, 230, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.testimonial-expand-container {
  position: relative;
  max-height: 620px; /* Limits height to fit about 2 rows of testimonials */
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-expand-container.expanded {
  max-height: 2500px; /* Smoothly expands to fit all 3 rows */
}

.testimonial-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, rgba(18, 10, 31, 0) 0%, var(--dark) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
  box-shadow: 0 -20px 30px -10px var(--dark) inset; /* Bottom curved shadow */
}

.light-theme .testimonial-fade-overlay {
  background: linear-gradient(to bottom, rgba(236, 244, 250, 0) 0%, #ecf4fa 100%);
  box-shadow: 0 -20px 30px -10px #ecf4fa inset;
}

.testimonial-expand-container.expanded .testimonial-fade-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Responsive testimonial rules */
@media (max-width: 991px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .testimonial-expand-container {
    max-height: 980px; /* Taller initial container for 2-column layout */
  }
  .testimonial-expand-container.expanded {
    max-height: 3500px;
  }
}

@media (max-width: 768px) {
  .s-title {
    font-size: 28px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tcard {
    padding: 24px;
  }
  .testimonial-expand-container {
    max-height: 1250px; /* Taller initial container for 1-column layout */
  }
  .testimonial-expand-container.expanded {
    max-height: 5000px;
  }
}
/* COMPARE COMPETITORS SECTION CSS */

.compare-competitors-section {
  background-color: #f8fafc; /* soft background to let the white table pop */
  border-top: 1px solid var(--border);
  padding: 100px 0;
  font-family: var(--primary-font); /* match with site font */
}

.compare-competitors-section .se-head {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.compare-competitors-section .se-title-1 {
  font-family: var(--titles-font);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.compare-competitors-section .se-title-desc {
  font-size: 15px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.compare-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-top: 40px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.compare-competitors-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  background: #ffffff;
}

/* Base Cells Styling */
.compare-competitors-table th,
.compare-competitors-table td {
  padding: 14px 20px; /* clean, refined padding */
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9; /* soft line */
  font-size: 14px;
  color: #64748b; /* muted competitor specs */
  box-sizing: border-box;
}

/* Feature column label (leftmost column) styling */
.compare-competitors-table td.feature-name,
.compare-competitors-table th.feature-col-header {
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  text-align: left;
  border-right: 1px solid #e2e8f0;
  width: 24%;
  min-width: 220px;
}

.compare-competitors-table th.feature-col-header {
  background: #f1f5f9;
  font-weight: 700;
}

/* Table Header logo containers */
.compare-competitors-table thead th {
  background: #ffffff;
  font-weight: 700;
  padding: 24px 20px;
}

.col-brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}

.comp-logo {
  max-height: 24px;
  max-width: 85%;
  object-fit: contain;
  vertical-align: middle;
  filter: grayscale(100%) opacity(40%); /* monochrome competitor logos */
  transition: all 0.2s ease-in-out;
}

/* Hover competitor logos to show color */
th:hover .comp-logo {
  filter: none;
  opacity: 1;
}

.recommended-col .comp-logo {
  filter: none; /* HeroXhost logo always colored */
  opacity: 1;
  max-height: 26px;
}

/* Align values with check/cross icons */
.feature-align {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

/* SVG icon styling */
.table-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

/* Pricing font styling */
.comp-price-cell .price {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  display: block;
}

.recommended-col.comp-price-cell .price {
  color: #673de6;
  font-size: 16px;
  font-weight: 800;
}

/* FOOTER ROW BUTTONS */
.comp-btn-fill {
  background: #673de6;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-block;
  width: 85%;
  text-align: center;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(103, 61, 230, 0.15);
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  border:none;
}

.comp-btn-fill:hover {
  background: #522eb4;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(103, 61, 230, 0.25);
}

/* Footnote styling */
.comp-footnote {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 30px;
}

/* RECOMMENDED HEROXHOST COLUMN HIGHLIGHT STYLING */
/* Continuous borders and background styling applied across cells in column 2 */
.compare-competitors-table th.recommended-col {
  border-left: 2px solid #673de6 !important;
  border-right: 2px solid #673de6 !important;
  border-top: 2px solid #673de6 !important;
  background: rgba(103, 61, 230, 0.015) !important;
  position: relative;
  padding-top: 32px !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -5px 15px rgba(103, 61, 230, 0.02);
}

.compare-competitors-table td.recommended-col {
  border-left: 2px solid #673de6 !important;
  border-right: 2px solid #673de6 !important;
  background: rgba(103, 61, 230, 0.015) !important;
  font-weight: 600; /* bold text for HeroXhost specs */
  color: #0f172a; /* high contrast */
}

.compare-competitors-table td.recommended-col.hxh-col-last {
  border-bottom: 2px solid #673de6 !important;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 5px 15px rgba(103, 61, 230, 0.02);
}

/* Recommended badge top header */
.hxh-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #673de6;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(103, 61, 230, 0.15);
}

/* Outer corner borders for clean table container look */
.compare-competitors-table tr:first-child th:first-child {
  border-top-left-radius: 15px;
}
.compare-competitors-table tr:first-child th:last-child {
  border-top-right-radius: 15px;
}
.compare-competitors-table tr:last-child td:first-child {
  border-bottom-left-radius: 15px;
}
.compare-competitors-table tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}

/* Sticky First Column on Mobile & Tablet */
@media (max-width: 992px) {
  .compare-competitors-table td.feature-name,
  .compare-competitors-table th.feature-col-header {
    position: sticky;
    left: 0;
    background: #f8fafc !important;
    z-index: 10;
    border-right: 2px solid #e2e8f0 !important;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.03);
  }
}
/* ==========================================
   CATEGORIES BENTO GRID SECTION
   ========================================== */
.category-bento-section {
  padding: 100px 0;
  background-color: #0b0f19;
  transition: background-color 0.3s ease;
}

.light-theme .category-bento-section {
  background-color: #f8fafc;
}

.category-bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Base Bento Card */
.bento-card {
  border-radius: 28px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  min-height: 228px;
}

.bento-card:hover {
  transform: translateY(-4px);
}

.bento-col-middle {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Typography & Kicker */
.bento-card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  opacity: 0.85;
}

.bento-card-title {
  font-family: var(--titles-font);
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.bento-card-para {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 20px 0;
  max-width: 90%;
  opacity: 0.9;
}

.bento-card-price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bento-card-price .price-lbl {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.bento-card-price .price {
  font-size: 24px;
  font-weight: 800;
  color: inherit !important;
  cursor: default;
}

/* Circle Link Arrow */
.bento-circle-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: auto;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.bento-card:hover .bento-circle-arrow {
  background: rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

/* Specific Card Styling (Matching Mockup Colors) */

/* 1. Business Card (Yellow) */
.bento-card-business {
  background-color: #ffb830;
  color: #1c1917;
  grid-column: span 1;
  min-height: 480px;
}

.bento-card-business .bento-card-kicker {
  color: #78350f;
}

.bento-card-business .bento-card-title {
  color: #1c1917;
}

.bento-card-business .bento-card-para {
  color: #451a03;
}

.bento-card-business .bento-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: rgba(28, 25, 23, 0.9);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  width: fit-content;
  margin-top: 15px;
  transition: background-color 0.2s ease;
}

.bento-card-business .bento-btn:hover {
  background-color: #1c1917;
}

/* 2. VPS Card (Teal) */
.bento-card-vps {
  background-color: #0d9488;
  color: #ffffff;
}

.bento-card-vps .bento-card-kicker {
  color: #ccfbf1;
}

.bento-card-vps .bento-card-title {
  color: #ffffff;
}

.bento-card-vps .bento-card-para {
  color: #e2fbf7;
}

.bento-card-vps .bento-circle-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.bento-card-vps:hover .bento-circle-arrow {
  background: rgba(255, 255, 255, 0.25);
}

.bento-card-vps .bento-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

/* 3. Reseller Card (Pink) */
.bento-card-reseller {
  background-color: #d946ef;
  color: #ffffff;
}

.bento-card-reseller .bento-card-kicker {
  color: #fdf4ff;
}

.bento-card-reseller .bento-card-title {
  color: #ffffff;
}

.bento-card-reseller .bento-card-para {
  color: #fae8ff;
}

.bento-card-reseller .bento-circle-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.bento-card-reseller:hover .bento-circle-arrow {
  background: rgba(255, 255, 255, 0.25);
}

.bento-card-reseller .bento-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

/* 4. Domains Card (Beige Tall) */
.bento-card-domains {
  background-color: #f3eae7;
  color: #2e2a28;
  min-height: 480px;
}

.bento-card-domains .bento-card-kicker {
  color: #8c7873;
}

.bento-card-domains .bento-card-title {
  color: #2e2a28;
}

.bento-card-domains .bento-card-para {
  color: #574e4b;
}

.bento-card-domains .bento-circle-arrow {
  background: rgba(46, 42, 40, 0.08);
  color: #2e2a28;
}

.bento-card-domains:hover .bento-circle-arrow {
  background: rgba(46, 42, 40, 0.15);
}

/* Interactive Card Mockups */

/* Business Browser Mockup */
.bento-mockup-business {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 280px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-business:hover .bento-mockup-business {
  transform: translateY(-8px) scale(1.02);
}

.bento-browser-chrome {
  height: 28px;
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.chrome-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.chrome-url {
  font-size: 9px;
  color: #94a3b8;
  margin-left: 10px;
  background-color: #ffffff;
  padding: 2px 16px;
  border-radius: 4px;
  font-family: monospace;
}

.bento-browser-body {
  flex: 1;
  display: flex;
  background-color: #fafbfc;
}

.bento-cpanel-sidebar {
  width: 40px;
  background-color: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-item {
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 2px;
}

.sidebar-item.active {
  background-color: #673de6;
}

.bento-cpanel-main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cpanel-row {
  display: flex;
  gap: 8px;
}

.cpanel-stat-card {
  flex: 1;
  height: 24px;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
}

.cpanel-stat-bar {
  height: 100%;
  background-color: #10b981;
  border-radius: 4px;
  opacity: 0.75;
}

.cpanel-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 5px;
}

.app-icon {
  height: 20px;
  background-color: #f1f5f9;
  border-radius: 4px;
  border: 1px dashed #cbd5e1;
}

/* Domains Search Mockup */
.bento-mockup-domain {
  position: absolute;
  bottom: 0;
  left: 35px;
  right: 35px;
  height: 140px;
  background-color: #ffffff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: none;
  padding: 24px 20px;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-domains:hover .bento-mockup-domain {
  transform: translateY(-5px);
}

.bento-search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 12px;
  background: #f8fafc;
}

.search-input-mock {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
  font-family: monospace;
}

.search-status-badge {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background-color: #10b981;
  padding: 4px 8px;
  border-radius: 6px;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .category-bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card-business {
    grid-column: span 2;
    min-height: 400px;
  }
  .bento-card-domains {
    grid-column: span 2;
    min-height: 400px;
  }
  .bento-col-middle {
    grid-column: span 2;
    flex-direction: row;
  }
  .bento-col-middle .bento-card {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .category-bento-section {
    padding: 70px 0;
  }
  .bento-col-middle {
    flex-direction: column;
  }
  .bento-card-business {
    min-height: 330px;
  }
  .bento-mockup-business {
    width: 240px;
    height: 170px;
  }
}

@media (max-width: 480px) {
  .category-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card-business,
  .bento-col-middle,
  .bento-card-domains {
    grid-column: span 1;
  }
  .bento-col-middle {
    gap: 16px;
  }
  .bento-card {
    padding: 25px;
  }
  .bento-mockup-business {
    display: none;
  }
  .bento-mockup-domain {
    left: 20px;
    right: 20px;
  }
}
/* ================= BENTO STATS SECTION ================= */
.bento-stats-section {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}

.bento-title-side {
  flex: 1.2;
}

.bento-title-side h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -1px;
}

.bento-desc-side {
  flex: 1;
  padding-top: 15px;
}

.bento-desc-side p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

/* Grid Layout */
.bento-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.bento-cards {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Card specific designs */
.bento-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit; /* Inherits the 24px curve from parent */
}

.bento-dark-card {
  background: #1e1e1f;
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-dark-card h3 {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.bento-dark-card p {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.5;
  margin: 0;
}

.bento-purple-card {
  background: #673de6;
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-purple-card .icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-purple-card .icon-wrapper svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.bento-purple-card h3 {
  font-size: 4rem;
  font-weight: 700;
  margin: 20px 0 10px 0;
  line-height: 1;
}

.bento-purple-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.bento-tall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit; /* Inherits the 24px curve from parent */
}

/* Explicit Card Grid Areas for Desktop (Exact 4-Column Layout) */
.bento-card-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.bento-card-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.bento-card-5 {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

.bento-card-3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.bento-card-4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .bento-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }
  .bento-desc-side {
    padding-top: 0;
  }
  .bento-title-side h2 {
    font-size: 2.25rem;
  }
  .bento-stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 20px;
  }
  /* Explicit layout mapping for Tablet (Exact 2-Column Layout) */
  .bento-card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .bento-card-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .bento-card-5 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }
  .bento-card-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .bento-card-3 {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}

@media (max-width: 768px) {
  .bento-stats-section {
    padding: 60px 0;
  }
  .bento-title-side h2 {
    font-size: 2rem;
  }
  .bento-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
  }
  .bento-cards {
    height: auto;
    min-height: 200px;
  }
  .bento-img-card, .bento-tall-card {
    height: 220px;
  }
  .bento-dark-card, .bento-purple-card {
    padding: 30px;
  }
  .bento-dark-card h3, .bento-purple-card h3 {
    font-size: 3rem;
  }
  /* Explicit Stacking Order for Mobile Portrait/Landscape */
  .bento-card-1 { order: 1; }
  .bento-card-2 { order: 2; }
  .bento-card-4 { order: 3; }
  .bento-card-5 { order: 4; }
  .bento-card-3 { order: 5; }
}

/* ================= ABOUT HEROXHOST SECTION ================= */
.about-hxh-section {
  padding: 80px 0;
  background-color: #f2f3f6;
  overflow: hidden;
}

.about-hxh-grid {
  display: grid;
  gap: 35px;
  align-items: flex-start;
}

.about-hxh-left-col {
  display: flex;
  flex-direction: column;
}

.about-hxh-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #13b763;
  letter-spacing: 1px;
}

.about-hxh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #13b763;
  display: inline-block;
}

.about-hxh-right-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-hxh-desc {
  font-size: 2.15rem;
  font-weight: 450;
  line-height: 1.35;
  color: #09090b;
  letter-spacing: -1px;
  margin: 0;
}

/* Stats grid with vertical dividers */
.about-hxh-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-hxh-stat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 16px 8px 32px;
  box-sizing: border-box;
}

.about-hxh-stat-item:first-child {
  padding-left: 0;
}

.about-hxh-stat-item:not(:first-child) {
  border-left: 1px solid #e4e4e7;
}

.about-hxh-stat-number {
  font-size: 2.5rem;
  font-weight: 850;
  color: #09090b;
  letter-spacing: -1.2px;
  line-height: 1;
}

.about-hxh-stat-text {
  font-size: 0.85rem;
  color: #71717a;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive Adaptations */
@media (max-width: 1024px) {
  .about-hxh-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-hxh-left-col {
    align-items: flex-start; /* Keeps the subtitle left-aligned */
  }
  
  .about-hxh-desc {
    font-size: 1.75rem;
    text-align: left; /* Keeps the description text left-aligned */
    max-width: none;
    margin: 0;
  }
  
  .about-hxh-stats-row {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid for tablet/mobile */
    gap: 32px 24px;
    max-width: none;
    margin: 32px 0 0 0;
  }
  
  .about-hxh-stat-item {
    border-left: none !important;
    padding: 12px 16px 12px 0 !important; /* Removes left padding for clean alignment */
    text-align: left; /* Keeps stat text left-aligned */
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .about-hxh-section {
    padding: 60px 0;
  }
  
  .about-hxh-desc {
    font-size: 1.45rem;
  }
  
  .about-hxh-stats-row {
    grid-template-columns: repeat(2, 1fr); /* Preserves 2-column layout on mobile viewports */
    gap: 24px 12px;
  }
  
  .about-hxh-stat-number {
    font-size: 2.25rem;
  }
  
  .about-hxh-stat-item {
    padding: 12px 12px 12px 0 !important;
  }
}
/* ================= BUSINESS HOSTING SECTION ================= */
.business-hosting-section {
  padding: 50px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.business-badge {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #673DE6;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(103, 61, 230, 0.05);
  padding: 6px 14px;
  border-radius: 100px;
}

.business-title {
  font-size: 3rem;
  font-weight: 850;
  line-height: 1.15;
  color: #120A1F;
  letter-spacing: -1.5px;
  margin: 0 0 24px 0;
}

.business-subtitle {
  font-size: 1.15rem;
  color: #71717a;
  line-height: 1.6;
  margin: 0 0 48px 0;
  max-width: 550px;
}

.business-benefits-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}

.benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(103, 61, 230, 0.06);
  color: #673DE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
}

.benefit-details h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #673DE6;
  margin: 0 0 8px 0;
}

.benefit-details p {
  font-size: 0.95rem;
  color: #71717a;
  line-height: 1.5;
  margin: 0;
}

/* Right Panels */
.business-panels-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.business-panel-card {
  background-color: #fafafb;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
  box-sizing: border-box;
  text-align: left;
}

.performance-panel {
  background: linear-gradient(135deg, #130a2a 0%, #09090b 100%);
  border-color: #27272a;
  color: #ffffff;
}

.performance-panel .panel-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.08) 0%, rgba(103, 61, 230, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.performance-panel .panel-tag {
  color: #FFB830;
}

.performance-panel h3 {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
}

.performance-panel p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.performance-panel .panel-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 850;
  color: #FFB830;
}

.stat-label {
  font-size: 0.85rem;
  color: #a1a1aa;
  font-weight: 600;
}

.panel-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #673DE6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.trust-panel h3 {
  color: #673DE6;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 12px 0;
}

.trust-panel p {
  color: #71717a;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.trust-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid #e4e4e7;
  padding-top: 16px;
  width: 100%;
}

.avatar-circles-mini {
  display: flex;
  align-items: center;
}

.avatar-circle-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-right: -10px;
  object-fit: cover;
}

.score-label {
  color: #673DE6;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(103, 61, 230, 0.06);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Tablet Overrides */
@media (max-width: 1024px) {
  .business-title {
    font-size: 2.5rem;
  }
  
  .business-subtitle {
    max-width: none;
    margin-bottom: 36px;
  }
}

/* Mobile Overrides */
@media (max-width: 768px) {
  .business-hosting-section {
    padding: 60px 0;
  }
  
  .business-title {
    font-size: 2rem;
  }
  
  .business-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .benefit-details h4 {
    font-size: 1.1rem;
  }
  
  .benefit-details p {
    font-size: 0.9rem;
  }
  
  .business-panel-card {
    padding: 28px;
    border-radius: 20px;
    min-height: 180px;
  }
}


/* COMPANY GROWTH SECTION */

.company-growth-section{
    padding:60px 0;
    background:#ffffff;
}

.company-growth-review-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:25px;
    margin-bottom:30px;
    border:1px solid var(--border);
    border-radius:12px;
    flex-wrap:wrap;
}

.company-growth-review-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.company-growth-review-logo img{
    height:32px;
    width:auto;
}

.company-growth-review-content{
    display:flex;
    flex-direction:column;
}

.company-growth-review-rating{
    font-size:18px;
    font-weight:600;
    color:var(--dark);
}

.company-growth-review-text{
    font-size:14px;
    color:var(--text-gray);
}

.company-growth-stat-item{
    text-align:center;
}

.company-growth-stat-number{
    font-size:34px;
    font-weight:700;
    color:var(--primary);
    line-height:1;
    margin-bottom:8px;
}

.company-growth-stat-text{
    font-size:14px;
    color:var(--text-gray);
    margin:0;
}

.company-growth-banner{
    background:linear-gradient(
        135deg,
        #111111 0%,
        #1d1d1d 100%
    );
    border-radius:12px;
    padding:60px;
    margin-bottom:35px;
    position:relative;
    overflow:hidden;
}

.company-growth-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.15);
    color:#ffffff;
    font-size:13px;
    font-weight:500;
    margin-bottom:20px;
}

.company-growth-title{
    font-size:clamp(2rem,4vw,3.25rem);
    line-height:1.2;
    color:#ffffff;
    font-weight:700;
    max-width:750px;
    margin:0;
}

.company-growth-highlight{
    color:var(--primary);
}

.company-growth-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.company-growth-card{
    border:1px solid var(--border);
    border-radius:8px;
    padding:25px;
    transition:all .3s ease-in-out;
    background:#ffffff;
}

.company-growth-card:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
}

.company-growth-icon{
    margin-bottom:15px;
}

.company-growth-icon img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.company-growth-card-title{
    font-size:20px;
    font-weight:600;
    color:var(--dark);
    margin-bottom:12px;
}

.company-growth-card-text{
    font-size:16px;
    line-height:1.7;
    color:var(--text-gray);
    margin:0;
}

@media(max-width:1024px){

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

    .company-growth-banner{
        padding:45px;
    }
}

@media(max-width:768px){

    .company-growth-review-bar{
        justify-content:center;
    }

    .company-growth-banner{
        padding:35px 25px;
        text-align:center;
    }

    .company-growth-title{
        max-width:100%;
    }

    .company-growth-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:468px){

    .company-growth-stat-number{
        font-size:28px;
    }

    .company-growth-card{
        padding:20px;
    }
}