.trustedhosting-in-hero {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}
.container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-left {
  max-width: 600px;
}
.trustedhosting-in-hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.0;
  color: #0a1633;
  margin-bottom: 24px;
}
.highlight {
  color: #005ce6;
}
.trustedhosting-in-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #111;
  margin: 18px 0 36px;
}
.cursor {
  font-weight: 800;
  color: #0066ff;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Capsule */
.dual-capsule {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  margin-bottom: 26px;
}
.dual-capsule span {
  font-weight: 600;
  font-size: 13px;
  padding: 4px 5px;
}
.dual-capsule .left {
  background: linear-gradient(90deg, #0066ff, #1a82ff);
  color: #fff;
}
.dual-capsule .right {
  background: #000;
  color: #fff;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #00e676 0%, #00c853 80%);
  box-shadow: 0 0 10px #00e676cc;
  display: inline-block;
  margin-right: 8px;
}


/* HERO VIEW PLANS + TIMER */
.hero-plan-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.hero-timer-box {
  background: #f4f8ff;
  border: 2px solid #005ce6;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  color: #005ce6;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(0, 92, 230, 0.15);
  white-space: nowrap;
}

/* Equal height alignment */
.hero-plan-cta a,
.hero-timer-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}

/* Mobile */
@media (max-width: 576px) {
  .hero-plan-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-timer-box,
  .hero-plan-cta a {
    width: 100%;
  }
}

/* Buttons */
.shine-btn {
  background: linear-gradient(90deg, #0066ff, #1a82ff, #0066ff);
  color: #fff;
  padding: 13px 36px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  background-size: 200% 200%;
  animation: shineGradient 3s linear infinite;
  box-shadow: 0 4px 18px rgba(0,102,255,0.4);
}
@keyframes shineGradient {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}
.outline-btn {
  background: #0066ff;
  border: 2px solid #0066ff;
  padding: 13px 36px;
  border-radius: 10px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: none;
}

.outline-btn:hover {
  background: #0066ff;
  color: #ffffff;
}

.button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 16px;
}
.trusted-note {
  font-size: 14px;
  color: #666;
  margin-top: -4px;
}

/* FEATURE GRID - FIXED (2×3 desktop, 1×6 mobile) */
.trusted-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 18px;
  margin-top: 10px;
}

.trusted-feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  background: #f9fbff;
  border: 1px solid rgba(0, 102, 255, 0.18);
  padding: 10px 18px;
  border-radius: 10px;
  height: 35px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 102, 255, 0.05);
}

.trusted-feature-box:hover {
  background: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 6px 12px rgba(0, 102, 255, 0.2);
  transform: translateY(-2px);
}

.trusted-feature-box img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trusted-feature-box span {
  font-size: 14px;
  font-weight: 600;
  color: #0a1633;
  line-height: 1.3;
}

/* Responsive Grid (1x6 on Mobile) */
@media (max-width: 991px) {
  .trusted-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trusted-feature-grid {
    grid-template-columns: 1fr;
  }
}


