/* Extracted from master-reseller-hosting.html inline <style> block 05. */
    .webystrata_helpdesk_section,
    .webystrata_helpdesk_section * {
      box-sizing: border-box;
    }

    .webystrata_helpdesk_section {
      width: 100%;
      padding: 56px 0;
      background: #ffffff !important;
      font-family: "DM Sans", "Inter", Arial, sans-serif;
      color: #0f172a;
      overflow: hidden;
    }

    .webystrata_helpdesk_container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 22px;
    }

    .webystrata_helpdesk_layout {
      display: grid;
      grid-template-columns: 390px minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .webystrata_helpdesk_intro {
      position: relative;
      min-height: 100%;
      padding: 34px;
      border-radius: 30px;
      background: #06111f;
      color: #ffffff;
      overflow: hidden;
    }

    .webystrata_helpdesk_intro::before {
      content: "";
      position: absolute;
      top: 0;
      left: 34px;
      right: 34px;
      height: 5px;
      border-radius: 0 0 999px 999px;
      background: #075bd8;
      z-index: 2;
    }

    .webystrata_helpdesk_intro::after {
      content: "";
      position: absolute;
      top: -80%;
      left: -90%;
      width: 48%;
      height: 280%;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.16) 50%,
        rgba(255,255,255,0.04) 65%,
        rgba(255,255,255,0) 100%
      );
      transform: skewX(-22deg);
      transition: left 0.85s ease;
      pointer-events: none;
    }

    .webystrata_helpdesk_intro:hover::after {
      left: 130%;
    }

    .webystrata_helpdesk_badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 31px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(7, 91, 216, 0.24);
      border: 1px solid rgba(141, 194, 255, 0.34);
      color: #8dc2ff;
      font-size: 10px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0.85px;
      text-transform: uppercase;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .webystrata_helpdesk_title {
      position: relative;
      z-index: 2;
      margin: 0;
      color: #ffffff;
      font-size: clamp(34px, 3.3vw, 52px);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: -2px;
    }

    .webystrata_helpdesk_title span {
      color: #77b5ff;
    }

    .webystrata_helpdesk_text {
      position: relative;
      z-index: 2;
      margin: 18px 0 0;
      color: rgba(226, 232, 240, 0.86);
      font-size: 15px;
      line-height: 1.65;
      font-weight: 600;
    }

    .webystrata_helpdesk_button_box {
      position: relative;
      z-index: 2;
      margin-top: 34px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .webystrata_helpdesk_button {
      width: 100%;
      min-height: 52px;
      border-radius: 16px;
      background: #075bd8;
      color: #ffffff !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none !important;
      font-size: 15px;
      line-height: 1;
      font-weight: 900;
      transition: transform 0.22s ease, background 0.22s ease;
    }

    .webystrata_helpdesk_button:hover {
      background: #004fc4;
      transform: translateY(-2px);
      color: #ffffff !important;
    }

    .webystrata_helpdesk_button_note {
      margin: 12px 0 0;
      color: rgba(226, 232, 240, 0.72);
      font-size: 12.8px;
      line-height: 1.45;
      font-weight: 700;
      text-align: center;
    }

    .webystrata_helpdesk_services {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .webystrata_helpdesk_card {
      position: relative;
      min-height: 238px;
      padding: 26px;
      border-radius: 28px;
      background: #ffffff;
      border: 1px solid #dce6f3;
      overflow: hidden;
      transition: border-color 0.22s ease, transform 0.22s ease;
    }

    .webystrata_helpdesk_card:hover {
      border-color: #bcd4f8;
      transform: translateY(-3px);
    }

    .webystrata_helpdesk_card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 26px;
      right: 26px;
      height: 4px;
      border-radius: 0 0 999px 999px;
      background: #075bd8;
      opacity: 0;
      transition: opacity 0.22s ease;
    }

    .webystrata_helpdesk_card:hover::before {
      opacity: 1;
    }

    .webystrata_helpdesk_card::after {
      content: "";
      position: absolute;
      top: -80%;
      left: -90%;
      width: 42%;
      height: 260%;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(7,91,216,0.03) 35%,
        rgba(7,91,216,0.10) 50%,
        rgba(7,91,216,0.03) 65%,
        rgba(255,255,255,0) 100%
      );
      transform: skewX(-22deg);
      transition: left 0.75s ease;
      pointer-events: none;
    }

    .webystrata_helpdesk_card:hover::after {
      left: 130%;
    }

    .webystrata_helpdesk_card_top {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 44px;
    }

    .webystrata_helpdesk_icon {
      width: 56px;
      height: 56px;
      border-radius: 17px;
      background: #eef5ff;
      border: 1px solid #cfe0ff;
      color: #075bd8;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .webystrata_helpdesk_icon svg {
      width: 25px;
      height: 25px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .webystrata_helpdesk_number {
      color: #075bd8;
      font-size: 24px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.8px;
    }

    .webystrata_helpdesk_card h3 {
      position: relative;
      z-index: 2;
      margin: 0;
      color: #0f172a;
      font-size: 25px;
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.85px;
    }

    .webystrata_helpdesk_card p {
      position: relative;
      z-index: 2;
      margin: 13px 0 0;
      color: #475569;
      font-size: 15px;
      line-height: 1.6;
      font-weight: 600;
    }

    .webystrata_helpdesk_card_blue {
      background: #075bd8;
      border-color: #075bd8;
    }

    .webystrata_helpdesk_card_blue::before {
      background: rgba(255,255,255,0.85);
      opacity: 1;
    }

    .webystrata_helpdesk_card_blue::after {
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.05) 35%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.05) 65%,
        rgba(255,255,255,0) 100%
      );
    }

    .webystrata_helpdesk_card_blue .webystrata_helpdesk_icon {
      background: rgba(255,255,255,0.13);
      border-color: rgba(255,255,255,0.22);
      color: #ffffff;
    }

    .webystrata_helpdesk_card_blue .webystrata_helpdesk_number,
    .webystrata_helpdesk_card_blue h3 {
      color: #ffffff;
    }

    .webystrata_helpdesk_card_blue p {
      color: rgba(255,255,255,0.84);
    }

    @media (max-width: 1080px) {
      .webystrata_helpdesk_layout {
        grid-template-columns: 1fr;
      }

      .webystrata_helpdesk_intro {
        min-height: auto;
      }

      .webystrata_helpdesk_button_box {
        max-width: 420px;
      }
    }

    @media (max-width: 760px) {
      .webystrata_helpdesk_section {
        padding: 40px 0;
      }

      .webystrata_helpdesk_container {
        padding: 0 16px;
      }

      .webystrata_helpdesk_intro {
        padding: 28px 24px;
        border-radius: 24px;
      }

      .webystrata_helpdesk_intro::before {
        left: 24px;
        right: 24px;
      }

      .webystrata_helpdesk_badge {
        margin-bottom: 22px;
      }

      .webystrata_helpdesk_title {
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -1.4px;
      }

      .webystrata_helpdesk_text {
        font-size: 14.5px;
        line-height: 1.6;
      }

      .webystrata_helpdesk_button_box {
        margin-top: 24px;
        padding: 16px;
        border-radius: 20px;
      }

      .webystrata_helpdesk_services {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .webystrata_helpdesk_card {
        min-height: auto;
        padding: 24px;
        border-radius: 23px;
      }

      .webystrata_helpdesk_card_top {
        margin-bottom: 30px;
      }

      .webystrata_helpdesk_icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
      }

      .webystrata_helpdesk_number {
        font-size: 21px;
      }

      .webystrata_helpdesk_card h3 {
        font-size: 23px;
      }

      .webystrata_helpdesk_card p {
        font-size: 14.5px;
      }
    }