/* Console Section */
.hero-right {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 45px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,102,255,0.1);
}
.console-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(0,102,255,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,102,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}
.console-title {
  text-align: center;
  color: #005ce6;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.pulse-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, #0066ff 50%, rgba(0,0,0,0) 100%);
  opacity: 0.4;
  border-radius: 4px;
  margin-bottom: 32px;
}
.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  z-index: 3;
  position: relative;
}
.console-box {
  position: relative;
  background: linear-gradient(145deg, #e8f3ff 0%, #ffffff 70%);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 1px 4px rgba(255,255,255,0.6),
              0 8px 18px rgba(0,102,255,0.15),
              inset 0 0 12px rgba(0,102,255,0.05);
  transition: all .35s ease;
}
.console-header {
  height: 6px;
  background: linear-gradient(90deg, #00aaff, #ffffff, #0066ff);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  margin: -28px -22px 18px;
  box-shadow: 0 2px 6px rgba(0,102,255,0.25);
}
.console-box:hover {
  transform: translateY(-6px);
  border-color: #0066ff;
  box-shadow: 0 12px 35px rgba(0,102,255,0.35),
              inset 0 0 25px rgba(0,102,255,0.1);
}
.console-box h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 8px;
}
.console-box p {
  font-size: 14px;
  color: #111;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-left {
    text-align: center;
    margin: auto;
  }
  .hero-right {
    display: none !important;
  }
  .trustedhosting-in-hero h1 {
    font-size: 34px;
  }
}
.trustedhosting_cpanel_faq_finalwhite {
  background: #ffffff;
  color: #071029;
  font-family: 'Inter', sans-serif;
  padding: 100px 18px;
}
.th_faq_inner {max-width: 1200px; margin: 0 auto;}
.th_faq_header {text-align: center; margin-bottom: 50px;}
.th_faq_title {font-size: 34px; font-weight: 700; margin-bottom: 8px;}
.th_faq_underline {width: 80px; height: 4px; margin: 0 auto 14px; border-radius: 10px; background: linear-gradient(90deg,#0066ff,#33a1ff);}
.th_faq_subtitle {color: #58606b; font-size: 16px; max-width: 760px; margin: 0 auto; line-height: 1.6;}
.th_faq_row {display: flex; gap: 30px; margin-bottom: 40px; flex-wrap: wrap;}
.th_faq_col {flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 18px;}
.th_faq_card {background: #fff; border: 1px solid rgba(0,102,255,0.1); border-radius: 12px; box-shadow: 0 8px 22px rgba(0,102,255,0.06); transition: all 0.3s ease; opacity: 0; transform: translateY(40px);}
.th_faq_card.visible {opacity: 1; transform: translateY(0);}
.th_faq_card:hover {transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,102,255,0.15); border-color: rgba(0,102,255,0.25);}
.th_faq_question {width: 100%; background: none; border: none; text-align: left; font-size: 16px; font-weight: 600; color: #071029; padding: 18px 24px; cursor: pointer; position: relative;}
.th_faq_question::after {content: '+'; position: absolute; right: 24px; top: 18px; font-size: 20px; color: #0066ff; transition: transform 0.3s ease;}
.th_faq_question.active {color: #0066ff; background: rgba(0,102,255,0.03); border-bottom: 1px solid rgba(0,102,255,0.1);}
.th_faq_question.active::after {content: '−'; transform: rotate(180deg);}
.th_faq_answer {max-height: 0; overflow: hidden; background: #f9fcff; transition: max-height 0.4s ease, opacity 0.3s ease; opacity: 0; padding: 0 24px;}
.th_faq_answer p {margin: 0; padding: 0 0 16px; color: #444; font-size: 15px; line-height: 1.7;}
.th_faq_answer.open {opacity: 1;}
.th_faq_cta {text-align: center; margin-top: 60px; background: #f9fbff; padding: 50px 20px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,102,255,0.06);}
.th_faq_cta_title {font-size: 24px; font-weight: 700; margin-bottom: 10px;}
.th_faq_cta_text {color: #58606b; font-size: 16px; margin-bottom: 20px;}
.th_faq_cta_btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #0066ff, #2e85ff);
  color: #fff !important; /* force white text */
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0,102,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.th_faq_cta_btn:hover {
  color: #fff !important; /* maintain white color on hover */
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0,102,255,0.25);
  background: linear-gradient(90deg, #005ae0, #1e7fff); /* slightly darker gradient for hover */
}.fade-in {opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease;}
.fade-in.visible {opacity: 1; transform: translateY(0);}
@media (max-width: 768px) {.th_faq_title {font-size: 26px;}.th_faq_row {flex-direction: column;}.th_faq_cta {padding: 40px 18px;}}


 body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_refund_compact_section,
  .webystrata_refund_compact_section * {
    box-sizing: border-box;
  }

  .webystrata_refund_compact_section {
    width: 100%;
    padding: 28px 0 44px;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
  }

  .webystrata_refund_compact_container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .webystrata_refund_compact_wrap {
    position: relative;
    width: 100%;
    min-height: 126px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 250px 230px;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.052);
    overflow: hidden;
  }

  .webystrata_refund_compact_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: #075bd8;
  }

  .webystrata_refund_compact_label {
    min-height: 86px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #075bd8 0%, #0866ef 55%, #004fc4 100%);
    box-shadow: 0 16px 42px rgba(7, 91, 216, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .webystrata_refund_compact_label span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
  }

  .webystrata_refund_compact_label strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.9px;
  }

  .webystrata_refund_compact_content h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1.15px;
  }

  .webystrata_refund_compact_content p {
    max-width: 640px;
    margin: 8px 0 0;
    color: #53627a;
    font-size: 14.4px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_refund_compact_founder {
    min-height: 86px;
    padding: 17px 18px;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid #dce6f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .webystrata_refund_compact_founder span {
    display: block;
    color: #075bd8;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }

  .webystrata_refund_compact_founder strong {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.35px;
  }

  .webystrata_refund_compact_founder p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 12.8px;
    line-height: 1.3;
    font-weight: 700;
  }

  .webystrata_refund_compact_action a {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #075bd8;
    border: 1px solid #075bd8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04px;
    white-space: nowrap;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  }

  .webystrata_refund_compact_action a:hover {
    background: #004fc4;
    border-color: #004fc4;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
  }

  @media (max-width: 1180px) {
    .webystrata_refund_compact_wrap {
      grid-template-columns: 180px minmax(0, 1fr) 220px;
    }

    .webystrata_refund_compact_action {
      grid-column: 1 / -1;
    }

    .webystrata_refund_compact_action a {
      width: auto;
      min-width: 230px;
    }
  }

  @media (max-width: 820px) {
    .webystrata_refund_compact_section {
      padding: 34px 0;
    }

    .webystrata_refund_compact_container {
      padding: 0 16px;
    }

    .webystrata_refund_compact_wrap {
      grid-template-columns: 1fr;
      gap: 16px;
      min-height: auto;
      padding: 22px;
      border-radius: 22px;
    }

    .webystrata_refund_compact_wrap::before {
      top: 22px;
      bottom: auto;
      left: 22px;
      right: 22px;
      width: auto;
      height: 4px;
      border-radius: 999px;
    }

    .webystrata_refund_compact_label {
      min-height: 86px;
      margin-top: 10px;
    }

    .webystrata_refund_compact_content h2 {
      font-size: clamp(26px, 8vw, 36px);
      line-height: 1.04;
    }

    .webystrata_refund_compact_content p {
      max-width: 100%;
      font-size: 14.8px;
      line-height: 1.6;
    }

    .webystrata_refund_compact_action a {
      width: 100%;
      min-width: 0;
    }
  }
  
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_cpanel_real_stack_section,
  .webystrata_cpanel_real_stack_section * {
    box-sizing: border-box;
  }

  .webystrata_cpanel_real_stack_section {
    width: 100%;
    padding: 86px 0;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_cpanel_real_stack_container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .webystrata_cpanel_real_stack_header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .webystrata_cpanel_real_stack_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 17px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }

  .webystrata_cpanel_real_stack_header h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #0f172a;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2.3px;
  }

  .webystrata_cpanel_real_stack_header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #53627a;
    font-size: 16.5px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.08px;
  }

  .webystrata_cpanel_real_stack_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .webystrata_cpanel_real_stack_card {
    min-height: 292px;
    padding: 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.055);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
  }

  .webystrata_cpanel_real_stack_card:hover {
    transform: translateY(-4px);
    border-color: #c6dcff;
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.085);
  }

  .webystrata_cpanel_real_stack_card_blue {
    background: linear-gradient(135deg, #075bd8 0%, #0a6cf0 52%, #004fc4 100%);
    border-color: rgba(7, 91, 216, 0.18);
    box-shadow: 0 28px 82px rgba(7, 91, 216, 0.22);
  }

  .webystrata_cpanel_real_stack_card_dark {
    background: linear-gradient(135deg, #020617 0%, #071326 58%, #111827 100%);
    border-color: #071326;
    box-shadow: 0 24px 72px rgba(2, 6, 23, 0.19);
  }

  .webystrata_cpanel_real_stack_logo_box {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
  }

  .webystrata_cpanel_real_stack_card_blue .webystrata_cpanel_real_stack_logo_box,
  .webystrata_cpanel_real_stack_card_dark .webystrata_cpanel_real_stack_logo_box {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .webystrata_cpanel_real_stack_logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .webystrata_cpanel_real_stack_content {
    margin-top: 26px;
  }

  .webystrata_cpanel_real_stack_content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    font-size: 10.2px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .webystrata_cpanel_real_stack_card_blue .webystrata_cpanel_real_stack_content span,
  .webystrata_cpanel_real_stack_card_dark .webystrata_cpanel_real_stack_content span {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
  }

  .webystrata_cpanel_real_stack_content h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.75px;
  }

  .webystrata_cpanel_real_stack_content p {
    margin: 12px 0 0;
    color: #53627a;
    font-size: 14.6px;
    line-height: 1.62;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_cpanel_real_stack_card_blue .webystrata_cpanel_real_stack_content h3,
  .webystrata_cpanel_real_stack_card_dark .webystrata_cpanel_real_stack_content h3 {
    color: #ffffff;
  }

  .webystrata_cpanel_real_stack_card_blue .webystrata_cpanel_real_stack_content p,
  .webystrata_cpanel_real_stack_card_dark .webystrata_cpanel_real_stack_content p {
    color: rgba(255, 255, 255, 0.78);
  }

  @media (max-width: 1180px) {
    .webystrata_cpanel_real_stack_grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 900px) {
    .webystrata_cpanel_real_stack_section {
      padding: 72px 0;
    }

    .webystrata_cpanel_real_stack_container {
      padding: 0 20px;
    }

    .webystrata_cpanel_real_stack_grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .webystrata_cpanel_real_stack_card {
      min-height: 270px;
    }
  }

  @media (max-width: 640px) {
    .webystrata_cpanel_real_stack_section {
      padding: 54px 0;
    }

    .webystrata_cpanel_real_stack_container {
      padding: 0 16px;
    }

    .webystrata_cpanel_real_stack_header {
      text-align: left;
      margin-bottom: 30px;
    }

    .webystrata_cpanel_real_stack_header h2 {
      font-size: clamp(34px, 10.5vw, 48px);
      line-height: 1.03;
      letter-spacing: -1.7px;
    }

    .webystrata_cpanel_real_stack_header p {
      margin-left: 0;
      margin-right: 0;
      font-size: 15.5px;
      line-height: 1.64;
    }

    .webystrata_cpanel_real_stack_grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .webystrata_cpanel_real_stack_card {
      min-height: auto;
      padding: 22px;
      border-radius: 22px;
    }

    .webystrata_cpanel_real_stack_logo_box {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      padding: 13px;
    }

    .webystrata_cpanel_real_stack_content h3 {
      font-size: 22px;
    }

    .webystrata_cpanel_real_stack_content p {
      font-size: 14.8px;
      line-height: 1.6;
    }
  }
  
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_uptime_line_section,
  .webystrata_uptime_line_section * {
    box-sizing: border-box;
  }

  .webystrata_uptime_line_section {
    width: 100%;
    padding: 42px 0;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_uptime_line_container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .webystrata_uptime_line_wrap {
    position: relative;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 250px;
    gap: 24px;
    align-items: center;
    padding: 24px 30px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.055);
    overflow: hidden;
  }

  .webystrata_uptime_line_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: #075bd8;
  }

  .webystrata_uptime_line_metric {
    min-height: 135px;
    border-radius: 22px;
    background: linear-gradient(135deg, #075bd8 0%, #0866ef 55%, #004fc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 50px rgba(7, 91, 216, 0.20);
  }

  .webystrata_uptime_line_metric span {
    color: #ffffff;
    font-size: clamp(46px, 5vw, 62px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -3px;
  }

  .webystrata_uptime_line_badge {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    padding: 0 13px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
  }

  .webystrata_uptime_line_content h2 {
    max-width: 660px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1.2px;
  }

  .webystrata_uptime_line_content p {
    max-width: 700px;
    margin: 12px 0 0;
    color: #53627a;
    font-size: 14.5px;
    line-height: 1.58;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_uptime_line_points {
    display: grid;
    gap: 9px;
  }

  .webystrata_uptime_line_point {
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 15px;
    background: #f8fbff;
    border: 1px solid #dce6f3;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .webystrata_uptime_line_point span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #16a34a;
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
    flex-shrink: 0;
  }

  .webystrata_uptime_line_point p {
    margin: 0;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03px;
  }

  @media (max-width: 980px) {
    .webystrata_uptime_line_wrap {
      grid-template-columns: 200px minmax(0, 1fr);
    }

    .webystrata_uptime_line_points {
      grid-column: 1 / -1;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 720px) {
    .webystrata_uptime_line_section {
      padding: 38px 0;
    }

    .webystrata_uptime_line_container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .webystrata_uptime_line_wrap {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 22px;
      border-radius: 24px;
    }

    .webystrata_uptime_line_wrap::before {
      top: 22px;
      bottom: auto;
      left: 22px;
      right: 22px;
      width: auto;
      height: 4px;
      border-radius: 999px;
    }

    .webystrata_uptime_line_metric {
      min-height: 125px;
      border-radius: 20px;
    }

    .webystrata_uptime_line_metric span {
      font-size: 56px;
      letter-spacing: -3px;
    }

    .webystrata_uptime_line_content h2 {
      font-size: clamp(28px, 8.5vw, 38px);
      line-height: 1.04;
      letter-spacing: -1.4px;
    }

    .webystrata_uptime_line_content p {
      font-size: 14.8px;
      line-height: 1.6;
    }

    .webystrata_uptime_line_points {
      grid-template-columns: 1fr;
    }
  }
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_cpanel_assist_section,
  .webystrata_cpanel_assist_section * {
    box-sizing: border-box;
  }

  .webystrata_cpanel_assist_section {
    width: 100%;
    background: #ffffff;
    padding: 92px 0;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_cpanel_assist_container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 42px;
  }

  .webystrata_cpanel_assist_header {
    max-width: 920px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .webystrata_cpanel_assist_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    font-size: 12.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
  }

  .webystrata_cpanel_assist_header h2 {
    max-width: 900px;
    margin: 0 auto;
    color: #0f172a;
    font-size: clamp(40px, 4.5vw, 72px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2.8px;
  }

  .webystrata_cpanel_assist_header p {
    max-width: 760px;
    margin: 24px auto 0;
    color: #53627a;
    font-size: 17.5px;
    line-height: 1.72;
    font-weight: 500;
    letter-spacing: -0.12px;
  }

  .webystrata_cpanel_assist_banner {
    position: relative;
    width: 100%;
    margin-bottom: 22px;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, #075bd8 0%, #0866ef 52%, #004fc4 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(7, 91, 216, 0.18);
  }

  .webystrata_cpanel_assist_banner::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -150px;
    top: -160px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
  }

  .webystrata_cpanel_assist_banner_content,
  .webystrata_cpanel_assist_banner_action {
    position: relative;
    z-index: 2;
  }

  .webystrata_cpanel_assist_banner_content > span {
    display: inline-flex;
    width: fit-content;
    min-height: 36px;
    padding: 0 15px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 11.8px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
  }

  .webystrata_cpanel_assist_banner_content h3 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -1.8px;
  }

  .webystrata_cpanel_assist_banner_content p {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16.5px;
    line-height: 1.62;
    font-weight: 500;
    letter-spacing: -0.1px;
  }

  .webystrata_cpanel_assist_banner_action {
    min-width: 245px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }

  .webystrata_cpanel_assist_banner_action a {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 16px;
    background: #ffffff;
    color: #075bd8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15.8px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.12px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  }

  .webystrata_cpanel_assist_banner_action a:hover {
    background: #eef5ff;
    color: #004fc4;
    text-decoration: none;
    transform: translateY(-3px);
  }

  .webystrata_cpanel_assist_banner_action small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13.5px;
    line-height: 1.35;
    font-weight: 700;
    text-align: right;
  }

  .webystrata_cpanel_assist_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .webystrata_cpanel_assist_card {
    min-height: 300px;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.055);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .webystrata_cpanel_assist_card:hover {
    transform: translateY(-4px);
    border-color: #cfe0ff;
    box-shadow: 0 24px 66px rgba(15, 23, 42, 0.085);
  }

  .webystrata_cpanel_assist_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 38px;
  }

  .webystrata_cpanel_assist_card_top > span {
    color: #075bd8;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.5px;
  }

  .webystrata_cpanel_assist_icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .webystrata_cpanel_assist_icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #075bd8;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .webystrata_cpanel_assist_card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.13;
    font-weight: 900;
    letter-spacing: -0.8px;
  }

  .webystrata_cpanel_assist_card p {
    margin: 14px 0 0;
    color: #53627a;
    font-size: 15.4px;
    line-height: 1.62;
    font-weight: 500;
    letter-spacing: -0.08px;
  }

  @media (max-width: 1180px) {
    .webystrata_cpanel_assist_section {
      padding: 74px 0;
    }

    .webystrata_cpanel_assist_container {
      padding: 0 28px;
    }

    .webystrata_cpanel_assist_grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .webystrata_cpanel_assist_card {
      min-height: 260px;
    }
  }

  @media (max-width: 760px) {
    .webystrata_cpanel_assist_section {
      padding: 58px 0;
    }

    .webystrata_cpanel_assist_container {
      padding: 0 16px;
    }

    .webystrata_cpanel_assist_header {
      margin-bottom: 34px;
      text-align: left;
    }

    .webystrata_cpanel_assist_header h2 {
      font-size: clamp(34px, 10.8vw, 48px);
      line-height: 1.03;
      letter-spacing: -1.7px;
    }

    .webystrata_cpanel_assist_header p {
      font-size: 15.8px;
      line-height: 1.66;
    }

    .webystrata_cpanel_assist_banner {
      grid-template-columns: 1fr;
      gap: 26px;
      padding: 28px;
      border-radius: 26px;
    }

    .webystrata_cpanel_assist_banner_content h3 {
      font-size: clamp(30px, 9.5vw, 42px);
      letter-spacing: -1.35px;
    }

    .webystrata_cpanel_assist_banner_content p {
      font-size: 15.4px;
      line-height: 1.62;
    }

    .webystrata_cpanel_assist_banner_action {
      min-width: 0;
      align-items: stretch;
    }

    .webystrata_cpanel_assist_banner_action a {
      width: 100%;
    }

    .webystrata_cpanel_assist_banner_action small {
      text-align: center;
    }

    .webystrata_cpanel_assist_grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .webystrata_cpanel_assist_card {
      min-height: auto;
      padding: 26px;
      border-radius: 24px;
    }

    .webystrata_cpanel_assist_card_top {
      margin-bottom: 30px;
    }

    .webystrata_cpanel_assist_card_top > span {
      font-size: 36px;
    }

    .webystrata_cpanel_assist_card h3 {
      font-size: 23px;
    }

    .webystrata_cpanel_assist_card p {
      font-size: 15.2px;
      line-height: 1.62;
    }
  }